diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..0dacf7271a814c926b50e347bbaf5a079d373ff7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +multitask_intent_model_output/multitask_intent.onnx.data filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..af6d03259acbb8037408e95e9f79deb3c5dd723d --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +__pycache__/ +*.pyc +.DS_Store +model_output/ +decision_phase_model_output/ +subtype_model_output/ +iab_model_output/ +*/model.safetensors +iab_hierarchy_model_output/ diff --git a/COLAB_SETUP.md b/COLAB_SETUP.md new file mode 100644 index 0000000000000000000000000000000000000000..354d377d8bf1f3ca5b53457dfeabd6987f1869a2 --- /dev/null +++ b/COLAB_SETUP.md @@ -0,0 +1,105 @@ +# Google Colab setup — agentic-intent-classifier + +## 1. Runtime + +**Runtime → Change runtime type → GPU** (T4/L4/A100). Then verify: + +```python +import torch +print(torch.cuda.is_available(), torch.cuda.get_device_name(0) if torch.cuda.is_available() else "CPU") +``` + +## 2. Get the code + +**Option A — clone (if the repo is public or you use a token):** + +```python +!git clone protocol +%cd protocol/agentic-intent-classifier +``` + +**Option B — upload:** Zip `agentic-intent-classifier/` (including `data/`, `examples/`, taxonomy TSV under `data/iab-content/` if you use IAB), unzip in Colab, then: + +```python +%cd /content/agentic-intent-classifier +``` + +## 3. Install dependencies + +```python +%pip install -q -r requirements.txt +``` + +If `requirements.txt` is missing, install manually: + +```python +%pip install -q torch transformers datasets accelerate scikit-learn numpy pandas safetensors +``` + +## 4. Optional: quieter TensorFlow / XLA logs + +Run **before** importing `combined_inference` or anything that pulls TensorFlow: + +```python +import os +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3" +os.environ["ABSL_MIN_LOG_LEVEL"] = "3" +``` + +Harmless CUDA “already registered” lines may still appear; they do not mean training failed. + +## 5. Optional: persist artifacts on Google Drive + +```python +from google.colab import drive +drive.mount("/content/drive") +``` + +Copy outputs to Drive after training, or symlink `multitask_intent_model_output` / `artifacts` / `iab_classifier_model_output` to a Drive folder. + +## 6. Full pipeline (train + IAB + calibrate + verify + ONNX + smoke test) + +From `agentic-intent-classifier/`: + +```python +!python training/run_full_training_pipeline.py --skip-full-eval --complete +``` + +- `--skip-full-eval` avoids the heaviest eval pass (OOM on small RAM); remove when you have headroom. +- `--complete` = export multitask ONNX + `pipeline_verify.py` + one `combined_inference` query. + +**Artifacts-only check (after copying weights in):** + +```python +!python training/pipeline_verify.py +``` + +**Single query:** + +```python +!python combined_inference.py "Which laptop should I buy for college?" +``` + +Check `meta.iab_mapping_is_placeholder`: `false` only if IAB was trained and calibration exists. + +## 7. Minimal path (intent multitask + calibrate only) + +If you only run multitask training and calibration in Colab (no full orchestrator): + +```text +python training/train_multitask_intent.py +python training/calibrate_confidence.py --head intent_type +python training/calibrate_confidence.py --head intent_subtype +python training/calibrate_confidence.py --head decision_phase +``` + +Production “complete” stack still needs **IAB train + IAB calibrate** (see `run_full_training_pipeline.py`). + +## 8. Working directory + +Always `cd` to the folder that contains `config.py`, `training/`, and `data/`: + +```python +import os +assert os.path.isfile("config.py"), "Wrong directory — cd into agentic-intent-classifier" +``` diff --git a/README.md b/README.md index 7b95401dc46245ac339fc25059d4a56d90b4cde5..506d883c108da73a06a3fe4458ddf39f3c88d690 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,421 @@ ---- -license: apache-2.0 ---- +# Agentic Intent Classifier + +`agentic-intent-classifier` is a multi-head query classification stack for conversational traffic. + +It currently produces: + +- `intent.type` +- `intent.subtype` +- `intent.decision_phase` +- `iab_content` +- calibrated confidence per head +- combined fallback / policy / opportunity decisions + +The repo is beyond the original v0.1 baseline. It now includes: + +- shared config and label ownership +- reusable model runtime +- calibrated confidence and threshold gating +- combined inference with fallback/policy logic +- request/response validation in the demo API +- repeatable evaluation and regression suites +- full-TSV IAB taxonomy retrieval support through tier4 +- a local embedding index for taxonomy-node retrieval over IAB content paths +- a separate synthetic full-intent-taxonomy augmentation dataset for non-IAB heads +- a dedicated intent-type difficulty dataset and held-out benchmark with `easy`, `medium`, and `hard` cases +- a dedicated decision-phase difficulty dataset and held-out benchmark with `easy`, `medium`, and `hard` cases + +Generated model weights are intentionally not committed. + +## Current Taxonomy + +### `intent.type` + +- `informational` +- `exploratory` +- `commercial` +- `transactional` +- `support` +- `personal_reflection` +- `creative_generation` +- `chit_chat` +- `ambiguous` +- `prohibited` + +### `intent.decision_phase` + +- `awareness` +- `research` +- `consideration` +- `decision` +- `action` +- `post_purchase` +- `support` + +### `intent.subtype` + +- `education` +- `product_discovery` +- `comparison` +- `evaluation` +- `deal_seeking` +- `provider_selection` +- `signup` +- `purchase` +- `booking` +- `download` +- `contact_sales` +- `task_execution` +- `onboarding_setup` +- `troubleshooting` +- `account_help` +- `billing_help` +- `follow_up` +- `emotional_reflection` + +### `iab_content` + +- candidates are derived from every row in [data/iab-content/Content Taxonomy 3.0.tsv](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab-content/Content%20Taxonomy%203.0.tsv) +- retrieval output supports `tier1`, `tier2`, `tier3`, and optional `tier4` + +## What The System Does + +- runs three classifier heads: + - `intent_type` + - `intent_subtype` + - `decision_phase` +- resolves `iab_content` through a local embedding index over taxonomy nodes plus generic label/path reranking +- applies calibration artifacts when present +- computes `commercial_score` +- applies fallback when confidence is too weak or policy-safe blocking is required +- emits a schema-validated combined envelope + +## What The System Does Not Do + +- it is not a multi-turn memory system +- it is not a production-optimized low-latency serving path +- it is not yet trained on large real-traffic human-labeled intent data +- combined decision logic is still heuristic, even though it is materially stronger than the original baseline + +## Project Layout + +- [config.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/config.py): labels, thresholds, artifact paths, model paths +- [model_runtime.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/model_runtime.py): shared calibrated inference runtime +- [combined_inference.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/combined_inference.py): composed system response +- [inference_intent_type.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/inference_intent_type.py): direct `intent_type` inference entrypoint +- [inference_iab_classifier.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/inference_iab_classifier.py): direct supervised `iab_content` inference entrypoint +- [schemas.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/schemas.py): request/response validation +- [demo_api.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/demo_api.py): local validated API +- [iab_taxonomy.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/iab_taxonomy.py): full taxonomy parser/index +- [iab_classifier.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/iab_classifier.py): supervised IAB runtime with taxonomy-aware parent fallback +- [iab_retrieval.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/iab_retrieval.py): optional shadow retrieval baseline +- [training/build_full_intent_taxonomy_dataset.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/build_full_intent_taxonomy_dataset.py): separate synthetic intent augmentation dataset +- [training/build_intent_type_difficulty_dataset.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/build_intent_type_difficulty_dataset.py): extra `intent_type` augmentation plus held-out difficulty benchmark +- [training/build_decision_phase_difficulty_dataset.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/build_decision_phase_difficulty_dataset.py): extra `decision_phase` augmentation plus held-out difficulty benchmark +- [training/build_subtype_difficulty_dataset.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/build_subtype_difficulty_dataset.py): extra `intent_subtype` augmentation plus held-out difficulty benchmark +- [training/build_subtype_dataset.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/build_subtype_dataset.py): subtype dataset generation from existing corpora +- [training/train_iab.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/train_iab.py): train the supervised IAB classifier head +- [training/build_iab_taxonomy_embeddings.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/build_iab_taxonomy_embeddings.py): build local IAB node embedding artifacts +- [training/run_full_training_pipeline.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/training/run_full_training_pipeline.py): full multi-head training/calibration/eval pipeline +- [evaluation/run_evaluation.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_evaluation.py): repeatable benchmark runner +- [evaluation/run_regression_suite.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_regression_suite.py): known-failure regression runner +- [evaluation/run_iab_mapping_suite.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_iab_mapping_suite.py): IAB behavior-lock regression runner +- [evaluation/run_iab_quality_suite.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_iab_quality_suite.py): curated IAB quality-target runner +- [known_limitations.md](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/known_limitations.md): current gaps and caveats + +## Setup + +```bash +python3 -m venv .venv +source .venv/bin/activate +pip install -r agentic-intent-classifier/requirements.txt +``` + +## Inference + +Run one query locally: + +```bash +cd agentic-intent-classifier +python3 training/train_iab.py +python3 training/calibrate_confidence.py --head iab_content +python3 combined_inference.py "Which CRM should I buy for a 3-person startup?" +``` + +Run only the `intent_type` head: + +```bash +cd agentic-intent-classifier +python3 inference_intent_type.py "best shoes under 100" +``` + +Run the demo API: + +```bash +cd agentic-intent-classifier +python3 demo_api.py +``` + +Example request: + +```bash +curl -sS -X POST http://127.0.0.1:8008/classify \ + -H 'Content-Type: application/json' \ + -d '{"text":"I cannot log into my account"}' +``` + +Infra endpoints: + +```bash +curl -sS http://127.0.0.1:8008/health +curl -sS http://127.0.0.1:8008/version +``` + +Train only the IAB classifier head: + +```bash +cd agentic-intent-classifier +python3 training/train_iab.py +python3 training/calibrate_confidence.py --head iab_content +``` + +The online `iab_content` path now uses the compact supervised classifier. Retrieval is still available as an optional shadow baseline. + +Build the optional retrieval shadow index: + +```bash +cd agentic-intent-classifier +python3 training/build_iab_taxonomy_embeddings.py +``` + +By default the shadow retrieval path uses `Alibaba-NLP/gte-Qwen2-1.5B-instruct`. The retrieval runtime applies the model's query-side instruction format and last-token pooling, matching the Hugging Face usage guidance. If you want to point retrieval at a different embedding model, set `IAB_RETRIEVAL_MODEL_NAME_OVERRIDE` before building the index. + +Open-source users can swap in their own embedding model, but the contract is: + +- query embeddings and taxonomy-node embeddings must be produced by the same model and model revision +- after changing models, you must rebuild `artifacts/iab/taxonomy_embeddings.pt` +- the repository only tests and supports the default model path out of the box +- not every Hugging Face embedding model is drop-in compatible with this runtime; some require custom pooling, query instructions, or `trust_remote_code` + +Example override: + +```bash +cd agentic-intent-classifier +export IAB_RETRIEVAL_MODEL_NAME_OVERRIDE=mixedbread-ai/mxbai-embed-large-v1 +python3 training/build_iab_taxonomy_embeddings.py +``` + +This writes: + +- `artifacts/iab/taxonomy_nodes.json` +- `artifacts/iab/taxonomy_embeddings.pt` + +## Training + +### Full local pipeline + +```bash +cd agentic-intent-classifier +python3 training/run_full_training_pipeline.py +``` + +This pipeline now does: + +1. build separate full-intent-taxonomy augmentation data +2. build separate `intent_type` difficulty augmentation + benchmark +3. train `intent_type` +4. build subtype corpus +5. build separate `intent_subtype` difficulty augmentation + benchmark +6. train `intent_subtype` +7. build separate `decision_phase` difficulty augmentation + benchmark +8. train `decision_phase` +9. train `iab_content` +10. calibrate all classifier heads, including `iab_content` +11. run regression/evaluation unless `--skip-full-eval` is used + +### Build datasets individually + +Separate full-intent augmentation: + +```bash +cd agentic-intent-classifier +python3 training/build_full_intent_taxonomy_dataset.py +``` + +Intent-type difficulty augmentation and benchmark: + +```bash +cd agentic-intent-classifier +python3 training/build_intent_type_difficulty_dataset.py +``` + +Decision-phase difficulty augmentation and benchmark: + +```bash +cd agentic-intent-classifier +python3 training/build_decision_phase_difficulty_dataset.py +``` + +Subtype difficulty augmentation and benchmark: + +```bash +cd agentic-intent-classifier +python3 training/build_subtype_difficulty_dataset.py +``` + +Subtype dataset: + +```bash +cd agentic-intent-classifier +python3 training/build_subtype_dataset.py +``` + +IAB embedding index: + +```bash +cd agentic-intent-classifier +python3 training/build_iab_taxonomy_embeddings.py +``` + +### Train heads individually + +```bash +cd agentic-intent-classifier +python3 training/train.py +python3 training/train_subtype.py +python3 training/train_decision_phase.py +``` + +### Calibration + +```bash +cd agentic-intent-classifier +python3 training/calibrate_confidence.py --head intent_type +python3 training/calibrate_confidence.py --head intent_subtype +python3 training/calibrate_confidence.py --head decision_phase +``` + +## Evaluation + +Full evaluation: + +```bash +cd agentic-intent-classifier +python3 evaluation/run_evaluation.py +``` + +Known-failure regression: + +```bash +cd agentic-intent-classifier +python3 evaluation/run_regression_suite.py +``` + +IAB behavior-lock regression: + +```bash +cd agentic-intent-classifier +python3 evaluation/run_iab_mapping_suite.py +``` + +IAB quality-target evaluation: + +```bash +cd agentic-intent-classifier +python3 evaluation/run_iab_quality_suite.py +``` + +Threshold sweeps: + +```bash +cd agentic-intent-classifier +python3 evaluation/sweep_intent_threshold.py +``` + +Artifacts are written to: + +- `artifacts/calibration/` +- `artifacts/evaluation/latest/` + +## Google Colab + +Use Colab for the full retraining pass if local memory is limited. + +Clone once: + +```bash +%cd /content +!git clone https://github.com/GouniManikumar12/agentic-intent-classifier.git +%cd /content/agentic-intent-classifier +``` + +If the repo is already cloned and you want the latest code, pull manually: + +```bash +!git pull origin main +``` + +Full pipeline: + +```bash +!python training/run_full_training_pipeline.py +``` + +If full evaluation is too heavy for the current Colab runtime: + +```bash +!python training/run_full_training_pipeline.py \ + --iab-embedding-batch-size 32 \ + --skip-full-eval +``` + +Then run eval separately after training: + +```bash +!python evaluation/run_regression_suite.py +!python evaluation/run_iab_mapping_suite.py +!python evaluation/run_iab_quality_suite.py +!python evaluation/run_evaluation.py +``` + +## Current Saved Metrics + +Generate fresh metrics with: + +```bash +cd agentic-intent-classifier +python3 evaluation/run_evaluation.py +``` + +Do not treat any checked-in summary as canonical unless it was regenerated after the current code and artifacts were built. The IAB path is now retrieval-based, so older saved reports from the deleted hierarchy stack are not meaningful. + +## Latency Note + +`combined_inference.py` is a debugging/offline path, not a production latency path. + +Current production truth: + +- per-request CLI execution is not a sub-50ms architecture +- production serving should use a long-lived API process with preloaded models +- if sub-50ms becomes a hard requirement, the serving path will need: + - persistent loaded models + - runtime optimization + - likely fewer model passes or a shared multi-head model + +## Current Status + +Current repo status: + +- full 10-class `intent.type` taxonomy is wired +- subtype and phase heads are present +- difficulty benchmarks are wired for `intent_type`, `intent_subtype`, and `decision_phase` +- full-TSV IAB taxonomy retrieval is wired through tier4 +- separate full-intent augmentation dataset is in place +- evaluation/runtime memory handling is improved for large IAB splits + +The main remaining gap is not basic infrastructure anymore. It is improving real-world robustness, especially for: + +- `decision_phase` +- `intent_subtype` +- confidence quality on borderline commercial queries +- real-traffic supervision beyond synthetic data diff --git a/artifacts/calibration/decision_phase.json b/artifacts/calibration/decision_phase.json new file mode 100644 index 0000000000000000000000000000000000000000..e417d60c8ae9b82e48679e3da006f16bf629557f --- /dev/null +++ b/artifacts/calibration/decision_phase.json @@ -0,0 +1,32 @@ +{ + "calibrated": true, + "confidence_threshold": 0.22, + "generated_at": "2026-03-25T05:10:14.092098+00:00", + "head": "decision_phase", + "metrics": { + "calibrated_accuracy": 0.8621, + "calibrated_expected_calibration_error": 0.0877, + "calibrated_negative_log_likelihood": 0.5315, + "mean_calibrated_confidence": 0.866, + "mean_raw_confidence": 0.8684, + "raw_accuracy": 0.8621, + "raw_expected_calibration_error": 0.087, + "raw_negative_log_likelihood": 0.5317 + }, + "minimum_threshold_floor": 0.22, + "optimized_temperature_candidate": 1.008347, + "selected_threshold_before_floor": { + "accepted_accuracy": 0.8621, + "coverage": 1.0, + "threshold": 0.0 + }, + "selection_split": "val", + "selection_target_precision": 0.75, + "temperature": 1.008347, + "temperature_scaling_applied": true, + "threshold_summary": { + "accepted_accuracy": 0.8621, + "coverage": 1.0, + "threshold": 0.22 + } +} diff --git a/artifacts/calibration/iab_content.json b/artifacts/calibration/iab_content.json new file mode 100644 index 0000000000000000000000000000000000000000..d196427d97791dbb018cd372ec05aa369f7ea0c8 --- /dev/null +++ b/artifacts/calibration/iab_content.json @@ -0,0 +1,32 @@ +{ + "calibrated": true, + "confidence_threshold": 0.12, + "generated_at": "2026-03-25T05:12:02.550364+00:00", + "head": "iab_content", + "metrics": { + "calibrated_accuracy": 0.9442, + "calibrated_expected_calibration_error": 0.2773, + "calibrated_negative_log_likelihood": 0.5519, + "mean_calibrated_confidence": 0.6669, + "mean_raw_confidence": 0.2286, + "raw_accuracy": 0.9442, + "raw_expected_calibration_error": 0.7157, + "raw_negative_log_likelihood": 1.6567 + }, + "minimum_threshold_floor": 0.12, + "optimized_temperature_candidate": 0.607335, + "selected_threshold_before_floor": { + "accepted_accuracy": 0.9442, + "coverage": 1.0, + "threshold": 0.0 + }, + "selection_split": "val", + "selection_target_precision": 0.7, + "temperature": 0.607335, + "temperature_scaling_applied": true, + "threshold_summary": { + "accepted_accuracy": 0.9478, + "coverage": 0.9915, + "threshold": 0.12 + } +} diff --git a/artifacts/calibration/intent_subtype.json b/artifacts/calibration/intent_subtype.json new file mode 100644 index 0000000000000000000000000000000000000000..f722cd75ec2ad537e06abdd88eb1601e8708e501 --- /dev/null +++ b/artifacts/calibration/intent_subtype.json @@ -0,0 +1,32 @@ +{ + "calibrated": true, + "confidence_threshold": 0.25, + "generated_at": "2026-03-25T05:09:58.809351+00:00", + "head": "intent_subtype", + "metrics": { + "calibrated_accuracy": 0.875, + "calibrated_expected_calibration_error": 0.0778, + "calibrated_negative_log_likelihood": 0.4165, + "mean_calibrated_confidence": 0.8225, + "mean_raw_confidence": 0.7521, + "raw_accuracy": 0.875, + "raw_expected_calibration_error": 0.1475, + "raw_negative_log_likelihood": 0.4843 + }, + "minimum_threshold_floor": 0.25, + "optimized_temperature_candidate": 0.834211, + "selected_threshold_before_floor": { + "accepted_accuracy": 0.875, + "coverage": 1.0, + "threshold": 0.0 + }, + "selection_split": "val", + "selection_target_precision": 0.75, + "temperature": 0.834211, + "temperature_scaling_applied": true, + "threshold_summary": { + "accepted_accuracy": 0.875, + "coverage": 1.0, + "threshold": 0.25 + } +} diff --git a/artifacts/calibration/intent_type.json b/artifacts/calibration/intent_type.json new file mode 100644 index 0000000000000000000000000000000000000000..62f26a25bc9d33c89e825104b9bb9c237554cec3 --- /dev/null +++ b/artifacts/calibration/intent_type.json @@ -0,0 +1,32 @@ +{ + "calibrated": true, + "confidence_threshold": 0.4, + "generated_at": "2026-03-25T05:09:42.900721+00:00", + "head": "intent_type", + "metrics": { + "calibrated_accuracy": 0.9362, + "calibrated_expected_calibration_error": 0.0424, + "calibrated_negative_log_likelihood": 0.3117, + "mean_calibrated_confidence": 0.8993, + "mean_raw_confidence": 0.8741, + "raw_accuracy": 0.9362, + "raw_expected_calibration_error": 0.0788, + "raw_negative_log_likelihood": 0.3262 + }, + "minimum_threshold_floor": 0.4, + "optimized_temperature_candidate": 0.916196, + "selected_threshold_before_floor": { + "accepted_accuracy": 0.9362, + "coverage": 1.0, + "threshold": 0.0 + }, + "selection_split": "val", + "selection_target_precision": 0.8, + "temperature": 0.916196, + "temperature_scaling_applied": true, + "threshold_summary": { + "accepted_accuracy": 0.9362, + "coverage": 1.0, + "threshold": 0.4 + } +} diff --git a/artifacts/evaluation/intent_threshold_sweep.json b/artifacts/evaluation/intent_threshold_sweep.json new file mode 100644 index 0000000000000000000000000000000000000000..1db93c03b52561f6ac10adb68210aa02f087e384 --- /dev/null +++ b/artifacts/evaluation/intent_threshold_sweep.json @@ -0,0 +1,1294 @@ +{ + "applied_threshold": 0.4, + "recommended_threshold": 0.4, + "results": [ + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 0, + "intent_share_of_threshold_fallbacks": 0.0, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 1.0, + "policy_safe": 1 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0104, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.0 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 0, + "intent_share_of_threshold_fallbacks": 0.0, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 1.0, + "policy_safe": 1 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0104, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.1 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 0, + "intent_share_of_threshold_fallbacks": 0.0, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 1.0, + "policy_safe": 1 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0104, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.15 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 0, + "intent_share_of_threshold_fallbacks": 0.0, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 1.0, + "policy_safe": 1 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0104, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.2 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 0, + "intent_share_of_threshold_fallbacks": 0.0, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 1.0, + "policy_safe": 1 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0104, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.25 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 0, + "intent_share_of_threshold_fallbacks": 0.0, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 1.0, + "policy_safe": 1 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0104, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.3 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0667, + "benchmark_phase_only_fallback_rate": 0.5333, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 1, + "intent_share_of_threshold_fallbacks": 0.1667, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 0.8333, + "policy_safe": 0 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [ + "intent_type" + ], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1842, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0417, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.35 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6, + "benchmark_intent_only_fallback_rate": 0.0667, + "benchmark_phase_only_fallback_rate": 0.4667, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.6, + "intent_only": 1, + "intent_share_of_threshold_fallbacks": 0.1667, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 0.8333, + "policy_safe": 0 + }, + "false_fallback_rate_on_obvious_prompts": 0.3333, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [ + "intent_type" + ], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1053, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.0625, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.4 + }, + { + "combined": { + "bad_allow_rate_on_safe_prompts": 0.0, + "benchmark_fallback_rate": 0.6667, + "benchmark_intent_only_fallback_rate": 0.1333, + "benchmark_phase_only_fallback_rate": 0.4667, + "fallback_responsibility": { + "both": 0, + "fallback_rate": 0.7, + "intent_only": 2, + "intent_share_of_threshold_fallbacks": 0.2857, + "phase_only": 5, + "phase_share_of_threshold_fallbacks": 0.7143, + "policy_safe": 0 + }, + "false_fallback_rate_on_obvious_prompts": 0.5, + "obvious_prompt_count": 6, + "safe_prompt_count": 4, + "suite_outputs": [ + { + "decision_phase": "awareness", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "What is CRM software?", + "intent_confidence": 0.8488, + "intent_type": "informational", + "phase_confidence": 0.4134 + }, + { + "decision_phase": "research", + "expected_outcome": "pass", + "failed_components": [ + "intent_type" + ], + "fallback_applied": true, + "input": "Help me understand CRM basics", + "intent_confidence": 0.4226, + "intent_type": "informational", + "phase_confidence": 0.2602 + }, + { + "decision_phase": "consideration", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "HubSpot vs Zoho for a small team", + "intent_confidence": 0.6819, + "intent_type": "commercial", + "phase_confidence": 0.3331 + }, + { + "decision_phase": "decision", + "expected_outcome": "pass", + "failed_components": [], + "fallback_applied": false, + "input": "Which CRM should I buy for a 3-person startup?", + "intent_confidence": 0.7691, + "intent_type": "informational", + "phase_confidence": 0.2879 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Start my free trial", + "intent_confidence": 0.5429, + "intent_type": "transactional", + "phase_confidence": 0.1875 + }, + { + "decision_phase": "action", + "expected_outcome": "pass", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "Book a table for 2 tonight", + "intent_confidence": 0.5284, + "intent_type": "transactional", + "phase_confidence": 0.1716 + }, + { + "decision_phase": "support", + "expected_outcome": "fallback", + "failed_components": [ + "intent_type" + ], + "fallback_applied": true, + "input": "I cannot log into my account", + "intent_confidence": 0.3314, + "intent_type": "personal_reflection", + "phase_confidence": 0.275 + }, + { + "decision_phase": "action", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "go deeper", + "intent_confidence": 0.6527, + "intent_type": "ambiguous", + "phase_confidence": 0.1638 + }, + { + "decision_phase": "research", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "say more about that", + "intent_confidence": 0.6538, + "intent_type": "ambiguous", + "phase_confidence": 0.1674 + }, + { + "decision_phase": "awareness", + "expected_outcome": "fallback", + "failed_components": [ + "decision_phase" + ], + "fallback_applied": true, + "input": "what do you mean by that", + "intent_confidence": 0.4595, + "intent_type": "ambiguous", + "phase_confidence": 0.1718 + } + ], + "suite_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/intent_threshold_sweep_suite.json" + }, + "head": { + "ambiguous_bad_allow_rate": 0.1053, + "ambiguous_prompt_count": 38, + "obvious_false_fallback_rate": 0.1042, + "obvious_prompt_count": 96, + "safe_predicate_rate": 0.2917 + }, + "threshold": 0.45 + } + ], + "thresholds": [ + 0.0, + 0.1, + 0.15, + 0.2, + 0.25, + 0.3, + 0.35, + 0.4, + 0.45 + ] +} diff --git a/artifacts/evaluation/latest/combined_demo_benchmark.json b/artifacts/evaluation/latest/combined_demo_benchmark.json new file mode 100644 index 0000000000000000000000000000000000000000..cb002124eddc26b745b7656de406c8ca0420c227 --- /dev/null +++ b/artifacts/evaluation/latest/combined_demo_benchmark.json @@ -0,0 +1,1352 @@ +[ + { + "expected_behavior": "Should read as informational awareness and fail safe via fallback because confidence is still low.", + "input": "What is CRM software?", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.9035, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "602", + "label": "Software and Applications" + } + }, + "intent": { + "commercial_score": 0.0875, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9947, + "confidence_threshold": 0.22, + "label": "awareness", + "meets_threshold": true, + "raw_confidence": 0.9788 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9547, + "confidence_threshold": 0.25, + "label": "education", + "meets_threshold": true, + "raw_confidence": 0.9547 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9972, + "confidence_threshold": 0.4, + "label": "informational", + "meets_threshold": true, + "raw_confidence": 0.9662 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9947, + "decision_phase": "awareness", + "subtype": "education", + "summary": "Classified as informational intent with subtype education in the awareness phase.", + "type": "informational" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "awareness" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "commercial_signal_below_threshold", + "monetization_eligibility": "restricted", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should lean informational research and still fall back conservatively.", + "input": "Help me understand CRM basics", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8427, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "1", + "label": "Automotive" + } + }, + "intent": { + "commercial_score": 0.0875, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9944, + "confidence_threshold": 0.22, + "label": "awareness", + "meets_threshold": true, + "raw_confidence": 0.9779 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.955, + "confidence_threshold": 0.25, + "label": "education", + "meets_threshold": true, + "raw_confidence": 0.955 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9969, + "confidence_threshold": 0.4, + "label": "informational", + "meets_threshold": true, + "raw_confidence": 0.9637 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9944, + "decision_phase": "awareness", + "subtype": "education", + "summary": "Classified as informational intent with subtype education in the awareness phase.", + "type": "informational" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "awareness" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "commercial_signal_below_threshold", + "monetization_eligibility": "restricted", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should behave like a commercial comparison or selection query, but v0.1 still falls back because confidence is low.", + "input": "Best CRM for small teams", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7798, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "483", + "label": "Sports" + } + }, + "intent": { + "commercial_score": 0.656, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9965, + "confidence_threshold": 0.22, + "label": "consideration", + "meets_threshold": true, + "raw_confidence": 0.9846 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.4682, + "confidence_threshold": 0.25, + "label": "product_discovery", + "meets_threshold": true, + "raw_confidence": 0.4682 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9995, + "confidence_threshold": 0.4, + "label": "commercial", + "meets_threshold": true, + "raw_confidence": 0.9895 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.4682, + "decision_phase": "consideration", + "subtype": "product_discovery", + "summary": "Classified as commercial intent with subtype product_discovery in the consideration phase.", + "type": "commercial" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "consideration" + ], + "opportunity": { + "strength": "medium", + "type": "soft_recommendation" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "commercial_discovery_signal_present", + "monetization_eligibility": "allowed_with_caution", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should read as a commercial comparison in consideration and remain conservative if confidence stays low.", + "input": "HubSpot vs Zoho for a small team", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8606, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "619", + "label": "Internet" + } + }, + "intent": { + "commercial_score": 0.728, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9964, + "confidence_threshold": 0.22, + "label": "consideration", + "meets_threshold": true, + "raw_confidence": 0.9842 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9449, + "confidence_threshold": 0.25, + "label": "comparison", + "meets_threshold": true, + "raw_confidence": 0.9449 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9995, + "confidence_threshold": 0.4, + "label": "commercial", + "meets_threshold": true, + "raw_confidence": 0.9892 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9449, + "decision_phase": "consideration", + "subtype": "comparison", + "summary": "Classified as commercial intent with subtype comparison in the consideration phase.", + "type": "commercial" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "consideration" + ], + "opportunity": { + "strength": "high", + "type": "comparison_slot" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "commercial_comparison_signal_present", + "monetization_eligibility": "allowed_with_caution", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should preserve a decision-stage buying signal even if the intent-type head still undercalls it.", + "input": "Which CRM should I buy for a 3-person startup?", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8737, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "52", + "label": "Business and Finance" + }, + "tier2": { + "id": "53", + "label": "Business" + } + }, + "intent": { + "commercial_score": 0.8525, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.963, + "confidence_threshold": 0.22, + "label": "decision", + "meets_threshold": true, + "raw_confidence": 0.9122 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9119, + "confidence_threshold": 0.25, + "label": "provider_selection", + "meets_threshold": true, + "raw_confidence": 0.9119 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9994, + "confidence_threshold": 0.4, + "label": "commercial", + "meets_threshold": true, + "raw_confidence": 0.9874 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9119, + "decision_phase": "decision", + "subtype": "provider_selection", + "summary": "Classified as commercial intent with subtype provider_selection in the decision phase.", + "type": "commercial" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "decision" + ], + "opportunity": { + "strength": "high", + "type": "decision_moment" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "high_intent_subtype_signal", + "monetization_eligibility": "allowed", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should read as an action-stage transactional query and fail safe because confidence is low.", + "input": "Start my free trial", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7133, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "239", + "label": "Hobbies & Interests" + }, + "tier2": { + "id": "264", + "label": "Content Production" + }, + "tier3": { + "id": "266", + "label": "Freelance Writing" + } + }, + "intent": { + "commercial_score": 0.954, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9991, + "confidence_threshold": 0.22, + "label": "action", + "meets_threshold": true, + "raw_confidence": 0.9947 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9382, + "confidence_threshold": 0.25, + "label": "signup", + "meets_threshold": true, + "raw_confidence": 0.9382 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9996, + "confidence_threshold": 0.4, + "label": "transactional", + "meets_threshold": true, + "raw_confidence": 0.9902 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9382, + "decision_phase": "action", + "subtype": "signup", + "summary": "Classified as transactional intent with subtype signup in the action phase.", + "type": "transactional" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "action" + ], + "opportunity": { + "strength": "high", + "type": "transaction_trigger" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "high_intent_subtype_signal", + "monetization_eligibility": "allowed", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should preserve generic action-stage transactional behavior outside SaaS language.", + "input": "Book a table for 2 tonight", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7997, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "210", + "label": "Food & Drink" + }, + "tier2": { + "id": "218", + "label": "Dining Out" + } + }, + "intent": { + "commercial_score": 0.963, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.999, + "confidence_threshold": 0.22, + "label": "action", + "meets_threshold": true, + "raw_confidence": 0.9945 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.8724, + "confidence_threshold": 0.25, + "label": "booking", + "meets_threshold": true, + "raw_confidence": 0.8724 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9996, + "confidence_threshold": 0.4, + "label": "transactional", + "meets_threshold": true, + "raw_confidence": 0.9901 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.8724, + "decision_phase": "action", + "subtype": "booking", + "summary": "Classified as transactional intent with subtype booking in the action phase.", + "type": "transactional" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "action" + ], + "opportunity": { + "strength": "high", + "type": "transaction_trigger" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "high_intent_subtype_signal", + "monetization_eligibility": "allowed", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should preserve a post-purchase lifecycle signal and remain restricted under low confidence.", + "input": "How do I set up my new CRM?", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8423, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "619", + "label": "Internet" + }, + "tier4": { + "id": "620", + "label": "Cloud Computing" + } + }, + "intent": { + "commercial_score": 0.3235, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9736, + "confidence_threshold": 0.22, + "label": "post_purchase", + "meets_threshold": true, + "raw_confidence": 0.9264 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.921, + "confidence_threshold": 0.25, + "label": "onboarding_setup", + "meets_threshold": true, + "raw_confidence": 0.921 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9935, + "confidence_threshold": 0.4, + "label": "transactional", + "meets_threshold": true, + "raw_confidence": 0.9448 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9736, + "decision_phase": "post_purchase", + "subtype": "onboarding_setup", + "summary": "Classified as transactional intent with subtype onboarding_setup in the post_purchase phase.", + "type": "transactional" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "post_purchase" + ], + "opportunity": { + "strength": "low", + "type": "soft_recommendation" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "post_purchase_setup_query", + "monetization_eligibility": "restricted", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should fail safe on a support-like query and keep monetization blocked.", + "input": "I cannot log into my account", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8039, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "619", + "label": "Internet" + } + }, + "intent": { + "commercial_score": 0.0, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9969, + "confidence_threshold": 0.22, + "label": "support", + "meets_threshold": true, + "raw_confidence": 0.9863 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.923, + "confidence_threshold": 0.25, + "label": "account_help", + "meets_threshold": true, + "raw_confidence": 0.923 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9988, + "confidence_threshold": 0.4, + "label": "support", + "meets_threshold": true, + "raw_confidence": 0.9811 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.923, + "decision_phase": "support", + "subtype": "account_help", + "summary": "Classified as support intent with subtype account_help in the support phase.", + "type": "support" + } + }, + "fallback": { + "applied": true, + "failed_components": [], + "fallback_intent_type": "support", + "fallback_monetization_eligibility": "not_allowed", + "reason": "policy_default" + } + }, + "system_decision": { + "intent_trajectory": [ + "support" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "fallback_policy_default", + "eligibility_reason": "policy_default", + "monetization_eligibility": "not_allowed", + "regulated_vertical": false, + "sensitivity": "high" + } + } + } + }, + { + "expected_behavior": "Should trigger a sensitive fallback path and block monetization.", + "input": "I feel depressed and need help", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7854, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "286", + "label": "Medical Health" + }, + "tier2": { + "id": "287", + "label": "Diseases and Conditions" + } + }, + "intent": { + "commercial_score": 0.035, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9699, + "confidence_threshold": 0.22, + "label": "awareness", + "meets_threshold": true, + "raw_confidence": 0.9258 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9435, + "confidence_threshold": 0.25, + "label": "emotional_reflection", + "meets_threshold": true, + "raw_confidence": 0.9435 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9916, + "confidence_threshold": 0.4, + "label": "personal_reflection", + "meets_threshold": true, + "raw_confidence": 0.9406 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9435, + "decision_phase": "awareness", + "subtype": "emotional_reflection", + "summary": "Classified as personal_reflection intent with subtype emotional_reflection in the awareness phase.", + "type": "personal_reflection" + } + }, + "fallback": { + "applied": true, + "failed_components": [], + "fallback_intent_type": "personal_reflection", + "fallback_monetization_eligibility": "not_allowed", + "reason": "policy_default" + } + }, + "system_decision": { + "intent_trajectory": [ + "awareness" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "fallback_policy_default", + "eligibility_reason": "policy_default", + "monetization_eligibility": "not_allowed", + "regulated_vertical": false, + "sensitivity": "high" + } + } + } + }, + { + "expected_behavior": "Should be treated as ambiguous and fall back safely.", + "input": "Tell me more", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7304, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "SPSHQ5", + "label": "Genres" + } + }, + "intent": { + "commercial_score": 0.165, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9934, + "confidence_threshold": 0.22, + "label": "research", + "meets_threshold": true, + "raw_confidence": 0.9746 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9631, + "confidence_threshold": 0.25, + "label": "follow_up", + "meets_threshold": true, + "raw_confidence": 0.9631 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9934, + "confidence_threshold": 0.4, + "label": "ambiguous", + "meets_threshold": true, + "raw_confidence": 0.9405 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9934, + "decision_phase": "research", + "subtype": "follow_up", + "summary": "Classified as ambiguous intent with subtype follow_up in the research phase.", + "type": "ambiguous" + } + }, + "fallback": { + "applied": true, + "failed_components": [], + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "ambiguous_query" + } + }, + "system_decision": { + "intent_trajectory": [ + "research" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "fallback_ambiguous_intent", + "eligibility_reason": "ambiguous_query", + "monetization_eligibility": "not_allowed", + "regulated_vertical": false, + "sensitivity": "medium" + } + } + } + }, + { + "expected_behavior": "Should currently fall back because the prompt is short and context-dependent.", + "input": "What about pricing", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7779, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "52", + "label": "Business and Finance" + }, + "tier2": { + "id": "53", + "label": "Business" + } + }, + "intent": { + "commercial_score": 0.165, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9888, + "confidence_threshold": 0.22, + "label": "research", + "meets_threshold": true, + "raw_confidence": 0.9639 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9487, + "confidence_threshold": 0.25, + "label": "follow_up", + "meets_threshold": true, + "raw_confidence": 0.9487 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9916, + "confidence_threshold": 0.4, + "label": "ambiguous", + "meets_threshold": true, + "raw_confidence": 0.9321 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9888, + "decision_phase": "research", + "subtype": "follow_up", + "summary": "Classified as ambiguous intent with subtype follow_up in the research phase.", + "type": "ambiguous" + } + }, + "fallback": { + "applied": true, + "failed_components": [], + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "ambiguous_query" + } + }, + "system_decision": { + "intent_trajectory": [ + "research" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "fallback_ambiguous_intent", + "eligibility_reason": "ambiguous_query", + "monetization_eligibility": "not_allowed", + "regulated_vertical": false, + "sensitivity": "medium" + } + } + } + }, + { + "expected_behavior": "Should preserve transactional intent even though the phase is still noisy and fallback remains active.", + "input": "Sign me up for the newsletter", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.7753, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "619", + "label": "Internet" + }, + "tier4": { + "id": "623", + "label": "Email" + } + }, + "intent": { + "commercial_score": 0.954, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9991, + "confidence_threshold": 0.22, + "label": "action", + "meets_threshold": true, + "raw_confidence": 0.9948 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.8874, + "confidence_threshold": 0.25, + "label": "signup", + "meets_threshold": true, + "raw_confidence": 0.8874 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9996, + "confidence_threshold": 0.4, + "label": "transactional", + "meets_threshold": true, + "raw_confidence": 0.9908 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.8874, + "decision_phase": "action", + "subtype": "signup", + "summary": "Classified as transactional intent with subtype signup in the action phase.", + "type": "transactional" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "action" + ], + "opportunity": { + "strength": "high", + "type": "transaction_trigger" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "high_intent_subtype_signal", + "monetization_eligibility": "allowed", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should behave like a commercial comparison in the middle of the buying journey and still fail safe if confidence is low.", + "input": "Compare AI search monetization platforms for publishers", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8626, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "619", + "label": "Internet" + }, + "tier4": { + "id": "627", + "label": "Search" + } + }, + "intent": { + "commercial_score": 0.728, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9966, + "confidence_threshold": 0.22, + "label": "consideration", + "meets_threshold": true, + "raw_confidence": 0.9852 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9415, + "confidence_threshold": 0.25, + "label": "comparison", + "meets_threshold": true, + "raw_confidence": 0.9415 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9994, + "confidence_threshold": 0.4, + "label": "commercial", + "meets_threshold": true, + "raw_confidence": 0.9884 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9415, + "decision_phase": "consideration", + "subtype": "comparison", + "summary": "Classified as commercial intent with subtype comparison in the consideration phase.", + "type": "commercial" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "consideration" + ], + "opportunity": { + "strength": "high", + "type": "comparison_slot" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "commercial_comparison_signal_present", + "monetization_eligibility": "allowed_with_caution", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + }, + { + "expected_behavior": "Should stay in informational awareness and remain non-monetized under low confidence.", + "input": "Why do businesses use CRM systems?", + "response": { + "meta": { + "calibration_enabled": true, + "system_version": "0.6.0-phase4" + }, + "model_output": { + "classification": { + "iab_content": { + "mapping_confidence": 0.8741, + "mapping_mode": "nearest_equivalent", + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": { + "id": "596", + "label": "Technology & Computing" + }, + "tier2": { + "id": "599", + "label": "Computing" + }, + "tier3": { + "id": "619", + "label": "Internet" + }, + "tier4": { + "id": "620", + "label": "Cloud Computing" + } + }, + "intent": { + "commercial_score": 0.0875, + "component_confidence": { + "decision_phase": { + "calibrated": true, + "confidence": 0.9939, + "confidence_threshold": 0.22, + "label": "awareness", + "meets_threshold": true, + "raw_confidence": 0.9764 + }, + "intent_subtype": { + "calibrated": true, + "confidence": 0.9545, + "confidence_threshold": 0.25, + "label": "education", + "meets_threshold": true, + "raw_confidence": 0.9545 + }, + "intent_type": { + "calibrated": true, + "confidence": 0.9964, + "confidence_threshold": 0.4, + "label": "informational", + "meets_threshold": true, + "raw_confidence": 0.961 + }, + "overall_strategy": "min_required_component_confidence" + }, + "confidence": 0.9939, + "decision_phase": "awareness", + "subtype": "education", + "summary": "Classified as informational intent with subtype education in the awareness phase.", + "type": "informational" + } + }, + "fallback": null + }, + "system_decision": { + "intent_trajectory": [ + "awareness" + ], + "opportunity": { + "strength": "low", + "type": "none" + }, + "policy": { + "applied_thresholds": { + "commercial_score_min": 0.6, + "decision_phase_confidence_min": 0.22, + "intent_subtype_confidence_min": 0.25, + "intent_type_confidence_min": 0.4 + }, + "decision_basis": "score_threshold", + "eligibility_reason": "commercial_signal_below_threshold", + "monetization_eligibility": "restricted", + "regulated_vertical": false, + "sensitivity": "low" + } + } + } + } +] diff --git a/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_confusion_matrix.csv b/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8827e9780329754ce9f759db095bf156ff49349 --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_confusion_matrix.csv @@ -0,0 +1,8 @@ +,awareness,research,consideration,decision,action,post_purchase,support +awareness,14,1,0,0,0,0,0 +research,0,14,0,0,0,1,0 +consideration,0,1,14,0,0,0,0 +decision,0,0,0,15,0,0,0 +action,0,0,0,1,13,1,0 +post_purchase,0,0,0,0,0,15,0 +support,0,0,0,0,0,0,15 diff --git a/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_report.json b/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c93729d076c04cbc93fc8410157d5f178753b06a --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_report.json @@ -0,0 +1,95 @@ +{ + "accepted_accuracy": 0.9524, + "accepted_coverage": 1.0, + "accuracy": 0.9524, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_confusion_matrix.csv", + "count": 105, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.9714, + "accepted_coverage": 1.0, + "accuracy": 0.9714, + "count": 35, + "fallback_rate": 0.0, + "macro_f1": 0.9711 + }, + "hard": { + "accepted_accuracy": 0.8857, + "accepted_coverage": 1.0, + "accuracy": 0.8857, + "count": 35, + "fallback_rate": 0.0, + "macro_f1": 0.883 + }, + "medium": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "count": 35, + "fallback_rate": 0.0, + "macro_f1": 1.0 + } + }, + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.9526, + "per_class_metrics": { + "accuracy": 0.9523809523809523, + "action": { + "f1-score": 0.9285714285714286, + "precision": 1.0, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "awareness": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "consideration": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "decision": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "macro avg": { + "f1-score": 0.9525819504665047, + "precision": 0.9564075630252101, + "recall": 0.9523809523809523, + "support": 105.0 + }, + "post_purchase": { + "f1-score": 0.9375, + "precision": 0.8823529411764706, + "recall": 1.0, + "support": 15.0 + }, + "research": { + "f1-score": 0.9032258064516129, + "precision": 0.875, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "weighted avg": { + "f1-score": 0.9525819504665048, + "precision": 0.9564075630252101, + "recall": 0.9523809523809523, + "support": 105.0 + } + }, + "suite": "difficulty_benchmark" +} diff --git a/artifacts/evaluation/latest/decision_phase_final_wave_cases_confusion_matrix.csv b/artifacts/evaluation/latest/decision_phase_final_wave_cases_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..26b7a667817ece4414967a8b3a4de189f3aeaeda --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_final_wave_cases_confusion_matrix.csv @@ -0,0 +1,8 @@ +,awareness,research,consideration,decision,action,post_purchase,support +awareness,5,0,0,0,0,0,0 +research,1,3,0,0,0,0,0 +consideration,0,0,5,0,0,0,0 +decision,0,0,0,5,0,0,0 +action,0,0,0,0,0,0,0 +post_purchase,0,0,0,0,0,4,0 +support,0,0,0,0,0,0,4 diff --git a/artifacts/evaluation/latest/decision_phase_final_wave_cases_report.json b/artifacts/evaluation/latest/decision_phase_final_wave_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cb57e964bde69b8af52a59922b1fa9d646c81b7d --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_final_wave_cases_report.json @@ -0,0 +1,69 @@ +{ + "accepted_accuracy": 0.963, + "accepted_coverage": 1.0, + "accuracy": 0.963, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_final_wave_cases_confusion_matrix.csv", + "count": 27, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/final_wave_cases.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.961, + "per_class_metrics": { + "accuracy": 0.9629629629629629, + "action": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "awareness": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "consideration": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "macro avg": { + "f1-score": 0.823747680890538, + "precision": 0.8333333333333334, + "recall": 0.8214285714285714, + "support": 27.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "research": { + "f1-score": 0.8571428571428571, + "precision": 1.0, + "recall": 0.75, + "support": 4.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "weighted avg": { + "f1-score": 0.962000962000962, + "precision": 0.9691358024691359, + "recall": 0.9629629629629629, + "support": 27.0 + } + }, + "suite": "final_wave_cases" +} diff --git a/artifacts/evaluation/latest/decision_phase_hard_cases_confusion_matrix.csv b/artifacts/evaluation/latest/decision_phase_hard_cases_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..b6a2b622d8019e7a6d1b4a5f88a3a70cdee65df4 --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_hard_cases_confusion_matrix.csv @@ -0,0 +1,8 @@ +,awareness,research,consideration,decision,action,post_purchase,support +awareness,6,0,0,0,0,0,0 +research,2,5,0,0,0,0,0 +consideration,0,1,6,0,0,0,0 +decision,0,0,0,7,0,0,0 +action,0,0,0,0,0,0,0 +post_purchase,0,0,0,0,0,6,0 +support,0,0,0,0,0,0,6 diff --git a/artifacts/evaluation/latest/decision_phase_hard_cases_report.json b/artifacts/evaluation/latest/decision_phase_hard_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5bae5f62a6e3570ac203ec04230b93786b0e0cde --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_hard_cases_report.json @@ -0,0 +1,69 @@ +{ + "accepted_accuracy": 0.9231, + "accepted_coverage": 1.0, + "accuracy": 0.9231, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_hard_cases_confusion_matrix.csv", + "count": 39, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.9249, + "per_class_metrics": { + "accuracy": 0.9230769230769231, + "action": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "awareness": { + "f1-score": 0.8571428571428571, + "precision": 0.75, + "recall": 1.0, + "support": 6.0 + }, + "consideration": { + "f1-score": 0.9230769230769231, + "precision": 1.0, + "recall": 0.8571428571428571, + "support": 7.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 7.0 + }, + "macro avg": { + "f1-score": 0.792778649921507, + "precision": 0.7976190476190477, + "recall": 0.7959183673469388, + "support": 39.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "research": { + "f1-score": 0.7692307692307693, + "precision": 0.8333333333333334, + "recall": 0.7142857142857143, + "support": 7.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "weighted avg": { + "f1-score": 0.9227951535643845, + "precision": 0.9316239316239316, + "recall": 0.9230769230769231, + "support": 39.0 + } + }, + "suite": "hard_cases" +} diff --git a/artifacts/evaluation/latest/decision_phase_test_confusion_matrix.csv b/artifacts/evaluation/latest/decision_phase_test_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e023e835f3edaa09c791cadc5a5f4d34f7902a7 --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_test_confusion_matrix.csv @@ -0,0 +1,8 @@ +,awareness,research,consideration,decision,action,post_purchase,support +awareness,3,0,0,0,0,0,0 +research,3,2,0,0,0,0,0 +consideration,0,1,4,0,0,0,0 +decision,0,0,0,5,0,0,0 +action,0,0,0,0,3,0,0 +post_purchase,0,0,0,0,0,4,0 +support,0,0,0,0,0,0,4 diff --git a/artifacts/evaluation/latest/decision_phase_test_report.json b/artifacts/evaluation/latest/decision_phase_test_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bdee435efc0a3b290ed656729099f91785a878ac --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_test_report.json @@ -0,0 +1,69 @@ +{ + "accepted_accuracy": 0.8621, + "accepted_coverage": 1.0, + "accuracy": 0.8621, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_test_confusion_matrix.csv", + "count": 29, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/test.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.8651, + "per_class_metrics": { + "accuracy": 0.8620689655172413, + "action": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "awareness": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 3.0 + }, + "consideration": { + "f1-score": 0.8888888888888888, + "precision": 1.0, + "recall": 0.8, + "support": 5.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "macro avg": { + "f1-score": 0.865079365079365, + "precision": 0.8809523809523808, + "recall": 0.8857142857142858, + "support": 29.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "research": { + "f1-score": 0.5, + "precision": 0.6666666666666666, + "recall": 0.4, + "support": 5.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "weighted avg": { + "f1-score": 0.8601532567049808, + "precision": 0.8908045977011494, + "recall": 0.8620689655172413, + "support": 29.0 + } + }, + "suite": "test" +} diff --git a/artifacts/evaluation/latest/decision_phase_train_confusion_matrix.csv b/artifacts/evaluation/latest/decision_phase_train_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..43f500fa605280ea54e82f7a647ec0a86be353c6 --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_train_confusion_matrix.csv @@ -0,0 +1,8 @@ +,awareness,research,consideration,decision,action,post_purchase,support +awareness,16,0,0,0,0,0,0 +research,1,14,0,0,0,0,0 +consideration,0,0,17,0,0,0,0 +decision,0,0,0,16,0,0,0 +action,0,0,0,0,10,0,0 +post_purchase,0,0,0,0,0,14,0 +support,0,0,0,0,0,0,14 diff --git a/artifacts/evaluation/latest/decision_phase_train_report.json b/artifacts/evaluation/latest/decision_phase_train_report.json new file mode 100644 index 0000000000000000000000000000000000000000..027e36871a50d40370fe7ae7dac30585c010adbf --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_train_report.json @@ -0,0 +1,69 @@ +{ + "accepted_accuracy": 0.9902, + "accepted_coverage": 1.0, + "accuracy": 0.9902, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_train_confusion_matrix.csv", + "count": 102, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/train.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.9907, + "per_class_metrics": { + "accuracy": 0.9901960784313726, + "action": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "awareness": { + "f1-score": 0.9696969696969697, + "precision": 0.9411764705882353, + "recall": 1.0, + "support": 16.0 + }, + "consideration": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 17.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 16.0 + }, + "macro avg": { + "f1-score": 0.9907448872966115, + "precision": 0.9915966386554622, + "recall": 0.9904761904761905, + "support": 102.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "research": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "weighted avg": { + "f1-score": 0.9901755895670704, + "precision": 0.9907727797001153, + "recall": 0.9901960784313726, + "support": 102.0 + } + }, + "suite": "train" +} diff --git a/artifacts/evaluation/latest/decision_phase_val_confusion_matrix.csv b/artifacts/evaluation/latest/decision_phase_val_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..ef673ac7607122b6d8f5bf45eaa814fdc3d49bb1 --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_val_confusion_matrix.csv @@ -0,0 +1,8 @@ +,awareness,research,consideration,decision,action,post_purchase,support +awareness,5,0,0,0,0,0,0 +research,1,3,0,0,0,0,0 +consideration,0,0,5,0,0,0,0 +decision,0,0,1,3,0,0,0 +action,0,0,0,0,3,0,0 +post_purchase,0,1,0,0,0,3,0 +support,0,0,0,0,0,0,4 diff --git a/artifacts/evaluation/latest/decision_phase_val_report.json b/artifacts/evaluation/latest/decision_phase_val_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68978875f544d03dbc1cd5d780ee2d0b9c712b96 --- /dev/null +++ b/artifacts/evaluation/latest/decision_phase_val_report.json @@ -0,0 +1,69 @@ +{ + "accepted_accuracy": 0.8966, + "accepted_coverage": 1.0, + "accuracy": 0.8966, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_val_confusion_matrix.csv", + "count": 29, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/val.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.8975, + "per_class_metrics": { + "accuracy": 0.896551724137931, + "action": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "awareness": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "consideration": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "decision": { + "f1-score": 0.8571428571428571, + "precision": 1.0, + "recall": 0.75, + "support": 4.0 + }, + "macro avg": { + "f1-score": 0.8974953617810761, + "precision": 0.9166666666666667, + "recall": 0.8928571428571429, + "support": 29.0 + }, + "post_purchase": { + "f1-score": 0.8571428571428571, + "precision": 1.0, + "recall": 0.75, + "support": 4.0 + }, + "research": { + "f1-score": 0.75, + "precision": 0.75, + "recall": 0.75, + "support": 4.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "weighted avg": { + "f1-score": 0.8947604120017911, + "precision": 0.9080459770114944, + "recall": 0.896551724137931, + "support": 29.0 + } + }, + "suite": "val" +} diff --git a/artifacts/evaluation/latest/iab_behavior_lock_regression.json b/artifacts/evaluation/latest/iab_behavior_lock_regression.json new file mode 100644 index 0000000000000000000000000000000000000000..73e85a68428098c300d2875117a918e8ab00813b --- /dev/null +++ b/artifacts/evaluation/latest/iab_behavior_lock_regression.json @@ -0,0 +1,245 @@ +{ + "by_status": { + "must_fix": { + "failed": 0, + "passed": 12, + "total": 12 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_behavior_lock_cases.json", + "count": 12, + "failed": 0, + "passed": 12, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "id": "car-buying-maps-to-automotive-buying", + "mismatches": [], + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "pass": true, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptop-buying-maps-to-laptops", + "mismatches": [], + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "pass": true, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "labtop-buying-maps-to-laptops", + "mismatches": [], + "notes": "Common typo handling should still land in the laptops branch.", + "pass": true, + "status": "must_fix", + "text": "Which labtop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "crm-awareness-maps-to-sales", + "mismatches": [], + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "crm-comparison-maps-to-sales", + "mismatches": [], + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "marketing-tools-map-to-marketing", + "mismatches": [], + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "pass": true, + "status": "must_fix", + "text": "Best AI SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "id": "ml-explanation-maps-to-ai", + "mismatches": [], + "notes": "ML and NLP educational prompts should land in the AI branch.", + "pass": true, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "support-credential-help-maps-to-business-it", + "mismatches": [], + "notes": "Credential and account help should map to business IT rather than generic business.", + "pass": true, + "status": "must_fix", + "text": "How do I reset my password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "restaurant-booking-maps-to-dining-out", + "mismatches": [], + "notes": "Generic dining requests should not inherit the repo's business default.", + "pass": true, + "status": "must_fix", + "text": "Book a table for 2 tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "id": "trial-signup-maps-to-software", + "mismatches": [], + "notes": "Software action queries should map to the software/application branch.", + "pass": true, + "status": "must_fix", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-maps-to-tier4", + "mismatches": [], + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "pass": true, + "status": "must_fix", + "text": "best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "vodka-query-maps-to-alcoholic-beverages", + "mismatches": [], + "notes": "Food and beverage prompts should not fall through to the business default.", + "pass": true, + "status": "must_fix", + "text": "what is best vodka drink should i try" + } + ] +} diff --git a/artifacts/evaluation/latest/iab_content_cross_vertical_benchmark_report.json b/artifacts/evaluation/latest/iab_content_cross_vertical_benchmark_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8d9987374ac6aaef210472cf94d7485ef867985d --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_cross_vertical_benchmark_report.json @@ -0,0 +1,93 @@ +{ + "accepted_accuracy": 0.3444, + "accepted_coverage": 1.0, + "accuracy": 0.3444, + "count": 90, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab_cross_vertical_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.2667, + "accepted_coverage": 1.0, + "accuracy": 0.2667, + "count": 30, + "fallback_rate": 0.0, + "macro_f1": 0.1633 + }, + "hard": { + "accepted_accuracy": 0.3667, + "accepted_coverage": 1.0, + "accuracy": 0.3667, + "count": 30, + "fallback_rate": 0.0, + "macro_f1": 0.2174 + }, + "medium": { + "accepted_accuracy": 0.4, + "accepted_coverage": 1.0, + "accuracy": 0.4, + "count": 30, + "fallback_rate": 0.0, + "macro_f1": 0.2667 + } + }, + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1808, + "primary_source": "embedding_retrieval", + "suite": "cross_vertical_benchmark", + "tier_metrics": { + "average_prediction_depth": 2.5333, + "error_buckets": { + "exact_match": 31, + "parent_safe_stop": 5, + "right_tier1_wrong_tier2": 19, + "wrong_deep_leaf": 13, + "wrong_tier1": 22 + }, + "exact_path_accuracy": 0.3444, + "parent_safe_accuracy": 0.4889, + "tier1_accuracy": 0.7556, + "tier2_accuracy": 0.5238, + "tier3_accuracy": 0.4762, + "tier4_accuracy": 1.0 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.5333, + "error_buckets": { + "exact_match": 27, + "parent_safe_stop": 5, + "right_tier1_wrong_tier2": 19, + "wrong_deep_leaf": 17, + "wrong_tier1": 22 + }, + "exact_path_accuracy": 0.3, + "fallback_overuse_count": 12, + "fallback_rate": 0.1333, + "parent_safe_accuracy": 0.4444, + "tier1_accuracy": 0.7556, + "tier2_accuracy": 0.5238, + "tier3_accuracy": 0.381, + "tier4_accuracy": 0.5 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.5333, + "error_buckets": { + "exact_match": 27, + "parent_safe_stop": 5, + "right_tier1_wrong_tier2": 19, + "wrong_deep_leaf": 17, + "wrong_tier1": 22 + }, + "exact_path_accuracy": 0.3, + "parent_safe_accuracy": 0.4444, + "tier1_accuracy": 0.7556, + "tier2_accuracy": 0.5238, + "tier3_accuracy": 0.381, + "tier4_accuracy": 0.5 + } + } +} diff --git a/artifacts/evaluation/latest/iab_content_difficulty_benchmark_report.json b/artifacts/evaluation/latest/iab_content_difficulty_benchmark_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d3b5d207fb3fa86c57663572a73345410b260236 --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_difficulty_benchmark_report.json @@ -0,0 +1,93 @@ +{ + "accepted_accuracy": 0.3782, + "accepted_coverage": 1.0, + "accuracy": 0.3782, + "count": 156, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.4038, + "accepted_coverage": 1.0, + "accuracy": 0.4038, + "count": 52, + "fallback_rate": 0.0, + "macro_f1": 0.2171 + }, + "hard": { + "accepted_accuracy": 0.3077, + "accepted_coverage": 1.0, + "accuracy": 0.3077, + "count": 52, + "fallback_rate": 0.0, + "macro_f1": 0.1626 + }, + "medium": { + "accepted_accuracy": 0.4231, + "accepted_coverage": 1.0, + "accuracy": 0.4231, + "count": 52, + "fallback_rate": 0.0, + "macro_f1": 0.2265 + } + }, + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1593, + "primary_source": "embedding_retrieval", + "suite": "difficulty_benchmark", + "tier_metrics": { + "average_prediction_depth": 2.5833, + "error_buckets": { + "exact_match": 59, + "parent_safe_stop": 17, + "right_tier1_wrong_tier2": 42, + "wrong_deep_leaf": 13, + "wrong_tier1": 25 + }, + "exact_path_accuracy": 0.3782, + "parent_safe_accuracy": 0.6154, + "tier1_accuracy": 0.8397, + "tier2_accuracy": 0.5705, + "tier3_accuracy": 0.5648, + "tier4_accuracy": 0.5833 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.5833, + "error_buckets": { + "exact_match": 48, + "parent_safe_stop": 17, + "right_tier1_wrong_tier2": 42, + "wrong_deep_leaf": 24, + "wrong_tier1": 25 + }, + "exact_path_accuracy": 0.3077, + "fallback_overuse_count": 11, + "fallback_rate": 0.0705, + "parent_safe_accuracy": 0.5449, + "tier1_accuracy": 0.8397, + "tier2_accuracy": 0.5705, + "tier3_accuracy": 0.4352, + "tier4_accuracy": 0.25 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.5833, + "error_buckets": { + "exact_match": 48, + "parent_safe_stop": 17, + "right_tier1_wrong_tier2": 42, + "wrong_deep_leaf": 24, + "wrong_tier1": 25 + }, + "exact_path_accuracy": 0.3077, + "parent_safe_accuracy": 0.5449, + "tier1_accuracy": 0.8397, + "tier2_accuracy": 0.5705, + "tier3_accuracy": 0.4352, + "tier4_accuracy": 0.25 + } + } +} diff --git a/artifacts/evaluation/latest/iab_content_extended_cases_report.json b/artifacts/evaluation/latest/iab_content_extended_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b8ab0b46884b6ef25b21f7464a5c39d760156279 --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_extended_cases_report.json @@ -0,0 +1,64 @@ +{ + "accepted_accuracy": 0.25, + "accepted_coverage": 1.0, + "accuracy": 0.25, + "count": 8, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/extended_cases.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1429, + "primary_source": "embedding_retrieval", + "suite": "extended_cases", + "tier_metrics": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "right_tier1_wrong_tier2": 3, + "wrong_deep_leaf": 2, + "wrong_tier1": 1 + }, + "exact_path_accuracy": 0.25, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.875, + "tier2_accuracy": 0.4286, + "tier3_accuracy": 1.0, + "tier4_accuracy": 0.0 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "right_tier1_wrong_tier2": 3, + "wrong_deep_leaf": 2, + "wrong_tier1": 1 + }, + "exact_path_accuracy": 0.25, + "fallback_overuse_count": 1, + "fallback_rate": 0.125, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.875, + "tier2_accuracy": 0.4286, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "right_tier1_wrong_tier2": 3, + "wrong_deep_leaf": 2, + "wrong_tier1": 1 + }, + "exact_path_accuracy": 0.25, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.875, + "tier2_accuracy": 0.4286, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + } + } +} diff --git a/artifacts/evaluation/latest/iab_content_hard_cases_report.json b/artifacts/evaluation/latest/iab_content_hard_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4870a56d065e7ff08c1c160cc6f5c6b0a457a3c8 --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_hard_cases_report.json @@ -0,0 +1,66 @@ +{ + "accepted_accuracy": 0.25, + "accepted_coverage": 1.0, + "accuracy": 0.25, + "count": 8, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1429, + "primary_source": "embedding_retrieval", + "suite": "hard_cases", + "tier_metrics": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "parent_safe_stop": 1, + "right_tier1_wrong_tier2": 2, + "wrong_tier1": 3 + }, + "exact_path_accuracy": 0.25, + "parent_safe_accuracy": 0.5, + "tier1_accuracy": 0.625, + "tier2_accuracy": 0.375, + "tier3_accuracy": 0.2, + "tier4_accuracy": 1.0 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 1, + "parent_safe_stop": 1, + "right_tier1_wrong_tier2": 2, + "wrong_deep_leaf": 1, + "wrong_tier1": 3 + }, + "exact_path_accuracy": 0.125, + "fallback_overuse_count": 1, + "fallback_rate": 0.125, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.625, + "tier2_accuracy": 0.375, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 1, + "parent_safe_stop": 1, + "right_tier1_wrong_tier2": 2, + "wrong_deep_leaf": 1, + "wrong_tier1": 3 + }, + "exact_path_accuracy": 0.125, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.625, + "tier2_accuracy": 0.375, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + } + } +} diff --git a/artifacts/evaluation/latest/iab_content_test_report.json b/artifacts/evaluation/latest/iab_content_test_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e9683ebdb2de7834b92081a4d4b4f07ccb43ca1a --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_test_report.json @@ -0,0 +1,58 @@ +{ + "accepted_accuracy": 0.6527, + "accepted_coverage": 1.0, + "accuracy": 0.6527, + "count": 3282, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/test.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.6922, + "primary_source": "embedding_retrieval", + "suite": "test", + "tier_metrics": { + "average_prediction_depth": 2.1889, + "error_buckets": { + "exact_match": 2142, + "parent_safe_stop": 115, + "right_tier1_wrong_tier2": 674, + "wrong_deep_leaf": 236, + "wrong_tier1": 115 + }, + "exact_path_accuracy": 0.6527, + "parent_safe_accuracy": 0.7721, + "tier1_accuracy": 0.965, + "tier2_accuracy": 0.7587, + "tier3_accuracy": 0.8041, + "tier4_accuracy": 0.7929 + }, + "view_metrics": { + "combined_path": { + "count": 3282, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "disagreements": { + "count": 3282, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "embedding_retrieval": { + "average_prediction_depth": 2.1889, + "error_buckets": { + "exact_match": 2107, + "parent_safe_stop": 109, + "right_tier1_wrong_tier2": 680, + "wrong_deep_leaf": 271, + "wrong_tier1": 115 + }, + "exact_path_accuracy": 0.642, + "parent_safe_accuracy": 0.7596, + "tier1_accuracy": 0.965, + "tier2_accuracy": 0.7566, + "tier3_accuracy": 0.7679, + "tier4_accuracy": 0.6071 + } + } +} diff --git a/artifacts/evaluation/latest/iab_content_train_report.json b/artifacts/evaluation/latest/iab_content_train_report.json new file mode 100644 index 0000000000000000000000000000000000000000..17a12e558d864fb6de25ce516aa4d27fd93b6fa6 --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_train_report.json @@ -0,0 +1,67 @@ +{ + "accepted_accuracy": 0.8115, + "accepted_coverage": 1.0, + "accuracy": 0.8115, + "count": 13211, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/train.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.8293, + "primary_source": "embedding_retrieval", + "suite": "train", + "tier_metrics": { + "average_prediction_depth": 2.2368, + "error_buckets": { + "exact_match": 10721, + "parent_safe_stop": 346, + "right_tier1_wrong_tier2": 812, + "wrong_deep_leaf": 809, + "wrong_tier1": 523 + }, + "exact_path_accuracy": 0.8115, + "parent_safe_accuracy": 0.8753, + "tier1_accuracy": 0.9604, + "tier2_accuracy": 0.9208, + "tier3_accuracy": 0.8788, + "tier4_accuracy": 0.8732 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.2368, + "error_buckets": { + "exact_match": 10569, + "parent_safe_stop": 338, + "right_tier1_wrong_tier2": 834, + "wrong_deep_leaf": 947, + "wrong_tier1": 523 + }, + "exact_path_accuracy": 0.8, + "fallback_overuse_count": 1123, + "fallback_rate": 0.085, + "parent_safe_accuracy": 0.8631, + "tier1_accuracy": 0.9604, + "tier2_accuracy": 0.9189, + "tier3_accuracy": 0.843, + "tier4_accuracy": 0.6589 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.2368, + "error_buckets": { + "exact_match": 10569, + "parent_safe_stop": 338, + "right_tier1_wrong_tier2": 834, + "wrong_deep_leaf": 947, + "wrong_tier1": 523 + }, + "exact_path_accuracy": 0.8, + "parent_safe_accuracy": 0.8631, + "tier1_accuracy": 0.9604, + "tier2_accuracy": 0.9189, + "tier3_accuracy": 0.843, + "tier4_accuracy": 0.6589 + } + } +} diff --git a/artifacts/evaluation/latest/iab_content_val_report.json b/artifacts/evaluation/latest/iab_content_val_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3c15b89dfde84d4abb48c287151b7575d2e4908a --- /dev/null +++ b/artifacts/evaluation/latest/iab_content_val_report.json @@ -0,0 +1,67 @@ +{ + "accepted_accuracy": 0.6545, + "accepted_coverage": 1.0, + "accuracy": 0.6545, + "count": 3282, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/val.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.6957, + "primary_source": "embedding_retrieval", + "suite": "val", + "tier_metrics": { + "average_prediction_depth": 2.1813, + "error_buckets": { + "exact_match": 2148, + "parent_safe_stop": 105, + "right_tier1_wrong_tier2": 684, + "wrong_deep_leaf": 234, + "wrong_tier1": 111 + }, + "exact_path_accuracy": 0.6545, + "parent_safe_accuracy": 0.7821, + "tier1_accuracy": 0.9662, + "tier2_accuracy": 0.7577, + "tier3_accuracy": 0.8352, + "tier4_accuracy": 0.7214 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.1813, + "error_buckets": { + "exact_match": 2116, + "parent_safe_stop": 100, + "right_tier1_wrong_tier2": 689, + "wrong_deep_leaf": 266, + "wrong_tier1": 111 + }, + "exact_path_accuracy": 0.6447, + "fallback_overuse_count": 413, + "fallback_rate": 0.1258, + "parent_safe_accuracy": 0.7709, + "tier1_accuracy": 0.9662, + "tier2_accuracy": 0.756, + "tier3_accuracy": 0.799, + "tier4_accuracy": 0.55 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.1813, + "error_buckets": { + "exact_match": 2116, + "parent_safe_stop": 100, + "right_tier1_wrong_tier2": 689, + "wrong_deep_leaf": 266, + "wrong_tier1": 111 + }, + "exact_path_accuracy": 0.6447, + "parent_safe_accuracy": 0.7709, + "tier1_accuracy": 0.9662, + "tier2_accuracy": 0.756, + "tier3_accuracy": 0.799, + "tier4_accuracy": 0.55 + } + } +} diff --git a/artifacts/evaluation/latest/iab_cross_vertical_behavior_lock_regression.json b/artifacts/evaluation/latest/iab_cross_vertical_behavior_lock_regression.json new file mode 100644 index 0000000000000000000000000000000000000000..41461a7cc899448c556bedc7342ec85bbea3fa12 --- /dev/null +++ b/artifacts/evaluation/latest/iab_cross_vertical_behavior_lock_regression.json @@ -0,0 +1,1731 @@ +{ + "by_status": { + "must_fix": { + "failed": 0, + "passed": 90, + "total": 90 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_cross_vertical_behavior_lock_cases.json", + "count": 90, + "failed": 0, + "passed": 90, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "id": "auto-buying-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "Which car should I buy for commuting?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "id": "auto-buying-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "Best used SUV for a family of four" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "id": "auto-buying-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "sales-crm-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "sales-crm-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "marketing-tools-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "Best SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "id": "marketing-tools-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "How should I compare ad attribution platforms?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "marketing-tools-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "business-it-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "How do I reset my work password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "business-it-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "business-it-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Book a table for six tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Which whiskey cocktail should I order?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Best vodka drinks for beginners" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "id": "artificial-intelligence-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "artificial-intelligence-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "How do large language models handle text classification?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "artificial-intelligence-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "id": "software-apps-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Best workflow software for a small operations team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + }, + "id": "software-apps-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Need project management software for a distributed team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Slack vs Teams for internal messaging" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Best hosting platform for a startup website" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Which laptop should I buy for college?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Best laptop for work and study under 1200" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "laptops-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + }, + "id": "desktops-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Best desktop for video editing" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + }, + "id": "smartphones-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Best phone with a good camera under 700" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "style-fashion-parent-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Best shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "style-fashion-parent-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "style-fashion-parent-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "womens-shoes-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "womens-shoes-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "id": "mens-shoes-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Best men's sneakers for daily wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "id": "mens-shoes-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Good men's dress shoes for office use" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + }, + "id": "hotels-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "id": "hotels-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "id": "real-estate-rentals-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Apartments for rent near downtown Austin" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "id": "real-estate-rentals-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + }, + "id": "real-estate-rentals-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "id": "running-and-jogging-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "Best running plan for a first 10k" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "How do offside rules work in soccer?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "Best soccer drills for beginner players" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports" + }, + "id": "soccer-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Recommend a good fantasy novel to read" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Best fiction books for a long flight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature" + }, + "id": "fiction-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "id": "home-improvement-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + }, + "id": "home-improvement-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "id": "home-improvement-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "online-education-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "Best online courses for learning Python" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "id": "online-education-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "What are good platforms for remote professional classes?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers" + }, + "id": "online-education-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "id": "postgraduate-education-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "best universities to study masters" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + }, + "id": "postgraduate-education-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "which graduate schools have strong data science programs" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "id": "postgraduate-education-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + }, + "id": "medical-health-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "what do these allergy symptoms mean" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + }, + "id": "medical-health-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + }, + "id": "medical-health-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "id": "careers-job-search-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "best remote jobs for data analysts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "careers-job-search-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "where should i look for product manager openings" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "id": "personal-finance-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "how much should i save each month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + }, + "id": "personal-finance-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "best budgeting approach for a growing family" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "id": "personal-finance-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "tips for parenting a toddler" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "how do i help my teenager spend less time online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + }, + "id": "parenting-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "need parenting advice for a child starting preschool" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "id": "gardening-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "best plants for a small balcony garden" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "how often should i water tomato plants" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "id": "gardening-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "What movie should we watch tonight?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + }, + "id": "movies-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "Best thriller movies from the last few years" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + }, + "id": "movies-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music" + } + ] +} diff --git a/artifacts/evaluation/latest/iab_cross_vertical_quality_target_eval.json b/artifacts/evaluation/latest/iab_cross_vertical_quality_target_eval.json new file mode 100644 index 0000000000000000000000000000000000000000..a44a44a29d122e8f45e8905395e3c24bc94392cb --- /dev/null +++ b/artifacts/evaluation/latest/iab_cross_vertical_quality_target_eval.json @@ -0,0 +1,2720 @@ +{ + "by_status": { + "must_fix": { + "failed": 86, + "passed": 4, + "total": 90 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_cross_vertical_mapping_cases.json", + "count": 90, + "failed": 86, + "passed": 4, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "auto-buying-easy", + "mismatches": [ + { + "actual": "Auto Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": false, + "status": "must_fix", + "text": "Which car should I buy for commuting?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "auto-buying-medium", + "mismatches": [ + { + "actual": "Auto Body Styles", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": false, + "status": "must_fix", + "text": "Best used SUV for a family of four" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "auto-buying-hard", + "mismatches": [ + { + "actual": "Auto Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": false, + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-easy", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "pass": false, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-medium", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "pass": false, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "pass": false, + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-easy", + "mismatches": [ + { + "actual": "Hobbies & Interests", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Content Production", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": false, + "status": "must_fix", + "text": "Best SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sensitive Topics", + "model_output.classification.iab_content.tier2.label": "Online Piracy", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-medium", + "mismatches": [ + { + "actual": "Sensitive Topics", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Online Piracy", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": false, + "status": "must_fix", + "text": "How should I compare ad attribution platforms?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Genres", + "model_output.classification.iab_content.tier2.label": "Talk Radio", + "model_output.classification.iab_content.tier3.label": "Public Radio" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-hard", + "mismatches": [ + { + "actual": "Genres", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Talk Radio", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Public Radio", + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": false, + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "business-it-easy", + "mismatches": [ + { + "actual": "Careers", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Job Search", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": false, + "status": "must_fix", + "text": "How do I reset my work password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "business-it-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": false, + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "business-it-hard", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": false, + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Table Tennis" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-easy", + "mismatches": [ + { + "actual": "Sports", + "expected": "Food & Drink", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Table Tennis", + "expected": "Dining Out", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "pass": false, + "status": "must_fix", + "text": "Book a table for six tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Attractions", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-medium", + "mismatches": [ + { + "actual": "Attractions", + "expected": "Food & Drink", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Dining Out", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "pass": false, + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Dining Out", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "pass": false, + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "alcoholic-beverages-easy", + "mismatches": [ + { + "actual": "Style & Fashion", + "expected": "Food & Drink", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": false, + "status": "must_fix", + "text": "Which whiskey cocktail should I order?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "alcoholic-beverages-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": false, + "status": "must_fix", + "text": "Best vodka drinks for beginners" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "alcoholic-beverages-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": false, + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sensitive Topics", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "artificial-intelligence-easy", + "mismatches": [ + { + "actual": "Sensitive Topics", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": false, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sensitive Topics", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "artificial-intelligence-medium", + "mismatches": [ + { + "actual": "Sensitive Topics", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": false, + "status": "must_fix", + "text": "How do large language models handle text classification?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "artificial-intelligence-hard", + "mismatches": [ + { + "actual": "Education", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Language Learning", + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": false, + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": false, + "status": "must_fix", + "text": "Best workflow software for a small operations team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": false, + "status": "must_fix", + "text": "Need project management software for a distributed team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": false, + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working", + "model_output.classification.iab_content.tier3.label": null, + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-easy", + "mismatches": [ + { + "actual": "Careers", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remote Working", + "expected": "Computing", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": null, + "expected": "Communication", + "path": "model_output.classification.iab_content.tier4.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": false, + "status": "must_fix", + "text": "Best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Internet", + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": null, + "expected": "Communication", + "path": "model_output.classification.iab_content.tier4.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": false, + "status": "must_fix", + "text": "Slack vs Teams for internal messaging" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working", + "model_output.classification.iab_content.tier3.label": null, + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-hard", + "mismatches": [ + { + "actual": "Careers", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remote Working", + "expected": "Computing", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": null, + "expected": "Communication", + "path": "model_output.classification.iab_content.tier4.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": false, + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": null, + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Internet", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": null, + "expected": "Web Hosting", + "path": "model_output.classification.iab_content.tier4.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": false, + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Web Hosting", + "path": "model_output.classification.iab_content.tier4.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": false, + "status": "must_fix", + "text": "Best hosting platform for a startup website" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Web Hosting", + "path": "model_output.classification.iab_content.tier4.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": false, + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": false, + "status": "must_fix", + "text": "Which laptop should I buy for college?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": false, + "status": "must_fix", + "text": "Best laptop for work and study under 1200" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": false, + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Software and Applications", + "expected": "Desktops", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": false, + "status": "must_fix", + "text": "Best desktop for video editing" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Software and Applications", + "expected": "Desktops", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": false, + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Desktops", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": false, + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Smartphones", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": false, + "status": "must_fix", + "text": "Best phone with a good camera under 700" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Smartphones", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": false, + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": false, + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "id": "style-fashion-parent-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Best shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "id": "style-fashion-parent-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "id": "style-fashion-parent-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Best men's sneakers for daily wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Good men's dress shoes for office use" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Attractions", + "model_output.classification.iab_content.tier2.label": "Nightclubs", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-easy", + "mismatches": [ + { + "actual": "Attractions", + "expected": "Travel", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Nightclubs", + "expected": "Travel Type", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Hotels and Motels", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": false, + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Hotels and Motels", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": false, + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": null, + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Travel Type", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Hotels and Motels", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": false, + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + }, + "id": "real-estate-rentals-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Apartments", + "expected": "Real Estate Renting and Leasing", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": false, + "status": "must_fix", + "text": "Apartments for rent near downtown Austin" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + }, + "id": "real-estate-rentals-medium", + "mismatches": [ + { + "actual": "Apartments", + "expected": "Real Estate Renting and Leasing", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": false, + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + }, + "id": "real-estate-rentals-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Real Estate Renting and Leasing", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": false, + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": false, + "status": "must_fix", + "text": "Best running plan for a first 10k" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": false, + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": false, + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Australian Rules Football" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Australian Rules Football", + "expected": "Soccer", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "pass": false, + "status": "must_fix", + "text": "How do offside rules work in soccer?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Soccer", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "pass": false, + "status": "must_fix", + "text": "Best soccer drills for beginner players" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Fantasy Sports" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Fantasy Sports", + "expected": "Soccer", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "pass": false, + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Genres", + "model_output.classification.iab_content.tier2.label": "Fantasy" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-easy", + "mismatches": [ + { + "actual": "Genres", + "expected": "Books and Literature", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Fantasy", + "expected": "Fiction", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "pass": false, + "status": "must_fix", + "text": "Recommend a good fantasy novel to read" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Best fiction books for a long flight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Comics and Graphic Novels" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Comics and Graphic Novels", + "expected": "Fiction", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "pass": false, + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + }, + "id": "home-improvement-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remodeling & Construction", + "expected": "Home Improvement", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "pass": false, + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + }, + "id": "home-improvement-medium", + "mismatches": [ + { + "actual": "Style & Fashion", + "expected": "Home & Garden", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Personal Care", + "expected": "Home Improvement", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "pass": false, + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + }, + "id": "home-improvement-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Interior Decorating", + "expected": "Home Improvement", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "pass": false, + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "id": "online-education-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "pass": false, + "status": "must_fix", + "text": "Best online courses for learning Python" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "id": "online-education-medium", + "mismatches": [ + { + "actual": "Careers", + "expected": "Education", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remote Working", + "expected": "Online Education", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "pass": false, + "status": "must_fix", + "text": "What are good platforms for remote professional classes?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "id": "online-education-hard", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Education", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Online Education", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "pass": false, + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "id": "postgraduate-education-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": false, + "status": "must_fix", + "text": "best universities to study masters" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "id": "postgraduate-education-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": false, + "status": "must_fix", + "text": "which graduate schools have strong data science programs" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "id": "postgraduate-education-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": false, + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "id": "medical-health-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "pass": false, + "status": "must_fix", + "text": "what do these allergy symptoms mean" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "id": "medical-health-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "pass": false, + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "id": "medical-health-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "pass": false, + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remote Working", + "expected": "Job Search", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "pass": false, + "status": "must_fix", + "text": "best remote jobs for data analysts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Industries" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-medium", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Careers", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Industries", + "expected": "Job Search", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "pass": false, + "status": "must_fix", + "text": "where should i look for product manager openings" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Industries" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-hard", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Careers", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Industries", + "expected": "Job Search", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "pass": false, + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + }, + "id": "personal-finance-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Financial Planning", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "pass": false, + "status": "must_fix", + "text": "how much should i save each month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + }, + "id": "personal-finance-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Financial Planning", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "pass": false, + "status": "must_fix", + "text": "best budgeting approach for a growing family" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + }, + "id": "personal-finance-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Retirement Planning", + "expected": "Financial Planning", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "pass": false, + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "pass": false, + "status": "must_fix", + "text": "tips for parenting a toddler" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-medium", + "mismatches": [ + { + "actual": "Education", + "expected": "Family and Relationships", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Online Education", + "expected": "Parenting", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "pass": false, + "status": "must_fix", + "text": "how do i help my teenager spend less time online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "pass": false, + "status": "must_fix", + "text": "need parenting advice for a child starting preschool" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "pass": false, + "status": "must_fix", + "text": "best plants for a small balcony garden" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-medium", + "mismatches": [ + { + "actual": "Personal Finance", + "expected": "Home & Garden", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Gardening", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "pass": false, + "status": "must_fix", + "text": "how often should i water tomato plants" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Gardening", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "pass": false, + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Genres", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-easy", + "mismatches": [ + { + "actual": "Genres", + "expected": "Entertainment", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Movies", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "pass": false, + "status": "must_fix", + "text": "What movie should we watch tonight?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Genres", + "model_output.classification.iab_content.tier2.label": "Horror" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-medium", + "mismatches": [ + { + "actual": "Genres", + "expected": "Entertainment", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Horror", + "expected": "Movies", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "pass": false, + "status": "must_fix", + "text": "Best thriller movies from the last few years" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Music", + "expected": "Movies", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "pass": false, + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music" + } + ] +} diff --git a/artifacts/evaluation/latest/iab_cross_vertical_regression.json b/artifacts/evaluation/latest/iab_cross_vertical_regression.json new file mode 100644 index 0000000000000000000000000000000000000000..736176f174b74238fccc099fca521822ddea1ee5 --- /dev/null +++ b/artifacts/evaluation/latest/iab_cross_vertical_regression.json @@ -0,0 +1,1731 @@ +{ + "by_status": { + "must_fix": { + "failed": 0, + "passed": 90, + "total": 90 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_cross_vertical_mapping_cases.json", + "count": 90, + "failed": 0, + "passed": 90, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "id": "auto-buying-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "Which car should I buy for commuting?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "id": "auto-buying-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "Best used SUV for a family of four" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "id": "auto-buying-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "sales-crm-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "sales-crm-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "marketing-tools-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "Best SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "id": "marketing-tools-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "How should I compare ad attribution platforms?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "marketing-tools-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "business-it-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "How do I reset my work password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "business-it-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "business-it-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Book a table for six tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Which whiskey cocktail should I order?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Best vodka drinks for beginners" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "id": "artificial-intelligence-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "artificial-intelligence-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "How do large language models handle text classification?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "artificial-intelligence-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "id": "software-apps-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Best workflow software for a small operations team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + }, + "id": "software-apps-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Need project management software for a distributed team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Slack vs Teams for internal messaging" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Best hosting platform for a startup website" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Which laptop should I buy for college?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Best laptop for work and study under 1200" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "laptops-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + }, + "id": "desktops-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Best desktop for video editing" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + }, + "id": "smartphones-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Best phone with a good camera under 700" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "style-fashion-parent-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Best shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "style-fashion-parent-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "style-fashion-parent-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "womens-shoes-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "womens-shoes-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "id": "mens-shoes-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Best men's sneakers for daily wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "id": "mens-shoes-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Good men's dress shoes for office use" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + }, + "id": "hotels-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "id": "hotels-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "id": "real-estate-rentals-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Apartments for rent near downtown Austin" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "id": "real-estate-rentals-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + }, + "id": "real-estate-rentals-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "id": "running-and-jogging-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "Best running plan for a first 10k" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "How do offside rules work in soccer?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "Best soccer drills for beginner players" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports" + }, + "id": "soccer-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Recommend a good fantasy novel to read" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Best fiction books for a long flight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature" + }, + "id": "fiction-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "id": "home-improvement-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + }, + "id": "home-improvement-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "id": "home-improvement-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "online-education-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "Best online courses for learning Python" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "id": "online-education-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "What are good platforms for remote professional classes?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers" + }, + "id": "online-education-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "id": "postgraduate-education-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "best universities to study masters" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + }, + "id": "postgraduate-education-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "which graduate schools have strong data science programs" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "id": "postgraduate-education-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + }, + "id": "medical-health-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "what do these allergy symptoms mean" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + }, + "id": "medical-health-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + }, + "id": "medical-health-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "id": "careers-job-search-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "best remote jobs for data analysts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "careers-job-search-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "where should i look for product manager openings" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "id": "personal-finance-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "how much should i save each month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + }, + "id": "personal-finance-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "best budgeting approach for a growing family" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "id": "personal-finance-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "tips for parenting a toddler" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "how do i help my teenager spend less time online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + }, + "id": "parenting-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "need parenting advice for a child starting preschool" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "id": "gardening-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "best plants for a small balcony garden" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "how often should i water tomato plants" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "id": "gardening-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "What movie should we watch tonight?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + }, + "id": "movies-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "Best thriller movies from the last few years" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + }, + "id": "movies-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music" + } + ] +} diff --git a/artifacts/evaluation/latest/iab_mapping_regression.json b/artifacts/evaluation/latest/iab_mapping_regression.json new file mode 100644 index 0000000000000000000000000000000000000000..7f91efb2a76834f427c5dd28592b7f63b8df1efb --- /dev/null +++ b/artifacts/evaluation/latest/iab_mapping_regression.json @@ -0,0 +1,245 @@ +{ + "by_status": { + "must_fix": { + "failed": 0, + "passed": 12, + "total": 12 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_mapping_cases.json", + "count": 12, + "failed": 0, + "passed": 12, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "id": "car-buying-maps-to-automotive-buying", + "mismatches": [], + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "pass": true, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptop-buying-maps-to-laptops", + "mismatches": [], + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "pass": true, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "labtop-buying-maps-to-laptops", + "mismatches": [], + "notes": "Common typo handling should still land in the laptops branch.", + "pass": true, + "status": "must_fix", + "text": "Which labtop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "crm-awareness-maps-to-sales", + "mismatches": [], + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "crm-comparison-maps-to-sales", + "mismatches": [], + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "marketing-tools-map-to-marketing", + "mismatches": [], + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "pass": true, + "status": "must_fix", + "text": "Best AI SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "id": "ml-explanation-maps-to-ai", + "mismatches": [], + "notes": "ML and NLP educational prompts should land in the AI branch.", + "pass": true, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "support-credential-help-maps-to-business-it", + "mismatches": [], + "notes": "Credential and account help should map to business IT rather than generic business.", + "pass": true, + "status": "must_fix", + "text": "How do I reset my password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "restaurant-booking-maps-to-dining-out", + "mismatches": [], + "notes": "Generic dining requests should not inherit the repo's business default.", + "pass": true, + "status": "must_fix", + "text": "Book a table for 2 tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "id": "trial-signup-maps-to-software", + "mismatches": [], + "notes": "Software action queries should map to the software/application branch.", + "pass": true, + "status": "must_fix", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-maps-to-tier4", + "mismatches": [], + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "pass": true, + "status": "must_fix", + "text": "best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "vodka-query-maps-to-alcoholic-beverages", + "mismatches": [], + "notes": "Food and beverage prompts should not fall through to the business default.", + "pass": true, + "status": "must_fix", + "text": "what is best vodka drink should i try" + } + ] +} diff --git a/artifacts/evaluation/latest/iab_quality_target_eval.json b/artifacts/evaluation/latest/iab_quality_target_eval.json new file mode 100644 index 0000000000000000000000000000000000000000..7ecaed190f3901a692a7a506a5b975b33e49e2b0 --- /dev/null +++ b/artifacts/evaluation/latest/iab_quality_target_eval.json @@ -0,0 +1,411 @@ +{ + "by_status": { + "must_fix": { + "failed": 12, + "passed": 0, + "total": 12 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_mapping_cases.json", + "count": 12, + "failed": 12, + "passed": 0, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "car-buying-maps-to-automotive-buying", + "mismatches": [ + { + "actual": null, + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "pass": false, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptop-buying-maps-to-laptops", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "pass": false, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "labtop-buying-maps-to-laptops", + "mismatches": [ + { + "actual": null, + "expected": "Laptops", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Common typo handling should still land in the laptops branch.", + "pass": false, + "status": "must_fix", + "text": "Which labtop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "crm-awareness-maps-to-sales", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "pass": false, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "crm-comparison-maps-to-sales", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "pass": false, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-map-to-marketing", + "mismatches": [ + { + "actual": "Hobbies & Interests", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Content Production", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "pass": false, + "status": "must_fix", + "text": "Best AI SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "ml-explanation-maps-to-ai", + "mismatches": [ + { + "actual": "Computing", + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "ML and NLP educational prompts should land in the AI branch.", + "pass": false, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "support-credential-help-maps-to-business-it", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Credential and account help should map to business IT rather than generic business.", + "pass": false, + "status": "must_fix", + "text": "How do I reset my password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "restaurant-booking-maps-to-dining-out", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Generic dining requests should not inherit the repo's business default.", + "pass": false, + "status": "must_fix", + "text": "Book a table for 2 tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "trial-signup-maps-to-software", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Business", + "expected": "Computing", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Software action queries should map to the software/application branch.", + "pass": false, + "status": "must_fix", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Computer Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-maps-to-tier4", + "mismatches": [ + { + "actual": "Software and Applications", + "expected": "Computer Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": null, + "expected": "Communication", + "path": "model_output.classification.iab_content.tier4.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "pass": false, + "status": "must_fix", + "text": "best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "vodka-query-maps-to-alcoholic-beverages", + "mismatches": [ + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Food and beverage prompts should not fall through to the business default.", + "pass": false, + "status": "must_fix", + "text": "what is best vodka drink should i try" + } + ] +} diff --git a/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_confusion_matrix.csv b/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..02b3cde7d588095d35524b67aa0741144feb45f8 --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_confusion_matrix.csv @@ -0,0 +1,19 @@ +,education,product_discovery,comparison,evaluation,deal_seeking,provider_selection,signup,purchase,booking,download,contact_sales,task_execution,onboarding_setup,troubleshooting,account_help,billing_help,follow_up,emotional_reflection +education,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +product_discovery,0,13,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +comparison,2,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +evaluation,1,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +deal_seeking,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0 +provider_selection,0,0,1,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0 +signup,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0 +purchase,0,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0 +booking,0,0,0,0,0,0,1,0,13,0,0,1,0,0,0,0,0,0 +download,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0 +contact_sales,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0 +task_execution,0,0,0,0,0,0,1,0,0,0,0,17,0,0,0,0,0,0 +onboarding_setup,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0 +troubleshooting,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,1 +account_help,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,0,0 +billing_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0 +follow_up,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0 +emotional_reflection,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15 diff --git a/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_report.json b/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cdb32dd678bc9119b66fd7dba7b2d82ac5c66e0a --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_report.json @@ -0,0 +1,161 @@ +{ + "accepted_accuracy": 0.9386, + "accepted_coverage": 1.0, + "accuracy": 0.9386, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_confusion_matrix.csv", + "count": 277, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.9565, + "accepted_coverage": 1.0, + "accuracy": 0.9565, + "count": 92, + "fallback_rate": 0.0, + "macro_f1": 0.9579 + }, + "hard": { + "accepted_accuracy": 0.8901, + "accepted_coverage": 1.0, + "accuracy": 0.8901, + "count": 91, + "fallback_rate": 0.0, + "macro_f1": 0.8913 + }, + "medium": { + "accepted_accuracy": 0.9681, + "accepted_coverage": 1.0, + "accuracy": 0.9681, + "count": 94, + "fallback_rate": 0.0, + "macro_f1": 0.9671 + } + }, + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.9401, + "per_class_metrics": { + "account_help": { + "f1-score": 0.8888888888888888, + "precision": 1.0, + "recall": 0.8, + "support": 15.0 + }, + "accuracy": 0.9386281588447654, + "billing_help": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "booking": { + "f1-score": 0.9285714285714286, + "precision": 1.0, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "comparison": { + "f1-score": 0.896551724137931, + "precision": 0.9285714285714286, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "contact_sales": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "deal_seeking": { + "f1-score": 0.9333333333333333, + "precision": 0.9333333333333333, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "download": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "education": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 15.0 + }, + "emotional_reflection": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "evaluation": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "follow_up": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "macro avg": { + "f1-score": 0.9401067100194944, + "precision": 0.9476910208527856, + "recall": 0.9383215323166303, + "support": 277.0 + }, + "onboarding_setup": { + "f1-score": 0.9411764705882353, + "precision": 0.9411764705882353, + "recall": 0.9411764705882353, + "support": 17.0 + }, + "product_discovery": { + "f1-score": 0.9285714285714286, + "precision": 1.0, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "provider_selection": { + "f1-score": 0.9375, + "precision": 0.9375, + "recall": 0.9375, + "support": 16.0 + }, + "purchase": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "signup": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 16.0 + }, + "task_execution": { + "f1-score": 0.8717948717948718, + "precision": 0.8095238095238095, + "recall": 0.9444444444444444, + "support": 18.0 + }, + "troubleshooting": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "weighted avg": { + "f1-score": 0.9391802821325396, + "precision": 0.9455776173285199, + "recall": 0.9386281588447654, + "support": 277.0 + } + }, + "suite": "difficulty_benchmark" +} diff --git a/artifacts/evaluation/latest/intent_subtype_extended_cases_confusion_matrix.csv b/artifacts/evaluation/latest/intent_subtype_extended_cases_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..26bf7c6a1e686fe3e5632e49940c9db43ac5ae4b --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_extended_cases_confusion_matrix.csv @@ -0,0 +1,19 @@ +,education,product_discovery,comparison,evaluation,deal_seeking,provider_selection,signup,purchase,booking,download,contact_sales,task_execution,onboarding_setup,troubleshooting,account_help,billing_help,follow_up,emotional_reflection +education,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +product_discovery,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +comparison,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +evaluation,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +deal_seeking,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0 +provider_selection,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +signup,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +purchase,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +booking,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +download,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +contact_sales,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +task_execution,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +onboarding_setup,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0 +troubleshooting,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +account_help,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0 +billing_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +follow_up,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,8,0 +emotional_reflection,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/artifacts/evaluation/latest/intent_subtype_extended_cases_report.json b/artifacts/evaluation/latest/intent_subtype_extended_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..656750a7fcc3123edb8ded70e44cb2a46381d3c5 --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_extended_cases_report.json @@ -0,0 +1,135 @@ +{ + "accepted_accuracy": 0.8491, + "accepted_coverage": 1.0, + "accuracy": 0.8491, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_extended_cases_confusion_matrix.csv", + "count": 53, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/extended_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.8146, + "per_class_metrics": { + "account_help": { + "f1-score": 0.6666666666666666, + "precision": 0.6666666666666666, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "accuracy": 0.8490566037735849, + "billing_help": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "booking": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "comparison": { + "f1-score": 0.6666666666666666, + "precision": 1.0, + "recall": 0.5, + "support": 2.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 0.8181818181818182, + "precision": 0.6923076923076923, + "recall": 1.0, + "support": 9.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 0.9333333333333333, + "precision": 0.875, + "recall": 1.0, + "support": 7.0 + }, + "emotional_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "evaluation": { + "f1-score": 0.5, + "precision": 1.0, + "recall": 0.3333333333333333, + "support": 3.0 + }, + "follow_up": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 12.0 + }, + "macro avg": { + "f1-score": 0.4978114478114478, + "precision": 0.531517094017094, + "recall": 0.5092592592592592, + "support": 53.0 + }, + "onboarding_setup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "product_discovery": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "provider_selection": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "purchase": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "signup": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "task_execution": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "troubleshooting": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "weighted avg": { + "f1-score": 0.8404230989136648, + "precision": 0.887215771649734, + "recall": 0.8490566037735849, + "support": 53.0 + } + }, + "suite": "extended_cases" +} diff --git a/artifacts/evaluation/latest/intent_subtype_hard_cases_confusion_matrix.csv b/artifacts/evaluation/latest/intent_subtype_hard_cases_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..53ca2a289c0b5aa6fea57f711a74877861ddecca --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_hard_cases_confusion_matrix.csv @@ -0,0 +1,19 @@ +,education,product_discovery,comparison,evaluation,deal_seeking,provider_selection,signup,purchase,booking,download,contact_sales,task_execution,onboarding_setup,troubleshooting,account_help,billing_help,follow_up,emotional_reflection +education,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +product_discovery,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +comparison,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +evaluation,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +deal_seeking,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +provider_selection,0,0,0,1,0,9,0,0,0,0,0,0,0,0,0,0,0,0 +signup,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0 +purchase,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0 +booking,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +download,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +contact_sales,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +task_execution,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +onboarding_setup,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0 +troubleshooting,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0 +account_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0 +billing_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +follow_up,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,11,0 +emotional_reflection,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/artifacts/evaluation/latest/intent_subtype_hard_cases_report.json b/artifacts/evaluation/latest/intent_subtype_hard_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0d65dc588af71dd04662fca9fcdb98e9fdfa6eab --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_hard_cases_report.json @@ -0,0 +1,135 @@ +{ + "accepted_accuracy": 0.9468, + "accepted_coverage": 1.0, + "accuracy": 0.9468, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_hard_cases_confusion_matrix.csv", + "count": 94, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.9191, + "per_class_metrics": { + "account_help": { + "f1-score": 0.8, + "precision": 0.6666666666666666, + "recall": 1.0, + "support": 2.0 + }, + "accuracy": 0.9468085106382979, + "billing_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "comparison": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 29.0 + }, + "emotional_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "evaluation": { + "f1-score": 0.7272727272727273, + "precision": 0.8, + "recall": 0.6666666666666666, + "support": 6.0 + }, + "follow_up": { + "f1-score": 0.9565217391304348, + "precision": 1.0, + "recall": 0.9166666666666666, + "support": 12.0 + }, + "macro avg": { + "f1-score": 0.7659288023895194, + "precision": 0.7648148148148147, + "recall": 0.786111111111111, + "support": 94.0 + }, + "onboarding_setup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "product_discovery": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 8.0 + }, + "provider_selection": { + "f1-score": 0.9473684210526315, + "precision": 1.0, + "recall": 0.9, + "support": 10.0 + }, + "purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "signup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "task_execution": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "troubleshooting": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "weighted avg": { + "f1-score": 0.9478016938458051, + "precision": 0.9578014184397163, + "recall": 0.9468085106382979, + "support": 94.0 + } + }, + "suite": "hard_cases" +} diff --git a/artifacts/evaluation/latest/intent_subtype_test_confusion_matrix.csv b/artifacts/evaluation/latest/intent_subtype_test_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..b52e8d3e2fd8ddfdfc51f7e7fce1b1ffe32cea47 --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_test_confusion_matrix.csv @@ -0,0 +1,19 @@ +,education,product_discovery,comparison,evaluation,deal_seeking,provider_selection,signup,purchase,booking,download,contact_sales,task_execution,onboarding_setup,troubleshooting,account_help,billing_help,follow_up,emotional_reflection +education,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +product_discovery,0,7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +comparison,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +evaluation,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +deal_seeking,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 +provider_selection,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +signup,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +purchase,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +booking,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 +download,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +contact_sales,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +task_execution,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0 +onboarding_setup,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0 +troubleshooting,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0 +account_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0 +billing_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +follow_up,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,8,0 +emotional_reflection,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 diff --git a/artifacts/evaluation/latest/intent_subtype_test_report.json b/artifacts/evaluation/latest/intent_subtype_test_report.json new file mode 100644 index 0000000000000000000000000000000000000000..439c10fb4aafd745a25e4f8c2ecf965b90346180 --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_test_report.json @@ -0,0 +1,135 @@ +{ + "accepted_accuracy": 0.9, + "accepted_coverage": 1.0, + "accuracy": 0.9, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_test_confusion_matrix.csv", + "count": 70, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/test.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.863, + "per_class_metrics": { + "account_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 2.0 + }, + "accuracy": 0.9, + "billing_help": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "comparison": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 2.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "emotional_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "evaluation": { + "f1-score": 0.4, + "precision": 0.3333333333333333, + "recall": 0.5, + "support": 2.0 + }, + "follow_up": { + "f1-score": 0.8421052631578947, + "precision": 1.0, + "recall": 0.7272727272727273, + "support": 11.0 + }, + "macro avg": { + "f1-score": 0.6712084293224644, + "precision": 0.6671296296296296, + "recall": 0.6908670033670034, + "support": 70.0 + }, + "onboarding_setup": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 4.0 + }, + "product_discovery": { + "f1-score": 0.875, + "precision": 0.875, + "recall": 0.875, + "support": 8.0 + }, + "provider_selection": { + "f1-score": 0.9090909090909091, + "precision": 1.0, + "recall": 0.8333333333333334, + "support": 6.0 + }, + "purchase": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "signup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 2.0 + }, + "task_execution": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "troubleshooting": { + "f1-score": 0.5, + "precision": 0.5, + "recall": 0.5, + "support": 2.0 + }, + "weighted avg": { + "f1-score": 0.9058084605453025, + "precision": 0.9266666666666667, + "recall": 0.9, + "support": 70.0 + } + }, + "suite": "test" +} diff --git a/artifacts/evaluation/latest/intent_subtype_train_confusion_matrix.csv b/artifacts/evaluation/latest/intent_subtype_train_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..a6e08053c992f73a143c1e3a90ed7ae2c380845a --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_train_confusion_matrix.csv @@ -0,0 +1,19 @@ +,education,product_discovery,comparison,evaluation,deal_seeking,provider_selection,signup,purchase,booking,download,contact_sales,task_execution,onboarding_setup,troubleshooting,account_help,billing_help,follow_up,emotional_reflection +education,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +product_discovery,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +comparison,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +evaluation,1,2,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +deal_seeking,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0 +provider_selection,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,1,0 +signup,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0 +purchase,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0 +booking,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +download,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0 +contact_sales,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0 +task_execution,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0 +onboarding_setup,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0 +troubleshooting,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0 +account_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0 +billing_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0 +follow_up,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,32,0 +emotional_reflection,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20 diff --git a/artifacts/evaluation/latest/intent_subtype_train_report.json b/artifacts/evaluation/latest/intent_subtype_train_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7df4bd721a2d0c128678f01627f3ed50a3104b84 --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_train_report.json @@ -0,0 +1,135 @@ +{ + "accepted_accuracy": 0.9649, + "accepted_coverage": 1.0, + "accuracy": 0.9649, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_train_confusion_matrix.csv", + "count": 313, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/train.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.9649, + "per_class_metrics": { + "account_help": { + "f1-score": 0.9333333333333333, + "precision": 0.875, + "recall": 1.0, + "support": 7.0 + }, + "accuracy": 0.9648562300319489, + "billing_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "comparison": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "contact_sales": { + "f1-score": 0.875, + "precision": 1.0, + "recall": 0.7777777777777778, + "support": 9.0 + }, + "deal_seeking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 11.0 + }, + "download": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "education": { + "f1-score": 0.9904761904761905, + "precision": 0.9811320754716981, + "recall": 1.0, + "support": 52.0 + }, + "emotional_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 20.0 + }, + "evaluation": { + "f1-score": 0.9032258064516129, + "precision": 1.0, + "recall": 0.8235294117647058, + "support": 17.0 + }, + "follow_up": { + "f1-score": 0.927536231884058, + "precision": 0.9696969696969697, + "recall": 0.8888888888888888, + "support": 36.0 + }, + "macro avg": { + "f1-score": 0.9649442256020961, + "precision": 0.9689347311202658, + "recall": 0.9651818334171275, + "support": 313.0 + }, + "onboarding_setup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 17.0 + }, + "product_discovery": { + "f1-score": 0.96875, + "precision": 0.9393939393939394, + "recall": 1.0, + "support": 31.0 + }, + "provider_selection": { + "f1-score": 0.9795918367346939, + "precision": 1.0, + "recall": 0.96, + "support": 25.0 + }, + "purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "signup": { + "f1-score": 0.9411764705882353, + "precision": 0.8888888888888888, + "recall": 1.0, + "support": 16.0 + }, + "task_execution": { + "f1-score": 0.926829268292683, + "precision": 0.8636363636363636, + "recall": 1.0, + "support": 19.0 + }, + "troubleshooting": { + "f1-score": 0.9230769230769231, + "precision": 0.9230769230769231, + "recall": 0.9230769230769231, + "support": 13.0 + }, + "weighted avg": { + "f1-score": 0.9643733669039578, + "precision": 0.967429661617075, + "recall": 0.9648562300319489, + "support": 313.0 + } + }, + "suite": "train" +} diff --git a/artifacts/evaluation/latest/intent_subtype_val_confusion_matrix.csv b/artifacts/evaluation/latest/intent_subtype_val_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..f0ef85e2e79125375ad7c3eb1268144ccf8691ac --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_val_confusion_matrix.csv @@ -0,0 +1,19 @@ +,education,product_discovery,comparison,evaluation,deal_seeking,provider_selection,signup,purchase,booking,download,contact_sales,task_execution,onboarding_setup,troubleshooting,account_help,billing_help,follow_up,emotional_reflection +education,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +product_discovery,0,10,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +comparison,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +evaluation,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +deal_seeking,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 +provider_selection,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0 +signup,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +purchase,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 +booking,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 +download,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +contact_sales,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +task_execution,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0 +onboarding_setup,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0 +troubleshooting,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +account_help,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0 +billing_help,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +follow_up,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0 +emotional_reflection,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 diff --git a/artifacts/evaluation/latest/intent_subtype_val_report.json b/artifacts/evaluation/latest/intent_subtype_val_report.json new file mode 100644 index 0000000000000000000000000000000000000000..eda86d49328c06db9b306e66ef50a45858e04508 --- /dev/null +++ b/artifacts/evaluation/latest/intent_subtype_val_report.json @@ -0,0 +1,135 @@ +{ + "accepted_accuracy": 0.875, + "accepted_coverage": 1.0, + "accuracy": 0.875, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_val_confusion_matrix.csv", + "count": 80, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/val.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.725, + "per_class_metrics": { + "account_help": { + "f1-score": 0.5, + "precision": 0.5, + "recall": 0.5, + "support": 2.0 + }, + "accuracy": 0.875, + "billing_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "comparison": { + "f1-score": 0.4, + "precision": 1.0, + "recall": 0.25, + "support": 4.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 0.5714285714285714, + "precision": 0.4, + "recall": 1.0, + "support": 2.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "emotional_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "evaluation": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 2.0 + }, + "follow_up": { + "f1-score": 0.9523809523809523, + "precision": 1.0, + "recall": 0.9090909090909091, + "support": 11.0 + }, + "macro avg": { + "f1-score": 0.6444203944203944, + "precision": 0.6542087542087542, + "recall": 0.687121212121212, + "support": 80.0 + }, + "onboarding_setup": { + "f1-score": 0.8, + "precision": 0.8, + "recall": 0.8, + "support": 5.0 + }, + "product_discovery": { + "f1-score": 0.9090909090909091, + "precision": 0.9090909090909091, + "recall": 0.9090909090909091, + "support": 11.0 + }, + "provider_selection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 7.0 + }, + "purchase": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 2.0 + }, + "signup": { + "f1-score": 0.8, + "precision": 0.6666666666666666, + "recall": 1.0, + "support": 2.0 + }, + "task_execution": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "troubleshooting": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 1.0 + }, + "weighted avg": { + "f1-score": 0.8644047619047619, + "precision": 0.8891666666666665, + "recall": 0.875, + "support": 80.0 + } + }, + "suite": "val" +} diff --git a/artifacts/evaluation/latest/intent_type_difficulty_benchmark_confusion_matrix.csv b/artifacts/evaluation/latest/intent_type_difficulty_benchmark_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..4cd7b1b18e4f1c835bcad96639d997c04d39007c --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_difficulty_benchmark_confusion_matrix.csv @@ -0,0 +1,11 @@ +,informational,exploratory,commercial,transactional,support,personal_reflection,creative_generation,chit_chat,ambiguous,prohibited +informational,15,0,0,0,0,0,0,0,0,0 +exploratory,0,15,0,0,0,0,0,0,0,0 +commercial,0,0,15,0,0,0,0,0,0,0 +transactional,0,0,0,15,0,0,0,0,0,0 +support,0,0,0,0,15,0,0,0,0,0 +personal_reflection,0,0,0,0,0,15,0,0,0,0 +creative_generation,0,0,0,0,0,0,15,0,0,0 +chit_chat,0,0,0,0,0,1,0,14,0,0 +ambiguous,0,0,0,0,0,0,0,0,15,0 +prohibited,0,0,0,0,1,0,0,0,0,14 diff --git a/artifacts/evaluation/latest/intent_type_difficulty_benchmark_report.json b/artifacts/evaluation/latest/intent_type_difficulty_benchmark_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c3e957a754d0a419f4b491d929e9bd8349b6a219 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_difficulty_benchmark_report.json @@ -0,0 +1,113 @@ +{ + "accepted_accuracy": 0.9867, + "accepted_coverage": 1.0, + "accuracy": 0.9867, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_difficulty_benchmark_confusion_matrix.csv", + "count": 150, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/intent_type_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "count": 50, + "fallback_rate": 0.0, + "macro_f1": 1.0 + }, + "hard": { + "accepted_accuracy": 0.96, + "accepted_coverage": 1.0, + "accuracy": 0.96, + "count": 50, + "fallback_rate": 0.0, + "macro_f1": 0.9596 + }, + "medium": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "count": 50, + "fallback_rate": 0.0, + "macro_f1": 1.0 + } + }, + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.9867, + "per_class_metrics": { + "accuracy": 0.9866666666666667, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "chit_chat": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "macro avg": { + "f1-score": 0.9866518353726363, + "precision": 0.9875, + "recall": 0.9866666666666667, + "support": 150.0 + }, + "personal_reflection": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "prohibited": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "support": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "weighted avg": { + "f1-score": 0.9866518353726362, + "precision": 0.9875, + "recall": 0.9866666666666667, + "support": 150.0 + } + }, + "suite": "difficulty_benchmark" +} diff --git a/artifacts/evaluation/latest/intent_type_hard_cases_confusion_matrix.csv b/artifacts/evaluation/latest/intent_type_hard_cases_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..6074fb4bb0933acd38eb85bdd0bc0a20efb812d8 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_hard_cases_confusion_matrix.csv @@ -0,0 +1,11 @@ +,informational,exploratory,commercial,transactional,support,personal_reflection,creative_generation,chit_chat,ambiguous,prohibited +informational,20,0,0,0,0,0,0,0,0,0 +exploratory,0,1,0,0,0,0,0,0,0,0 +commercial,0,0,13,0,0,0,0,0,0,0 +transactional,0,0,0,10,0,0,0,0,0,0 +support,0,0,0,0,4,0,0,0,0,0 +personal_reflection,0,0,0,0,0,0,0,0,0,0 +creative_generation,0,0,0,0,0,0,1,0,0,0 +chit_chat,0,0,0,0,0,0,0,1,0,0 +ambiguous,0,0,0,0,0,0,0,0,10,0 +prohibited,0,0,0,0,0,0,0,0,0,1 diff --git a/artifacts/evaluation/latest/intent_type_hard_cases_report.json b/artifacts/evaluation/latest/intent_type_hard_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1b91d153977310c157ef6a0ff77084014a59d5cb --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_hard_cases_report.json @@ -0,0 +1,87 @@ +{ + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_hard_cases_confusion_matrix.csv", + "count": 61, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 1.0, + "per_class_metrics": { + "accuracy": 1.0, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 13.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 20.0 + }, + "macro avg": { + "f1-score": 0.9, + "precision": 0.9, + "recall": 0.9, + "support": 61.0 + }, + "personal_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "prohibited": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "weighted avg": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 61.0 + } + }, + "suite": "hard_cases" +} diff --git a/artifacts/evaluation/latest/intent_type_test_confusion_matrix.csv b/artifacts/evaluation/latest/intent_type_test_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae111974327c2b500ed0e283c71736c7666b7fa6 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_test_confusion_matrix.csv @@ -0,0 +1,11 @@ +,informational,exploratory,commercial,transactional,support,personal_reflection,creative_generation,chit_chat,ambiguous,prohibited +informational,8,0,0,0,0,0,0,0,0,0 +exploratory,0,1,0,0,0,0,0,0,0,0 +commercial,1,0,9,0,0,0,0,0,0,0 +transactional,0,0,0,8,0,0,0,0,0,0 +support,0,0,0,0,2,0,0,0,0,1 +personal_reflection,0,0,0,0,0,5,0,0,0,0 +creative_generation,0,0,0,0,0,0,1,0,0,0 +chit_chat,0,0,0,0,0,0,0,1,0,0 +ambiguous,1,0,1,0,0,0,0,0,7,0 +prohibited,0,0,0,0,0,0,0,0,0,1 diff --git a/artifacts/evaluation/latest/intent_type_test_report.json b/artifacts/evaluation/latest/intent_type_test_report.json new file mode 100644 index 0000000000000000000000000000000000000000..fe3094356bca65f2a6918583d93ed832073b6fe2 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_test_report.json @@ -0,0 +1,87 @@ +{ + "accepted_accuracy": 0.9149, + "accepted_coverage": 1.0, + "accuracy": 0.9149, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_test_confusion_matrix.csv", + "count": 47, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/test.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.9131, + "per_class_metrics": { + "accuracy": 0.9148936170212766, + "ambiguous": { + "f1-score": 0.875, + "precision": 1.0, + "recall": 0.7777777777777778, + "support": 9.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 0.9, + "precision": 0.9, + "recall": 0.9, + "support": 10.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 8.0 + }, + "macro avg": { + "f1-score": 0.9130555555555555, + "precision": 0.9199999999999999, + "recall": 0.9344444444444445, + "support": 47.0 + }, + "personal_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "prohibited": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "weighted avg": { + "f1-score": 0.916016548463357, + "precision": 0.9340425531914893, + "recall": 0.9148936170212766, + "support": 47.0 + } + }, + "suite": "test" +} diff --git a/artifacts/evaluation/latest/intent_type_third_wave_cases_confusion_matrix.csv b/artifacts/evaluation/latest/intent_type_third_wave_cases_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..df9bf4f2bcd7e9729d68a10eba9ddc7610c0862b --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_third_wave_cases_confusion_matrix.csv @@ -0,0 +1,11 @@ +,informational,exploratory,commercial,transactional,support,personal_reflection,creative_generation,chit_chat,ambiguous,prohibited +informational,0,0,0,0,0,0,0,0,0,0 +exploratory,0,1,0,0,0,0,0,0,0,0 +commercial,1,0,11,0,0,0,0,0,0,0 +transactional,0,0,0,0,0,0,0,0,0,0 +support,0,0,0,0,0,0,0,0,0,0 +personal_reflection,0,0,0,0,0,0,0,0,0,0 +creative_generation,0,0,0,0,0,0,1,0,0,0 +chit_chat,0,0,0,0,0,0,0,1,0,0 +ambiguous,1,0,1,0,0,0,0,0,8,0 +prohibited,0,0,0,0,0,0,0,0,0,1 diff --git a/artifacts/evaluation/latest/intent_type_third_wave_cases_report.json b/artifacts/evaluation/latest/intent_type_third_wave_cases_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f8a3a8d6448d80c4688505170858a87ff7061612 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_third_wave_cases_report.json @@ -0,0 +1,87 @@ +{ + "accepted_accuracy": 0.8846, + "accepted_coverage": 1.0, + "accuracy": 0.8846, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_third_wave_cases_confusion_matrix.csv", + "count": 26, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/third_wave_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.8294, + "per_class_metrics": { + "accuracy": 0.8846153846153846, + "ambiguous": { + "f1-score": 0.8888888888888888, + "precision": 1.0, + "recall": 0.8, + "support": 10.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 0.9166666666666666, + "precision": 0.9166666666666666, + "recall": 0.9166666666666666, + "support": 12.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "macro avg": { + "f1-score": 0.5805555555555555, + "precision": 0.5916666666666666, + "recall": 0.5716666666666667, + "support": 26.0 + }, + "personal_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "prohibited": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "transactional": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "weighted avg": { + "f1-score": 0.9188034188034189, + "precision": 0.9615384615384616, + "recall": 0.8846153846153846, + "support": 26.0 + } + }, + "suite": "third_wave_cases" +} diff --git a/artifacts/evaluation/latest/intent_type_train_confusion_matrix.csv b/artifacts/evaluation/latest/intent_type_train_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..0bccb99598127decfb008208f7a31553bf527feb --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_train_confusion_matrix.csv @@ -0,0 +1,11 @@ +,informational,exploratory,commercial,transactional,support,personal_reflection,creative_generation,chit_chat,ambiguous,prohibited +informational,38,0,0,0,0,0,0,0,0,0 +exploratory,0,5,0,0,0,0,0,0,0,0 +commercial,0,0,36,0,0,0,0,0,0,0 +transactional,0,0,0,28,0,0,0,0,0,0 +support,0,0,0,0,10,0,0,0,0,0 +personal_reflection,0,0,0,0,0,20,0,0,0,0 +creative_generation,0,0,0,0,0,0,5,0,0,0 +chit_chat,0,0,0,0,0,0,0,5,0,0 +ambiguous,0,0,0,0,0,0,0,0,31,0 +prohibited,0,0,0,0,0,0,0,0,0,5 diff --git a/artifacts/evaluation/latest/intent_type_train_report.json b/artifacts/evaluation/latest/intent_type_train_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c7955783ad88ff52491b4fdc11ee37d096f8d073 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_train_report.json @@ -0,0 +1,87 @@ +{ + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_train_confusion_matrix.csv", + "count": 183, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/train.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 1.0, + "per_class_metrics": { + "accuracy": 1.0, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 31.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 36.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 38.0 + }, + "macro avg": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 183.0 + }, + "personal_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 20.0 + }, + "prohibited": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 28.0 + }, + "weighted avg": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 183.0 + } + }, + "suite": "train" +} diff --git a/artifacts/evaluation/latest/intent_type_val_confusion_matrix.csv b/artifacts/evaluation/latest/intent_type_val_confusion_matrix.csv new file mode 100644 index 0000000000000000000000000000000000000000..9334f4e2f201ffc95c64a0ba367b67909288c200 --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_val_confusion_matrix.csv @@ -0,0 +1,11 @@ +,informational,exploratory,commercial,transactional,support,personal_reflection,creative_generation,chit_chat,ambiguous,prohibited +informational,8,0,0,0,0,0,0,0,0,0 +exploratory,0,1,0,0,0,0,0,0,0,0 +commercial,0,0,10,0,0,0,0,0,0,0 +transactional,0,0,0,7,0,0,1,0,0,0 +support,0,0,0,0,2,0,0,0,0,1 +personal_reflection,0,0,0,0,0,5,0,0,0,0 +creative_generation,0,0,0,0,0,0,1,0,0,0 +chit_chat,0,0,0,0,0,0,0,1,0,0 +ambiguous,0,0,0,0,0,0,0,0,9,0 +prohibited,0,0,0,0,0,0,0,0,0,1 diff --git a/artifacts/evaluation/latest/intent_type_val_report.json b/artifacts/evaluation/latest/intent_type_val_report.json new file mode 100644 index 0000000000000000000000000000000000000000..50578ee1add368ed98a4a6abafdfb91a61c9f28d --- /dev/null +++ b/artifacts/evaluation/latest/intent_type_val_report.json @@ -0,0 +1,87 @@ +{ + "accepted_accuracy": 0.9574, + "accepted_coverage": 1.0, + "accuracy": 0.9574, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_val_confusion_matrix.csv", + "count": 47, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/val.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.9067, + "per_class_metrics": { + "accuracy": 0.9574468085106383, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 9.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "creative_generation": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "macro avg": { + "f1-score": 0.9066666666666666, + "precision": 0.9, + "recall": 0.9541666666666666, + "support": 47.0 + }, + "personal_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "prohibited": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "transactional": { + "f1-score": 0.9333333333333333, + "precision": 1.0, + "recall": 0.875, + "support": 8.0 + }, + "weighted avg": { + "f1-score": 0.9617021276595744, + "precision": 0.9787234042553191, + "recall": 0.9574468085106383, + "support": 47.0 + } + }, + "suite": "val" +} diff --git a/artifacts/evaluation/latest/known_failure_regression.json b/artifacts/evaluation/latest/known_failure_regression.json new file mode 100644 index 0000000000000000000000000000000000000000..1c91b1b9687f251cde5936a59af2e2ba5a43f84a --- /dev/null +++ b/artifacts/evaluation/latest/known_failure_regression.json @@ -0,0 +1,403 @@ +{ + "by_status": { + "acceptable_weakness": { + "failed": 2, + "passed": 0, + "total": 2 + }, + "must_fix": { + "failed": 4, + "passed": 11, + "total": 15 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/known_failure_cases.json", + "count": 17, + "failed": 6, + "passed": 11, + "results": [ + { + "actual": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "id": "auto-buying-query-allowed", + "mismatches": [ + { + "actual": "Auto Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "High-intent automotive shopping should clear as monetizable instead of failing safe.", + "pass": false, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "id": "laptop-buying-query-allowed", + "mismatches": [], + "notes": "High-intent laptop shopping should clear as monetizable instead of failing safe.", + "pass": true, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "model_output.classification.intent.type": "commercial", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "comparison_slot", + "system_decision.policy.monetization_eligibility": "allowed_with_caution" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "model_output.classification.intent.type": "commercial", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "comparison_slot", + "system_decision.policy.monetization_eligibility": "allowed_with_caution" + }, + "id": "commercial-comparison-clean-pass", + "mismatches": [], + "notes": "Clear comparison intent should now pass without fallback and expose a comparison opportunity.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "decision", + "model_output.classification.intent.subtype": "provider_selection", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "decision_moment", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.intent.decision_phase": "decision", + "model_output.classification.intent.subtype": "provider_selection", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "decision_moment", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "id": "provider-selection-allowed", + "mismatches": [], + "notes": "Subtype and phase should now rescue a buying query even when the intent head remains conservative.", + "pass": true, + "status": "must_fix", + "text": "Which CRM should I buy for a 3-person startup?" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "awareness", + "model_output.classification.intent.subtype": "education", + "model_output.classification.intent.type": "informational", + "model_output.fallback": null, + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "expected": { + "model_output.classification.intent.decision_phase": "awareness", + "model_output.classification.intent.subtype": "education", + "model_output.classification.intent.type": "informational", + "model_output.fallback": null, + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "id": "education-query-restricted", + "mismatches": [], + "notes": "Clear educational prompts should stay out of monetizable pathways.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.intent.subtype": "follow_up", + "model_output.classification.intent.type": "ambiguous", + "model_output.fallback.reason": "ambiguous_query", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.subtype": "follow_up", + "model_output.classification.intent.type": "ambiguous", + "model_output.fallback.reason": "ambiguous_query", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "ambiguous-follow-up-safe-block", + "mismatches": [], + "notes": "Short follow-ups should still fail safe instead of leaking into commercial handling.", + "pass": true, + "status": "must_fix", + "text": "Tell me more" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "support", + "model_output.classification.intent.type": "support", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.decision_phase": "support", + "model_output.classification.intent.type": "support", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "support-query-policy-block", + "mismatches": [], + "notes": "Support traffic must stay blocked even if the subtype head is still imperfect.", + "pass": true, + "status": "must_fix", + "text": "I cannot log into my account" + }, + { + "actual": { + "model_output.classification.intent.type": "prohibited", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.type": "prohibited", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "prohibited-query-policy-block", + "mismatches": [], + "notes": "Unsafe queries should route into the prohibited intent type and stay blocked.", + "pass": true, + "status": "must_fix", + "text": "How do I hack into someone else's account" + }, + { + "actual": { + "model_output.classification.intent.subtype": "signup", + "model_output.fallback.reason": null, + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.intent.subtype": "signup", + "model_output.fallback.reason": "confidence_below_threshold", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "signup-action-still-over-fallbacks", + "mismatches": [ + { + "actual": null, + "expected": "confidence_below_threshold", + "path": "model_output.fallback.reason" + }, + { + "actual": "allowed", + "expected": "not_allowed", + "path": "system_decision.policy.monetization_eligibility" + } + ], + "notes": "The subtype head recognizes signup, but the combined action path still falls back on low confidence.", + "pass": false, + "status": "acceptable_weakness", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "deal_seeking", + "system_decision.opportunity.type": "soft_recommendation", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "expected": { + "model_output.classification.intent.decision_phase": "awareness", + "model_output.classification.intent.subtype": "education", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "id": "price-seeking-underclassified", + "mismatches": [ + { + "actual": "deal_seeking", + "expected": "education", + "path": "model_output.classification.intent.subtype" + }, + { + "actual": "consideration", + "expected": "awareness", + "path": "model_output.classification.intent.decision_phase" + }, + { + "actual": "soft_recommendation", + "expected": "none", + "path": "system_decision.opportunity.type" + } + ], + "notes": "Price-seeking prompts still underclassify and should remain visible until the next data pass.", + "pass": false, + "status": "acceptable_weakness", + "text": "What costs less HubSpot or Zoho?" + }, + { + "actual": { + "model_output.classification.intent.subtype": "account_help", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.subtype": "account_help", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "support-subtype-account-help", + "mismatches": [], + "notes": "Login-help prompts should land in the account-help subtype instead of reflection-style labels.", + "pass": true, + "status": "must_fix", + "text": "I cannot log into my account" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "research", + "model_output.classification.intent.subtype": "product_discovery" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "product_discovery" + }, + "id": "discovery-subtype-shortlist", + "mismatches": [ + { + "actual": "research", + "expected": "consideration", + "path": "model_output.classification.intent.decision_phase" + } + ], + "notes": "Shortlist-building queries should stay in product discovery instead of drifting into fit-evaluation labels.", + "pass": false, + "status": "must_fix", + "text": "What project management tools should a remote ops team shortlist?" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "decision", + "model_output.classification.intent.subtype": "evaluation" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "evaluation" + }, + "id": "evaluation-subtype-fit-check", + "mismatches": [ + { + "actual": "decision", + "expected": "consideration", + "path": "model_output.classification.intent.decision_phase" + } + ], + "notes": "Single-vendor fit checks should map to evaluation rather than broad discovery.", + "pass": false, + "status": "must_fix", + "text": "Would ClickUp be a good fit for a remote ops team?" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "system_decision.opportunity.type": "comparison_slot" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "system_decision.opportunity.type": "comparison_slot" + }, + "id": "comparison-vs-provider-selection-boundary", + "mismatches": [], + "notes": "Side-by-side comparison language should not be upgraded into provider selection.", + "pass": true, + "status": "must_fix", + "text": "Compare HubSpot and Pipedrive for a 5-person sales team" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "signup" + }, + "expected": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "signup" + }, + "id": "signup-vs-account-help-boundary", + "mismatches": [], + "notes": "New-account requests should stay in signup instead of leaking into account-help support labels.", + "pass": true, + "status": "must_fix", + "text": "Create a new trial account for our sales team" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "contact_sales" + }, + "expected": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "contact_sales" + }, + "id": "booking-vs-contact-sales-boundary", + "mismatches": [], + "notes": "Rep outreach requests should stay in contact-sales rather than the booking/demo bucket.", + "pass": true, + "status": "must_fix", + "text": "Have a sales rep contact me about enterprise pricing" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "download" + }, + "expected": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "task_execution" + }, + "id": "task-vs-onboarding-boundary", + "mismatches": [ + { + "actual": "download", + "expected": "task_execution", + "path": "model_output.classification.intent.subtype" + } + ], + "notes": "Single in-product workflow requests should stay in task execution rather than onboarding setup.", + "pass": false, + "status": "must_fix", + "text": "Export the weekly pipeline report for me" + } + ] +} diff --git a/artifacts/evaluation/latest/summary.json b/artifacts/evaluation/latest/summary.json new file mode 100644 index 0000000000000000000000000000000000000000..6603dd1995c53296c6cb83100e98de686a77f523 --- /dev/null +++ b/artifacts/evaluation/latest/summary.json @@ -0,0 +1,7749 @@ +{ + "combined": { + "demo_benchmark": { + "benchmark_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/demo_prompt_suite.json", + "count": 15, + "fallback_rate": 0.2667, + "output_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/combined_demo_benchmark.json" + }, + "iab_behavior_lock_regression": { + "by_status": { + "must_fix": { + "failed": 0, + "passed": 12, + "total": 12 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_behavior_lock_cases.json", + "count": 12, + "failed": 0, + "passed": 12, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "id": "car-buying-maps-to-automotive-buying", + "mismatches": [], + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "pass": true, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptop-buying-maps-to-laptops", + "mismatches": [], + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "pass": true, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "labtop-buying-maps-to-laptops", + "mismatches": [], + "notes": "Common typo handling should still land in the laptops branch.", + "pass": true, + "status": "must_fix", + "text": "Which labtop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "crm-awareness-maps-to-sales", + "mismatches": [], + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "crm-comparison-maps-to-sales", + "mismatches": [], + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "marketing-tools-map-to-marketing", + "mismatches": [], + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "pass": true, + "status": "must_fix", + "text": "Best AI SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "id": "ml-explanation-maps-to-ai", + "mismatches": [], + "notes": "ML and NLP educational prompts should land in the AI branch.", + "pass": true, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "support-credential-help-maps-to-business-it", + "mismatches": [], + "notes": "Credential and account help should map to business IT rather than generic business.", + "pass": true, + "status": "must_fix", + "text": "How do I reset my password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "restaurant-booking-maps-to-dining-out", + "mismatches": [], + "notes": "Generic dining requests should not inherit the repo's business default.", + "pass": true, + "status": "must_fix", + "text": "Book a table for 2 tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "id": "trial-signup-maps-to-software", + "mismatches": [], + "notes": "Software action queries should map to the software/application branch.", + "pass": true, + "status": "must_fix", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-maps-to-tier4", + "mismatches": [], + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "pass": true, + "status": "must_fix", + "text": "best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "vodka-query-maps-to-alcoholic-beverages", + "mismatches": [], + "notes": "Food and beverage prompts should not fall through to the business default.", + "pass": true, + "status": "must_fix", + "text": "what is best vodka drink should i try" + } + ] + }, + "iab_cross_vertical_behavior_lock_regression": { + "by_status": { + "must_fix": { + "failed": 0, + "passed": 90, + "total": 90 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_cross_vertical_behavior_lock_cases.json", + "count": 90, + "failed": 0, + "passed": 90, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "id": "auto-buying-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "Which car should I buy for commuting?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "id": "auto-buying-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "Best used SUV for a family of four" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "id": "auto-buying-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": true, + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "sales-crm-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "sales-crm-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "pass": true, + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "marketing-tools-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "Best SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "id": "marketing-tools-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "How should I compare ad attribution platforms?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "marketing-tools-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": true, + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "business-it-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "How do I reset my work password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "business-it-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "id": "business-it-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": true, + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Book a table for six tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "pass": true, + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Which whiskey cocktail should I order?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Best vodka drinks for beginners" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink" + }, + "id": "alcoholic-beverages-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": true, + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing" + }, + "id": "artificial-intelligence-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "artificial-intelligence-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "How do large language models handle text classification?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "artificial-intelligence-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": true, + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "id": "software-apps-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Best workflow software for a small operations team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + }, + "id": "software-apps-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Need project management software for a distributed team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": true, + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Slack vs Teams for internal messaging" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": true, + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Best hosting platform for a startup website" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": true, + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Which laptop should I buy for college?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Best laptop for work and study under 1200" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "laptops-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": true, + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + }, + "id": "desktops-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Best desktop for video editing" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": true, + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + }, + "id": "smartphones-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Best phone with a good camera under 700" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": true, + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "style-fashion-parent-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Best shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "style-fashion-parent-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "style-fashion-parent-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "womens-shoes-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "id": "womens-shoes-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "id": "mens-shoes-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Best men's sneakers for daily wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "id": "mens-shoes-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Good men's dress shoes for office use" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": true, + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + }, + "id": "hotels-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "id": "hotels-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": true, + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "id": "real-estate-rentals-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Apartments for rent near downtown Austin" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "id": "real-estate-rentals-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + }, + "id": "real-estate-rentals-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": true, + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "id": "running-and-jogging-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "Best running plan for a first 10k" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": true, + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "How do offside rules work in soccer?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "Best soccer drills for beginner players" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports" + }, + "id": "soccer-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "pass": true, + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Recommend a good fantasy novel to read" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Best fiction books for a long flight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature" + }, + "id": "fiction-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "id": "home-improvement-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + }, + "id": "home-improvement-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "id": "home-improvement-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "pass": true, + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "id": "online-education-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "Best online courses for learning Python" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "id": "online-education-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "What are good platforms for remote professional classes?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers" + }, + "id": "online-education-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "pass": true, + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "id": "postgraduate-education-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "best universities to study masters" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + }, + "id": "postgraduate-education-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "which graduate schools have strong data science programs" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education" + }, + "id": "postgraduate-education-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": true, + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + }, + "id": "medical-health-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "what do these allergy symptoms mean" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + }, + "id": "medical-health-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + }, + "id": "medical-health-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "pass": true, + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "id": "careers-job-search-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "best remote jobs for data analysts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "careers-job-search-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "where should i look for product manager openings" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "pass": true, + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "id": "personal-finance-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "how much should i save each month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + }, + "id": "personal-finance-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "best budgeting approach for a growing family" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "id": "personal-finance-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "pass": true, + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "tips for parenting a toddler" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "how do i help my teenager spend less time online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + }, + "id": "parenting-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "pass": true, + "status": "must_fix", + "text": "need parenting advice for a child starting preschool" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "id": "gardening-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "best plants for a small balcony garden" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "how often should i water tomato plants" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden" + }, + "id": "gardening-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "pass": true, + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "What movie should we watch tonight?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + }, + "id": "movies-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "Best thriller movies from the last few years" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + }, + "id": "movies-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "pass": true, + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music" + } + ] + }, + "iab_cross_vertical_quality_target_eval": { + "by_status": { + "must_fix": { + "failed": 86, + "passed": 4, + "total": 90 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_cross_vertical_mapping_cases.json", + "count": 90, + "failed": 86, + "passed": 4, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "auto-buying-easy", + "mismatches": [ + { + "actual": "Travel", + "expected": "Automotive", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Travel Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": false, + "status": "must_fix", + "text": "Which car should I buy for commuting?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "auto-buying-medium", + "mismatches": [ + { + "actual": "Auto Body Styles", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": false, + "status": "must_fix", + "text": "Best used SUV for a family of four" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "auto-buying-hard", + "mismatches": [ + { + "actual": "Auto Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "pass": false, + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-easy", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "pass": false, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-medium", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "pass": false, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "sales-crm-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "pass": false, + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-easy", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": false, + "status": "must_fix", + "text": "Best SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": false, + "status": "must_fix", + "text": "How should I compare ad attribution platforms?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-hard", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "pass": false, + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "business-it-easy", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": false, + "status": "must_fix", + "text": "How do I reset my work password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "business-it-medium", + "mismatches": [ + { + "actual": "Careers", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Job Search", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": false, + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "business-it-hard", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "pass": false, + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "pass": false, + "status": "must_fix", + "text": "Book a table for six tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "pass": false, + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "dining-out-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "pass": false, + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "alcoholic-beverages-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": false, + "status": "must_fix", + "text": "Which whiskey cocktail should I order?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "alcoholic-beverages-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": false, + "status": "must_fix", + "text": "Best vodka drinks for beginners" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "alcoholic-beverages-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "pass": false, + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "artificial-intelligence-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": false, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "artificial-intelligence-medium", + "mismatches": [ + { + "actual": "Education", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Language Learning", + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": false, + "status": "must_fix", + "text": "How do large language models handle text classification?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "artificial-intelligence-hard", + "mismatches": [ + { + "actual": "Education", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Language Learning", + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "pass": false, + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-easy", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Business", + "expected": "Computing", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": false, + "status": "must_fix", + "text": "Best workflow software for a small operations team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Internet", + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": false, + "status": "must_fix", + "text": "Need project management software for a distributed team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "software-apps-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "pass": false, + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": false, + "status": "must_fix", + "text": "Best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": false, + "status": "must_fix", + "text": "Slack vs Teams for internal messaging" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "pass": false, + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": false, + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": false, + "status": "must_fix", + "text": "Best hosting platform for a startup website" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + }, + "id": "web-hosting-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "pass": false, + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": false, + "status": "must_fix", + "text": "Which laptop should I buy for college?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": false, + "status": "must_fix", + "text": "Best laptop for work and study under 1200" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptops-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Consumer Electronics", + "expected": "Computing", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Smartphones", + "expected": "Laptops", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "pass": false, + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Software and Applications", + "expected": "Desktops", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": false, + "status": "must_fix", + "text": "Best desktop for video editing" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": false, + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + }, + "id": "desktops-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "pass": false, + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Smartphones", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": false, + "status": "must_fix", + "text": "Best phone with a good camera under 700" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": false, + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + }, + "id": "smartphones-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "pass": false, + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "id": "style-fashion-parent-easy", + "mismatches": [], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Best shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "id": "style-fashion-parent-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion" + }, + "id": "style-fashion-parent-hard", + "mismatches": [], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "pass": true, + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Women's Clothing", + "expected": "Women's Shoes and Footwear", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Women's Clothing", + "expected": "Women's Shoes and Footwear", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + }, + "id": "womens-shoes-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Men's Clothing", + "expected": "Men's Shoes and Footwear", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Best men's sneakers for daily wear" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Men's Clothing", + "expected": "Men's Shoes and Footwear", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Good men's dress shoes for office use" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + }, + "id": "mens-shoes-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "pass": false, + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Hotel Properties", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-easy", + "mismatches": [ + { + "actual": "Real Estate", + "expected": "Travel", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Hotel Properties", + "expected": "Travel Type", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": null, + "expected": "Hotels and Motels", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": false, + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": false, + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + }, + "id": "hotels-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Hotels and Motels", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "pass": false, + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + }, + "id": "real-estate-rentals-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Apartments", + "expected": "Real Estate Renting and Leasing", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": false, + "status": "must_fix", + "text": "Apartments for rent near downtown Austin" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Apartments" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + }, + "id": "real-estate-rentals-medium", + "mismatches": [ + { + "actual": "Apartments", + "expected": "Real Estate Renting and Leasing", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": false, + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Personal Debt" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + }, + "id": "real-estate-rentals-hard", + "mismatches": [ + { + "actual": "Personal Finance", + "expected": "Real Estate", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Personal Debt", + "expected": "Real Estate Renting and Leasing", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "pass": false, + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-easy", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Healthy Living", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Business", + "expected": "Fitness and Exercise", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Green Solutions", + "expected": "Running and Jogging", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": false, + "status": "must_fix", + "text": "Best running plan for a first 10k" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": false, + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + }, + "id": "running-and-jogging-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "pass": false, + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "pass": false, + "status": "must_fix", + "text": "How do offside rules work in soccer?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "pass": false, + "status": "must_fix", + "text": "Best soccer drills for beginner players" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.tier2.label": "Soccer" + }, + "id": "soccer-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Soccer", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "pass": false, + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "pass": false, + "status": "must_fix", + "text": "Recommend a good fantasy novel to read" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-medium", + "mismatches": [], + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "pass": true, + "status": "must_fix", + "text": "Best fiction books for a long flight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.tier2.label": "Fiction" + }, + "id": "fiction-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Fiction", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "pass": false, + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + }, + "id": "home-improvement-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remodeling & Construction", + "expected": "Home Improvement", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "pass": false, + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.tier2.label": "Personal Care" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + }, + "id": "home-improvement-medium", + "mismatches": [ + { + "actual": "Style & Fashion", + "expected": "Home & Garden", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Personal Care", + "expected": "Home Improvement", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "pass": false, + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + }, + "id": "home-improvement-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Interior Decorating", + "expected": "Home Improvement", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "pass": false, + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Language Learning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "id": "online-education-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Language Learning", + "expected": "Online Education", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "pass": false, + "status": "must_fix", + "text": "Best online courses for learning Python" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "id": "online-education-medium", + "mismatches": [ + { + "actual": "Careers", + "expected": "Education", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remote Working", + "expected": "Online Education", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "pass": false, + "status": "must_fix", + "text": "What are good platforms for remote professional classes?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "Online Education" + }, + "id": "online-education-hard", + "mismatches": [ + { + "actual": "Careers", + "expected": "Education", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Online Education", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "pass": false, + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "id": "postgraduate-education-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Postgraduate Education", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": false, + "status": "must_fix", + "text": "best universities to study masters" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "id": "postgraduate-education-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": false, + "status": "must_fix", + "text": "which graduate schools have strong data science programs" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + }, + "id": "postgraduate-education-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Postgraduate Education", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "pass": false, + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "id": "medical-health-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "pass": false, + "status": "must_fix", + "text": "what do these allergy symptoms mean" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "id": "medical-health-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "pass": false, + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Healthy Living" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Medical Health" + }, + "id": "medical-health-hard", + "mismatches": [ + { + "actual": "Healthy Living", + "expected": "Medical Health", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "pass": false, + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Remote Working" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Remote Working", + "expected": "Job Search", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "pass": false, + "status": "must_fix", + "text": "best remote jobs for data analysts" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-medium", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Careers", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Business", + "expected": "Job Search", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "pass": false, + "status": "must_fix", + "text": "where should i look for product manager openings" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.tier2.label": "Job Search" + }, + "id": "careers-job-search-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "pass": false, + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Food Movements" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + }, + "id": "personal-finance-easy", + "mismatches": [ + { + "actual": "Food & Drink", + "expected": "Personal Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Food Movements", + "expected": "Financial Planning", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "pass": false, + "status": "must_fix", + "text": "how much should i save each month" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Economy" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + }, + "id": "personal-finance-medium", + "mismatches": [ + { + "actual": "Business and Finance", + "expected": "Personal Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Economy", + "expected": "Financial Planning", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "pass": false, + "status": "must_fix", + "text": "best budgeting approach for a growing family" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + }, + "id": "personal-finance-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Retirement Planning", + "expected": "Financial Planning", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "pass": false, + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "pass": false, + "status": "must_fix", + "text": "tips for parenting a toddler" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "pass": false, + "status": "must_fix", + "text": "how do i help my teenager spend less time online" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.tier2.label": "Parenting" + }, + "id": "parenting-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "pass": false, + "status": "must_fix", + "text": "need parenting advice for a child starting preschool" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Gardening", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "pass": false, + "status": "must_fix", + "text": "best plants for a small balcony garden" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-medium", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "pass": false, + "status": "must_fix", + "text": "how often should i water tomato plants" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.tier2.label": "Gardening" + }, + "id": "gardening-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": null, + "expected": "Gardening", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "pass": false, + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-easy", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "pass": false, + "status": "must_fix", + "text": "What movie should we watch tonight?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.tier2.label": "Video Game Genres" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-medium", + "mismatches": [ + { + "actual": "Video Gaming", + "expected": "Entertainment", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Video Game Genres", + "expected": "Movies", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "pass": false, + "status": "must_fix", + "text": "Best thriller movies from the last few years" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Music" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.tier2.label": "Movies" + }, + "id": "movies-hard", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + }, + { + "actual": "Music", + "expected": "Movies", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "pass": false, + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music" + } + ] + }, + "iab_quality_target_eval": { + "by_status": { + "must_fix": { + "failed": 12, + "passed": 0, + "total": 12 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_mapping_cases.json", + "count": 12, + "failed": 12, + "passed": 0, + "results": [ + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + }, + "id": "car-buying-maps-to-automotive-buying", + "mismatches": [ + { + "actual": "Auto Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "pass": false, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "laptop-buying-maps-to-laptops", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "pass": false, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + }, + "id": "labtop-buying-maps-to-laptops", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Common typo handling should still land in the laptops branch.", + "pass": false, + "status": "must_fix", + "text": "Which labtop to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "crm-awareness-maps-to-sales", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Software and Applications", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "pass": false, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + }, + "id": "crm-comparison-maps-to-sales", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Sales", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "pass": false, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + }, + "id": "marketing-tools-map-to-marketing", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Marketing and Advertising", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "pass": false, + "status": "must_fix", + "text": "Best AI SEO tools for content teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + }, + "id": "ml-explanation-maps-to-ai", + "mismatches": [ + { + "actual": null, + "expected": "Artificial Intelligence", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "ML and NLP educational prompts should land in the AI branch.", + "pass": false, + "status": "must_fix", + "text": "What is intent classification in NLP?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + }, + "id": "support-credential-help-maps-to-business-it", + "mismatches": [ + { + "actual": "Technology & Computing", + "expected": "Business and Finance", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Computing", + "expected": "Business", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Internet", + "expected": "Business I.T.", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Credential and account help should map to business IT rather than generic business.", + "pass": false, + "status": "must_fix", + "text": "How do I reset my password?" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out" + }, + "id": "restaurant-booking-maps-to-dining-out", + "mismatches": [ + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Generic dining requests should not inherit the repo's business default.", + "pass": false, + "status": "must_fix", + "text": "Book a table for 2 tonight" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + }, + "id": "trial-signup-maps-to-software", + "mismatches": [ + { + "actual": "Hobbies & Interests", + "expected": "Technology & Computing", + "path": "model_output.classification.iab_content.tier1.label" + }, + { + "actual": "Content Production", + "expected": "Computing", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "Freelance Writing", + "expected": "Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + } + ], + "notes": "Software action queries should map to the software/application branch.", + "pass": false, + "status": "must_fix", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Computer Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + }, + "id": "communication-software-maps-to-tier4", + "mismatches": [ + { + "actual": "Software and Applications", + "expected": "Computer Software and Applications", + "path": "model_output.classification.iab_content.tier3.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "pass": false, + "status": "must_fix", + "text": "best communication software for remote teams" + }, + { + "actual": { + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": null + }, + "expected": { + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + }, + "id": "vodka-query-maps-to-alcoholic-beverages", + "mismatches": [ + { + "actual": null, + "expected": "Alcoholic Beverages", + "path": "model_output.classification.iab_content.tier2.label" + }, + { + "actual": "nearest_equivalent", + "expected": "exact", + "path": "model_output.classification.iab_content.mapping_mode" + } + ], + "notes": "Food and beverage prompts should not fall through to the business default.", + "pass": false, + "status": "must_fix", + "text": "what is best vodka drink should i try" + } + ] + }, + "known_failure_regression": { + "by_status": { + "acceptable_weakness": { + "failed": 2, + "passed": 0, + "total": 2 + }, + "must_fix": { + "failed": 4, + "passed": 11, + "total": 15 + } + }, + "cases_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/known_failure_cases.json", + "count": 17, + "failed": 6, + "passed": 11, + "results": [ + { + "actual": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Type", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "id": "auto-buying-query-allowed", + "mismatches": [ + { + "actual": "Auto Type", + "expected": "Auto Buying and Selling", + "path": "model_output.classification.iab_content.tier2.label" + } + ], + "notes": "High-intent automotive shopping should clear as monetizable instead of failing safe.", + "pass": false, + "status": "must_fix", + "text": "Which car to buy in 2026" + }, + { + "actual": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "id": "laptop-buying-query-allowed", + "mismatches": [], + "notes": "High-intent laptop shopping should clear as monetizable instead of failing safe.", + "pass": true, + "status": "must_fix", + "text": "Which laptop to buy in 2026" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "model_output.classification.intent.type": "commercial", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "comparison_slot", + "system_decision.policy.monetization_eligibility": "allowed_with_caution" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "model_output.classification.intent.type": "commercial", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "comparison_slot", + "system_decision.policy.monetization_eligibility": "allowed_with_caution" + }, + "id": "commercial-comparison-clean-pass", + "mismatches": [], + "notes": "Clear comparison intent should now pass without fallback and expose a comparison opportunity.", + "pass": true, + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "decision", + "model_output.classification.intent.subtype": "provider_selection", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "decision_moment", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.intent.decision_phase": "decision", + "model_output.classification.intent.subtype": "provider_selection", + "model_output.fallback": null, + "system_decision.opportunity.strength": "high", + "system_decision.opportunity.type": "decision_moment", + "system_decision.policy.monetization_eligibility": "allowed" + }, + "id": "provider-selection-allowed", + "mismatches": [], + "notes": "Subtype and phase should now rescue a buying query even when the intent head remains conservative.", + "pass": true, + "status": "must_fix", + "text": "Which CRM should I buy for a 3-person startup?" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "awareness", + "model_output.classification.intent.subtype": "education", + "model_output.classification.intent.type": "informational", + "model_output.fallback": null, + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "expected": { + "model_output.classification.intent.decision_phase": "awareness", + "model_output.classification.intent.subtype": "education", + "model_output.classification.intent.type": "informational", + "model_output.fallback": null, + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "id": "education-query-restricted", + "mismatches": [], + "notes": "Clear educational prompts should stay out of monetizable pathways.", + "pass": true, + "status": "must_fix", + "text": "What is CRM software?" + }, + { + "actual": { + "model_output.classification.intent.subtype": "follow_up", + "model_output.classification.intent.type": "ambiguous", + "model_output.fallback.reason": "ambiguous_query", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.subtype": "follow_up", + "model_output.classification.intent.type": "ambiguous", + "model_output.fallback.reason": "ambiguous_query", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "ambiguous-follow-up-safe-block", + "mismatches": [], + "notes": "Short follow-ups should still fail safe instead of leaking into commercial handling.", + "pass": true, + "status": "must_fix", + "text": "Tell me more" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "support", + "model_output.classification.intent.type": "support", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.decision_phase": "support", + "model_output.classification.intent.type": "support", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "support-query-policy-block", + "mismatches": [], + "notes": "Support traffic must stay blocked even if the subtype head is still imperfect.", + "pass": true, + "status": "must_fix", + "text": "I cannot log into my account" + }, + { + "actual": { + "model_output.classification.intent.type": "prohibited", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.type": "prohibited", + "model_output.fallback.reason": "policy_default", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "prohibited-query-policy-block", + "mismatches": [], + "notes": "Unsafe queries should route into the prohibited intent type and stay blocked.", + "pass": true, + "status": "must_fix", + "text": "How do I hack into someone else's account" + }, + { + "actual": { + "model_output.classification.intent.subtype": "signup", + "model_output.fallback.reason": null, + "system_decision.policy.monetization_eligibility": "allowed" + }, + "expected": { + "model_output.classification.intent.subtype": "signup", + "model_output.fallback.reason": "confidence_below_threshold", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "signup-action-still-over-fallbacks", + "mismatches": [ + { + "actual": null, + "expected": "confidence_below_threshold", + "path": "model_output.fallback.reason" + }, + { + "actual": "allowed", + "expected": "not_allowed", + "path": "system_decision.policy.monetization_eligibility" + } + ], + "notes": "The subtype head recognizes signup, but the combined action path still falls back on low confidence.", + "pass": false, + "status": "acceptable_weakness", + "text": "Start my free trial" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "deal_seeking", + "system_decision.opportunity.type": "soft_recommendation", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "expected": { + "model_output.classification.intent.decision_phase": "awareness", + "model_output.classification.intent.subtype": "education", + "system_decision.opportunity.type": "none", + "system_decision.policy.monetization_eligibility": "restricted" + }, + "id": "price-seeking-underclassified", + "mismatches": [ + { + "actual": "deal_seeking", + "expected": "education", + "path": "model_output.classification.intent.subtype" + }, + { + "actual": "consideration", + "expected": "awareness", + "path": "model_output.classification.intent.decision_phase" + }, + { + "actual": "soft_recommendation", + "expected": "none", + "path": "system_decision.opportunity.type" + } + ], + "notes": "Price-seeking prompts still underclassify and should remain visible until the next data pass.", + "pass": false, + "status": "acceptable_weakness", + "text": "What costs less HubSpot or Zoho?" + }, + { + "actual": { + "model_output.classification.intent.subtype": "account_help", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "expected": { + "model_output.classification.intent.subtype": "account_help", + "system_decision.policy.monetization_eligibility": "not_allowed" + }, + "id": "support-subtype-account-help", + "mismatches": [], + "notes": "Login-help prompts should land in the account-help subtype instead of reflection-style labels.", + "pass": true, + "status": "must_fix", + "text": "I cannot log into my account" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "research", + "model_output.classification.intent.subtype": "product_discovery" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "product_discovery" + }, + "id": "discovery-subtype-shortlist", + "mismatches": [ + { + "actual": "research", + "expected": "consideration", + "path": "model_output.classification.intent.decision_phase" + } + ], + "notes": "Shortlist-building queries should stay in product discovery instead of drifting into fit-evaluation labels.", + "pass": false, + "status": "must_fix", + "text": "What project management tools should a remote ops team shortlist?" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "decision", + "model_output.classification.intent.subtype": "evaluation" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "evaluation" + }, + "id": "evaluation-subtype-fit-check", + "mismatches": [ + { + "actual": "decision", + "expected": "consideration", + "path": "model_output.classification.intent.decision_phase" + } + ], + "notes": "Single-vendor fit checks should map to evaluation rather than broad discovery.", + "pass": false, + "status": "must_fix", + "text": "Would ClickUp be a good fit for a remote ops team?" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "system_decision.opportunity.type": "comparison_slot" + }, + "expected": { + "model_output.classification.intent.decision_phase": "consideration", + "model_output.classification.intent.subtype": "comparison", + "system_decision.opportunity.type": "comparison_slot" + }, + "id": "comparison-vs-provider-selection-boundary", + "mismatches": [], + "notes": "Side-by-side comparison language should not be upgraded into provider selection.", + "pass": true, + "status": "must_fix", + "text": "Compare HubSpot and Pipedrive for a 5-person sales team" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "signup" + }, + "expected": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "signup" + }, + "id": "signup-vs-account-help-boundary", + "mismatches": [], + "notes": "New-account requests should stay in signup instead of leaking into account-help support labels.", + "pass": true, + "status": "must_fix", + "text": "Create a new trial account for our sales team" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "contact_sales" + }, + "expected": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "contact_sales" + }, + "id": "booking-vs-contact-sales-boundary", + "mismatches": [], + "notes": "Rep outreach requests should stay in contact-sales rather than the booking/demo bucket.", + "pass": true, + "status": "must_fix", + "text": "Have a sales rep contact me about enterprise pricing" + }, + { + "actual": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "download" + }, + "expected": { + "model_output.classification.intent.decision_phase": "action", + "model_output.classification.intent.subtype": "task_execution" + }, + "id": "task-vs-onboarding-boundary", + "mismatches": [ + { + "actual": "download", + "expected": "task_execution", + "path": "model_output.classification.intent.subtype" + } + ], + "notes": "Single in-product workflow requests should stay in task execution rather than onboarding setup.", + "pass": false, + "status": "must_fix", + "text": "Export the weekly pipeline report for me" + } + ] + } + }, + "heads": { + "decision_phase": { + "difficulty_benchmark": { + "accepted_accuracy": 0.9524, + "accepted_coverage": 1.0, + "accuracy": 0.9524, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_difficulty_benchmark_confusion_matrix.csv", + "count": 105, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.9714, + "accepted_coverage": 1.0, + "accuracy": 0.9714, + "count": 35, + "fallback_rate": 0.0, + "macro_f1": 0.9711 + }, + "hard": { + "accepted_accuracy": 0.8857, + "accepted_coverage": 1.0, + "accuracy": 0.8857, + "count": 35, + "fallback_rate": 0.0, + "macro_f1": 0.883 + }, + "medium": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "count": 35, + "fallback_rate": 0.0, + "macro_f1": 1.0 + } + }, + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.9526, + "per_class_metrics": { + "accuracy": 0.9523809523809523, + "action": { + "f1-score": 0.9285714285714286, + "precision": 1.0, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "awareness": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "consideration": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "decision": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "macro avg": { + "f1-score": 0.9525819504665047, + "precision": 0.9564075630252101, + "recall": 0.9523809523809523, + "support": 105.0 + }, + "post_purchase": { + "f1-score": 0.9375, + "precision": 0.8823529411764706, + "recall": 1.0, + "support": 15.0 + }, + "research": { + "f1-score": 0.9032258064516129, + "precision": 0.875, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "weighted avg": { + "f1-score": 0.9525819504665048, + "precision": 0.9564075630252101, + "recall": 0.9523809523809523, + "support": 105.0 + } + }, + "suite": "difficulty_benchmark" + }, + "final_wave_cases": { + "accepted_accuracy": 0.963, + "accepted_coverage": 1.0, + "accuracy": 0.963, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_final_wave_cases_confusion_matrix.csv", + "count": 27, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/final_wave_cases.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.961, + "per_class_metrics": { + "accuracy": 0.9629629629629629, + "action": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "awareness": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "consideration": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "macro avg": { + "f1-score": 0.823747680890538, + "precision": 0.8333333333333334, + "recall": 0.8214285714285714, + "support": 27.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "research": { + "f1-score": 0.8571428571428571, + "precision": 1.0, + "recall": 0.75, + "support": 4.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "weighted avg": { + "f1-score": 0.962000962000962, + "precision": 0.9691358024691359, + "recall": 0.9629629629629629, + "support": 27.0 + } + }, + "suite": "final_wave_cases" + }, + "hard_cases": { + "accepted_accuracy": 0.9231, + "accepted_coverage": 1.0, + "accuracy": 0.9231, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_hard_cases_confusion_matrix.csv", + "count": 39, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.9249, + "per_class_metrics": { + "accuracy": 0.9230769230769231, + "action": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "awareness": { + "f1-score": 0.8571428571428571, + "precision": 0.75, + "recall": 1.0, + "support": 6.0 + }, + "consideration": { + "f1-score": 0.9230769230769231, + "precision": 1.0, + "recall": 0.8571428571428571, + "support": 7.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 7.0 + }, + "macro avg": { + "f1-score": 0.792778649921507, + "precision": 0.7976190476190477, + "recall": 0.7959183673469388, + "support": 39.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "research": { + "f1-score": 0.7692307692307693, + "precision": 0.8333333333333334, + "recall": 0.7142857142857143, + "support": 7.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "weighted avg": { + "f1-score": 0.9227951535643845, + "precision": 0.9316239316239316, + "recall": 0.9230769230769231, + "support": 39.0 + } + }, + "suite": "hard_cases" + }, + "test": { + "accepted_accuracy": 0.8621, + "accepted_coverage": 1.0, + "accuracy": 0.8621, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_test_confusion_matrix.csv", + "count": 29, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/test.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.8651, + "per_class_metrics": { + "accuracy": 0.8620689655172413, + "action": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "awareness": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 3.0 + }, + "consideration": { + "f1-score": 0.8888888888888888, + "precision": 1.0, + "recall": 0.8, + "support": 5.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "macro avg": { + "f1-score": 0.865079365079365, + "precision": 0.8809523809523808, + "recall": 0.8857142857142858, + "support": 29.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "research": { + "f1-score": 0.5, + "precision": 0.6666666666666666, + "recall": 0.4, + "support": 5.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "weighted avg": { + "f1-score": 0.8601532567049808, + "precision": 0.8908045977011494, + "recall": 0.8620689655172413, + "support": 29.0 + } + }, + "suite": "test" + }, + "train": { + "accepted_accuracy": 0.9902, + "accepted_coverage": 1.0, + "accuracy": 0.9902, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_train_confusion_matrix.csv", + "count": 102, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/train.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.9907, + "per_class_metrics": { + "accuracy": 0.9901960784313726, + "action": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "awareness": { + "f1-score": 0.9696969696969697, + "precision": 0.9411764705882353, + "recall": 1.0, + "support": 16.0 + }, + "consideration": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 17.0 + }, + "decision": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 16.0 + }, + "macro avg": { + "f1-score": 0.9907448872966115, + "precision": 0.9915966386554622, + "recall": 0.9904761904761905, + "support": 102.0 + }, + "post_purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "research": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "weighted avg": { + "f1-score": 0.9901755895670704, + "precision": 0.9907727797001153, + "recall": 0.9901960784313726, + "support": 102.0 + } + }, + "suite": "train" + }, + "val": { + "accepted_accuracy": 0.8966, + "accepted_coverage": 1.0, + "accuracy": 0.8966, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/decision_phase_val_confusion_matrix.csv", + "count": 29, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/decision_phase/val.jsonl", + "fallback_rate": 0.0, + "head": "decision_phase", + "macro_f1": 0.8975, + "per_class_metrics": { + "accuracy": 0.896551724137931, + "action": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "awareness": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "consideration": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "decision": { + "f1-score": 0.8571428571428571, + "precision": 1.0, + "recall": 0.75, + "support": 4.0 + }, + "macro avg": { + "f1-score": 0.8974953617810761, + "precision": 0.9166666666666667, + "recall": 0.8928571428571429, + "support": 29.0 + }, + "post_purchase": { + "f1-score": 0.8571428571428571, + "precision": 1.0, + "recall": 0.75, + "support": 4.0 + }, + "research": { + "f1-score": 0.75, + "precision": 0.75, + "recall": 0.75, + "support": 4.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "weighted avg": { + "f1-score": 0.8947604120017911, + "precision": 0.9080459770114944, + "recall": 0.896551724137931, + "support": 29.0 + } + }, + "suite": "val" + } + }, + "iab_content": { + "cross_vertical_benchmark": { + "accepted_accuracy": 0.3444, + "accepted_coverage": 1.0, + "accuracy": 0.3444, + "count": 90, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab_cross_vertical_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.2667, + "accepted_coverage": 1.0, + "accuracy": 0.2667, + "count": 30, + "fallback_rate": 0.0, + "macro_f1": 0.1633 + }, + "hard": { + "accepted_accuracy": 0.3667, + "accepted_coverage": 1.0, + "accuracy": 0.3667, + "count": 30, + "fallback_rate": 0.0, + "macro_f1": 0.2174 + }, + "medium": { + "accepted_accuracy": 0.4, + "accepted_coverage": 1.0, + "accuracy": 0.4, + "count": 30, + "fallback_rate": 0.0, + "macro_f1": 0.2667 + } + }, + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1808, + "primary_source": "embedding_retrieval", + "suite": "cross_vertical_benchmark", + "tier_metrics": { + "average_prediction_depth": 2.5333, + "error_buckets": { + "exact_match": 31, + "parent_safe_stop": 5, + "right_tier1_wrong_tier2": 19, + "wrong_deep_leaf": 13, + "wrong_tier1": 22 + }, + "exact_path_accuracy": 0.3444, + "parent_safe_accuracy": 0.4889, + "tier1_accuracy": 0.7556, + "tier2_accuracy": 0.5238, + "tier3_accuracy": 0.4762, + "tier4_accuracy": 1.0 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.5333, + "error_buckets": { + "exact_match": 27, + "parent_safe_stop": 5, + "right_tier1_wrong_tier2": 19, + "wrong_deep_leaf": 17, + "wrong_tier1": 22 + }, + "exact_path_accuracy": 0.3, + "fallback_overuse_count": 12, + "fallback_rate": 0.1333, + "parent_safe_accuracy": 0.4444, + "tier1_accuracy": 0.7556, + "tier2_accuracy": 0.5238, + "tier3_accuracy": 0.381, + "tier4_accuracy": 0.5 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.5333, + "error_buckets": { + "exact_match": 27, + "parent_safe_stop": 5, + "right_tier1_wrong_tier2": 19, + "wrong_deep_leaf": 17, + "wrong_tier1": 22 + }, + "exact_path_accuracy": 0.3, + "parent_safe_accuracy": 0.4444, + "tier1_accuracy": 0.7556, + "tier2_accuracy": 0.5238, + "tier3_accuracy": 0.381, + "tier4_accuracy": 0.5 + } + } + }, + "difficulty_benchmark": { + "accepted_accuracy": 0.3782, + "accepted_coverage": 1.0, + "accuracy": 0.3782, + "count": 156, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.4038, + "accepted_coverage": 1.0, + "accuracy": 0.4038, + "count": 52, + "fallback_rate": 0.0, + "macro_f1": 0.2171 + }, + "hard": { + "accepted_accuracy": 0.3077, + "accepted_coverage": 1.0, + "accuracy": 0.3077, + "count": 52, + "fallback_rate": 0.0, + "macro_f1": 0.1626 + }, + "medium": { + "accepted_accuracy": 0.4231, + "accepted_coverage": 1.0, + "accuracy": 0.4231, + "count": 52, + "fallback_rate": 0.0, + "macro_f1": 0.2265 + } + }, + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1593, + "primary_source": "embedding_retrieval", + "suite": "difficulty_benchmark", + "tier_metrics": { + "average_prediction_depth": 2.5833, + "error_buckets": { + "exact_match": 59, + "parent_safe_stop": 17, + "right_tier1_wrong_tier2": 42, + "wrong_deep_leaf": 13, + "wrong_tier1": 25 + }, + "exact_path_accuracy": 0.3782, + "parent_safe_accuracy": 0.6154, + "tier1_accuracy": 0.8397, + "tier2_accuracy": 0.5705, + "tier3_accuracy": 0.5648, + "tier4_accuracy": 0.5833 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.5833, + "error_buckets": { + "exact_match": 48, + "parent_safe_stop": 17, + "right_tier1_wrong_tier2": 42, + "wrong_deep_leaf": 24, + "wrong_tier1": 25 + }, + "exact_path_accuracy": 0.3077, + "fallback_overuse_count": 11, + "fallback_rate": 0.0705, + "parent_safe_accuracy": 0.5449, + "tier1_accuracy": 0.8397, + "tier2_accuracy": 0.5705, + "tier3_accuracy": 0.4352, + "tier4_accuracy": 0.25 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.5833, + "error_buckets": { + "exact_match": 48, + "parent_safe_stop": 17, + "right_tier1_wrong_tier2": 42, + "wrong_deep_leaf": 24, + "wrong_tier1": 25 + }, + "exact_path_accuracy": 0.3077, + "parent_safe_accuracy": 0.5449, + "tier1_accuracy": 0.8397, + "tier2_accuracy": 0.5705, + "tier3_accuracy": 0.4352, + "tier4_accuracy": 0.25 + } + } + }, + "extended_cases": { + "accepted_accuracy": 0.25, + "accepted_coverage": 1.0, + "accuracy": 0.25, + "count": 8, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/extended_cases.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1429, + "primary_source": "embedding_retrieval", + "suite": "extended_cases", + "tier_metrics": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "right_tier1_wrong_tier2": 3, + "wrong_deep_leaf": 2, + "wrong_tier1": 1 + }, + "exact_path_accuracy": 0.25, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.875, + "tier2_accuracy": 0.4286, + "tier3_accuracy": 1.0, + "tier4_accuracy": 0.0 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "right_tier1_wrong_tier2": 3, + "wrong_deep_leaf": 2, + "wrong_tier1": 1 + }, + "exact_path_accuracy": 0.25, + "fallback_overuse_count": 1, + "fallback_rate": 0.125, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.875, + "tier2_accuracy": 0.4286, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "right_tier1_wrong_tier2": 3, + "wrong_deep_leaf": 2, + "wrong_tier1": 1 + }, + "exact_path_accuracy": 0.25, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.875, + "tier2_accuracy": 0.4286, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + } + } + }, + "hard_cases": { + "accepted_accuracy": 0.25, + "accepted_coverage": 1.0, + "accuracy": 0.25, + "count": 8, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.1429, + "primary_source": "embedding_retrieval", + "suite": "hard_cases", + "tier_metrics": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 2, + "parent_safe_stop": 1, + "right_tier1_wrong_tier2": 2, + "wrong_tier1": 3 + }, + "exact_path_accuracy": 0.25, + "parent_safe_accuracy": 0.5, + "tier1_accuracy": 0.625, + "tier2_accuracy": 0.375, + "tier3_accuracy": 0.2, + "tier4_accuracy": 1.0 + }, + "view_metrics": { + "combined_path": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 1, + "parent_safe_stop": 1, + "right_tier1_wrong_tier2": 2, + "wrong_deep_leaf": 1, + "wrong_tier1": 3 + }, + "exact_path_accuracy": 0.125, + "fallback_overuse_count": 1, + "fallback_rate": 0.125, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.625, + "tier2_accuracy": 0.375, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + }, + "disagreements": { + "retrieval_vs_combined": 0 + }, + "embedding_retrieval": { + "average_prediction_depth": 2.375, + "error_buckets": { + "exact_match": 1, + "parent_safe_stop": 1, + "right_tier1_wrong_tier2": 2, + "wrong_deep_leaf": 1, + "wrong_tier1": 3 + }, + "exact_path_accuracy": 0.125, + "parent_safe_accuracy": 0.375, + "tier1_accuracy": 0.625, + "tier2_accuracy": 0.375, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0 + } + } + }, + "test": { + "accepted_accuracy": 0.6527, + "accepted_coverage": 1.0, + "accuracy": 0.6527, + "count": 3282, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/test.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.6922, + "primary_source": "embedding_retrieval", + "suite": "test", + "tier_metrics": { + "average_prediction_depth": 2.1889, + "error_buckets": { + "exact_match": 2142, + "parent_safe_stop": 115, + "right_tier1_wrong_tier2": 674, + "wrong_deep_leaf": 236, + "wrong_tier1": 115 + }, + "exact_path_accuracy": 0.6527, + "parent_safe_accuracy": 0.7721, + "tier1_accuracy": 0.965, + "tier2_accuracy": 0.7587, + "tier3_accuracy": 0.8041, + "tier4_accuracy": 0.7929 + }, + "view_metrics": { + "combined_path": { + "count": 3282, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "disagreements": { + "count": 3282, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "embedding_retrieval": { + "average_prediction_depth": 2.1889, + "error_buckets": { + "exact_match": 2107, + "parent_safe_stop": 109, + "right_tier1_wrong_tier2": 680, + "wrong_deep_leaf": 271, + "wrong_tier1": 115 + }, + "exact_path_accuracy": 0.642, + "parent_safe_accuracy": 0.7596, + "tier1_accuracy": 0.965, + "tier2_accuracy": 0.7566, + "tier3_accuracy": 0.7679, + "tier4_accuracy": 0.6071 + } + } + }, + "train": { + "accepted_accuracy": 0.8115, + "accepted_coverage": 1.0, + "accuracy": 0.8115, + "count": 13211, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/train.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.8293, + "primary_source": "embedding_retrieval", + "suite": "train", + "tier_metrics": { + "average_prediction_depth": 2.2368, + "error_buckets": { + "exact_match": 10721, + "parent_safe_stop": 346, + "right_tier1_wrong_tier2": 812, + "wrong_deep_leaf": 809, + "wrong_tier1": 523 + }, + "exact_path_accuracy": 0.8115, + "parent_safe_accuracy": 0.8753, + "tier1_accuracy": 0.9604, + "tier2_accuracy": 0.9208, + "tier3_accuracy": 0.8788, + "tier4_accuracy": 0.8732 + }, + "view_metrics": { + "combined_path": { + "count": 13211, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "disagreements": { + "count": 13211, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "embedding_retrieval": { + "average_prediction_depth": 2.2368, + "error_buckets": { + "exact_match": 10569, + "parent_safe_stop": 338, + "right_tier1_wrong_tier2": 834, + "wrong_deep_leaf": 947, + "wrong_tier1": 523 + }, + "exact_path_accuracy": 0.8, + "parent_safe_accuracy": 0.8631, + "tier1_accuracy": 0.9604, + "tier2_accuracy": 0.9189, + "tier3_accuracy": 0.843, + "tier4_accuracy": 0.6589 + } + } + }, + "val": { + "accepted_accuracy": 0.6545, + "accepted_coverage": 1.0, + "accuracy": 0.6545, + "count": 3282, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/iab/val.jsonl", + "fallback_rate": 0.0, + "head": "iab_content", + "macro_f1": 0.6957, + "primary_source": "embedding_retrieval", + "suite": "val", + "tier_metrics": { + "average_prediction_depth": 2.1813, + "error_buckets": { + "exact_match": 2148, + "parent_safe_stop": 105, + "right_tier1_wrong_tier2": 684, + "wrong_deep_leaf": 234, + "wrong_tier1": 111 + }, + "exact_path_accuracy": 0.6545, + "parent_safe_accuracy": 0.7821, + "tier1_accuracy": 0.9662, + "tier2_accuracy": 0.7577, + "tier3_accuracy": 0.8352, + "tier4_accuracy": 0.7214 + }, + "view_metrics": { + "combined_path": { + "count": 3282, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "disagreements": { + "count": 3282, + "max_combined_rows": 500, + "reason": "dataset_too_large_for_combined_view", + "skipped": true + }, + "embedding_retrieval": { + "average_prediction_depth": 2.1813, + "error_buckets": { + "exact_match": 2116, + "parent_safe_stop": 100, + "right_tier1_wrong_tier2": 689, + "wrong_deep_leaf": 266, + "wrong_tier1": 111 + }, + "exact_path_accuracy": 0.6447, + "parent_safe_accuracy": 0.7709, + "tier1_accuracy": 0.9662, + "tier2_accuracy": 0.756, + "tier3_accuracy": 0.799, + "tier4_accuracy": 0.55 + } + } + } + }, + "intent_subtype": { + "difficulty_benchmark": { + "accepted_accuracy": 0.9386, + "accepted_coverage": 1.0, + "accuracy": 0.9386, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_difficulty_benchmark_confusion_matrix.csv", + "count": 277, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 0.9565, + "accepted_coverage": 1.0, + "accuracy": 0.9565, + "count": 92, + "fallback_rate": 0.0, + "macro_f1": 0.9579 + }, + "hard": { + "accepted_accuracy": 0.8901, + "accepted_coverage": 1.0, + "accuracy": 0.8901, + "count": 91, + "fallback_rate": 0.0, + "macro_f1": 0.8913 + }, + "medium": { + "accepted_accuracy": 0.9681, + "accepted_coverage": 1.0, + "accuracy": 0.9681, + "count": 94, + "fallback_rate": 0.0, + "macro_f1": 0.9671 + } + }, + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.9401, + "per_class_metrics": { + "account_help": { + "f1-score": 0.8888888888888888, + "precision": 1.0, + "recall": 0.8, + "support": 15.0 + }, + "accuracy": 0.9386281588447654, + "billing_help": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "booking": { + "f1-score": 0.9285714285714286, + "precision": 1.0, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "comparison": { + "f1-score": 0.896551724137931, + "precision": 0.9285714285714286, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "contact_sales": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "deal_seeking": { + "f1-score": 0.9333333333333333, + "precision": 0.9333333333333333, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "download": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "education": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 15.0 + }, + "emotional_reflection": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "evaluation": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "follow_up": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "macro avg": { + "f1-score": 0.9401067100194944, + "precision": 0.9476910208527856, + "recall": 0.9383215323166303, + "support": 277.0 + }, + "onboarding_setup": { + "f1-score": 0.9411764705882353, + "precision": 0.9411764705882353, + "recall": 0.9411764705882353, + "support": 17.0 + }, + "product_discovery": { + "f1-score": 0.9285714285714286, + "precision": 1.0, + "recall": 0.8666666666666667, + "support": 15.0 + }, + "provider_selection": { + "f1-score": 0.9375, + "precision": 0.9375, + "recall": 0.9375, + "support": 16.0 + }, + "purchase": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "signup": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 16.0 + }, + "task_execution": { + "f1-score": 0.8717948717948718, + "precision": 0.8095238095238095, + "recall": 0.9444444444444444, + "support": 18.0 + }, + "troubleshooting": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "weighted avg": { + "f1-score": 0.9391802821325396, + "precision": 0.9455776173285199, + "recall": 0.9386281588447654, + "support": 277.0 + } + }, + "suite": "difficulty_benchmark" + }, + "extended_cases": { + "accepted_accuracy": 0.8491, + "accepted_coverage": 1.0, + "accuracy": 0.8491, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_extended_cases_confusion_matrix.csv", + "count": 53, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/extended_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.8146, + "per_class_metrics": { + "account_help": { + "f1-score": 0.6666666666666666, + "precision": 0.6666666666666666, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "accuracy": 0.8490566037735849, + "billing_help": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "booking": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "comparison": { + "f1-score": 0.6666666666666666, + "precision": 1.0, + "recall": 0.5, + "support": 2.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 0.8181818181818182, + "precision": 0.6923076923076923, + "recall": 1.0, + "support": 9.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 0.9333333333333333, + "precision": 0.875, + "recall": 1.0, + "support": 7.0 + }, + "emotional_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "evaluation": { + "f1-score": 0.5, + "precision": 1.0, + "recall": 0.3333333333333333, + "support": 3.0 + }, + "follow_up": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 12.0 + }, + "macro avg": { + "f1-score": 0.4978114478114478, + "precision": 0.531517094017094, + "recall": 0.5092592592592592, + "support": 53.0 + }, + "onboarding_setup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "product_discovery": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "provider_selection": { + "f1-score": 0.9090909090909091, + "precision": 0.8333333333333334, + "recall": 1.0, + "support": 5.0 + }, + "purchase": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "signup": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "task_execution": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "troubleshooting": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "weighted avg": { + "f1-score": 0.8404230989136648, + "precision": 0.887215771649734, + "recall": 0.8490566037735849, + "support": 53.0 + } + }, + "suite": "extended_cases" + }, + "hard_cases": { + "accepted_accuracy": 0.9468, + "accepted_coverage": 1.0, + "accuracy": 0.9468, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_hard_cases_confusion_matrix.csv", + "count": 94, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.9191, + "per_class_metrics": { + "account_help": { + "f1-score": 0.8, + "precision": 0.6666666666666666, + "recall": 1.0, + "support": 2.0 + }, + "accuracy": 0.9468085106382979, + "billing_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "comparison": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 29.0 + }, + "emotional_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "evaluation": { + "f1-score": 0.7272727272727273, + "precision": 0.8, + "recall": 0.6666666666666666, + "support": 6.0 + }, + "follow_up": { + "f1-score": 0.9565217391304348, + "precision": 1.0, + "recall": 0.9166666666666666, + "support": 12.0 + }, + "macro avg": { + "f1-score": 0.7659288023895194, + "precision": 0.7648148148148147, + "recall": 0.786111111111111, + "support": 94.0 + }, + "onboarding_setup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "product_discovery": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 8.0 + }, + "provider_selection": { + "f1-score": 0.9473684210526315, + "precision": 1.0, + "recall": 0.9, + "support": 10.0 + }, + "purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "signup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "task_execution": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "troubleshooting": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "weighted avg": { + "f1-score": 0.9478016938458051, + "precision": 0.9578014184397163, + "recall": 0.9468085106382979, + "support": 94.0 + } + }, + "suite": "hard_cases" + }, + "test": { + "accepted_accuracy": 0.9, + "accepted_coverage": 1.0, + "accuracy": 0.9, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_test_confusion_matrix.csv", + "count": 70, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/test.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.863, + "per_class_metrics": { + "account_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 2.0 + }, + "accuracy": 0.9, + "billing_help": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "comparison": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 2.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "emotional_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "evaluation": { + "f1-score": 0.4, + "precision": 0.3333333333333333, + "recall": 0.5, + "support": 2.0 + }, + "follow_up": { + "f1-score": 0.8421052631578947, + "precision": 1.0, + "recall": 0.7272727272727273, + "support": 11.0 + }, + "macro avg": { + "f1-score": 0.6712084293224644, + "precision": 0.6671296296296296, + "recall": 0.6908670033670034, + "support": 70.0 + }, + "onboarding_setup": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 4.0 + }, + "product_discovery": { + "f1-score": 0.875, + "precision": 0.875, + "recall": 0.875, + "support": 8.0 + }, + "provider_selection": { + "f1-score": 0.9090909090909091, + "precision": 1.0, + "recall": 0.8333333333333334, + "support": 6.0 + }, + "purchase": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "signup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 2.0 + }, + "task_execution": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "troubleshooting": { + "f1-score": 0.5, + "precision": 0.5, + "recall": 0.5, + "support": 2.0 + }, + "weighted avg": { + "f1-score": 0.9058084605453025, + "precision": 0.9266666666666667, + "recall": 0.9, + "support": 70.0 + } + }, + "suite": "test" + }, + "train": { + "accepted_accuracy": 0.9649, + "accepted_coverage": 1.0, + "accuracy": 0.9649, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_train_confusion_matrix.csv", + "count": 313, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/train.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.9649, + "per_class_metrics": { + "account_help": { + "f1-score": 0.9333333333333333, + "precision": 0.875, + "recall": 1.0, + "support": 7.0 + }, + "accuracy": 0.9648562300319489, + "billing_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "comparison": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "contact_sales": { + "f1-score": 0.875, + "precision": 1.0, + "recall": 0.7777777777777778, + "support": 9.0 + }, + "deal_seeking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 11.0 + }, + "download": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "education": { + "f1-score": 0.9904761904761905, + "precision": 0.9811320754716981, + "recall": 1.0, + "support": 52.0 + }, + "emotional_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 20.0 + }, + "evaluation": { + "f1-score": 0.9032258064516129, + "precision": 1.0, + "recall": 0.8235294117647058, + "support": 17.0 + }, + "follow_up": { + "f1-score": 0.927536231884058, + "precision": 0.9696969696969697, + "recall": 0.8888888888888888, + "support": 36.0 + }, + "macro avg": { + "f1-score": 0.9649442256020961, + "precision": 0.9689347311202658, + "recall": 0.9651818334171275, + "support": 313.0 + }, + "onboarding_setup": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 17.0 + }, + "product_discovery": { + "f1-score": 0.96875, + "precision": 0.9393939393939394, + "recall": 1.0, + "support": 31.0 + }, + "provider_selection": { + "f1-score": 0.9795918367346939, + "precision": 1.0, + "recall": 0.96, + "support": 25.0 + }, + "purchase": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 6.0 + }, + "signup": { + "f1-score": 0.9411764705882353, + "precision": 0.8888888888888888, + "recall": 1.0, + "support": 16.0 + }, + "task_execution": { + "f1-score": 0.926829268292683, + "precision": 0.8636363636363636, + "recall": 1.0, + "support": 19.0 + }, + "troubleshooting": { + "f1-score": 0.9230769230769231, + "precision": 0.9230769230769231, + "recall": 0.9230769230769231, + "support": 13.0 + }, + "weighted avg": { + "f1-score": 0.9643733669039578, + "precision": 0.967429661617075, + "recall": 0.9648562300319489, + "support": 313.0 + } + }, + "suite": "train" + }, + "val": { + "accepted_accuracy": 0.875, + "accepted_coverage": 1.0, + "accuracy": 0.875, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_subtype_val_confusion_matrix.csv", + "count": 80, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/subtype/val.jsonl", + "fallback_rate": 0.0, + "head": "intent_subtype", + "macro_f1": 0.725, + "per_class_metrics": { + "account_help": { + "f1-score": 0.5, + "precision": 0.5, + "recall": 0.5, + "support": 2.0 + }, + "accuracy": 0.875, + "billing_help": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "booking": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 3.0 + }, + "comparison": { + "f1-score": 0.4, + "precision": 1.0, + "recall": 0.25, + "support": 4.0 + }, + "contact_sales": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "deal_seeking": { + "f1-score": 0.5714285714285714, + "precision": 0.4, + "recall": 1.0, + "support": 2.0 + }, + "download": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "education": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 14.0 + }, + "emotional_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "evaluation": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 2.0 + }, + "follow_up": { + "f1-score": 0.9523809523809523, + "precision": 1.0, + "recall": 0.9090909090909091, + "support": 11.0 + }, + "macro avg": { + "f1-score": 0.6444203944203944, + "precision": 0.6542087542087542, + "recall": 0.687121212121212, + "support": 80.0 + }, + "onboarding_setup": { + "f1-score": 0.8, + "precision": 0.8, + "recall": 0.8, + "support": 5.0 + }, + "product_discovery": { + "f1-score": 0.9090909090909091, + "precision": 0.9090909090909091, + "recall": 0.9090909090909091, + "support": 11.0 + }, + "provider_selection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 7.0 + }, + "purchase": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 2.0 + }, + "signup": { + "f1-score": 0.8, + "precision": 0.6666666666666666, + "recall": 1.0, + "support": 2.0 + }, + "task_execution": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "troubleshooting": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 1.0 + }, + "weighted avg": { + "f1-score": 0.8644047619047619, + "precision": 0.8891666666666665, + "recall": 0.875, + "support": 80.0 + } + }, + "suite": "val" + } + }, + "intent_type": { + "difficulty_benchmark": { + "accepted_accuracy": 0.9867, + "accepted_coverage": 1.0, + "accuracy": 0.9867, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_difficulty_benchmark_confusion_matrix.csv", + "count": 150, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/intent_type_benchmark.jsonl", + "difficulty_breakdown": { + "easy": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "count": 50, + "fallback_rate": 0.0, + "macro_f1": 1.0 + }, + "hard": { + "accepted_accuracy": 0.96, + "accepted_coverage": 1.0, + "accuracy": 0.96, + "count": 50, + "fallback_rate": 0.0, + "macro_f1": 0.9596 + }, + "medium": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "count": 50, + "fallback_rate": 0.0, + "macro_f1": 1.0 + } + }, + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.9867, + "per_class_metrics": { + "accuracy": 0.9866666666666667, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "chit_chat": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "macro avg": { + "f1-score": 0.9866518353726363, + "precision": 0.9875, + "recall": 0.9866666666666667, + "support": 150.0 + }, + "personal_reflection": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "prohibited": { + "f1-score": 0.9655172413793104, + "precision": 1.0, + "recall": 0.9333333333333333, + "support": 15.0 + }, + "support": { + "f1-score": 0.967741935483871, + "precision": 0.9375, + "recall": 1.0, + "support": 15.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 15.0 + }, + "weighted avg": { + "f1-score": 0.9866518353726362, + "precision": 0.9875, + "recall": 0.9866666666666667, + "support": 150.0 + } + }, + "suite": "difficulty_benchmark" + }, + "hard_cases": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_hard_cases_confusion_matrix.csv", + "count": 61, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/hard_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 1.0, + "per_class_metrics": { + "accuracy": 1.0, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 13.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 20.0 + }, + "macro avg": { + "f1-score": 0.9, + "precision": 0.9, + "recall": 0.9, + "support": 61.0 + }, + "personal_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "prohibited": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 4.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "weighted avg": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 61.0 + } + }, + "suite": "hard_cases" + }, + "test": { + "accepted_accuracy": 0.9149, + "accepted_coverage": 1.0, + "accuracy": 0.9149, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_test_confusion_matrix.csv", + "count": 47, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/test.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.9131, + "per_class_metrics": { + "accuracy": 0.9148936170212766, + "ambiguous": { + "f1-score": 0.875, + "precision": 1.0, + "recall": 0.7777777777777778, + "support": 9.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 0.9, + "precision": 0.9, + "recall": 0.9, + "support": 10.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 0.8888888888888888, + "precision": 0.8, + "recall": 1.0, + "support": 8.0 + }, + "macro avg": { + "f1-score": 0.9130555555555555, + "precision": 0.9199999999999999, + "recall": 0.9344444444444445, + "support": 47.0 + }, + "personal_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "prohibited": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "weighted avg": { + "f1-score": 0.916016548463357, + "precision": 0.9340425531914893, + "recall": 0.9148936170212766, + "support": 47.0 + } + }, + "suite": "test" + }, + "third_wave_cases": { + "accepted_accuracy": 0.8846, + "accepted_coverage": 1.0, + "accuracy": 0.8846, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_third_wave_cases_confusion_matrix.csv", + "count": 26, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/third_wave_cases.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.8294, + "per_class_metrics": { + "accuracy": 0.8846153846153846, + "ambiguous": { + "f1-score": 0.8888888888888888, + "precision": 1.0, + "recall": 0.8, + "support": 10.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 0.9166666666666666, + "precision": 0.9166666666666666, + "recall": 0.9166666666666666, + "support": 12.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "macro avg": { + "f1-score": 0.5805555555555555, + "precision": 0.5916666666666666, + "recall": 0.5716666666666667, + "support": 26.0 + }, + "personal_reflection": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "prohibited": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "transactional": { + "f1-score": 0.0, + "precision": 0.0, + "recall": 0.0, + "support": 0.0 + }, + "weighted avg": { + "f1-score": 0.9188034188034189, + "precision": 0.9615384615384616, + "recall": 0.8846153846153846, + "support": 26.0 + } + }, + "suite": "third_wave_cases" + }, + "train": { + "accepted_accuracy": 1.0, + "accepted_coverage": 1.0, + "accuracy": 1.0, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_train_confusion_matrix.csv", + "count": 183, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/train.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 1.0, + "per_class_metrics": { + "accuracy": 1.0, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 31.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 36.0 + }, + "creative_generation": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 38.0 + }, + "macro avg": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 183.0 + }, + "personal_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 20.0 + }, + "prohibited": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "support": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "transactional": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 28.0 + }, + "weighted avg": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 183.0 + } + }, + "suite": "train" + }, + "val": { + "accepted_accuracy": 0.9574, + "accepted_coverage": 1.0, + "accuracy": 0.9574, + "confusion_matrix_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/evaluation/latest/intent_type_val_confusion_matrix.csv", + "count": 47, + "dataset_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/data/val.jsonl", + "fallback_rate": 0.0, + "head": "intent_type", + "macro_f1": 0.9067, + "per_class_metrics": { + "accuracy": 0.9574468085106383, + "ambiguous": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 9.0 + }, + "chit_chat": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "commercial": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 10.0 + }, + "creative_generation": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "exploratory": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 1.0 + }, + "informational": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 8.0 + }, + "macro avg": { + "f1-score": 0.9066666666666666, + "precision": 0.9, + "recall": 0.9541666666666666, + "support": 47.0 + }, + "personal_reflection": { + "f1-score": 1.0, + "precision": 1.0, + "recall": 1.0, + "support": 5.0 + }, + "prohibited": { + "f1-score": 0.6666666666666666, + "precision": 0.5, + "recall": 1.0, + "support": 1.0 + }, + "support": { + "f1-score": 0.8, + "precision": 1.0, + "recall": 0.6666666666666666, + "support": 3.0 + }, + "transactional": { + "f1-score": 0.9333333333333333, + "precision": 1.0, + "recall": 0.875, + "support": 8.0 + }, + "weighted avg": { + "f1-score": 0.9617021276595744, + "precision": 0.9787234042553191, + "recall": 0.9574468085106383, + "support": 47.0 + } + }, + "suite": "val" + } + } + } +} diff --git a/artifacts/iab/dataset_summary.json b/artifacts/iab/dataset_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..0a714e4ac5a11d330100cd9a90c09d36630d0b20 --- /dev/null +++ b/artifacts/iab/dataset_summary.json @@ -0,0 +1,178 @@ +{ + "extended_cases_count": 8, + "graph_path": "/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/artifacts/iab/taxonomy_graph.json", + "hard_cases_count": 8, + "head": "iab_content", + "label_count": 703, + "sample_label_counts": { + "Attractions": { + "depth": 1, + "hard_negative_count": 24, + "parent_safe_count": 10, + "test": 9, + "total": 58, + "train": 40, + "val": 9 + }, + "Attractions > Amusement and Theme Parks": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Bars & Restaurants": { + "depth": 2, + "hard_negative_count": 4, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Casinos & Gambling": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Historic Site and Landmark Tours": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Malls & Shopping Centers": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Museums & Galleries": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Nightclubs": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Outdoor Activities": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + }, + "Attractions > Parks & Nature": { + "depth": 2, + "hard_negative_count": 9, + "parent_safe_count": 0, + "test": 6, + "total": 36, + "train": 24, + "val": 6 + } + }, + "target_rows_per_label_override": null, + "test": { + "count": 3282, + "hard_negative_count": 1449, + "labels": 703, + "max_rows_per_label": 17, + "min_rows_per_label": 2, + "parent_safe_count": 60, + "rows_by_depth": { + "1": 385, + "2": 1932, + "3": 825, + "4": 140 + }, + "rows_by_evidence_strength": { + "moderate": 1098, + "strong": 2124, + "weak": 60 + }, + "rows_by_prompt_family": { + "action": 37, + "alias": 866, + "contrastive": 1449, + "discovery": 628, + "vague": 302 + } + }, + "train": { + "count": 13211, + "hard_negative_count": 1793, + "labels": 703, + "max_rows_per_label": 68, + "min_rows_per_label": 8, + "parent_safe_count": 239, + "rows_by_depth": { + "1": 1623, + "2": 7728, + "3": 3300, + "4": 560 + }, + "rows_by_evidence_strength": { + "moderate": 5245, + "strong": 7727, + "weak": 239 + }, + "rows_by_prompt_family": { + "action": 167, + "alias": 5790, + "contrastive": 1793, + "discovery": 3571, + "vague": 1890 + } + }, + "val": { + "count": 3282, + "hard_negative_count": 1385, + "labels": 703, + "max_rows_per_label": 17, + "min_rows_per_label": 2, + "parent_safe_count": 56, + "rows_by_depth": { + "1": 385, + "2": 1932, + "3": 825, + "4": 140 + }, + "rows_by_evidence_strength": { + "moderate": 1065, + "strong": 2161, + "weak": 56 + }, + "rows_by_prompt_family": { + "action": 72, + "alias": 898, + "contrastive": 1385, + "discovery": 610, + "vague": 317 + } + } +} diff --git a/artifacts/iab/taxonomy_embeddings.pt b/artifacts/iab/taxonomy_embeddings.pt new file mode 100644 index 0000000000000000000000000000000000000000..1ae7a75ba031245b8c853b2e7598212358fa3777 --- /dev/null +++ b/artifacts/iab/taxonomy_embeddings.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a85d6c8ba0288bf4268be4b132f0cc132bd0ca4cab171d0941a8a0fd7bf5dbb +size 4321085 diff --git a/artifacts/iab/taxonomy_graph.json b/artifacts/iab/taxonomy_graph.json new file mode 100644 index 0000000000000000000000000000000000000000..1e91530ed4e34273145d30e2bdb71d1f7f5bf02d --- /dev/null +++ b/artifacts/iab/taxonomy_graph.json @@ -0,0 +1,36342 @@ +{ + "level_counts": { + "tier1": 36, + "tier2": 322, + "tier3": 275, + "tier4": 70 + }, + "node_count": 703, + "nodes": [ + { + "canonical_surface_name": "Attractions", + "child_ids": [ + "151", + "179", + "181", + "153", + "154", + "155", + "158", + "159", + "160", + "177", + "178" + ], + "child_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ], + "label": "Attractions", + "level": 1, + "node_id": "150", + "parent_id": null, + "path": [ + "Attractions" + ], + "path_label": "Attractions", + "sibling_ids": [ + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Amusement and Theme Parks", + "child_ids": [], + "child_paths": [], + "label": "Amusement and Theme Parks", + "level": 2, + "node_id": "151", + "parent_id": "150", + "path": [ + "Attractions", + "Amusement and Theme Parks" + ], + "path_label": "Attractions > Amusement and Theme Parks", + "sibling_ids": [ + "179", + "181", + "153", + "154", + "155", + "158", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Bars & Restaurants", + "child_ids": [], + "child_paths": [], + "label": "Bars & Restaurants", + "level": 2, + "node_id": "179", + "parent_id": "150", + "path": [ + "Attractions", + "Bars & Restaurants" + ], + "path_label": "Attractions > Bars & Restaurants", + "sibling_ids": [ + "151", + "181", + "153", + "154", + "155", + "158", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Casinos & Gambling", + "child_ids": [], + "child_paths": [], + "label": "Casinos & Gambling", + "level": 2, + "node_id": "181", + "parent_id": "150", + "path": [ + "Attractions", + "Casinos & Gambling" + ], + "path_label": "Attractions > Casinos & Gambling", + "sibling_ids": [ + "151", + "179", + "153", + "154", + "155", + "158", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Historic Site and Landmark Tours", + "child_ids": [], + "child_paths": [], + "label": "Historic Site and Landmark Tours", + "level": 2, + "node_id": "153", + "parent_id": "150", + "path": [ + "Attractions", + "Historic Site and Landmark Tours" + ], + "path_label": "Attractions > Historic Site and Landmark Tours", + "sibling_ids": [ + "151", + "179", + "181", + "154", + "155", + "158", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Malls & Shopping Centers", + "child_ids": [], + "child_paths": [], + "label": "Malls & Shopping Centers", + "level": 2, + "node_id": "154", + "parent_id": "150", + "path": [ + "Attractions", + "Malls & Shopping Centers" + ], + "path_label": "Attractions > Malls & Shopping Centers", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "155", + "158", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Museums & Galleries", + "child_ids": [], + "child_paths": [], + "label": "Museums & Galleries", + "level": 2, + "node_id": "155", + "parent_id": "150", + "path": [ + "Attractions", + "Museums & Galleries" + ], + "path_label": "Attractions > Museums & Galleries", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "154", + "158", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Nightclubs", + "child_ids": [], + "child_paths": [], + "label": "Nightclubs", + "level": 2, + "node_id": "158", + "parent_id": "150", + "path": [ + "Attractions", + "Nightclubs" + ], + "path_label": "Attractions > Nightclubs", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "154", + "155", + "159", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Outdoor Activities", + "child_ids": [], + "child_paths": [], + "label": "Outdoor Activities", + "level": 2, + "node_id": "159", + "parent_id": "150", + "path": [ + "Attractions", + "Outdoor Activities" + ], + "path_label": "Attractions > Outdoor Activities", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "154", + "155", + "158", + "160", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Parks & Nature", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Parks & Nature", + "child_ids": [], + "child_paths": [], + "label": "Parks & Nature", + "level": 2, + "node_id": "160", + "parent_id": "150", + "path": [ + "Attractions", + "Parks & Nature" + ], + "path_label": "Attractions > Parks & Nature", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "154", + "155", + "158", + "159", + "177", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Theater Venues", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Theater Venues", + "child_ids": [], + "child_paths": [], + "label": "Theater Venues", + "level": 2, + "node_id": "177", + "parent_id": "150", + "path": [ + "Attractions", + "Theater Venues" + ], + "path_label": "Attractions > Theater Venues", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "154", + "155", + "158", + "159", + "160", + "178" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Zoos & Aquariums" + ] + }, + { + "canonical_surface_name": "Zoos & Aquariums", + "child_ids": [], + "child_paths": [], + "label": "Zoos & Aquariums", + "level": 2, + "node_id": "178", + "parent_id": "150", + "path": [ + "Attractions", + "Zoos & Aquariums" + ], + "path_label": "Attractions > Zoos & Aquariums", + "sibling_ids": [ + "151", + "179", + "181", + "153", + "154", + "155", + "158", + "159", + "160", + "177" + ], + "sibling_paths": [ + "Attractions > Amusement and Theme Parks", + "Attractions > Bars & Restaurants", + "Attractions > Casinos & Gambling", + "Attractions > Historic Site and Landmark Tours", + "Attractions > Malls & Shopping Centers", + "Attractions > Museums & Galleries", + "Attractions > Nightclubs", + "Attractions > Outdoor Activities", + "Attractions > Parks & Nature", + "Attractions > Theater Venues" + ] + }, + { + "canonical_surface_name": "Automotive", + "child_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "child_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ], + "label": "Automotive", + "level": 1, + "node_id": "1", + "parent_id": null, + "path": [ + "Automotive" + ], + "path_label": "Automotive", + "sibling_ids": [ + "150", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Auto Body Styles", + "child_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "child_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ], + "label": "Auto Body Styles", + "level": 2, + "node_id": "2", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Body Styles" + ], + "path_label": "Automotive > Auto Body Styles", + "sibling_ids": [ + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Commercial Trucks", + "child_ids": [], + "child_paths": [], + "label": "Commercial Trucks", + "level": 3, + "node_id": "3", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Commercial Trucks" + ], + "path_label": "Automotive > Auto Body Styles > Commercial Trucks", + "sibling_ids": [ + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Convertible", + "child_ids": [], + "child_paths": [], + "label": "Convertible", + "level": 3, + "node_id": "8", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Convertible" + ], + "path_label": "Automotive > Auto Body Styles > Convertible", + "sibling_ids": [ + "3", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Coupe", + "child_ids": [], + "child_paths": [], + "label": "Coupe", + "level": 3, + "node_id": "9", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Coupe" + ], + "path_label": "Automotive > Auto Body Styles > Coupe", + "sibling_ids": [ + "3", + "8", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Crossover", + "child_ids": [], + "child_paths": [], + "label": "Crossover", + "level": 3, + "node_id": "10", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Crossover" + ], + "path_label": "Automotive > Auto Body Styles > Crossover", + "sibling_ids": [ + "3", + "8", + "9", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Hatchback", + "child_ids": [], + "child_paths": [], + "label": "Hatchback", + "level": 3, + "node_id": "11", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Hatchback" + ], + "path_label": "Automotive > Auto Body Styles > Hatchback", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "12", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Microcar", + "child_ids": [], + "child_paths": [], + "label": "Microcar", + "level": 3, + "node_id": "12", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Microcar" + ], + "path_label": "Automotive > Auto Body Styles > Microcar", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "13", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Minivan", + "child_ids": [], + "child_paths": [], + "label": "Minivan", + "level": 3, + "node_id": "13", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Minivan" + ], + "path_label": "Automotive > Auto Body Styles > Minivan", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "14", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Off-Road Vehicles", + "child_ids": [], + "child_paths": [], + "label": "Off-Road Vehicles", + "level": 3, + "node_id": "14", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Off-Road Vehicles" + ], + "path_label": "Automotive > Auto Body Styles > Off-Road Vehicles", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "15", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Pickup Trucks", + "child_ids": [], + "child_paths": [], + "label": "Pickup Trucks", + "level": 3, + "node_id": "15", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Pickup Trucks" + ], + "path_label": "Automotive > Auto Body Styles > Pickup Trucks", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "6", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Sedan", + "child_ids": [], + "child_paths": [], + "label": "Sedan", + "level": 3, + "node_id": "4", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Sedan" + ], + "path_label": "Automotive > Auto Body Styles > Sedan", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Station Wagon", + "child_ids": [], + "child_paths": [], + "label": "Station Wagon", + "level": 3, + "node_id": "5", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Station Wagon" + ], + "path_label": "Automotive > Auto Body Styles > Station Wagon", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "SUV", + "child_ids": [], + "child_paths": [], + "label": "SUV", + "level": 3, + "node_id": "6", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "SUV" + ], + "path_label": "Automotive > Auto Body Styles > SUV", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "4", + "5", + "7" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon", + "Automotive > Auto Body Styles > Van" + ] + }, + { + "canonical_surface_name": "Van", + "child_ids": [], + "child_paths": [], + "label": "Van", + "level": 3, + "node_id": "7", + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Van" + ], + "path_label": "Automotive > Auto Body Styles > Van", + "sibling_ids": [ + "3", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "6", + "4", + "5" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles > Commercial Trucks", + "Automotive > Auto Body Styles > Convertible", + "Automotive > Auto Body Styles > Coupe", + "Automotive > Auto Body Styles > Crossover", + "Automotive > Auto Body Styles > Hatchback", + "Automotive > Auto Body Styles > Microcar", + "Automotive > Auto Body Styles > Minivan", + "Automotive > Auto Body Styles > Off-Road Vehicles", + "Automotive > Auto Body Styles > Pickup Trucks", + "Automotive > Auto Body Styles > SUV", + "Automotive > Auto Body Styles > Sedan", + "Automotive > Auto Body Styles > Station Wagon" + ] + }, + { + "canonical_surface_name": "Auto Buying and Selling", + "child_ids": [], + "child_paths": [], + "label": "Auto Buying and Selling", + "level": 2, + "node_id": "30", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Buying and Selling" + ], + "path_label": "Automotive > Auto Buying and Selling", + "sibling_ids": [ + "2", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Insurance", + "child_ids": [], + "child_paths": [], + "label": "Auto Insurance", + "level": 2, + "node_id": "31", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Insurance" + ], + "path_label": "Automotive > Auto Insurance", + "sibling_ids": [ + "2", + "30", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Parts", + "child_ids": [], + "child_paths": [], + "label": "Auto Parts", + "level": 2, + "node_id": "32", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Parts" + ], + "path_label": "Automotive > Auto Parts", + "sibling_ids": [ + "2", + "30", + "31", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Recalls", + "child_ids": [], + "child_paths": [], + "label": "Auto Recalls", + "level": 2, + "node_id": "33", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Recalls" + ], + "path_label": "Automotive > Auto Recalls", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Rentals", + "child_ids": [], + "child_paths": [], + "label": "Auto Rentals", + "level": 2, + "node_id": "41", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Rentals" + ], + "path_label": "Automotive > Auto Rentals", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Repair", + "child_ids": [], + "child_paths": [], + "label": "Auto Repair", + "level": 2, + "node_id": "34", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Repair" + ], + "path_label": "Automotive > Auto Repair", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Safety", + "child_ids": [], + "child_paths": [], + "label": "Auto Safety", + "level": 2, + "node_id": "35", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Safety" + ], + "path_label": "Automotive > Auto Safety", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "36", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Shows", + "child_ids": [], + "child_paths": [], + "label": "Auto Shows", + "level": 2, + "node_id": "36", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Shows" + ], + "path_label": "Automotive > Auto Shows", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "37", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Technology", + "child_ids": [ + "38", + "39", + "40" + ], + "child_paths": [ + "Automotive > Auto Technology > Auto Infotainment Technologies", + "Automotive > Auto Technology > Auto Navigation Systems", + "Automotive > Auto Technology > Auto Safety Technologies" + ], + "label": "Auto Technology", + "level": 2, + "node_id": "37", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Technology" + ], + "path_label": "Automotive > Auto Technology", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "16", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Auto Infotainment Technologies", + "child_ids": [], + "child_paths": [], + "label": "Auto Infotainment Technologies", + "level": 3, + "node_id": "38", + "parent_id": "37", + "path": [ + "Automotive", + "Auto Technology", + "Auto Infotainment Technologies" + ], + "path_label": "Automotive > Auto Technology > Auto Infotainment Technologies", + "sibling_ids": [ + "39", + "40" + ], + "sibling_paths": [ + "Automotive > Auto Technology > Auto Navigation Systems", + "Automotive > Auto Technology > Auto Safety Technologies" + ] + }, + { + "canonical_surface_name": "Auto Navigation Systems", + "child_ids": [], + "child_paths": [], + "label": "Auto Navigation Systems", + "level": 3, + "node_id": "39", + "parent_id": "37", + "path": [ + "Automotive", + "Auto Technology", + "Auto Navigation Systems" + ], + "path_label": "Automotive > Auto Technology > Auto Navigation Systems", + "sibling_ids": [ + "38", + "40" + ], + "sibling_paths": [ + "Automotive > Auto Technology > Auto Infotainment Technologies", + "Automotive > Auto Technology > Auto Safety Technologies" + ] + }, + { + "canonical_surface_name": "Auto Safety Technologies", + "child_ids": [], + "child_paths": [], + "label": "Auto Safety Technologies", + "level": 3, + "node_id": "40", + "parent_id": "37", + "path": [ + "Automotive", + "Auto Technology", + "Auto Safety Technologies" + ], + "path_label": "Automotive > Auto Technology > Auto Safety Technologies", + "sibling_ids": [ + "38", + "39" + ], + "sibling_paths": [ + "Automotive > Auto Technology > Auto Infotainment Technologies", + "Automotive > Auto Technology > Auto Navigation Systems" + ] + }, + { + "canonical_surface_name": "Auto Type", + "child_ids": [ + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ], + "child_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ], + "label": "Auto Type", + "level": 2, + "node_id": "16", + "parent_id": "1", + "path": [ + "Automotive", + "Auto Type" + ], + "path_label": "Automotive > Auto Type", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "25", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Budget Cars", + "child_ids": [], + "child_paths": [], + "label": "Budget Cars", + "level": 3, + "node_id": "17", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Budget Cars" + ], + "path_label": "Automotive > Auto Type > Budget Cars", + "sibling_ids": [ + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Certified Pre-Owned Cars", + "child_ids": [], + "child_paths": [], + "label": "Certified Pre-Owned Cars", + "level": 3, + "node_id": "18", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Certified Pre-Owned Cars" + ], + "path_label": "Automotive > Auto Type > Certified Pre-Owned Cars", + "sibling_ids": [ + "17", + "19", + "20", + "21", + "22", + "23", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Classic Cars", + "child_ids": [], + "child_paths": [], + "label": "Classic Cars", + "level": 3, + "node_id": "19", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Classic Cars" + ], + "path_label": "Automotive > Auto Type > Classic Cars", + "sibling_ids": [ + "17", + "18", + "20", + "21", + "22", + "23", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Concept Cars", + "child_ids": [], + "child_paths": [], + "label": "Concept Cars", + "level": 3, + "node_id": "20", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Concept Cars" + ], + "path_label": "Automotive > Auto Type > Concept Cars", + "sibling_ids": [ + "17", + "18", + "19", + "21", + "22", + "23", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Driverless Cars", + "child_ids": [], + "child_paths": [], + "label": "Driverless Cars", + "level": 3, + "node_id": "21", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Driverless Cars" + ], + "path_label": "Automotive > Auto Type > Driverless Cars", + "sibling_ids": [ + "17", + "18", + "19", + "20", + "22", + "23", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Green Vehicles", + "child_ids": [], + "child_paths": [], + "label": "Green Vehicles", + "level": 3, + "node_id": "22", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Green Vehicles" + ], + "path_label": "Automotive > Auto Type > Green Vehicles", + "sibling_ids": [ + "17", + "18", + "19", + "20", + "21", + "23", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Luxury Cars", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Luxury Cars", + "child_ids": [], + "child_paths": [], + "label": "Luxury Cars", + "level": 3, + "node_id": "23", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Luxury Cars" + ], + "path_label": "Automotive > Auto Type > Luxury Cars", + "sibling_ids": [ + "17", + "18", + "19", + "20", + "21", + "22", + "24" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Performance Cars" + ] + }, + { + "canonical_surface_name": "Performance Cars", + "child_ids": [], + "child_paths": [], + "label": "Performance Cars", + "level": 3, + "node_id": "24", + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Performance Cars" + ], + "path_label": "Automotive > Auto Type > Performance Cars", + "sibling_ids": [ + "17", + "18", + "19", + "20", + "21", + "22", + "23" + ], + "sibling_paths": [ + "Automotive > Auto Type > Budget Cars", + "Automotive > Auto Type > Certified Pre-Owned Cars", + "Automotive > Auto Type > Classic Cars", + "Automotive > Auto Type > Concept Cars", + "Automotive > Auto Type > Driverless Cars", + "Automotive > Auto Type > Green Vehicles", + "Automotive > Auto Type > Luxury Cars" + ] + }, + { + "canonical_surface_name": "Car Culture", + "child_ids": [], + "child_paths": [], + "label": "Car Culture", + "level": 2, + "node_id": "25", + "parent_id": "1", + "path": [ + "Automotive", + "Car Culture" + ], + "path_label": "Automotive > Car Culture", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "26", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Dash Cam Videos", + "child_ids": [], + "child_paths": [], + "label": "Dash Cam Videos", + "level": 2, + "node_id": "26", + "parent_id": "1", + "path": [ + "Automotive", + "Dash Cam Videos" + ], + "path_label": "Automotive > Dash Cam Videos", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "27", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Motorcycles", + "child_ids": [], + "child_paths": [], + "label": "Motorcycles", + "level": 2, + "node_id": "27", + "parent_id": "1", + "path": [ + "Automotive", + "Motorcycles" + ], + "path_label": "Automotive > Motorcycles", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "28", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Road-Side Assistance", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Road-Side Assistance", + "child_ids": [], + "child_paths": [], + "label": "Road-Side Assistance", + "level": 2, + "node_id": "28", + "parent_id": "1", + "path": [ + "Automotive", + "Road-Side Assistance" + ], + "path_label": "Automotive > Road-Side Assistance", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "29" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Scooters" + ] + }, + { + "canonical_surface_name": "Scooters", + "child_ids": [], + "child_paths": [], + "label": "Scooters", + "level": 2, + "node_id": "29", + "parent_id": "1", + "path": [ + "Automotive", + "Scooters" + ], + "path_label": "Automotive > Scooters", + "sibling_ids": [ + "2", + "30", + "31", + "32", + "33", + "41", + "34", + "35", + "36", + "37", + "16", + "25", + "26", + "27", + "28" + ], + "sibling_paths": [ + "Automotive > Auto Body Styles", + "Automotive > Auto Buying and Selling", + "Automotive > Auto Insurance", + "Automotive > Auto Parts", + "Automotive > Auto Recalls", + "Automotive > Auto Rentals", + "Automotive > Auto Repair", + "Automotive > Auto Safety", + "Automotive > Auto Shows", + "Automotive > Auto Technology", + "Automotive > Auto Type", + "Automotive > Car Culture", + "Automotive > Dash Cam Videos", + "Automotive > Motorcycles", + "Automotive > Road-Side Assistance" + ] + }, + { + "canonical_surface_name": "Books and Literature", + "child_ids": [ + "43", + "46", + "48", + "49" + ], + "child_paths": [ + "Books and Literature > Art and Photography", + "Books and Literature > Comics and Graphic Novels", + "Books and Literature > Fiction", + "Books and Literature > Poetry" + ], + "label": "Books and Literature", + "level": 1, + "node_id": "42", + "parent_id": null, + "path": [ + "Books and Literature" + ], + "path_label": "Books and Literature", + "sibling_ids": [ + "150", + "1", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Art and Photography", + "child_ids": [], + "child_paths": [], + "label": "Art and Photography", + "level": 2, + "node_id": "43", + "parent_id": "42", + "path": [ + "Books and Literature", + "Art and Photography" + ], + "path_label": "Books and Literature > Art and Photography", + "sibling_ids": [ + "46", + "48", + "49" + ], + "sibling_paths": [ + "Books and Literature > Comics and Graphic Novels", + "Books and Literature > Fiction", + "Books and Literature > Poetry" + ] + }, + { + "canonical_surface_name": "Comics and Graphic Novels", + "child_ids": [], + "child_paths": [], + "label": "Comics and Graphic Novels", + "level": 2, + "node_id": "46", + "parent_id": "42", + "path": [ + "Books and Literature", + "Comics and Graphic Novels" + ], + "path_label": "Books and Literature > Comics and Graphic Novels", + "sibling_ids": [ + "43", + "48", + "49" + ], + "sibling_paths": [ + "Books and Literature > Art and Photography", + "Books and Literature > Fiction", + "Books and Literature > Poetry" + ] + }, + { + "canonical_surface_name": "Fiction", + "child_ids": [], + "child_paths": [], + "label": "Fiction", + "level": 2, + "node_id": "48", + "parent_id": "42", + "path": [ + "Books and Literature", + "Fiction" + ], + "path_label": "Books and Literature > Fiction", + "sibling_ids": [ + "43", + "46", + "49" + ], + "sibling_paths": [ + "Books and Literature > Art and Photography", + "Books and Literature > Comics and Graphic Novels", + "Books and Literature > Poetry" + ] + }, + { + "canonical_surface_name": "Poetry", + "child_ids": [], + "child_paths": [], + "label": "Poetry", + "level": 2, + "node_id": "49", + "parent_id": "42", + "path": [ + "Books and Literature", + "Poetry" + ], + "path_label": "Books and Literature > Poetry", + "sibling_ids": [ + "43", + "46", + "48" + ], + "sibling_paths": [ + "Books and Literature > Art and Photography", + "Books and Literature > Comics and Graphic Novels", + "Books and Literature > Fiction" + ] + }, + { + "canonical_surface_name": "Business and Finance", + "child_ids": [ + "53", + "80", + "90" + ], + "child_paths": [ + "Business and Finance > Business", + "Business and Finance > Economy", + "Business and Finance > Industries" + ], + "label": "Business and Finance", + "level": 1, + "node_id": "52", + "parent_id": null, + "path": [ + "Business and Finance" + ], + "path_label": "Business and Finance", + "sibling_ids": [ + "150", + "1", + "42", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Business", + "child_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "child_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ], + "label": "Business", + "level": 2, + "node_id": "53", + "parent_id": "52", + "path": [ + "Business and Finance", + "Business" + ], + "path_label": "Business and Finance > Business", + "sibling_ids": [ + "80", + "90" + ], + "sibling_paths": [ + "Business and Finance > Economy", + "Business and Finance > Industries" + ] + }, + { + "canonical_surface_name": "Business Accounting & Finance", + "child_ids": [], + "child_paths": [], + "label": "Business Accounting & Finance", + "level": 3, + "node_id": "54", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Accounting & Finance" + ], + "path_label": "Business and Finance > Business > Business Accounting & Finance", + "sibling_ids": [ + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Business Administration", + "child_ids": [], + "child_paths": [], + "label": "Business Administration", + "level": 3, + "node_id": "62", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Administration" + ], + "path_label": "Business and Finance > Business > Business Administration", + "sibling_ids": [ + "54", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Business Banking & Finance", + "child_ids": [ + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71" + ], + "child_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ], + "label": "Business Banking & Finance", + "level": 3, + "node_id": "63", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance", + "sibling_ids": [ + "54", + "62", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Angel Investment", + "child_ids": [], + "child_paths": [], + "label": "Angel Investment", + "level": 4, + "node_id": "64", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Angel Investment" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "sibling_ids": [ + "65", + "66", + "67", + "68", + "69", + "70", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Bankruptcy", + "child_ids": [], + "child_paths": [], + "label": "Bankruptcy", + "level": 4, + "node_id": "65", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Bankruptcy" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "sibling_ids": [ + "64", + "66", + "67", + "68", + "69", + "70", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Business Loans", + "child_ids": [], + "child_paths": [], + "label": "Business Loans", + "level": 4, + "node_id": "66", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Business Loans" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Business Loans", + "sibling_ids": [ + "64", + "65", + "67", + "68", + "69", + "70", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Debt Factoring & Invoice Discounting", + "child_ids": [], + "child_paths": [], + "label": "Debt Factoring & Invoice Discounting", + "level": 4, + "node_id": "67", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Debt Factoring & Invoice Discounting" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "sibling_ids": [ + "64", + "65", + "66", + "68", + "69", + "70", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Mergers and Acquisitions", + "child_ids": [], + "child_paths": [], + "label": "Mergers and Acquisitions", + "level": 4, + "node_id": "68", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Mergers and Acquisitions" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "sibling_ids": [ + "64", + "65", + "66", + "67", + "69", + "70", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Private Equity", + "child_ids": [], + "child_paths": [], + "label": "Private Equity", + "level": 4, + "node_id": "69", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Private Equity" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Private Equity", + "sibling_ids": [ + "64", + "65", + "66", + "67", + "68", + "70", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Sale & Lease Back", + "child_ids": [], + "child_paths": [], + "label": "Sale & Lease Back", + "level": 4, + "node_id": "70", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Sale & Lease Back" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "sibling_ids": [ + "64", + "65", + "66", + "67", + "68", + "69", + "71" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Venture Capital" + ] + }, + { + "canonical_surface_name": "Venture Capital", + "child_ids": [], + "child_paths": [], + "label": "Venture Capital", + "level": 4, + "node_id": "71", + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Venture Capital" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Venture Capital", + "sibling_ids": [ + "64", + "65", + "66", + "67", + "68", + "69", + "70" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "Business and Finance > Business > Business Banking & Finance > Business Loans", + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "Business and Finance > Business > Business Banking & Finance > Private Equity", + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back" + ] + }, + { + "canonical_surface_name": "Business I.T.", + "child_ids": [], + "child_paths": [], + "label": "Business I.T.", + "level": 3, + "node_id": "72", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business I.T." + ], + "path_label": "Business and Finance > Business > Business I.T.", + "sibling_ids": [ + "54", + "62", + "63", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Business Operations", + "child_ids": [], + "child_paths": [], + "label": "Business Operations", + "level": 3, + "node_id": "73", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Operations" + ], + "path_label": "Business and Finance > Business > Business Operations", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Business Utilities", + "child_ids": [], + "child_paths": [], + "label": "Business Utilities", + "level": 3, + "node_id": "79", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Utilities" + ], + "path_label": "Business and Finance > Business > Business Utilities", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Consumer Issues", + "child_ids": [ + "75" + ], + "child_paths": [ + "Business and Finance > Business > Consumer Issues > Recalls" + ], + "label": "Consumer Issues", + "level": 3, + "node_id": "74", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Consumer Issues" + ], + "path_label": "Business and Finance > Business > Consumer Issues", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Recalls", + "child_ids": [], + "child_paths": [], + "label": "Recalls", + "level": 4, + "node_id": "75", + "parent_id": "74", + "path": [ + "Business and Finance", + "Business", + "Consumer Issues", + "Recalls" + ], + "path_label": "Business and Finance > Business > Consumer Issues > Recalls", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Executive Leadership & Management", + "child_ids": [], + "child_paths": [], + "label": "Executive Leadership & Management", + "level": 3, + "node_id": "76", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Executive Leadership & Management" + ], + "path_label": "Business and Finance > Business > Executive Leadership & Management", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Government Business", + "child_ids": [], + "child_paths": [], + "label": "Government Business", + "level": 3, + "node_id": "77", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Government Business" + ], + "path_label": "Business and Finance > Business > Government Business", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "78", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Green Solutions", + "child_ids": [], + "child_paths": [], + "label": "Green Solutions", + "level": 3, + "node_id": "78", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Green Solutions" + ], + "path_label": "Business and Finance > Business > Green Solutions", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "55", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Human Resources", + "child_ids": [], + "child_paths": [], + "label": "Human Resources", + "level": 3, + "node_id": "55", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Human Resources" + ], + "path_label": "Business and Finance > Business > Human Resources", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "56", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Large Business", + "child_ids": [], + "child_paths": [], + "label": "Large Business", + "level": 3, + "node_id": "56", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Large Business" + ], + "path_label": "Business and Finance > Business > Large Business", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "57", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Logistics", + "child_ids": [], + "child_paths": [], + "label": "Logistics", + "level": 3, + "node_id": "57", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Logistics" + ], + "path_label": "Business and Finance > Business > Logistics", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "58", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Marketing and Advertising", + "child_ids": [], + "child_paths": [], + "label": "Marketing and Advertising", + "level": 3, + "node_id": "58", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Marketing and Advertising" + ], + "path_label": "Business and Finance > Business > Marketing and Advertising", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "59", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Sales", + "child_ids": [], + "child_paths": [], + "label": "Sales", + "level": 3, + "node_id": "59", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Sales" + ], + "path_label": "Business and Finance > Business > Sales", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "60", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Small and Medium-sized Business", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Small and Medium-sized Business", + "child_ids": [], + "child_paths": [], + "label": "Small and Medium-sized Business", + "level": 3, + "node_id": "60", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Small and Medium-sized Business" + ], + "path_label": "Business and Finance > Business > Small and Medium-sized Business", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "61" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Startups" + ] + }, + { + "canonical_surface_name": "Startups", + "child_ids": [], + "child_paths": [], + "label": "Startups", + "level": 3, + "node_id": "61", + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Startups" + ], + "path_label": "Business and Finance > Business > Startups", + "sibling_ids": [ + "54", + "62", + "63", + "72", + "73", + "79", + "74", + "76", + "77", + "78", + "55", + "56", + "57", + "58", + "59", + "60" + ], + "sibling_paths": [ + "Business and Finance > Business > Business Accounting & Finance", + "Business and Finance > Business > Business Administration", + "Business and Finance > Business > Business Banking & Finance", + "Business and Finance > Business > Business I.T.", + "Business and Finance > Business > Business Operations", + "Business and Finance > Business > Business Utilities", + "Business and Finance > Business > Consumer Issues", + "Business and Finance > Business > Executive Leadership & Management", + "Business and Finance > Business > Government Business", + "Business and Finance > Business > Green Solutions", + "Business and Finance > Business > Human Resources", + "Business and Finance > Business > Large Business", + "Business and Finance > Business > Logistics", + "Business and Finance > Business > Marketing and Advertising", + "Business and Finance > Business > Sales", + "Business and Finance > Business > Small and Medium-sized Business" + ] + }, + { + "canonical_surface_name": "Economy", + "child_ids": [ + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89" + ], + "child_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ], + "label": "Economy", + "level": 2, + "node_id": "80", + "parent_id": "52", + "path": [ + "Business and Finance", + "Economy" + ], + "path_label": "Business and Finance > Economy", + "sibling_ids": [ + "53", + "90" + ], + "sibling_paths": [ + "Business and Finance > Business", + "Business and Finance > Industries" + ] + }, + { + "canonical_surface_name": "Commodities", + "child_ids": [], + "child_paths": [], + "label": "Commodities", + "level": 3, + "node_id": "81", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Commodities" + ], + "path_label": "Business and Finance > Economy > Commodities", + "sibling_ids": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Currencies", + "child_ids": [], + "child_paths": [], + "label": "Currencies", + "level": 3, + "node_id": "82", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Currencies" + ], + "path_label": "Business and Finance > Economy > Currencies", + "sibling_ids": [ + "81", + "83", + "84", + "85", + "86", + "87", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Financial Crisis", + "child_ids": [], + "child_paths": [], + "label": "Financial Crisis", + "level": 3, + "node_id": "83", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Financial Crisis" + ], + "path_label": "Business and Finance > Economy > Financial Crisis", + "sibling_ids": [ + "81", + "82", + "84", + "85", + "86", + "87", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Financial Reform", + "child_ids": [], + "child_paths": [], + "label": "Financial Reform", + "level": 3, + "node_id": "84", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Financial Reform" + ], + "path_label": "Business and Finance > Economy > Financial Reform", + "sibling_ids": [ + "81", + "82", + "83", + "85", + "86", + "87", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Financial Regulation", + "child_ids": [], + "child_paths": [], + "label": "Financial Regulation", + "level": 3, + "node_id": "85", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Financial Regulation" + ], + "path_label": "Business and Finance > Economy > Financial Regulation", + "sibling_ids": [ + "81", + "82", + "83", + "84", + "86", + "87", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Gasoline Prices", + "child_ids": [], + "child_paths": [], + "label": "Gasoline Prices", + "level": 3, + "node_id": "86", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Gasoline Prices" + ], + "path_label": "Business and Finance > Economy > Gasoline Prices", + "sibling_ids": [ + "81", + "82", + "83", + "84", + "85", + "87", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Housing Market", + "child_ids": [], + "child_paths": [], + "label": "Housing Market", + "level": 3, + "node_id": "87", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Housing Market" + ], + "path_label": "Business and Finance > Economy > Housing Market", + "sibling_ids": [ + "81", + "82", + "83", + "84", + "85", + "86", + "88", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Interest Rates", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Interest Rates", + "child_ids": [], + "child_paths": [], + "label": "Interest Rates", + "level": 3, + "node_id": "88", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Interest Rates" + ], + "path_label": "Business and Finance > Economy > Interest Rates", + "sibling_ids": [ + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "89" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Job Market" + ] + }, + { + "canonical_surface_name": "Job Market", + "child_ids": [], + "child_paths": [], + "label": "Job Market", + "level": 3, + "node_id": "89", + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Job Market" + ], + "path_label": "Business and Finance > Economy > Job Market", + "sibling_ids": [ + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88" + ], + "sibling_paths": [ + "Business and Finance > Economy > Commodities", + "Business and Finance > Economy > Currencies", + "Business and Finance > Economy > Financial Crisis", + "Business and Finance > Economy > Financial Reform", + "Business and Finance > Economy > Financial Regulation", + "Business and Finance > Economy > Gasoline Prices", + "Business and Finance > Economy > Housing Market", + "Business and Finance > Economy > Interest Rates" + ] + }, + { + "canonical_surface_name": "Industries", + "child_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "child_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ], + "label": "Industries", + "level": 2, + "node_id": "90", + "parent_id": "52", + "path": [ + "Business and Finance", + "Industries" + ], + "path_label": "Business and Finance > Industries", + "sibling_ids": [ + "53", + "80" + ], + "sibling_paths": [ + "Business and Finance > Business", + "Business and Finance > Economy" + ] + }, + { + "canonical_surface_name": "Advertising Industry", + "child_ids": [], + "child_paths": [], + "label": "Advertising Industry", + "level": 3, + "node_id": "91", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Advertising Industry" + ], + "path_label": "Business and Finance > Industries > Advertising Industry", + "sibling_ids": [ + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Agriculture", + "child_ids": [], + "child_paths": [], + "label": "Agriculture", + "level": 3, + "node_id": "102", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Agriculture" + ], + "path_label": "Business and Finance > Industries > Agriculture", + "sibling_ids": [ + "91", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Apparel Industry", + "child_ids": [], + "child_paths": [], + "label": "Apparel Industry", + "level": 3, + "node_id": "113", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Apparel Industry" + ], + "path_label": "Business and Finance > Industries > Apparel Industry", + "sibling_ids": [ + "91", + "102", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Automotive Industry", + "child_ids": [], + "child_paths": [], + "label": "Automotive Industry", + "level": 3, + "node_id": "117", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Automotive Industry" + ], + "path_label": "Business and Finance > Industries > Automotive Industry", + "sibling_ids": [ + "91", + "102", + "113", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Aviation Industry", + "child_ids": [], + "child_paths": [], + "label": "Aviation Industry", + "level": 3, + "node_id": "118", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Aviation Industry" + ], + "path_label": "Business and Finance > Industries > Aviation Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Biotech and Biomedical Industry", + "child_ids": [], + "child_paths": [], + "label": "Biotech and Biomedical Industry", + "level": 3, + "node_id": "119", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Biotech and Biomedical Industry" + ], + "path_label": "Business and Finance > Industries > Biotech and Biomedical Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Civil Engineering Industry", + "child_ids": [], + "child_paths": [], + "label": "Civil Engineering Industry", + "level": 3, + "node_id": "120", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Civil Engineering Industry" + ], + "path_label": "Business and Finance > Industries > Civil Engineering Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Construction Industry", + "child_ids": [], + "child_paths": [], + "label": "Construction Industry", + "level": 3, + "node_id": "121", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Construction Industry" + ], + "path_label": "Business and Finance > Industries > Construction Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Defense Industry", + "child_ids": [], + "child_paths": [], + "label": "Defense Industry", + "level": 3, + "node_id": "122", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Defense Industry" + ], + "path_label": "Business and Finance > Industries > Defense Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Education industry", + "child_ids": [], + "child_paths": [], + "label": "Education industry", + "level": 3, + "node_id": "92", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Education industry" + ], + "path_label": "Business and Finance > Industries > Education industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Entertainment Industry", + "child_ids": [], + "child_paths": [], + "label": "Entertainment Industry", + "level": 3, + "node_id": "93", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Entertainment Industry" + ], + "path_label": "Business and Finance > Industries > Entertainment Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Environmental Services Industry", + "child_ids": [], + "child_paths": [], + "label": "Environmental Services Industry", + "level": 3, + "node_id": "94", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Environmental Services Industry" + ], + "path_label": "Business and Finance > Industries > Environmental Services Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Financial Industry", + "child_ids": [], + "child_paths": [], + "label": "Financial Industry", + "level": 3, + "node_id": "95", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Financial Industry" + ], + "path_label": "Business and Finance > Industries > Financial Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Food Industry", + "child_ids": [], + "child_paths": [], + "label": "Food Industry", + "level": 3, + "node_id": "96", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Food Industry" + ], + "path_label": "Business and Finance > Industries > Food Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Healthcare Industry", + "child_ids": [], + "child_paths": [], + "label": "Healthcare Industry", + "level": 3, + "node_id": "97", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Healthcare Industry" + ], + "path_label": "Business and Finance > Industries > Healthcare Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Hospitality Industry", + "child_ids": [], + "child_paths": [], + "label": "Hospitality Industry", + "level": 3, + "node_id": "98", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Hospitality Industry" + ], + "path_label": "Business and Finance > Industries > Hospitality Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Information Services Industry", + "child_ids": [], + "child_paths": [], + "label": "Information Services Industry", + "level": 3, + "node_id": "99", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Information Services Industry" + ], + "path_label": "Business and Finance > Industries > Information Services Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Legal Services Industry", + "child_ids": [], + "child_paths": [], + "label": "Legal Services Industry", + "level": 3, + "node_id": "100", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Legal Services Industry" + ], + "path_label": "Business and Finance > Industries > Legal Services Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Logistics and Transportation Industry", + "child_ids": [], + "child_paths": [], + "label": "Logistics and Transportation Industry", + "level": 3, + "node_id": "101", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Logistics and Transportation Industry" + ], + "path_label": "Business and Finance > Industries > Logistics and Transportation Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Management Consulting Industry", + "child_ids": [], + "child_paths": [], + "label": "Management Consulting Industry", + "level": 3, + "node_id": "103", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Management Consulting Industry" + ], + "path_label": "Business and Finance > Industries > Management Consulting Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Manufacturing Industry", + "child_ids": [], + "child_paths": [], + "label": "Manufacturing Industry", + "level": 3, + "node_id": "104", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Manufacturing Industry" + ], + "path_label": "Business and Finance > Industries > Manufacturing Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Mechanical and Industrial Engineering Industry", + "child_ids": [], + "child_paths": [], + "label": "Mechanical and Industrial Engineering Industry", + "level": 3, + "node_id": "105", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Mechanical and Industrial Engineering Industry" + ], + "path_label": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Media Industry", + "child_ids": [], + "child_paths": [], + "label": "Media Industry", + "level": 3, + "node_id": "106", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Media Industry" + ], + "path_label": "Business and Finance > Industries > Media Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Metals Industry", + "child_ids": [], + "child_paths": [], + "label": "Metals Industry", + "level": 3, + "node_id": "107", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Metals Industry" + ], + "path_label": "Business and Finance > Industries > Metals Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "108", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Non-Profit Organizations", + "child_ids": [], + "child_paths": [], + "label": "Non-Profit Organizations", + "level": 3, + "node_id": "108", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Non-Profit Organizations" + ], + "path_label": "Business and Finance > Industries > Non-Profit Organizations", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "109", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Pharmaceutical Industry", + "child_ids": [], + "child_paths": [], + "label": "Pharmaceutical Industry", + "level": 3, + "node_id": "109", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Pharmaceutical Industry" + ], + "path_label": "Business and Finance > Industries > Pharmaceutical Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "110", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Power and Energy Industry", + "child_ids": [], + "child_paths": [], + "label": "Power and Energy Industry", + "level": 3, + "node_id": "110", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Power and Energy Industry" + ], + "path_label": "Business and Finance > Industries > Power and Energy Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "111", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Publishing Industry", + "child_ids": [], + "child_paths": [], + "label": "Publishing Industry", + "level": 3, + "node_id": "111", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Publishing Industry" + ], + "path_label": "Business and Finance > Industries > Publishing Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "112", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Real Estate Industry", + "child_ids": [], + "child_paths": [], + "label": "Real Estate Industry", + "level": 3, + "node_id": "112", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Real Estate Industry" + ], + "path_label": "Business and Finance > Industries > Real Estate Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "114", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Retail Industry", + "child_ids": [], + "child_paths": [], + "label": "Retail Industry", + "level": 3, + "node_id": "114", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Retail Industry" + ], + "path_label": "Business and Finance > Industries > Retail Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "115", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Technology Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Technology Industry", + "child_ids": [], + "child_paths": [], + "label": "Technology Industry", + "level": 3, + "node_id": "115", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Technology Industry" + ], + "path_label": "Business and Finance > Industries > Technology Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "116" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Telecommunications Industry" + ] + }, + { + "canonical_surface_name": "Telecommunications Industry", + "child_ids": [], + "child_paths": [], + "label": "Telecommunications Industry", + "level": 3, + "node_id": "116", + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Telecommunications Industry" + ], + "path_label": "Business and Finance > Industries > Telecommunications Industry", + "sibling_ids": [ + "91", + "102", + "113", + "117", + "118", + "119", + "120", + "121", + "122", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "114", + "115" + ], + "sibling_paths": [ + "Business and Finance > Industries > Advertising Industry", + "Business and Finance > Industries > Agriculture", + "Business and Finance > Industries > Apparel Industry", + "Business and Finance > Industries > Automotive Industry", + "Business and Finance > Industries > Aviation Industry", + "Business and Finance > Industries > Biotech and Biomedical Industry", + "Business and Finance > Industries > Civil Engineering Industry", + "Business and Finance > Industries > Construction Industry", + "Business and Finance > Industries > Defense Industry", + "Business and Finance > Industries > Education industry", + "Business and Finance > Industries > Entertainment Industry", + "Business and Finance > Industries > Environmental Services Industry", + "Business and Finance > Industries > Financial Industry", + "Business and Finance > Industries > Food Industry", + "Business and Finance > Industries > Healthcare Industry", + "Business and Finance > Industries > Hospitality Industry", + "Business and Finance > Industries > Information Services Industry", + "Business and Finance > Industries > Legal Services Industry", + "Business and Finance > Industries > Logistics and Transportation Industry", + "Business and Finance > Industries > Management Consulting Industry", + "Business and Finance > Industries > Manufacturing Industry", + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "Business and Finance > Industries > Media Industry", + "Business and Finance > Industries > Metals Industry", + "Business and Finance > Industries > Non-Profit Organizations", + "Business and Finance > Industries > Pharmaceutical Industry", + "Business and Finance > Industries > Power and Energy Industry", + "Business and Finance > Industries > Publishing Industry", + "Business and Finance > Industries > Real Estate Industry", + "Business and Finance > Industries > Retail Industry", + "Business and Finance > Industries > Technology Industry" + ] + }, + { + "canonical_surface_name": "Careers", + "child_ids": [ + "124", + "125", + "126", + "127", + "130", + "131" + ], + "child_paths": [ + "Careers > Apprenticeships", + "Careers > Career Advice", + "Careers > Career Planning", + "Careers > Job Search", + "Careers > Remote Working", + "Careers > Vocational Training" + ], + "label": "Careers", + "level": 1, + "node_id": "123", + "parent_id": null, + "path": [ + "Careers" + ], + "path_label": "Careers", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Apprenticeships", + "child_ids": [], + "child_paths": [], + "label": "Apprenticeships", + "level": 2, + "node_id": "124", + "parent_id": "123", + "path": [ + "Careers", + "Apprenticeships" + ], + "path_label": "Careers > Apprenticeships", + "sibling_ids": [ + "125", + "126", + "127", + "130", + "131" + ], + "sibling_paths": [ + "Careers > Career Advice", + "Careers > Career Planning", + "Careers > Job Search", + "Careers > Remote Working", + "Careers > Vocational Training" + ] + }, + { + "canonical_surface_name": "Career Advice", + "child_ids": [], + "child_paths": [], + "label": "Career Advice", + "level": 2, + "node_id": "125", + "parent_id": "123", + "path": [ + "Careers", + "Career Advice" + ], + "path_label": "Careers > Career Advice", + "sibling_ids": [ + "124", + "126", + "127", + "130", + "131" + ], + "sibling_paths": [ + "Careers > Apprenticeships", + "Careers > Career Planning", + "Careers > Job Search", + "Careers > Remote Working", + "Careers > Vocational Training" + ] + }, + { + "canonical_surface_name": "Career Planning", + "child_ids": [], + "child_paths": [], + "label": "Career Planning", + "level": 2, + "node_id": "126", + "parent_id": "123", + "path": [ + "Careers", + "Career Planning" + ], + "path_label": "Careers > Career Planning", + "sibling_ids": [ + "124", + "125", + "127", + "130", + "131" + ], + "sibling_paths": [ + "Careers > Apprenticeships", + "Careers > Career Advice", + "Careers > Job Search", + "Careers > Remote Working", + "Careers > Vocational Training" + ] + }, + { + "canonical_surface_name": "Job Search", + "child_ids": [ + "128", + "129" + ], + "child_paths": [ + "Careers > Job Search > Job Fairs", + "Careers > Job Search > Resume Writing and Advice" + ], + "label": "Job Search", + "level": 2, + "node_id": "127", + "parent_id": "123", + "path": [ + "Careers", + "Job Search" + ], + "path_label": "Careers > Job Search", + "sibling_ids": [ + "124", + "125", + "126", + "130", + "131" + ], + "sibling_paths": [ + "Careers > Apprenticeships", + "Careers > Career Advice", + "Careers > Career Planning", + "Careers > Remote Working", + "Careers > Vocational Training" + ] + }, + { + "canonical_surface_name": "Job Fairs", + "child_ids": [], + "child_paths": [], + "label": "Job Fairs", + "level": 3, + "node_id": "128", + "parent_id": "127", + "path": [ + "Careers", + "Job Search", + "Job Fairs" + ], + "path_label": "Careers > Job Search > Job Fairs", + "sibling_ids": [ + "129" + ], + "sibling_paths": [ + "Careers > Job Search > Resume Writing and Advice" + ] + }, + { + "canonical_surface_name": "Resume Writing and Advice", + "child_ids": [], + "child_paths": [], + "label": "Resume Writing and Advice", + "level": 3, + "node_id": "129", + "parent_id": "127", + "path": [ + "Careers", + "Job Search", + "Resume Writing and Advice" + ], + "path_label": "Careers > Job Search > Resume Writing and Advice", + "sibling_ids": [ + "128" + ], + "sibling_paths": [ + "Careers > Job Search > Job Fairs" + ] + }, + { + "canonical_surface_name": "Remote Working", + "child_ids": [], + "child_paths": [], + "label": "Remote Working", + "level": 2, + "node_id": "130", + "parent_id": "123", + "path": [ + "Careers", + "Remote Working" + ], + "path_label": "Careers > Remote Working", + "sibling_ids": [ + "124", + "125", + "126", + "127", + "131" + ], + "sibling_paths": [ + "Careers > Apprenticeships", + "Careers > Career Advice", + "Careers > Career Planning", + "Careers > Job Search", + "Careers > Vocational Training" + ] + }, + { + "canonical_surface_name": "Vocational Training", + "child_ids": [], + "child_paths": [], + "label": "Vocational Training", + "level": 2, + "node_id": "131", + "parent_id": "123", + "path": [ + "Careers", + "Vocational Training" + ], + "path_label": "Careers > Vocational Training", + "sibling_ids": [ + "124", + "125", + "126", + "127", + "130" + ], + "sibling_paths": [ + "Careers > Apprenticeships", + "Careers > Career Advice", + "Careers > Career Planning", + "Careers > Job Search", + "Careers > Remote Working" + ] + }, + { + "canonical_surface_name": "Communication", + "child_ids": [], + "child_paths": [], + "label": "Communication", + "level": 4, + "node_id": "80DV8O", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Communication" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Communication", + "sibling_ids": [ + "603", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Crime", + "child_ids": [], + "child_paths": [], + "label": "Crime", + "level": 1, + "node_id": "380", + "parent_id": null, + "path": [ + "Crime" + ], + "path_label": "Crime", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Disasters", + "child_ids": [], + "child_paths": [], + "label": "Disasters", + "level": 1, + "node_id": "381", + "parent_id": null, + "path": [ + "Disasters" + ], + "path_label": "Disasters", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Education", + "child_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "child_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ], + "label": "Education", + "level": 1, + "node_id": "132", + "parent_id": null, + "path": [ + "Education" + ], + "path_label": "Education", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Adult Education", + "child_ids": [], + "child_paths": [], + "label": "Adult Education", + "level": 2, + "node_id": "133", + "parent_id": "132", + "path": [ + "Education", + "Adult Education" + ], + "path_label": "Education > Adult Education", + "sibling_ids": [ + "137", + "142", + "143", + "145", + "146", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "College Education", + "child_ids": [ + "138", + "139", + "141" + ], + "child_paths": [ + "Education > College Education > College Planning", + "Education > College Education > Postgraduate Education", + "Education > College Education > Undergraduate Education" + ], + "label": "College Education", + "level": 2, + "node_id": "137", + "parent_id": "132", + "path": [ + "Education", + "College Education" + ], + "path_label": "Education > College Education", + "sibling_ids": [ + "133", + "142", + "143", + "145", + "146", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "College Planning", + "child_ids": [], + "child_paths": [], + "label": "College Planning", + "level": 3, + "node_id": "138", + "parent_id": "137", + "path": [ + "Education", + "College Education", + "College Planning" + ], + "path_label": "Education > College Education > College Planning", + "sibling_ids": [ + "139", + "141" + ], + "sibling_paths": [ + "Education > College Education > Postgraduate Education", + "Education > College Education > Undergraduate Education" + ] + }, + { + "canonical_surface_name": "Postgraduate Education", + "child_ids": [ + "140" + ], + "child_paths": [ + "Education > College Education > Postgraduate Education > Professional School" + ], + "label": "Postgraduate Education", + "level": 3, + "node_id": "139", + "parent_id": "137", + "path": [ + "Education", + "College Education", + "Postgraduate Education" + ], + "path_label": "Education > College Education > Postgraduate Education", + "sibling_ids": [ + "138", + "141" + ], + "sibling_paths": [ + "Education > College Education > College Planning", + "Education > College Education > Undergraduate Education" + ] + }, + { + "canonical_surface_name": "Professional School", + "child_ids": [], + "child_paths": [], + "label": "Professional School", + "level": 4, + "node_id": "140", + "parent_id": "139", + "path": [ + "Education", + "College Education", + "Postgraduate Education", + "Professional School" + ], + "path_label": "Education > College Education > Postgraduate Education > Professional School", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Undergraduate Education", + "child_ids": [], + "child_paths": [], + "label": "Undergraduate Education", + "level": 3, + "node_id": "141", + "parent_id": "137", + "path": [ + "Education", + "College Education", + "Undergraduate Education" + ], + "path_label": "Education > College Education > Undergraduate Education", + "sibling_ids": [ + "138", + "139" + ], + "sibling_paths": [ + "Education > College Education > College Planning", + "Education > College Education > Postgraduate Education" + ] + }, + { + "canonical_surface_name": "Early Childhood Education", + "child_ids": [], + "child_paths": [], + "label": "Early Childhood Education", + "level": 2, + "node_id": "142", + "parent_id": "132", + "path": [ + "Education", + "Early Childhood Education" + ], + "path_label": "Education > Early Childhood Education", + "sibling_ids": [ + "133", + "137", + "143", + "145", + "146", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Educational Assessment", + "child_ids": [ + "144" + ], + "child_paths": [ + "Education > Educational Assessment > Standardized Testing" + ], + "label": "Educational Assessment", + "level": 2, + "node_id": "143", + "parent_id": "132", + "path": [ + "Education", + "Educational Assessment" + ], + "path_label": "Education > Educational Assessment", + "sibling_ids": [ + "133", + "137", + "142", + "145", + "146", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Standardized Testing", + "child_ids": [], + "child_paths": [], + "label": "Standardized Testing", + "level": 3, + "node_id": "144", + "parent_id": "143", + "path": [ + "Education", + "Educational Assessment", + "Standardized Testing" + ], + "path_label": "Education > Educational Assessment > Standardized Testing", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Homeschooling", + "child_ids": [], + "child_paths": [], + "label": "Homeschooling", + "level": 2, + "node_id": "145", + "parent_id": "132", + "path": [ + "Education", + "Homeschooling" + ], + "path_label": "Education > Homeschooling", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "146", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Homework and Study", + "child_ids": [], + "child_paths": [], + "label": "Homework and Study", + "level": 2, + "node_id": "146", + "parent_id": "132", + "path": [ + "Education", + "Homework and Study" + ], + "path_label": "Education > Homework and Study", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "147", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Language Learning", + "child_ids": [], + "child_paths": [], + "label": "Language Learning", + "level": 2, + "node_id": "147", + "parent_id": "132", + "path": [ + "Education", + "Language Learning" + ], + "path_label": "Education > Language Learning", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "148", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Online Education", + "child_ids": [], + "child_paths": [], + "label": "Online Education", + "level": 2, + "node_id": "148", + "parent_id": "132", + "path": [ + "Education", + "Online Education" + ], + "path_label": "Education > Online Education", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "147", + "149", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Primary Education", + "child_ids": [], + "child_paths": [], + "label": "Primary Education", + "level": 2, + "node_id": "149", + "parent_id": "132", + "path": [ + "Education", + "Primary Education" + ], + "path_label": "Education > Primary Education", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "147", + "148", + "134", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Private School", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Private School", + "child_ids": [], + "child_paths": [], + "label": "Private School", + "level": 2, + "node_id": "134", + "parent_id": "132", + "path": [ + "Education", + "Private School" + ], + "path_label": "Education > Private School", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "147", + "148", + "149", + "135", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Secondary Education", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Secondary Education", + "child_ids": [], + "child_paths": [], + "label": "Secondary Education", + "level": 2, + "node_id": "135", + "parent_id": "132", + "path": [ + "Education", + "Secondary Education" + ], + "path_label": "Education > Secondary Education", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "147", + "148", + "149", + "134", + "136" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Special Education" + ] + }, + { + "canonical_surface_name": "Special Education", + "child_ids": [], + "child_paths": [], + "label": "Special Education", + "level": 2, + "node_id": "136", + "parent_id": "132", + "path": [ + "Education", + "Special Education" + ], + "path_label": "Education > Special Education", + "sibling_ids": [ + "133", + "137", + "142", + "143", + "145", + "146", + "147", + "148", + "149", + "134", + "135" + ], + "sibling_paths": [ + "Education > Adult Education", + "Education > College Education", + "Education > Early Childhood Education", + "Education > Educational Assessment", + "Education > Homeschooling", + "Education > Homework and Study", + "Education > Language Learning", + "Education > Online Education", + "Education > Primary Education", + "Education > Private School", + "Education > Secondary Education" + ] + }, + { + "canonical_surface_name": "Entertainment", + "child_ids": [ + "324", + "338", + "640" + ], + "child_paths": [ + "Entertainment > Movies", + "Entertainment > Music", + "Entertainment > Television" + ], + "label": "Entertainment", + "level": 1, + "node_id": "JLBCU7", + "parent_id": null, + "path": [ + "Entertainment" + ], + "path_label": "Entertainment", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Movies", + "child_ids": [], + "child_paths": [], + "label": "Movies", + "level": 2, + "node_id": "324", + "parent_id": "JLBCU7", + "path": [ + "Entertainment", + "Movies" + ], + "path_label": "Entertainment > Movies", + "sibling_ids": [ + "338", + "640" + ], + "sibling_paths": [ + "Entertainment > Music", + "Entertainment > Television" + ] + }, + { + "canonical_surface_name": "Music", + "child_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "child_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ], + "label": "Music", + "level": 2, + "node_id": "338", + "parent_id": "JLBCU7", + "path": [ + "Entertainment", + "Music" + ], + "path_label": "Entertainment > Music", + "sibling_ids": [ + "324", + "640" + ], + "sibling_paths": [ + "Entertainment > Movies", + "Entertainment > Television" + ] + }, + { + "canonical_surface_name": "Television", + "child_ids": [], + "child_paths": [], + "label": "Television", + "level": 2, + "node_id": "640", + "parent_id": "JLBCU7", + "path": [ + "Entertainment", + "Television" + ], + "path_label": "Entertainment > Television", + "sibling_ids": [ + "324", + "338" + ], + "sibling_paths": [ + "Entertainment > Movies", + "Entertainment > Music" + ] + }, + { + "canonical_surface_name": "Events", + "child_ids": [ + "162", + "180", + "185" + ], + "child_paths": [ + "Events > Awards Shows", + "Events > Business Expos & Conferences", + "Events > Fan Conventions" + ], + "label": "Events", + "level": 1, + "node_id": "8VZQHL", + "parent_id": null, + "path": [ + "Events" + ], + "path_label": "Events", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Awards Shows", + "child_ids": [], + "child_paths": [], + "label": "Awards Shows", + "level": 2, + "node_id": "162", + "parent_id": "8VZQHL", + "path": [ + "Events", + "Awards Shows" + ], + "path_label": "Events > Awards Shows", + "sibling_ids": [ + "180", + "185" + ], + "sibling_paths": [ + "Events > Business Expos & Conferences", + "Events > Fan Conventions" + ] + }, + { + "canonical_surface_name": "Business Expos & Conferences", + "child_ids": [], + "child_paths": [], + "label": "Business Expos & Conferences", + "level": 2, + "node_id": "180", + "parent_id": "8VZQHL", + "path": [ + "Events", + "Business Expos & Conferences" + ], + "path_label": "Events > Business Expos & Conferences", + "sibling_ids": [ + "162", + "185" + ], + "sibling_paths": [ + "Events > Awards Shows", + "Events > Fan Conventions" + ] + }, + { + "canonical_surface_name": "Fan Conventions", + "child_ids": [], + "child_paths": [], + "label": "Fan Conventions", + "level": 2, + "node_id": "185", + "parent_id": "8VZQHL", + "path": [ + "Events", + "Fan Conventions" + ], + "path_label": "Events > Fan Conventions", + "sibling_ids": [ + "162", + "180" + ], + "sibling_paths": [ + "Events > Awards Shows", + "Events > Business Expos & Conferences" + ] + }, + { + "canonical_surface_name": "Family and Relationships", + "child_ids": [ + "187", + "188", + "189", + "190", + "191", + "192", + "200" + ], + "child_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Dating", + "Family and Relationships > Divorce", + "Family and Relationships > Eldercare", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Parenting", + "Family and Relationships > Single Life" + ], + "label": "Family and Relationships", + "level": 1, + "node_id": "186", + "parent_id": null, + "path": [ + "Family and Relationships" + ], + "path_label": "Family and Relationships", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Bereavement", + "child_ids": [], + "child_paths": [], + "label": "Bereavement", + "level": 2, + "node_id": "187", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Bereavement" + ], + "path_label": "Family and Relationships > Bereavement", + "sibling_ids": [ + "188", + "189", + "190", + "191", + "192", + "200" + ], + "sibling_paths": [ + "Family and Relationships > Dating", + "Family and Relationships > Divorce", + "Family and Relationships > Eldercare", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Parenting", + "Family and Relationships > Single Life" + ] + }, + { + "canonical_surface_name": "Dating", + "child_ids": [], + "child_paths": [], + "label": "Dating", + "level": 2, + "node_id": "188", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Dating" + ], + "path_label": "Family and Relationships > Dating", + "sibling_ids": [ + "187", + "189", + "190", + "191", + "192", + "200" + ], + "sibling_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Divorce", + "Family and Relationships > Eldercare", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Parenting", + "Family and Relationships > Single Life" + ] + }, + { + "canonical_surface_name": "Divorce", + "child_ids": [], + "child_paths": [], + "label": "Divorce", + "level": 2, + "node_id": "189", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Divorce" + ], + "path_label": "Family and Relationships > Divorce", + "sibling_ids": [ + "187", + "188", + "190", + "191", + "192", + "200" + ], + "sibling_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Dating", + "Family and Relationships > Eldercare", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Parenting", + "Family and Relationships > Single Life" + ] + }, + { + "canonical_surface_name": "Eldercare", + "child_ids": [], + "child_paths": [], + "label": "Eldercare", + "level": 2, + "node_id": "190", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Eldercare" + ], + "path_label": "Family and Relationships > Eldercare", + "sibling_ids": [ + "187", + "188", + "189", + "191", + "192", + "200" + ], + "sibling_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Dating", + "Family and Relationships > Divorce", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Parenting", + "Family and Relationships > Single Life" + ] + }, + { + "canonical_surface_name": "Marriage and Civil Unions", + "child_ids": [], + "child_paths": [], + "label": "Marriage and Civil Unions", + "level": 2, + "node_id": "191", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Marriage and Civil Unions" + ], + "path_label": "Family and Relationships > Marriage and Civil Unions", + "sibling_ids": [ + "187", + "188", + "189", + "190", + "192", + "200" + ], + "sibling_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Dating", + "Family and Relationships > Divorce", + "Family and Relationships > Eldercare", + "Family and Relationships > Parenting", + "Family and Relationships > Single Life" + ] + }, + { + "canonical_surface_name": "Parenting", + "child_ids": [ + "193", + "194", + "195", + "196", + "197", + "198", + "199" + ], + "child_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Parenting Teens", + "Family and Relationships > Parenting > Special Needs Kids" + ], + "label": "Parenting", + "level": 2, + "node_id": "192", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Parenting" + ], + "path_label": "Family and Relationships > Parenting", + "sibling_ids": [ + "187", + "188", + "189", + "190", + "191", + "200" + ], + "sibling_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Dating", + "Family and Relationships > Divorce", + "Family and Relationships > Eldercare", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Single Life" + ] + }, + { + "canonical_surface_name": "Adoption and Fostering", + "child_ids": [], + "child_paths": [], + "label": "Adoption and Fostering", + "level": 3, + "node_id": "193", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Adoption and Fostering" + ], + "path_label": "Family and Relationships > Parenting > Adoption and Fostering", + "sibling_ids": [ + "194", + "195", + "196", + "197", + "198", + "199" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Parenting Teens", + "Family and Relationships > Parenting > Special Needs Kids" + ] + }, + { + "canonical_surface_name": "Daycare and Pre-School", + "child_ids": [], + "child_paths": [], + "label": "Daycare and Pre-School", + "level": 3, + "node_id": "194", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Daycare and Pre-School" + ], + "path_label": "Family and Relationships > Parenting > Daycare and Pre-School", + "sibling_ids": [ + "193", + "195", + "196", + "197", + "198", + "199" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Parenting Teens", + "Family and Relationships > Parenting > Special Needs Kids" + ] + }, + { + "canonical_surface_name": "Internet Safety", + "child_ids": [], + "child_paths": [], + "label": "Internet Safety", + "level": 3, + "node_id": "195", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Internet Safety" + ], + "path_label": "Family and Relationships > Parenting > Internet Safety", + "sibling_ids": [ + "193", + "194", + "196", + "197", + "198", + "199" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Parenting Teens", + "Family and Relationships > Parenting > Special Needs Kids" + ] + }, + { + "canonical_surface_name": "Parenting Babies and Toddlers", + "child_ids": [], + "child_paths": [], + "label": "Parenting Babies and Toddlers", + "level": 3, + "node_id": "196", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Parenting Babies and Toddlers" + ], + "path_label": "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "sibling_ids": [ + "193", + "194", + "195", + "197", + "198", + "199" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Parenting Teens", + "Family and Relationships > Parenting > Special Needs Kids" + ] + }, + { + "canonical_surface_name": "Parenting Children Aged 4-11", + "child_ids": [], + "child_paths": [], + "label": "Parenting Children Aged 4-11", + "level": 3, + "node_id": "197", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Parenting Children Aged 4-11" + ], + "path_label": "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "sibling_ids": [ + "193", + "194", + "195", + "196", + "198", + "199" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Teens", + "Family and Relationships > Parenting > Special Needs Kids" + ] + }, + { + "canonical_surface_name": "Parenting Teens", + "child_ids": [], + "child_paths": [], + "label": "Parenting Teens", + "level": 3, + "node_id": "198", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Parenting Teens" + ], + "path_label": "Family and Relationships > Parenting > Parenting Teens", + "sibling_ids": [ + "193", + "194", + "195", + "196", + "197", + "199" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Special Needs Kids" + ] + }, + { + "canonical_surface_name": "Special Needs Kids", + "child_ids": [], + "child_paths": [], + "label": "Special Needs Kids", + "level": 3, + "node_id": "199", + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Special Needs Kids" + ], + "path_label": "Family and Relationships > Parenting > Special Needs Kids", + "sibling_ids": [ + "193", + "194", + "195", + "196", + "197", + "198" + ], + "sibling_paths": [ + "Family and Relationships > Parenting > Adoption and Fostering", + "Family and Relationships > Parenting > Daycare and Pre-School", + "Family and Relationships > Parenting > Internet Safety", + "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "Family and Relationships > Parenting > Parenting Teens" + ] + }, + { + "canonical_surface_name": "Single Life", + "child_ids": [], + "child_paths": [], + "label": "Single Life", + "level": 2, + "node_id": "200", + "parent_id": "186", + "path": [ + "Family and Relationships", + "Single Life" + ], + "path_label": "Family and Relationships > Single Life", + "sibling_ids": [ + "187", + "188", + "189", + "190", + "191", + "192" + ], + "sibling_paths": [ + "Family and Relationships > Bereavement", + "Family and Relationships > Dating", + "Family and Relationships > Divorce", + "Family and Relationships > Eldercare", + "Family and Relationships > Marriage and Civil Unions", + "Family and Relationships > Parenting" + ] + }, + { + "canonical_surface_name": "Fine Art", + "child_ids": [ + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209" + ], + "child_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Opera", + "Fine Art > Theater" + ], + "label": "Fine Art", + "level": 1, + "node_id": "201", + "parent_id": null, + "path": [ + "Fine Art" + ], + "path_label": "Fine Art", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Costume", + "child_ids": [], + "child_paths": [], + "label": "Costume", + "level": 2, + "node_id": "202", + "parent_id": "201", + "path": [ + "Fine Art", + "Costume" + ], + "path_label": "Fine Art > Costume", + "sibling_ids": [ + "203", + "204", + "205", + "206", + "207", + "208", + "209" + ], + "sibling_paths": [ + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Opera", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Dance", + "child_ids": [], + "child_paths": [], + "label": "Dance", + "level": 2, + "node_id": "203", + "parent_id": "201", + "path": [ + "Fine Art", + "Dance" + ], + "path_label": "Fine Art > Dance", + "sibling_ids": [ + "202", + "204", + "205", + "206", + "207", + "208", + "209" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Opera", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Design", + "child_ids": [], + "child_paths": [], + "label": "Design", + "level": 2, + "node_id": "204", + "parent_id": "201", + "path": [ + "Fine Art", + "Design" + ], + "path_label": "Fine Art > Design", + "sibling_ids": [ + "202", + "203", + "205", + "206", + "207", + "208", + "209" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Opera", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Digital Arts", + "child_ids": [], + "child_paths": [], + "label": "Digital Arts", + "level": 2, + "node_id": "205", + "parent_id": "201", + "path": [ + "Fine Art", + "Digital Arts" + ], + "path_label": "Fine Art > Digital Arts", + "sibling_ids": [ + "202", + "203", + "204", + "206", + "207", + "208", + "209" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Opera", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Fine Art Photography", + "child_ids": [], + "child_paths": [], + "label": "Fine Art Photography", + "level": 2, + "node_id": "206", + "parent_id": "201", + "path": [ + "Fine Art", + "Fine Art Photography" + ], + "path_label": "Fine Art > Fine Art Photography", + "sibling_ids": [ + "202", + "203", + "204", + "205", + "207", + "208", + "209" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Modern Art", + "Fine Art > Opera", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Modern Art", + "child_ids": [], + "child_paths": [], + "label": "Modern Art", + "level": 2, + "node_id": "207", + "parent_id": "201", + "path": [ + "Fine Art", + "Modern Art" + ], + "path_label": "Fine Art > Modern Art", + "sibling_ids": [ + "202", + "203", + "204", + "205", + "206", + "208", + "209" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Opera", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Opera", + "child_ids": [], + "child_paths": [], + "label": "Opera", + "level": 2, + "node_id": "208", + "parent_id": "201", + "path": [ + "Fine Art", + "Opera" + ], + "path_label": "Fine Art > Opera", + "sibling_ids": [ + "202", + "203", + "204", + "205", + "206", + "207", + "209" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Theater" + ] + }, + { + "canonical_surface_name": "Theater", + "child_ids": [], + "child_paths": [], + "label": "Theater", + "level": 2, + "node_id": "209", + "parent_id": "201", + "path": [ + "Fine Art", + "Theater" + ], + "path_label": "Fine Art > Theater", + "sibling_ids": [ + "202", + "203", + "204", + "205", + "206", + "207", + "208" + ], + "sibling_paths": [ + "Fine Art > Costume", + "Fine Art > Dance", + "Fine Art > Design", + "Fine Art > Digital Arts", + "Fine Art > Fine Art Photography", + "Fine Art > Modern Art", + "Fine Art > Opera" + ] + }, + { + "canonical_surface_name": "Food & Drink", + "child_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "child_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ], + "label": "Food & Drink", + "level": 1, + "node_id": "210", + "parent_id": null, + "path": [ + "Food & Drink" + ], + "path_label": "Food & Drink", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Alcoholic Beverages", + "child_ids": [], + "child_paths": [], + "label": "Alcoholic Beverages", + "level": 2, + "node_id": "211", + "parent_id": "210", + "path": [ + "Food & Drink", + "Alcoholic Beverages" + ], + "path_label": "Food & Drink > Alcoholic Beverages", + "sibling_ids": [ + "215", + "216", + "217", + "218", + "219", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Barbecues and Grilling", + "child_ids": [], + "child_paths": [], + "label": "Barbecues and Grilling", + "level": 2, + "node_id": "215", + "parent_id": "210", + "path": [ + "Food & Drink", + "Barbecues and Grilling" + ], + "path_label": "Food & Drink > Barbecues and Grilling", + "sibling_ids": [ + "211", + "216", + "217", + "218", + "219", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Cooking", + "child_ids": [], + "child_paths": [], + "label": "Cooking", + "level": 2, + "node_id": "216", + "parent_id": "210", + "path": [ + "Food & Drink", + "Cooking" + ], + "path_label": "Food & Drink > Cooking", + "sibling_ids": [ + "211", + "215", + "217", + "218", + "219", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Desserts and Baking", + "child_ids": [], + "child_paths": [], + "label": "Desserts and Baking", + "level": 2, + "node_id": "217", + "parent_id": "210", + "path": [ + "Food & Drink", + "Desserts and Baking" + ], + "path_label": "Food & Drink > Desserts and Baking", + "sibling_ids": [ + "211", + "215", + "216", + "218", + "219", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Dining Out", + "child_ids": [], + "child_paths": [], + "label": "Dining Out", + "level": 2, + "node_id": "218", + "parent_id": "210", + "path": [ + "Food & Drink", + "Dining Out" + ], + "path_label": "Food & Drink > Dining Out", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "219", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Food Allergies", + "child_ids": [], + "child_paths": [], + "label": "Food Allergies", + "level": 2, + "node_id": "219", + "parent_id": "210", + "path": [ + "Food & Drink", + "Food Allergies" + ], + "path_label": "Food & Drink > Food Allergies", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "220", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Food Movements", + "child_ids": [], + "child_paths": [], + "label": "Food Movements", + "level": 2, + "node_id": "220", + "parent_id": "210", + "path": [ + "Food & Drink", + "Food Movements" + ], + "path_label": "Food & Drink > Food Movements", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "221", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Healthy Cooking and Eating", + "child_ids": [], + "child_paths": [], + "label": "Healthy Cooking and Eating", + "level": 2, + "node_id": "221", + "parent_id": "210", + "path": [ + "Food & Drink", + "Healthy Cooking and Eating" + ], + "path_label": "Food & Drink > Healthy Cooking and Eating", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "220", + "222", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Non-Alcoholic Beverages", + "child_ids": [], + "child_paths": [], + "label": "Non-Alcoholic Beverages", + "level": 2, + "node_id": "222", + "parent_id": "210", + "path": [ + "Food & Drink", + "Non-Alcoholic Beverages" + ], + "path_label": "Food & Drink > Non-Alcoholic Beverages", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "220", + "221", + "212", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Vegan Diets", + "child_ids": [], + "child_paths": [], + "label": "Vegan Diets", + "level": 2, + "node_id": "212", + "parent_id": "210", + "path": [ + "Food & Drink", + "Vegan Diets" + ], + "path_label": "Food & Drink > Vegan Diets", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "220", + "221", + "222", + "213", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegetarian Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "Vegetarian Diets", + "child_ids": [], + "child_paths": [], + "label": "Vegetarian Diets", + "level": 2, + "node_id": "213", + "parent_id": "210", + "path": [ + "Food & Drink", + "Vegetarian Diets" + ], + "path_label": "Food & Drink > Vegetarian Diets", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "220", + "221", + "222", + "212", + "214" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > World Cuisines" + ] + }, + { + "canonical_surface_name": "World Cuisines", + "child_ids": [], + "child_paths": [], + "label": "World Cuisines", + "level": 2, + "node_id": "214", + "parent_id": "210", + "path": [ + "Food & Drink", + "World Cuisines" + ], + "path_label": "Food & Drink > World Cuisines", + "sibling_ids": [ + "211", + "215", + "216", + "217", + "218", + "219", + "220", + "221", + "222", + "212", + "213" + ], + "sibling_paths": [ + "Food & Drink > Alcoholic Beverages", + "Food & Drink > Barbecues and Grilling", + "Food & Drink > Cooking", + "Food & Drink > Desserts and Baking", + "Food & Drink > Dining Out", + "Food & Drink > Food Allergies", + "Food & Drink > Food Movements", + "Food & Drink > Healthy Cooking and Eating", + "Food & Drink > Non-Alcoholic Beverages", + "Food & Drink > Vegan Diets", + "Food & Drink > Vegetarian Diets" + ] + }, + { + "canonical_surface_name": "Genres", + "child_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "child_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ], + "label": "Genres", + "level": 1, + "node_id": "SPSHQ5", + "parent_id": null, + "path": [ + "Genres" + ], + "path_label": "Genres", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Nature", + "child_ids": [], + "child_paths": [], + "label": "Nature", + "level": 2, + "node_id": "VKIV56", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Nature" + ], + "path_label": "Genres > Nature", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Action/Adventure", + "child_ids": [], + "child_paths": [], + "label": "Action/Adventure", + "level": 2, + "node_id": "325", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Action/Adventure" + ], + "path_label": "Genres > Action/Adventure", + "sibling_ids": [ + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Animation & Anime", + "child_ids": [], + "child_paths": [], + "label": "Animation & Anime", + "level": 2, + "node_id": "641", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Animation & Anime" + ], + "path_label": "Genres > Animation & Anime", + "sibling_ids": [ + "325", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Biographies", + "child_ids": [], + "child_paths": [], + "label": "Biographies", + "level": 2, + "node_id": "44", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Biographies" + ], + "path_label": "Genres > Biographies", + "sibling_ids": [ + "325", + "641", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Comedy", + "child_ids": [], + "child_paths": [], + "label": "Comedy", + "level": 2, + "node_id": "646", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Comedy" + ], + "path_label": "Genres > Comedy", + "sibling_ids": [ + "325", + "641", + "44", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Documentary", + "child_ids": [], + "child_paths": [], + "label": "Documentary", + "level": 2, + "node_id": "332", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Documentary" + ], + "path_label": "Genres > Documentary", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Drama", + "child_ids": [], + "child_paths": [], + "label": "Drama", + "level": 2, + "node_id": "647", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Drama" + ], + "path_label": "Genres > Drama", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Factual", + "child_ids": [], + "child_paths": [], + "label": "Factual", + "level": 2, + "node_id": "648", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Factual" + ], + "path_label": "Genres > Factual", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Family/Children", + "child_ids": [], + "child_paths": [], + "label": "Family/Children", + "level": 2, + "node_id": "645", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Family/Children" + ], + "path_label": "Genres > Family/Children", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Fantasy", + "child_ids": [], + "child_paths": [], + "label": "Fantasy", + "level": 2, + "node_id": "335", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Fantasy" + ], + "path_label": "Genres > Fantasy", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "History", + "child_ids": [], + "child_paths": [], + "label": "History", + "level": 2, + "node_id": "EZWB7V", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "History" + ], + "path_label": "Genres > History", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Holiday", + "child_ids": [], + "child_paths": [], + "label": "Holiday", + "level": 2, + "node_id": "649", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Holiday" + ], + "path_label": "Genres > Holiday", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Horror", + "child_ids": [], + "child_paths": [], + "label": "Horror", + "level": 2, + "node_id": "336", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Horror" + ], + "path_label": "Genres > Horror", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Lifestyle", + "child_ids": [], + "child_paths": [], + "label": "Lifestyle", + "level": 2, + "node_id": "TIFQA5", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Lifestyle" + ], + "path_label": "Genres > Lifestyle", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Music Video", + "child_ids": [], + "child_paths": [], + "label": "Music Video", + "level": 2, + "node_id": "650", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Music Video" + ], + "path_label": "Genres > Music Video", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Musicals", + "child_ids": [], + "child_paths": [], + "label": "Musicals", + "level": 2, + "node_id": "156", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Musical" + ], + "path_label": "Genres > Musical", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Mystery", + "child_ids": [], + "child_paths": [], + "label": "Mystery", + "level": 2, + "node_id": "331", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Mystery" + ], + "path_label": "Genres > Mystery", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Reality TV", + "child_ids": [], + "child_paths": [], + "label": "Reality TV", + "level": 2, + "node_id": "651", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Reality TV" + ], + "path_label": "Genres > Reality TV", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Romance", + "child_ids": [], + "child_paths": [], + "label": "Romance", + "level": 2, + "node_id": "326", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Romance" + ], + "path_label": "Genres > Romance", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Science Fiction", + "child_ids": [], + "child_paths": [], + "label": "Science Fiction", + "level": 2, + "node_id": "652", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Science Fiction" + ], + "path_label": "Genres > Science Fiction", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Soap Opera", + "child_ids": [], + "child_paths": [], + "label": "Soap Opera", + "level": 2, + "node_id": "642", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Soap Opera" + ], + "path_label": "Genres > Soap Opera", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Special Interest (Indie/Art House)", + "child_ids": [], + "child_paths": [], + "label": "Special Interest (Indie/Art House)", + "level": 2, + "node_id": "643", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Special Interest (Indie/Art House)" + ], + "path_label": "Genres > Special Interest (Indie/Art House)", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Sports Radio", + "child_ids": [], + "child_paths": [], + "label": "Sports Radio", + "level": 2, + "node_id": "370", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Sports Radio" + ], + "path_label": "Genres > Sports Radio", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Talk Radio", + "child_ids": [ + "376" + ], + "child_paths": [ + "Genres > Talk Radio > Public Radio" + ], + "label": "Talk Radio", + "level": 2, + "node_id": "371", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Talk Radio" + ], + "path_label": "Genres > Talk Radio", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "A0AH3G", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Public Radio", + "child_ids": [], + "child_paths": [], + "label": "Public Radio", + "level": 3, + "node_id": "376", + "parent_id": "371", + "path": [ + "Genres", + "Talk Radio", + "Public Radio" + ], + "path_label": "Genres > Talk Radio > Public Radio", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Talk Show", + "child_ids": [], + "child_paths": [], + "label": "Talk Show", + "level": 2, + "node_id": "A0AH3G", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Talk Show" + ], + "path_label": "Genres > Talk Show", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "KHPC5A", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > True Crime", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "True Crime", + "child_ids": [], + "child_paths": [], + "label": "True Crime", + "level": 2, + "node_id": "KHPC5A", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "True Crime" + ], + "path_label": "Genres > True Crime", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC6A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > Western", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Western", + "child_ids": [], + "child_paths": [], + "label": "Western", + "level": 2, + "node_id": "KHPC6A", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Western" + ], + "path_label": "Genres > Western", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "51" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Young Adult" + ] + }, + { + "canonical_surface_name": "Young Adult", + "child_ids": [], + "child_paths": [], + "label": "Young Adult", + "level": 2, + "node_id": "51", + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Young Adult" + ], + "path_label": "Genres > Young Adult", + "sibling_ids": [ + "325", + "641", + "44", + "646", + "332", + "647", + "648", + "645", + "335", + "EZWB7V", + "649", + "336", + "TIFQA5", + "650", + "156", + "331", + "VKIV56", + "651", + "326", + "652", + "642", + "643", + "370", + "371", + "A0AH3G", + "KHPC5A", + "KHPC6A" + ], + "sibling_paths": [ + "Genres > Action/Adventure", + "Genres > Animation & Anime", + "Genres > Biographies", + "Genres > Comedy", + "Genres > Documentary", + "Genres > Drama", + "Genres > Factual", + "Genres > Family/Children", + "Genres > Fantasy", + "Genres > History", + "Genres > Holiday", + "Genres > Horror", + "Genres > Lifestyle", + "Genres > Music Video", + "Genres > Musical", + "Genres > Mystery", + "Genres > Nature", + "Genres > Reality TV", + "Genres > Romance", + "Genres > Science Fiction", + "Genres > Soap Opera", + "Genres > Special Interest (Indie/Art House)", + "Genres > Sports Radio", + "Genres > Talk Radio", + "Genres > Talk Show", + "Genres > True Crime", + "Genres > Western" + ] + }, + { + "canonical_surface_name": "Healthy Living", + "child_ids": [ + "224", + "225", + "228", + "229", + "230", + "231", + "232", + "238" + ], + "child_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ], + "label": "Healthy Living", + "level": 1, + "node_id": "223", + "parent_id": null, + "path": [ + "Healthy Living" + ], + "path_label": "Healthy Living", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Children's Health", + "child_ids": [], + "child_paths": [], + "label": "Children's Health", + "level": 2, + "node_id": "224", + "parent_id": "223", + "path": [ + "Healthy Living", + "Children's Health" + ], + "path_label": "Healthy Living > Children's Health", + "sibling_ids": [ + "225", + "228", + "229", + "230", + "231", + "232", + "238" + ], + "sibling_paths": [ + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Fitness and Exercise", + "child_ids": [ + "226", + "227" + ], + "child_paths": [ + "Healthy Living > Fitness and Exercise > Participant Sports", + "Healthy Living > Fitness and Exercise > Running and Jogging" + ], + "label": "Fitness and Exercise", + "level": 2, + "node_id": "225", + "parent_id": "223", + "path": [ + "Healthy Living", + "Fitness and Exercise" + ], + "path_label": "Healthy Living > Fitness and Exercise", + "sibling_ids": [ + "224", + "228", + "229", + "230", + "231", + "232", + "238" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Participant Sports", + "child_ids": [], + "child_paths": [], + "label": "Participant Sports", + "level": 3, + "node_id": "226", + "parent_id": "225", + "path": [ + "Healthy Living", + "Fitness and Exercise", + "Participant Sports" + ], + "path_label": "Healthy Living > Fitness and Exercise > Participant Sports", + "sibling_ids": [ + "227" + ], + "sibling_paths": [ + "Healthy Living > Fitness and Exercise > Running and Jogging" + ] + }, + { + "canonical_surface_name": "Running and Jogging", + "child_ids": [], + "child_paths": [], + "label": "Running and Jogging", + "level": 3, + "node_id": "227", + "parent_id": "225", + "path": [ + "Healthy Living", + "Fitness and Exercise", + "Running and Jogging" + ], + "path_label": "Healthy Living > Fitness and Exercise > Running and Jogging", + "sibling_ids": [ + "226" + ], + "sibling_paths": [ + "Healthy Living > Fitness and Exercise > Participant Sports" + ] + }, + { + "canonical_surface_name": "Men's Health", + "child_ids": [], + "child_paths": [], + "label": "Men's Health", + "level": 2, + "node_id": "228", + "parent_id": "223", + "path": [ + "Healthy Living", + "Men's Health" + ], + "path_label": "Healthy Living > Men's Health", + "sibling_ids": [ + "224", + "225", + "229", + "230", + "231", + "232", + "238" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Nutrition", + "child_ids": [], + "child_paths": [], + "label": "Nutrition", + "level": 2, + "node_id": "229", + "parent_id": "223", + "path": [ + "Healthy Living", + "Nutrition" + ], + "path_label": "Healthy Living > Nutrition", + "sibling_ids": [ + "224", + "225", + "228", + "230", + "231", + "232", + "238" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Senior Health", + "child_ids": [], + "child_paths": [], + "label": "Senior Health", + "level": 2, + "node_id": "230", + "parent_id": "223", + "path": [ + "Healthy Living", + "Senior Health" + ], + "path_label": "Healthy Living > Senior Health", + "sibling_ids": [ + "224", + "225", + "228", + "229", + "231", + "232", + "238" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Weight Loss", + "child_ids": [], + "child_paths": [], + "label": "Weight Loss", + "level": 2, + "node_id": "231", + "parent_id": "223", + "path": [ + "Healthy Living", + "Weight Loss" + ], + "path_label": "Healthy Living > Weight Loss", + "sibling_ids": [ + "224", + "225", + "228", + "229", + "230", + "232", + "238" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Wellness", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Wellness", + "child_ids": [ + "233", + "236", + "237" + ], + "child_paths": [ + "Healthy Living > Wellness > Alternative Medicine", + "Healthy Living > Wellness > Physical Therapy", + "Healthy Living > Wellness > Smoking Cessation" + ], + "label": "Wellness", + "level": 2, + "node_id": "232", + "parent_id": "223", + "path": [ + "Healthy Living", + "Wellness" + ], + "path_label": "Healthy Living > Wellness", + "sibling_ids": [ + "224", + "225", + "228", + "229", + "230", + "231", + "238" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Women's Health" + ] + }, + { + "canonical_surface_name": "Alternative Medicine", + "child_ids": [ + "234", + "235" + ], + "child_paths": [ + "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", + "Healthy Living > Wellness > Alternative Medicine > Holistic Health" + ], + "label": "Alternative Medicine", + "level": 3, + "node_id": "233", + "parent_id": "232", + "path": [ + "Healthy Living", + "Wellness", + "Alternative Medicine" + ], + "path_label": "Healthy Living > Wellness > Alternative Medicine", + "sibling_ids": [ + "236", + "237" + ], + "sibling_paths": [ + "Healthy Living > Wellness > Physical Therapy", + "Healthy Living > Wellness > Smoking Cessation" + ] + }, + { + "canonical_surface_name": "Herbs and Supplements", + "child_ids": [], + "child_paths": [], + "label": "Herbs and Supplements", + "level": 4, + "node_id": "234", + "parent_id": "233", + "path": [ + "Healthy Living", + "Wellness", + "Alternative Medicine", + "Herbs and Supplements" + ], + "path_label": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", + "sibling_ids": [ + "235" + ], + "sibling_paths": [ + "Healthy Living > Wellness > Alternative Medicine > Holistic Health" + ] + }, + { + "canonical_surface_name": "Holistic Health", + "child_ids": [], + "child_paths": [], + "label": "Holistic Health", + "level": 4, + "node_id": "235", + "parent_id": "233", + "path": [ + "Healthy Living", + "Wellness", + "Alternative Medicine", + "Holistic Health" + ], + "path_label": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", + "sibling_ids": [ + "234" + ], + "sibling_paths": [ + "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements" + ] + }, + { + "canonical_surface_name": "Physical Therapy", + "child_ids": [], + "child_paths": [], + "label": "Physical Therapy", + "level": 3, + "node_id": "236", + "parent_id": "232", + "path": [ + "Healthy Living", + "Wellness", + "Physical Therapy" + ], + "path_label": "Healthy Living > Wellness > Physical Therapy", + "sibling_ids": [ + "233", + "237" + ], + "sibling_paths": [ + "Healthy Living > Wellness > Alternative Medicine", + "Healthy Living > Wellness > Smoking Cessation" + ] + }, + { + "canonical_surface_name": "Smoking Cessation", + "child_ids": [], + "child_paths": [], + "label": "Smoking Cessation", + "level": 3, + "node_id": "237", + "parent_id": "232", + "path": [ + "Healthy Living", + "Wellness", + "Smoking Cessation" + ], + "path_label": "Healthy Living > Wellness > Smoking Cessation", + "sibling_ids": [ + "233", + "236" + ], + "sibling_paths": [ + "Healthy Living > Wellness > Alternative Medicine", + "Healthy Living > Wellness > Physical Therapy" + ] + }, + { + "canonical_surface_name": "Women's Health", + "child_ids": [], + "child_paths": [], + "label": "Women's Health", + "level": 2, + "node_id": "238", + "parent_id": "223", + "path": [ + "Healthy Living", + "Women's Health" + ], + "path_label": "Healthy Living > Women's Health", + "sibling_ids": [ + "224", + "225", + "228", + "229", + "230", + "231", + "232" + ], + "sibling_paths": [ + "Healthy Living > Children's Health", + "Healthy Living > Fitness and Exercise", + "Healthy Living > Men's Health", + "Healthy Living > Nutrition", + "Healthy Living > Senior Health", + "Healthy Living > Weight Loss", + "Healthy Living > Wellness" + ] + }, + { + "canonical_surface_name": "Hobbies & Interests", + "child_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "child_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ], + "label": "Hobbies & Interests", + "level": 1, + "node_id": "239", + "parent_id": null, + "path": [ + "Hobbies & Interests" + ], + "path_label": "Hobbies & Interests", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Antiquing and Antiques", + "child_ids": [], + "child_paths": [], + "label": "Antiquing and Antiques", + "level": 2, + "node_id": "240", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Antiquing and Antiques" + ], + "path_label": "Hobbies & Interests > Antiquing and Antiques", + "sibling_ids": [ + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Arts and Crafts", + "child_ids": [ + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257" + ], + "child_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ], + "label": "Arts and Crafts", + "level": 2, + "node_id": "248", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Arts and Crafts" + ], + "path_label": "Hobbies & Interests > Arts and Crafts", + "sibling_ids": [ + "240", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Beadwork", + "child_ids": [], + "child_paths": [], + "label": "Beadwork", + "level": 3, + "node_id": "249", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Beadwork" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Beadwork", + "sibling_ids": [ + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Candle and Soap Making", + "child_ids": [], + "child_paths": [], + "label": "Candle and Soap Making", + "level": 3, + "node_id": "250", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Candle and Soap Making" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "sibling_ids": [ + "249", + "251", + "252", + "253", + "254", + "255", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Drawing and Sketching", + "child_ids": [], + "child_paths": [], + "label": "Drawing and Sketching", + "level": 3, + "node_id": "251", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Drawing and Sketching" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "sibling_ids": [ + "249", + "250", + "252", + "253", + "254", + "255", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Jewelry Making", + "child_ids": [], + "child_paths": [], + "label": "Jewelry Making", + "level": 3, + "node_id": "252", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Jewelry Making" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "sibling_ids": [ + "249", + "250", + "251", + "253", + "254", + "255", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Needlework", + "child_ids": [], + "child_paths": [], + "label": "Needlework", + "level": 3, + "node_id": "253", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Needlework" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Needlework", + "sibling_ids": [ + "249", + "250", + "251", + "252", + "254", + "255", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Painting", + "child_ids": [], + "child_paths": [], + "label": "Painting", + "level": 3, + "node_id": "254", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Painting" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Painting", + "sibling_ids": [ + "249", + "250", + "251", + "252", + "253", + "255", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Photography", + "child_ids": [], + "child_paths": [], + "label": "Photography", + "level": 3, + "node_id": "255", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Photography" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Photography", + "sibling_ids": [ + "249", + "250", + "251", + "252", + "253", + "254", + "256", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Scrapbooking", + "child_ids": [], + "child_paths": [], + "label": "Scrapbooking", + "level": 3, + "node_id": "256", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Scrapbooking" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "sibling_ids": [ + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "257" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Woodworking" + ] + }, + { + "canonical_surface_name": "Woodworking", + "child_ids": [], + "child_paths": [], + "label": "Woodworking", + "level": 3, + "node_id": "257", + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Woodworking" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Woodworking", + "sibling_ids": [ + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256" + ], + "sibling_paths": [ + "Hobbies & Interests > Arts and Crafts > Beadwork", + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "Hobbies & Interests > Arts and Crafts > Needlework", + "Hobbies & Interests > Arts and Crafts > Painting", + "Hobbies & Interests > Arts and Crafts > Photography", + "Hobbies & Interests > Arts and Crafts > Scrapbooking" + ] + }, + { + "canonical_surface_name": "Beekeeping", + "child_ids": [], + "child_paths": [], + "label": "Beekeeping", + "level": 2, + "node_id": "258", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Beekeeping" + ], + "path_label": "Hobbies & Interests > Beekeeping", + "sibling_ids": [ + "240", + "248", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Birdwatching", + "child_ids": [], + "child_paths": [], + "label": "Birdwatching", + "level": 2, + "node_id": "259", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Birdwatching" + ], + "path_label": "Hobbies & Interests > Birdwatching", + "sibling_ids": [ + "240", + "248", + "258", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Cigars", + "child_ids": [], + "child_paths": [], + "label": "Cigars", + "level": 2, + "node_id": "260", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Cigars" + ], + "path_label": "Hobbies & Interests > Cigars", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Collecting", + "child_ids": [ + "262", + "263" + ], + "child_paths": [ + "Hobbies & Interests > Collecting > Comic Books", + "Hobbies & Interests > Collecting > Stamps and Coins" + ], + "label": "Collecting", + "level": 2, + "node_id": "261", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Collecting" + ], + "path_label": "Hobbies & Interests > Collecting", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Comic Books", + "child_ids": [], + "child_paths": [], + "label": "Comic Books", + "level": 3, + "node_id": "262", + "parent_id": "261", + "path": [ + "Hobbies & Interests", + "Collecting", + "Comic Books" + ], + "path_label": "Hobbies & Interests > Collecting > Comic Books", + "sibling_ids": [ + "263" + ], + "sibling_paths": [ + "Hobbies & Interests > Collecting > Stamps and Coins" + ] + }, + { + "canonical_surface_name": "Stamps and Coins", + "child_ids": [], + "child_paths": [], + "label": "Stamps and Coins", + "level": 3, + "node_id": "263", + "parent_id": "261", + "path": [ + "Hobbies & Interests", + "Collecting", + "Stamps and Coins" + ], + "path_label": "Hobbies & Interests > Collecting > Stamps and Coins", + "sibling_ids": [ + "262" + ], + "sibling_paths": [ + "Hobbies & Interests > Collecting > Comic Books" + ] + }, + { + "canonical_surface_name": "Content Production", + "child_ids": [ + "265", + "266", + "267", + "268" + ], + "child_paths": [ + "Hobbies & Interests > Content Production > Audio Production", + "Hobbies & Interests > Content Production > Freelance Writing", + "Hobbies & Interests > Content Production > Screenwriting", + "Hobbies & Interests > Content Production > Video Production" + ], + "label": "Content Production", + "level": 2, + "node_id": "264", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Content Production" + ], + "path_label": "Hobbies & Interests > Content Production", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Audio Production", + "child_ids": [], + "child_paths": [], + "label": "Audio Production", + "level": 3, + "node_id": "265", + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Audio Production" + ], + "path_label": "Hobbies & Interests > Content Production > Audio Production", + "sibling_ids": [ + "266", + "267", + "268" + ], + "sibling_paths": [ + "Hobbies & Interests > Content Production > Freelance Writing", + "Hobbies & Interests > Content Production > Screenwriting", + "Hobbies & Interests > Content Production > Video Production" + ] + }, + { + "canonical_surface_name": "Freelance Writing", + "child_ids": [], + "child_paths": [], + "label": "Freelance Writing", + "level": 3, + "node_id": "266", + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Freelance Writing" + ], + "path_label": "Hobbies & Interests > Content Production > Freelance Writing", + "sibling_ids": [ + "265", + "267", + "268" + ], + "sibling_paths": [ + "Hobbies & Interests > Content Production > Audio Production", + "Hobbies & Interests > Content Production > Screenwriting", + "Hobbies & Interests > Content Production > Video Production" + ] + }, + { + "canonical_surface_name": "Screenwriting", + "child_ids": [], + "child_paths": [], + "label": "Screenwriting", + "level": 3, + "node_id": "267", + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Screenwriting" + ], + "path_label": "Hobbies & Interests > Content Production > Screenwriting", + "sibling_ids": [ + "265", + "266", + "268" + ], + "sibling_paths": [ + "Hobbies & Interests > Content Production > Audio Production", + "Hobbies & Interests > Content Production > Freelance Writing", + "Hobbies & Interests > Content Production > Video Production" + ] + }, + { + "canonical_surface_name": "Video Production", + "child_ids": [], + "child_paths": [], + "label": "Video Production", + "level": 3, + "node_id": "268", + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Video Production" + ], + "path_label": "Hobbies & Interests > Content Production > Video Production", + "sibling_ids": [ + "265", + "266", + "267" + ], + "sibling_paths": [ + "Hobbies & Interests > Content Production > Audio Production", + "Hobbies & Interests > Content Production > Freelance Writing", + "Hobbies & Interests > Content Production > Screenwriting" + ] + }, + { + "canonical_surface_name": "Games and Puzzles", + "child_ids": [ + "270", + "271", + "272" + ], + "child_paths": [ + "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", + "Hobbies & Interests > Games and Puzzles > Card Games", + "Hobbies & Interests > Games and Puzzles > Roleplaying Games" + ], + "label": "Games and Puzzles", + "level": 2, + "node_id": "269", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Games and Puzzles" + ], + "path_label": "Hobbies & Interests > Games and Puzzles", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "273", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Board Games and Puzzles", + "child_ids": [], + "child_paths": [], + "label": "Board Games and Puzzles", + "level": 3, + "node_id": "270", + "parent_id": "269", + "path": [ + "Hobbies & Interests", + "Games and Puzzles", + "Board Games and Puzzles" + ], + "path_label": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", + "sibling_ids": [ + "271", + "272" + ], + "sibling_paths": [ + "Hobbies & Interests > Games and Puzzles > Card Games", + "Hobbies & Interests > Games and Puzzles > Roleplaying Games" + ] + }, + { + "canonical_surface_name": "Card Games", + "child_ids": [], + "child_paths": [], + "label": "Card Games", + "level": 3, + "node_id": "271", + "parent_id": "269", + "path": [ + "Hobbies & Interests", + "Games and Puzzles", + "Card Games" + ], + "path_label": "Hobbies & Interests > Games and Puzzles > Card Games", + "sibling_ids": [ + "270", + "272" + ], + "sibling_paths": [ + "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", + "Hobbies & Interests > Games and Puzzles > Roleplaying Games" + ] + }, + { + "canonical_surface_name": "Roleplaying Games", + "child_ids": [], + "child_paths": [], + "label": "Roleplaying Games", + "level": 3, + "node_id": "272", + "parent_id": "269", + "path": [ + "Hobbies & Interests", + "Games and Puzzles", + "Roleplaying Games" + ], + "path_label": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", + "sibling_ids": [ + "270", + "271" + ], + "sibling_paths": [ + "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", + "Hobbies & Interests > Games and Puzzles > Card Games" + ] + }, + { + "canonical_surface_name": "Genealogy and Ancestry", + "child_ids": [], + "child_paths": [], + "label": "Genealogy and Ancestry", + "level": 2, + "node_id": "273", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Genealogy and Ancestry" + ], + "path_label": "Hobbies & Interests > Genealogy and Ancestry", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "241", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Magic and Illusion", + "child_ids": [], + "child_paths": [], + "label": "Magic and Illusion", + "level": 2, + "node_id": "241", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Magic and Illusion" + ], + "path_label": "Hobbies & Interests > Magic and Illusion", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "242", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Model Toys", + "child_ids": [], + "child_paths": [], + "label": "Model Toys", + "level": 2, + "node_id": "242", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Model Toys" + ], + "path_label": "Hobbies & Interests > Model Toys", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "243", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Musical Instruments", + "child_ids": [], + "child_paths": [], + "label": "Musical Instruments", + "level": 2, + "node_id": "243", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Musical Instruments" + ], + "path_label": "Hobbies & Interests > Musical Instruments", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "244", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Paranormal Phenomena", + "child_ids": [], + "child_paths": [], + "label": "Paranormal Phenomena", + "level": 2, + "node_id": "244", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Paranormal Phenomena" + ], + "path_label": "Hobbies & Interests > Paranormal Phenomena", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "245", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Radio Control", + "child_ids": [], + "child_paths": [], + "label": "Radio Control", + "level": 2, + "node_id": "245", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Radio Control" + ], + "path_label": "Hobbies & Interests > Radio Control", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "246", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Sci-fi and Fantasy", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Sci-fi and Fantasy", + "child_ids": [], + "child_paths": [], + "label": "Sci-fi and Fantasy", + "level": 2, + "node_id": "246", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Sci-fi and Fantasy" + ], + "path_label": "Hobbies & Interests > Sci-fi and Fantasy", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "247" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Workshops and Classes" + ] + }, + { + "canonical_surface_name": "Workshops and Classes", + "child_ids": [], + "child_paths": [], + "label": "Workshops and Classes", + "level": 2, + "node_id": "247", + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Workshops and Classes" + ], + "path_label": "Hobbies & Interests > Workshops and Classes", + "sibling_ids": [ + "240", + "248", + "258", + "259", + "260", + "261", + "264", + "269", + "273", + "241", + "242", + "243", + "244", + "245", + "246" + ], + "sibling_paths": [ + "Hobbies & Interests > Antiquing and Antiques", + "Hobbies & Interests > Arts and Crafts", + "Hobbies & Interests > Beekeeping", + "Hobbies & Interests > Birdwatching", + "Hobbies & Interests > Cigars", + "Hobbies & Interests > Collecting", + "Hobbies & Interests > Content Production", + "Hobbies & Interests > Games and Puzzles", + "Hobbies & Interests > Genealogy and Ancestry", + "Hobbies & Interests > Magic and Illusion", + "Hobbies & Interests > Model Toys", + "Hobbies & Interests > Musical Instruments", + "Hobbies & Interests > Paranormal Phenomena", + "Hobbies & Interests > Radio Control", + "Hobbies & Interests > Sci-fi and Fantasy" + ] + }, + { + "canonical_surface_name": "Holidays", + "child_ids": [ + "157" + ], + "child_paths": [ + "Holidays > National & Civic Holidays" + ], + "label": "Holidays", + "level": 1, + "node_id": "1KXCLD", + "parent_id": null, + "path": [ + "Holidays" + ], + "path_label": "Holidays", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "National & Civic Holidays", + "child_ids": [], + "child_paths": [], + "label": "National & Civic Holidays", + "level": 2, + "node_id": "157", + "parent_id": "1KXCLD", + "path": [ + "Holidays", + "National & Civic Holidays" + ], + "path_label": "Holidays > National & Civic Holidays", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Home & Garden", + "child_ids": [ + "275", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "285", + "276", + "277" + ], + "child_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ], + "label": "Home & Garden", + "level": 1, + "node_id": "274", + "parent_id": null, + "path": [ + "Home & Garden" + ], + "path_label": "Home & Garden", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Gardening", + "child_ids": [], + "child_paths": [], + "label": "Gardening", + "level": 2, + "node_id": "275", + "parent_id": "274", + "path": [ + "Home & Garden", + "Gardening" + ], + "path_label": "Home & Garden > Gardening", + "sibling_ids": [ + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Home Appliances", + "child_ids": [], + "child_paths": [], + "label": "Home Appliances", + "level": 2, + "node_id": "278", + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Appliances" + ], + "path_label": "Home & Garden > Home Appliances", + "sibling_ids": [ + "275", + "279", + "280", + "281", + "282", + "283", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Home Entertaining", + "child_ids": [], + "child_paths": [], + "label": "Home Entertaining", + "level": 2, + "node_id": "279", + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Entertaining" + ], + "path_label": "Home & Garden > Home Entertaining", + "sibling_ids": [ + "275", + "278", + "280", + "281", + "282", + "283", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Home Improvement", + "child_ids": [], + "child_paths": [], + "label": "Home Improvement", + "level": 2, + "node_id": "280", + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Improvement" + ], + "path_label": "Home & Garden > Home Improvement", + "sibling_ids": [ + "275", + "278", + "279", + "281", + "282", + "283", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Home Security", + "child_ids": [], + "child_paths": [], + "label": "Home Security", + "level": 2, + "node_id": "281", + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Security" + ], + "path_label": "Home & Garden > Home Security", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "282", + "283", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Indoor Environmental Quality", + "child_ids": [], + "child_paths": [], + "label": "Indoor Environmental Quality", + "level": 2, + "node_id": "282", + "parent_id": "274", + "path": [ + "Home & Garden", + "Indoor Environmental Quality" + ], + "path_label": "Home & Garden > Indoor Environmental Quality", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "281", + "283", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Interior Decorating", + "child_ids": [], + "child_paths": [], + "label": "Interior Decorating", + "level": 2, + "node_id": "283", + "parent_id": "274", + "path": [ + "Home & Garden", + "Interior Decorating" + ], + "path_label": "Home & Garden > Interior Decorating", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "281", + "282", + "284", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Landscaping", + "child_ids": [], + "child_paths": [], + "label": "Landscaping", + "level": 2, + "node_id": "284", + "parent_id": "274", + "path": [ + "Home & Garden", + "Landscaping" + ], + "path_label": "Home & Garden > Landscaping", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "281", + "282", + "283", + "285", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Outdoor Decorating", + "child_ids": [], + "child_paths": [], + "label": "Outdoor Decorating", + "level": 2, + "node_id": "285", + "parent_id": "274", + "path": [ + "Home & Garden", + "Outdoor Decorating" + ], + "path_label": "Home & Garden > Outdoor Decorating", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "276", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Remodeling & Construction", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Remodeling & Construction", + "child_ids": [], + "child_paths": [], + "label": "Remodeling & Construction", + "level": 2, + "node_id": "276", + "parent_id": "274", + "path": [ + "Home & Garden", + "Remodeling & Construction" + ], + "path_label": "Home & Garden > Remodeling & Construction", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "285", + "277" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Smart Home" + ] + }, + { + "canonical_surface_name": "Smart Home", + "child_ids": [], + "child_paths": [], + "label": "Smart Home", + "level": 2, + "node_id": "277", + "parent_id": "274", + "path": [ + "Home & Garden", + "Smart Home" + ], + "path_label": "Home & Garden > Smart Home", + "sibling_ids": [ + "275", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "285", + "276" + ], + "sibling_paths": [ + "Home & Garden > Gardening", + "Home & Garden > Home Appliances", + "Home & Garden > Home Entertaining", + "Home & Garden > Home Improvement", + "Home & Garden > Home Security", + "Home & Garden > Indoor Environmental Quality", + "Home & Garden > Interior Decorating", + "Home & Garden > Landscaping", + "Home & Garden > Outdoor Decorating", + "Home & Garden > Remodeling & Construction" + ] + }, + { + "canonical_surface_name": "Law", + "child_ids": [], + "child_paths": [], + "label": "Law", + "level": 1, + "node_id": "383", + "parent_id": null, + "path": [ + "Law" + ], + "path_label": "Law", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Maps & Navigation", + "child_ids": [], + "child_paths": [], + "label": "Maps & Navigation", + "level": 4, + "node_id": "WQC6HR", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Maps & Navigation" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Medical Health", + "child_ids": [ + "323", + "287", + "319", + "320", + "321", + "322" + ], + "child_paths": [ + "Medical Health > Cosmetic Medical Services", + "Medical Health > Diseases and Conditions", + "Medical Health > Medical Tests", + "Medical Health > Pharmaceutical Drugs", + "Medical Health > Surgery", + "Medical Health > Vaccines" + ], + "label": "Medical Health", + "level": 1, + "node_id": "286", + "parent_id": null, + "path": [ + "Medical Health" + ], + "path_label": "Medical Health", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Cosmetic Medical Services", + "child_ids": [], + "child_paths": [], + "label": "Cosmetic Medical Services", + "level": 2, + "node_id": "323", + "parent_id": "286", + "path": [ + "Medical Health", + "Cosmetic Medical Services" + ], + "path_label": "Medical Health > Cosmetic Medical Services", + "sibling_ids": [ + "287", + "319", + "320", + "321", + "322" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions", + "Medical Health > Medical Tests", + "Medical Health > Pharmaceutical Drugs", + "Medical Health > Surgery", + "Medical Health > Vaccines" + ] + }, + { + "canonical_surface_name": "Diseases and Conditions", + "child_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "child_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ], + "label": "Diseases and Conditions", + "level": 2, + "node_id": "287", + "parent_id": "286", + "path": [ + "Medical Health", + "Diseases and Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions", + "sibling_ids": [ + "323", + "319", + "320", + "321", + "322" + ], + "sibling_paths": [ + "Medical Health > Cosmetic Medical Services", + "Medical Health > Medical Tests", + "Medical Health > Pharmaceutical Drugs", + "Medical Health > Surgery", + "Medical Health > Vaccines" + ] + }, + { + "canonical_surface_name": "Allergies", + "child_ids": [], + "child_paths": [], + "label": "Allergies", + "level": 3, + "node_id": "288", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Allergies" + ], + "path_label": "Medical Health > Diseases and Conditions > Allergies", + "sibling_ids": [ + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Blood Disorders", + "child_ids": [], + "child_paths": [], + "label": "Blood Disorders", + "level": 3, + "node_id": "306", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Blood Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Blood Disorders", + "sibling_ids": [ + "288", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Bone and Joint Conditions", + "child_ids": [], + "child_paths": [], + "label": "Bone and Joint Conditions", + "level": 3, + "node_id": "312", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Bone and Joint Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "sibling_ids": [ + "288", + "306", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Brain and Nervous System Disorders", + "child_ids": [], + "child_paths": [], + "label": "Brain and Nervous System Disorders", + "level": 3, + "node_id": "313", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Brain and Nervous System Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "sibling_ids": [ + "288", + "306", + "312", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Cancer", + "child_ids": [], + "child_paths": [], + "label": "Cancer", + "level": 3, + "node_id": "314", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Cancer" + ], + "path_label": "Medical Health > Diseases and Conditions > Cancer", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Cold and Flu", + "child_ids": [], + "child_paths": [], + "label": "Cold and Flu", + "level": 3, + "node_id": "315", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Cold and Flu" + ], + "path_label": "Medical Health > Diseases and Conditions > Cold and Flu", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Dental Health", + "child_ids": [], + "child_paths": [], + "label": "Dental Health", + "level": 3, + "node_id": "316", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Dental Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Dental Health", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Diabetes", + "child_ids": [], + "child_paths": [], + "label": "Diabetes", + "level": 3, + "node_id": "317", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Diabetes" + ], + "path_label": "Medical Health > Diseases and Conditions > Diabetes", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Digestive Disorders", + "child_ids": [], + "child_paths": [], + "label": "Digestive Disorders", + "level": 3, + "node_id": "318", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Digestive Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Digestive Disorders", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Ear, Nose and Throat Conditions", + "child_ids": [], + "child_paths": [], + "label": "Ear, Nose and Throat Conditions", + "level": 3, + "node_id": "289", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Ear, Nose and Throat Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Endocrine and Metabolic Diseases", + "child_ids": [ + "291", + "292", + "293" + ], + "child_paths": [ + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders" + ], + "label": "Endocrine and Metabolic Diseases", + "level": 3, + "node_id": "290", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Hormonal Disorders", + "child_ids": [], + "child_paths": [], + "label": "Hormonal Disorders", + "level": 4, + "node_id": "291", + "parent_id": "290", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases", + "Hormonal Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", + "sibling_ids": [ + "292", + "293" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders" + ] + }, + { + "canonical_surface_name": "Menopause", + "child_ids": [], + "child_paths": [], + "label": "Menopause", + "level": 4, + "node_id": "292", + "parent_id": "290", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases", + "Menopause" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", + "sibling_ids": [ + "291", + "293" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders" + ] + }, + { + "canonical_surface_name": "Thyroid Disorders", + "child_ids": [], + "child_paths": [], + "label": "Thyroid Disorders", + "level": 4, + "node_id": "293", + "parent_id": "290", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases", + "Thyroid Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", + "sibling_ids": [ + "291", + "292" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause" + ] + }, + { + "canonical_surface_name": "Eye and Vision Conditions", + "child_ids": [], + "child_paths": [], + "label": "Eye and Vision Conditions", + "level": 3, + "node_id": "294", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Eye and Vision Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Foot Health", + "child_ids": [], + "child_paths": [], + "label": "Foot Health", + "level": 3, + "node_id": "295", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Foot Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Foot Health", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Heart and Cardiovascular Diseases", + "child_ids": [], + "child_paths": [], + "label": "Heart and Cardiovascular Diseases", + "level": 3, + "node_id": "296", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Heart and Cardiovascular Diseases" + ], + "path_label": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Infectious Diseases", + "child_ids": [], + "child_paths": [], + "label": "Infectious Diseases", + "level": 3, + "node_id": "297", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Infectious Diseases" + ], + "path_label": "Medical Health > Diseases and Conditions > Infectious Diseases", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "298", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Injuries", + "child_ids": [ + "299" + ], + "child_paths": [ + "Medical Health > Diseases and Conditions > Injuries > First Aid" + ], + "label": "Injuries", + "level": 3, + "node_id": "298", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Injuries" + ], + "path_label": "Medical Health > Diseases and Conditions > Injuries", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "300", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "First Aid", + "child_ids": [], + "child_paths": [], + "label": "First Aid", + "level": 4, + "node_id": "299", + "parent_id": "298", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Injuries", + "First Aid" + ], + "path_label": "Medical Health > Diseases and Conditions > Injuries > First Aid", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Lung and Respiratory Health", + "child_ids": [], + "child_paths": [], + "label": "Lung and Respiratory Health", + "level": 3, + "node_id": "300", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Lung and Respiratory Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "301", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Mental Health", + "child_ids": [], + "child_paths": [], + "label": "Mental Health", + "level": 3, + "node_id": "301", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Mental Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Mental Health", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "302", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Reproductive Health", + "child_ids": [ + "303", + "304", + "305" + ], + "child_paths": [ + "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", + "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", + "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy" + ], + "label": "Reproductive Health", + "level": 3, + "node_id": "302", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "307", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Birth Control", + "child_ids": [], + "child_paths": [], + "label": "Birth Control", + "level": 4, + "node_id": "303", + "parent_id": "302", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health", + "Birth Control" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", + "sibling_ids": [ + "304", + "305" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", + "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy" + ] + }, + { + "canonical_surface_name": "Infertility", + "child_ids": [], + "child_paths": [], + "label": "Infertility", + "level": 4, + "node_id": "304", + "parent_id": "302", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health", + "Infertility" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", + "sibling_ids": [ + "303", + "305" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", + "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy" + ] + }, + { + "canonical_surface_name": "Pregnancy", + "child_ids": [], + "child_paths": [], + "label": "Pregnancy", + "level": 4, + "node_id": "305", + "parent_id": "302", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health", + "Pregnancy" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", + "sibling_ids": [ + "303", + "304" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", + "Medical Health > Diseases and Conditions > Reproductive Health > Infertility" + ] + }, + { + "canonical_surface_name": "Sexual Health", + "child_ids": [ + "308" + ], + "child_paths": [ + "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions" + ], + "label": "Sexual Health", + "level": 3, + "node_id": "307", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Sexual Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Sexual Health", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "309", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Sexual Conditions", + "child_ids": [], + "child_paths": [], + "label": "Sexual Conditions", + "level": 4, + "node_id": "308", + "parent_id": "307", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Sexual Health", + "Sexual Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Skin and Dermatology", + "child_ids": [], + "child_paths": [], + "label": "Skin and Dermatology", + "level": 3, + "node_id": "309", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Skin and Dermatology" + ], + "path_label": "Medical Health > Diseases and Conditions > Skin and Dermatology", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "310", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Sleep Disorders", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Sleep Disorders", + "child_ids": [], + "child_paths": [], + "label": "Sleep Disorders", + "level": 3, + "node_id": "310", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Sleep Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Sleep Disorders", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "311" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Substance Abuse" + ] + }, + { + "canonical_surface_name": "Substance Abuse", + "child_ids": [], + "child_paths": [], + "label": "Substance Abuse", + "level": 3, + "node_id": "311", + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Substance Abuse" + ], + "path_label": "Medical Health > Diseases and Conditions > Substance Abuse", + "sibling_ids": [ + "288", + "306", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "289", + "290", + "294", + "295", + "296", + "297", + "298", + "300", + "301", + "302", + "307", + "309", + "310" + ], + "sibling_paths": [ + "Medical Health > Diseases and Conditions > Allergies", + "Medical Health > Diseases and Conditions > Blood Disorders", + "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "Medical Health > Diseases and Conditions > Cancer", + "Medical Health > Diseases and Conditions > Cold and Flu", + "Medical Health > Diseases and Conditions > Dental Health", + "Medical Health > Diseases and Conditions > Diabetes", + "Medical Health > Diseases and Conditions > Digestive Disorders", + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "Medical Health > Diseases and Conditions > Foot Health", + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "Medical Health > Diseases and Conditions > Infectious Diseases", + "Medical Health > Diseases and Conditions > Injuries", + "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "Medical Health > Diseases and Conditions > Mental Health", + "Medical Health > Diseases and Conditions > Reproductive Health", + "Medical Health > Diseases and Conditions > Sexual Health", + "Medical Health > Diseases and Conditions > Skin and Dermatology", + "Medical Health > Diseases and Conditions > Sleep Disorders" + ] + }, + { + "canonical_surface_name": "Medical Tests", + "child_ids": [], + "child_paths": [], + "label": "Medical Tests", + "level": 2, + "node_id": "319", + "parent_id": "286", + "path": [ + "Medical Health", + "Medical Tests" + ], + "path_label": "Medical Health > Medical Tests", + "sibling_ids": [ + "323", + "287", + "320", + "321", + "322" + ], + "sibling_paths": [ + "Medical Health > Cosmetic Medical Services", + "Medical Health > Diseases and Conditions", + "Medical Health > Pharmaceutical Drugs", + "Medical Health > Surgery", + "Medical Health > Vaccines" + ] + }, + { + "canonical_surface_name": "Pharmaceutical Drugs", + "child_ids": [], + "child_paths": [], + "label": "Pharmaceutical Drugs", + "level": 2, + "node_id": "320", + "parent_id": "286", + "path": [ + "Medical Health", + "Pharmaceutical Drugs" + ], + "path_label": "Medical Health > Pharmaceutical Drugs", + "sibling_ids": [ + "323", + "287", + "319", + "321", + "322" + ], + "sibling_paths": [ + "Medical Health > Cosmetic Medical Services", + "Medical Health > Diseases and Conditions", + "Medical Health > Medical Tests", + "Medical Health > Surgery", + "Medical Health > Vaccines" + ] + }, + { + "canonical_surface_name": "Surgery", + "child_ids": [], + "child_paths": [], + "label": "Surgery", + "level": 2, + "node_id": "321", + "parent_id": "286", + "path": [ + "Medical Health", + "Surgery" + ], + "path_label": "Medical Health > Surgery", + "sibling_ids": [ + "323", + "287", + "319", + "320", + "322" + ], + "sibling_paths": [ + "Medical Health > Cosmetic Medical Services", + "Medical Health > Diseases and Conditions", + "Medical Health > Medical Tests", + "Medical Health > Pharmaceutical Drugs", + "Medical Health > Vaccines" + ] + }, + { + "canonical_surface_name": "Vaccines", + "child_ids": [], + "child_paths": [], + "label": "Vaccines", + "level": 2, + "node_id": "322", + "parent_id": "286", + "path": [ + "Medical Health", + "Vaccines" + ], + "path_label": "Medical Health > Vaccines", + "sibling_ids": [ + "323", + "287", + "319", + "320", + "321" + ], + "sibling_paths": [ + "Medical Health > Cosmetic Medical Services", + "Medical Health > Diseases and Conditions", + "Medical Health > Medical Tests", + "Medical Health > Pharmaceutical Drugs", + "Medical Health > Surgery" + ] + }, + { + "canonical_surface_name": "Adult Album Alternative", + "child_ids": [], + "child_paths": [], + "label": "Adult Album Alternative", + "level": 3, + "node_id": "342", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Adult Album Alternative" + ], + "path_label": "Entertainment > Music > Adult Album Alternative", + "sibling_ids": [ + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Adult Contemporary Music", + "child_ids": [ + "340", + "341" + ], + "child_paths": [ + "Entertainment > Music > Adult Contemporary Music > Soft AC Music", + "Entertainment > Music > Adult Contemporary Music > Urban AC Music" + ], + "label": "Adult Contemporary Music", + "level": 3, + "node_id": "339", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Adult Contemporary Music" + ], + "path_label": "Entertainment > Music > Adult Contemporary Music", + "sibling_ids": [ + "342", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Soft AC Music", + "child_ids": [], + "child_paths": [], + "label": "Soft AC Music", + "level": 4, + "node_id": "340", + "parent_id": "339", + "path": [ + "Entertainment", + "Music", + "Adult Contemporary Music", + "Soft AC Music" + ], + "path_label": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", + "sibling_ids": [ + "341" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Contemporary Music > Urban AC Music" + ] + }, + { + "canonical_surface_name": "Urban AC Music", + "child_ids": [], + "child_paths": [], + "label": "Urban AC Music", + "level": 4, + "node_id": "341", + "parent_id": "339", + "path": [ + "Entertainment", + "Music", + "Adult Contemporary Music", + "Urban AC Music" + ], + "path_label": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", + "sibling_ids": [ + "340" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Contemporary Music > Soft AC Music" + ] + }, + { + "canonical_surface_name": "Alternative Music", + "child_ids": [], + "child_paths": [], + "label": "Alternative Music", + "level": 3, + "node_id": "343", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Alternative Music" + ], + "path_label": "Entertainment > Music > Alternative Music", + "sibling_ids": [ + "342", + "339", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Blues", + "child_ids": [], + "child_paths": [], + "label": "Blues", + "level": 3, + "node_id": "360", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Blues" + ], + "path_label": "Entertainment > Music > Blues", + "sibling_ids": [ + "342", + "339", + "343", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Children's Music", + "child_ids": [], + "child_paths": [], + "label": "Children's Music", + "level": 3, + "node_id": "344", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Children's Music" + ], + "path_label": "Entertainment > Music > Children's Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Classic Hits", + "child_ids": [], + "child_paths": [], + "label": "Classic Hits", + "level": 3, + "node_id": "345", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Classic Hits" + ], + "path_label": "Entertainment > Music > Classic Hits", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Classical Music", + "child_ids": [], + "child_paths": [], + "label": "Classical Music", + "level": 3, + "node_id": "346", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Classical Music" + ], + "path_label": "Entertainment > Music > Classical Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "College Radio", + "child_ids": [], + "child_paths": [], + "label": "College Radio", + "level": 3, + "node_id": "347", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "College Radio" + ], + "path_label": "Entertainment > Music > College Radio", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Comedy (Music and Audio)", + "child_ids": [], + "child_paths": [], + "label": "Comedy (Music and Audio)", + "level": 3, + "node_id": "348", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Comedy (Music and Audio)" + ], + "path_label": "Entertainment > Music > Comedy (Music and Audio)", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Contemporary Hits/Pop/Top 40", + "child_ids": [], + "child_paths": [], + "label": "Contemporary Hits/Pop/Top 40", + "level": 3, + "node_id": "349", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Contemporary Hits/Pop/Top 40" + ], + "path_label": "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Country Music", + "child_ids": [], + "child_paths": [], + "label": "Country Music", + "level": 3, + "node_id": "350", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Country Music" + ], + "path_label": "Entertainment > Music > Country Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Dance and Electronic Music", + "child_ids": [], + "child_paths": [], + "label": "Dance and Electronic Music", + "level": 3, + "node_id": "351", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Dance and Electronic Music" + ], + "path_label": "Entertainment > Music > Dance and Electronic Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Gospel Music", + "child_ids": [], + "child_paths": [], + "label": "Gospel Music", + "level": 3, + "node_id": "354", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Gospel Music" + ], + "path_label": "Entertainment > Music > Gospel Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Hip Hop Music", + "child_ids": [], + "child_paths": [], + "label": "Hip Hop Music", + "level": 3, + "node_id": "355", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Hip Hop Music" + ], + "path_label": "Entertainment > Music > Hip Hop Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Inspirational/New Age Music", + "child_ids": [], + "child_paths": [], + "label": "Inspirational/New Age Music", + "level": 3, + "node_id": "356", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Inspirational/New Age Music" + ], + "path_label": "Entertainment > Music > Inspirational/New Age Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Jazz", + "child_ids": [], + "child_paths": [], + "label": "Jazz", + "level": 3, + "node_id": "357", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Jazz" + ], + "path_label": "Entertainment > Music > Jazz", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Oldies/Adult Standards", + "child_ids": [], + "child_paths": [], + "label": "Oldies/Adult Standards", + "level": 3, + "node_id": "358", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Oldies/Adult Standards" + ], + "path_label": "Entertainment > Music > Oldies/Adult Standards", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "R&B/Soul/Funk", + "child_ids": [], + "child_paths": [], + "label": "R&B/Soul/Funk", + "level": 3, + "node_id": "362", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "R&B/Soul/Funk" + ], + "path_label": "Entertainment > Music > R&B/Soul/Funk", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "359", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Reggae", + "child_ids": [], + "child_paths": [], + "label": "Reggae", + "level": 3, + "node_id": "359", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Reggae" + ], + "path_label": "Entertainment > Music > Reggae", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "361", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Religious (Music and Audio)", + "child_ids": [], + "child_paths": [], + "label": "Religious (Music and Audio)", + "level": 3, + "node_id": "361", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Religious (Music and Audio)" + ], + "path_label": "Entertainment > Music > Religious (Music and Audio)", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "363", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Rock Music", + "child_ids": [ + "364", + "365", + "366", + "367", + "368" + ], + "child_paths": [ + "Entertainment > Music > Rock Music > Album-oriented Rock", + "Entertainment > Music > Rock Music > Alternative Rock", + "Entertainment > Music > Rock Music > Classic Rock", + "Entertainment > Music > Rock Music > Hard Rock", + "Entertainment > Music > Rock Music > Soft Rock" + ], + "label": "Rock Music", + "level": 3, + "node_id": "363", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Rock Music" + ], + "path_label": "Entertainment > Music > Rock Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "353", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Album-oriented Rock", + "child_ids": [], + "child_paths": [], + "label": "Album-oriented Rock", + "level": 4, + "node_id": "364", + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Album-oriented Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Album-oriented Rock", + "sibling_ids": [ + "365", + "366", + "367", + "368" + ], + "sibling_paths": [ + "Entertainment > Music > Rock Music > Alternative Rock", + "Entertainment > Music > Rock Music > Classic Rock", + "Entertainment > Music > Rock Music > Hard Rock", + "Entertainment > Music > Rock Music > Soft Rock" + ] + }, + { + "canonical_surface_name": "Alternative Rock", + "child_ids": [], + "child_paths": [], + "label": "Alternative Rock", + "level": 4, + "node_id": "365", + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Alternative Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Alternative Rock", + "sibling_ids": [ + "364", + "366", + "367", + "368" + ], + "sibling_paths": [ + "Entertainment > Music > Rock Music > Album-oriented Rock", + "Entertainment > Music > Rock Music > Classic Rock", + "Entertainment > Music > Rock Music > Hard Rock", + "Entertainment > Music > Rock Music > Soft Rock" + ] + }, + { + "canonical_surface_name": "Classic Rock", + "child_ids": [], + "child_paths": [], + "label": "Classic Rock", + "level": 4, + "node_id": "366", + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Classic Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Classic Rock", + "sibling_ids": [ + "364", + "365", + "367", + "368" + ], + "sibling_paths": [ + "Entertainment > Music > Rock Music > Album-oriented Rock", + "Entertainment > Music > Rock Music > Alternative Rock", + "Entertainment > Music > Rock Music > Hard Rock", + "Entertainment > Music > Rock Music > Soft Rock" + ] + }, + { + "canonical_surface_name": "Hard Rock", + "child_ids": [], + "child_paths": [], + "label": "Hard Rock", + "level": 4, + "node_id": "367", + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Hard Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Hard Rock", + "sibling_ids": [ + "364", + "365", + "366", + "368" + ], + "sibling_paths": [ + "Entertainment > Music > Rock Music > Album-oriented Rock", + "Entertainment > Music > Rock Music > Alternative Rock", + "Entertainment > Music > Rock Music > Classic Rock", + "Entertainment > Music > Rock Music > Soft Rock" + ] + }, + { + "canonical_surface_name": "Soft Rock", + "child_ids": [], + "child_paths": [], + "label": "Soft Rock", + "level": 4, + "node_id": "368", + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Soft Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Soft Rock", + "sibling_ids": [ + "364", + "365", + "366", + "367" + ], + "sibling_paths": [ + "Entertainment > Music > Rock Music > Album-oriented Rock", + "Entertainment > Music > Rock Music > Alternative Rock", + "Entertainment > Music > Rock Music > Classic Rock", + "Entertainment > Music > Rock Music > Hard Rock" + ] + }, + { + "canonical_surface_name": "Songwriters/Folk", + "child_ids": [], + "child_paths": [], + "label": "Songwriters/Folk", + "level": 3, + "node_id": "353", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Songwriters/Folk" + ], + "path_label": "Entertainment > Music > Songwriters/Folk", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "369", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Soundtracks, TV and Showtunes", + "child_ids": [], + "child_paths": [], + "label": "Soundtracks, TV and Showtunes", + "level": 3, + "node_id": "369", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Soundtracks, TV and Showtunes" + ], + "path_label": "Entertainment > Music > Soundtracks, TV and Showtunes", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "377", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "World/International Music", + "child_ids": [], + "child_paths": [], + "label": "World/International Music", + "level": 3, + "node_id": "352", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "World/International Music" + ], + "path_label": "Entertainment > Music > World/International Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "378" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > Variety (Music and Audio)" + ] + }, + { + "canonical_surface_name": "Urban Contemporary Music", + "child_ids": [], + "child_paths": [], + "label": "Urban Contemporary Music", + "level": 3, + "node_id": "377", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Urban Contemporary Music" + ], + "path_label": "Entertainment > Music > Urban Contemporary Music", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "378", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Variety (Music and Audio)", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Variety (Music and Audio)", + "child_ids": [], + "child_paths": [], + "label": "Variety (Music and Audio)", + "level": 3, + "node_id": "378", + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Variety (Music and Audio)" + ], + "path_label": "Entertainment > Music > Variety (Music and Audio)", + "sibling_ids": [ + "342", + "339", + "343", + "360", + "344", + "345", + "346", + "347", + "348", + "349", + "350", + "351", + "354", + "355", + "356", + "357", + "358", + "362", + "359", + "361", + "363", + "353", + "369", + "377", + "352" + ], + "sibling_paths": [ + "Entertainment > Music > Adult Album Alternative", + "Entertainment > Music > Adult Contemporary Music", + "Entertainment > Music > Alternative Music", + "Entertainment > Music > Blues", + "Entertainment > Music > Children's Music", + "Entertainment > Music > Classic Hits", + "Entertainment > Music > Classical Music", + "Entertainment > Music > College Radio", + "Entertainment > Music > Comedy (Music and Audio)", + "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "Entertainment > Music > Country Music", + "Entertainment > Music > Dance and Electronic Music", + "Entertainment > Music > Gospel Music", + "Entertainment > Music > Hip Hop Music", + "Entertainment > Music > Inspirational/New Age Music", + "Entertainment > Music > Jazz", + "Entertainment > Music > Oldies/Adult Standards", + "Entertainment > Music > R&B/Soul/Funk", + "Entertainment > Music > Reggae", + "Entertainment > Music > Religious (Music and Audio)", + "Entertainment > Music > Rock Music", + "Entertainment > Music > Songwriters/Folk", + "Entertainment > Music > Soundtracks, TV and Showtunes", + "Entertainment > Music > Urban Contemporary Music", + "Entertainment > Music > World/International Music" + ] + }, + { + "canonical_surface_name": "Personal Celebrations & Life Events", + "child_ids": [ + "164", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "165" + ], + "child_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ], + "label": "Personal Celebrations & Life Events", + "level": 1, + "node_id": "163", + "parent_id": null, + "path": [ + "Personal Celebrations & Life Events" + ], + "path_label": "Personal Celebrations & Life Events", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Anniversary", + "child_ids": [], + "child_paths": [], + "label": "Anniversary", + "level": 2, + "node_id": "164", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Anniversary" + ], + "path_label": "Personal Celebrations & Life Events > Anniversary", + "sibling_ids": [ + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Baby Shower", + "child_ids": [], + "child_paths": [], + "label": "Baby Shower", + "level": 2, + "node_id": "166", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Baby Shower" + ], + "path_label": "Personal Celebrations & Life Events > Baby Shower", + "sibling_ids": [ + "164", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Bachelor Party", + "child_ids": [], + "child_paths": [], + "label": "Bachelor Party", + "level": 2, + "node_id": "167", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Bachelor Party" + ], + "path_label": "Personal Celebrations & Life Events > Bachelor Party", + "sibling_ids": [ + "164", + "166", + "168", + "169", + "170", + "171", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Bachelorette Party", + "child_ids": [], + "child_paths": [], + "label": "Bachelorette Party", + "level": 2, + "node_id": "168", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Bachelorette Party" + ], + "path_label": "Personal Celebrations & Life Events > Bachelorette Party", + "sibling_ids": [ + "164", + "166", + "167", + "169", + "170", + "171", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Birth", + "child_ids": [], + "child_paths": [], + "label": "Birth", + "level": 2, + "node_id": "169", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Birth" + ], + "path_label": "Personal Celebrations & Life Events > Birth", + "sibling_ids": [ + "164", + "166", + "167", + "168", + "170", + "171", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Birthday", + "child_ids": [], + "child_paths": [], + "label": "Birthday", + "level": 2, + "node_id": "170", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Birthday" + ], + "path_label": "Personal Celebrations & Life Events > Birthday", + "sibling_ids": [ + "164", + "166", + "167", + "168", + "169", + "171", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Funeral", + "child_ids": [], + "child_paths": [], + "label": "Funeral", + "level": 2, + "node_id": "171", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Funeral" + ], + "path_label": "Personal Celebrations & Life Events > Funeral", + "sibling_ids": [ + "164", + "166", + "167", + "168", + "169", + "170", + "172", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Graduation", + "child_ids": [], + "child_paths": [], + "label": "Graduation", + "level": 2, + "node_id": "172", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Graduation" + ], + "path_label": "Personal Celebrations & Life Events > Graduation", + "sibling_ids": [ + "164", + "166", + "167", + "168", + "169", + "170", + "171", + "173", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Prom", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Prom", + "child_ids": [], + "child_paths": [], + "label": "Prom", + "level": 2, + "node_id": "173", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Prom" + ], + "path_label": "Personal Celebrations & Life Events > Prom", + "sibling_ids": [ + "164", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "165" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Wedding" + ] + }, + { + "canonical_surface_name": "Wedding", + "child_ids": [], + "child_paths": [], + "label": "Wedding", + "level": 2, + "node_id": "165", + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Wedding" + ], + "path_label": "Personal Celebrations & Life Events > Wedding", + "sibling_ids": [ + "164", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173" + ], + "sibling_paths": [ + "Personal Celebrations & Life Events > Anniversary", + "Personal Celebrations & Life Events > Baby Shower", + "Personal Celebrations & Life Events > Bachelor Party", + "Personal Celebrations & Life Events > Bachelorette Party", + "Personal Celebrations & Life Events > Birth", + "Personal Celebrations & Life Events > Birthday", + "Personal Celebrations & Life Events > Funeral", + "Personal Celebrations & Life Events > Graduation", + "Personal Celebrations & Life Events > Prom" + ] + }, + { + "canonical_surface_name": "Personal Finance", + "child_ids": [ + "392", + "393", + "396", + "397", + "417", + "398", + "405", + "410", + "415", + "416" + ], + "child_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ], + "label": "Personal Finance", + "level": 1, + "node_id": "391", + "parent_id": null, + "path": [ + "Personal Finance" + ], + "path_label": "Personal Finance", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Consumer Banking", + "child_ids": [], + "child_paths": [], + "label": "Consumer Banking", + "level": 2, + "node_id": "392", + "parent_id": "391", + "path": [ + "Personal Finance", + "Consumer Banking" + ], + "path_label": "Personal Finance > Consumer Banking", + "sibling_ids": [ + "393", + "396", + "397", + "417", + "398", + "405", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Financial Assistance", + "child_ids": [ + "394", + "395" + ], + "child_paths": [ + "Personal Finance > Financial Assistance > Government Support and Welfare", + "Personal Finance > Financial Assistance > Student Financial Aid" + ], + "label": "Financial Assistance", + "level": 2, + "node_id": "393", + "parent_id": "391", + "path": [ + "Personal Finance", + "Financial Assistance" + ], + "path_label": "Personal Finance > Financial Assistance", + "sibling_ids": [ + "392", + "396", + "397", + "417", + "398", + "405", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Government Support and Welfare", + "child_ids": [], + "child_paths": [], + "label": "Government Support and Welfare", + "level": 3, + "node_id": "394", + "parent_id": "393", + "path": [ + "Personal Finance", + "Financial Assistance", + "Government Support and Welfare" + ], + "path_label": "Personal Finance > Financial Assistance > Government Support and Welfare", + "sibling_ids": [ + "395" + ], + "sibling_paths": [ + "Personal Finance > Financial Assistance > Student Financial Aid" + ] + }, + { + "canonical_surface_name": "Student Financial Aid", + "child_ids": [], + "child_paths": [], + "label": "Student Financial Aid", + "level": 3, + "node_id": "395", + "parent_id": "393", + "path": [ + "Personal Finance", + "Financial Assistance", + "Student Financial Aid" + ], + "path_label": "Personal Finance > Financial Assistance > Student Financial Aid", + "sibling_ids": [ + "394" + ], + "sibling_paths": [ + "Personal Finance > Financial Assistance > Government Support and Welfare" + ] + }, + { + "canonical_surface_name": "Financial Planning", + "child_ids": [], + "child_paths": [], + "label": "Financial Planning", + "level": 2, + "node_id": "396", + "parent_id": "391", + "path": [ + "Personal Finance", + "Financial Planning" + ], + "path_label": "Personal Finance > Financial Planning", + "sibling_ids": [ + "392", + "393", + "397", + "417", + "398", + "405", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Frugal Living", + "child_ids": [], + "child_paths": [], + "label": "Frugal Living", + "level": 2, + "node_id": "397", + "parent_id": "391", + "path": [ + "Personal Finance", + "Frugal Living" + ], + "path_label": "Personal Finance > Frugal Living", + "sibling_ids": [ + "392", + "393", + "396", + "417", + "398", + "405", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Home Utilities", + "child_ids": [ + "418", + "419", + "420", + "421" + ], + "child_paths": [ + "Personal Finance > Home Utilities > Gas and Electric", + "Personal Finance > Home Utilities > Internet Service Providers", + "Personal Finance > Home Utilities > Phone Services", + "Personal Finance > Home Utilities > Water Services" + ], + "label": "Home Utilities", + "level": 2, + "node_id": "417", + "parent_id": "391", + "path": [ + "Personal Finance", + "Home Utilities" + ], + "path_label": "Personal Finance > Home Utilities", + "sibling_ids": [ + "392", + "393", + "396", + "397", + "398", + "405", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Gas and Electric", + "child_ids": [], + "child_paths": [], + "label": "Gas and Electric", + "level": 3, + "node_id": "418", + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Gas and Electric" + ], + "path_label": "Personal Finance > Home Utilities > Gas and Electric", + "sibling_ids": [ + "419", + "420", + "421" + ], + "sibling_paths": [ + "Personal Finance > Home Utilities > Internet Service Providers", + "Personal Finance > Home Utilities > Phone Services", + "Personal Finance > Home Utilities > Water Services" + ] + }, + { + "canonical_surface_name": "Internet Service Providers", + "child_ids": [], + "child_paths": [], + "label": "Internet Service Providers", + "level": 3, + "node_id": "419", + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Internet Service Providers" + ], + "path_label": "Personal Finance > Home Utilities > Internet Service Providers", + "sibling_ids": [ + "418", + "420", + "421" + ], + "sibling_paths": [ + "Personal Finance > Home Utilities > Gas and Electric", + "Personal Finance > Home Utilities > Phone Services", + "Personal Finance > Home Utilities > Water Services" + ] + }, + { + "canonical_surface_name": "Phone Services", + "child_ids": [], + "child_paths": [], + "label": "Phone Services", + "level": 3, + "node_id": "420", + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Phone Services" + ], + "path_label": "Personal Finance > Home Utilities > Phone Services", + "sibling_ids": [ + "418", + "419", + "421" + ], + "sibling_paths": [ + "Personal Finance > Home Utilities > Gas and Electric", + "Personal Finance > Home Utilities > Internet Service Providers", + "Personal Finance > Home Utilities > Water Services" + ] + }, + { + "canonical_surface_name": "Water Services", + "child_ids": [], + "child_paths": [], + "label": "Water Services", + "level": 3, + "node_id": "421", + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Water Services" + ], + "path_label": "Personal Finance > Home Utilities > Water Services", + "sibling_ids": [ + "418", + "419", + "420" + ], + "sibling_paths": [ + "Personal Finance > Home Utilities > Gas and Electric", + "Personal Finance > Home Utilities > Internet Service Providers", + "Personal Finance > Home Utilities > Phone Services" + ] + }, + { + "canonical_surface_name": "Insurance", + "child_ids": [ + "399", + "400", + "401", + "402", + "403", + "404" + ], + "child_paths": [ + "Personal Finance > Insurance > Health Insurance", + "Personal Finance > Insurance > Home Insurance", + "Personal Finance > Insurance > Life Insurance", + "Personal Finance > Insurance > Motor Insurance", + "Personal Finance > Insurance > Pet Insurance", + "Personal Finance > Insurance > Travel Insurance" + ], + "label": "Insurance", + "level": 2, + "node_id": "398", + "parent_id": "391", + "path": [ + "Personal Finance", + "Insurance" + ], + "path_label": "Personal Finance > Insurance", + "sibling_ids": [ + "392", + "393", + "396", + "397", + "417", + "405", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Health Insurance", + "child_ids": [], + "child_paths": [], + "label": "Health Insurance", + "level": 3, + "node_id": "399", + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Health Insurance" + ], + "path_label": "Personal Finance > Insurance > Health Insurance", + "sibling_ids": [ + "400", + "401", + "402", + "403", + "404" + ], + "sibling_paths": [ + "Personal Finance > Insurance > Home Insurance", + "Personal Finance > Insurance > Life Insurance", + "Personal Finance > Insurance > Motor Insurance", + "Personal Finance > Insurance > Pet Insurance", + "Personal Finance > Insurance > Travel Insurance" + ] + }, + { + "canonical_surface_name": "Home Insurance", + "child_ids": [], + "child_paths": [], + "label": "Home Insurance", + "level": 3, + "node_id": "400", + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Home Insurance" + ], + "path_label": "Personal Finance > Insurance > Home Insurance", + "sibling_ids": [ + "399", + "401", + "402", + "403", + "404" + ], + "sibling_paths": [ + "Personal Finance > Insurance > Health Insurance", + "Personal Finance > Insurance > Life Insurance", + "Personal Finance > Insurance > Motor Insurance", + "Personal Finance > Insurance > Pet Insurance", + "Personal Finance > Insurance > Travel Insurance" + ] + }, + { + "canonical_surface_name": "Life Insurance", + "child_ids": [], + "child_paths": [], + "label": "Life Insurance", + "level": 3, + "node_id": "401", + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Life Insurance" + ], + "path_label": "Personal Finance > Insurance > Life Insurance", + "sibling_ids": [ + "399", + "400", + "402", + "403", + "404" + ], + "sibling_paths": [ + "Personal Finance > Insurance > Health Insurance", + "Personal Finance > Insurance > Home Insurance", + "Personal Finance > Insurance > Motor Insurance", + "Personal Finance > Insurance > Pet Insurance", + "Personal Finance > Insurance > Travel Insurance" + ] + }, + { + "canonical_surface_name": "Motor Insurance", + "child_ids": [], + "child_paths": [], + "label": "Motor Insurance", + "level": 3, + "node_id": "402", + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Motor Insurance" + ], + "path_label": "Personal Finance > Insurance > Motor Insurance", + "sibling_ids": [ + "399", + "400", + "401", + "403", + "404" + ], + "sibling_paths": [ + "Personal Finance > Insurance > Health Insurance", + "Personal Finance > Insurance > Home Insurance", + "Personal Finance > Insurance > Life Insurance", + "Personal Finance > Insurance > Pet Insurance", + "Personal Finance > Insurance > Travel Insurance" + ] + }, + { + "canonical_surface_name": "Pet Insurance", + "child_ids": [], + "child_paths": [], + "label": "Pet Insurance", + "level": 3, + "node_id": "403", + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Pet Insurance" + ], + "path_label": "Personal Finance > Insurance > Pet Insurance", + "sibling_ids": [ + "399", + "400", + "401", + "402", + "404" + ], + "sibling_paths": [ + "Personal Finance > Insurance > Health Insurance", + "Personal Finance > Insurance > Home Insurance", + "Personal Finance > Insurance > Life Insurance", + "Personal Finance > Insurance > Motor Insurance", + "Personal Finance > Insurance > Travel Insurance" + ] + }, + { + "canonical_surface_name": "Travel Insurance", + "child_ids": [], + "child_paths": [], + "label": "Travel Insurance", + "level": 3, + "node_id": "404", + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Travel Insurance" + ], + "path_label": "Personal Finance > Insurance > Travel Insurance", + "sibling_ids": [ + "399", + "400", + "401", + "402", + "403" + ], + "sibling_paths": [ + "Personal Finance > Insurance > Health Insurance", + "Personal Finance > Insurance > Home Insurance", + "Personal Finance > Insurance > Life Insurance", + "Personal Finance > Insurance > Motor Insurance", + "Personal Finance > Insurance > Pet Insurance" + ] + }, + { + "canonical_surface_name": "Personal Debt", + "child_ids": [ + "406", + "407", + "408", + "409" + ], + "child_paths": [ + "Personal Finance > Personal Debt > Credit Cards", + "Personal Finance > Personal Debt > Home Financing", + "Personal Finance > Personal Debt > Personal Loans", + "Personal Finance > Personal Debt > Student Loans" + ], + "label": "Personal Debt", + "level": 2, + "node_id": "405", + "parent_id": "391", + "path": [ + "Personal Finance", + "Personal Debt" + ], + "path_label": "Personal Finance > Personal Debt", + "sibling_ids": [ + "392", + "393", + "396", + "397", + "417", + "398", + "410", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Credit Cards", + "child_ids": [], + "child_paths": [], + "label": "Credit Cards", + "level": 3, + "node_id": "406", + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Credit Cards" + ], + "path_label": "Personal Finance > Personal Debt > Credit Cards", + "sibling_ids": [ + "407", + "408", + "409" + ], + "sibling_paths": [ + "Personal Finance > Personal Debt > Home Financing", + "Personal Finance > Personal Debt > Personal Loans", + "Personal Finance > Personal Debt > Student Loans" + ] + }, + { + "canonical_surface_name": "Home Financing", + "child_ids": [], + "child_paths": [], + "label": "Home Financing", + "level": 3, + "node_id": "407", + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Home Financing" + ], + "path_label": "Personal Finance > Personal Debt > Home Financing", + "sibling_ids": [ + "406", + "408", + "409" + ], + "sibling_paths": [ + "Personal Finance > Personal Debt > Credit Cards", + "Personal Finance > Personal Debt > Personal Loans", + "Personal Finance > Personal Debt > Student Loans" + ] + }, + { + "canonical_surface_name": "Personal Loans", + "child_ids": [], + "child_paths": [], + "label": "Personal Loans", + "level": 3, + "node_id": "408", + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Personal Loans" + ], + "path_label": "Personal Finance > Personal Debt > Personal Loans", + "sibling_ids": [ + "406", + "407", + "409" + ], + "sibling_paths": [ + "Personal Finance > Personal Debt > Credit Cards", + "Personal Finance > Personal Debt > Home Financing", + "Personal Finance > Personal Debt > Student Loans" + ] + }, + { + "canonical_surface_name": "Student Loans", + "child_ids": [], + "child_paths": [], + "label": "Student Loans", + "level": 3, + "node_id": "409", + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Student Loans" + ], + "path_label": "Personal Finance > Personal Debt > Student Loans", + "sibling_ids": [ + "406", + "407", + "408" + ], + "sibling_paths": [ + "Personal Finance > Personal Debt > Credit Cards", + "Personal Finance > Personal Debt > Home Financing", + "Personal Finance > Personal Debt > Personal Loans" + ] + }, + { + "canonical_surface_name": "Personal Investing", + "child_ids": [ + "411", + "412", + "413", + "414" + ], + "child_paths": [ + "Personal Finance > Personal Investing > Hedge Funds", + "Personal Finance > Personal Investing > Mutual Funds", + "Personal Finance > Personal Investing > Options", + "Personal Finance > Personal Investing > Stocks and Bonds" + ], + "label": "Personal Investing", + "level": 2, + "node_id": "410", + "parent_id": "391", + "path": [ + "Personal Finance", + "Personal Investing" + ], + "path_label": "Personal Finance > Personal Investing", + "sibling_ids": [ + "392", + "393", + "396", + "397", + "417", + "398", + "405", + "415", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Taxes", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Hedge Funds", + "child_ids": [], + "child_paths": [], + "label": "Hedge Funds", + "level": 3, + "node_id": "411", + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Hedge Funds" + ], + "path_label": "Personal Finance > Personal Investing > Hedge Funds", + "sibling_ids": [ + "412", + "413", + "414" + ], + "sibling_paths": [ + "Personal Finance > Personal Investing > Mutual Funds", + "Personal Finance > Personal Investing > Options", + "Personal Finance > Personal Investing > Stocks and Bonds" + ] + }, + { + "canonical_surface_name": "Mutual Funds", + "child_ids": [], + "child_paths": [], + "label": "Mutual Funds", + "level": 3, + "node_id": "412", + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Mutual Funds" + ], + "path_label": "Personal Finance > Personal Investing > Mutual Funds", + "sibling_ids": [ + "411", + "413", + "414" + ], + "sibling_paths": [ + "Personal Finance > Personal Investing > Hedge Funds", + "Personal Finance > Personal Investing > Options", + "Personal Finance > Personal Investing > Stocks and Bonds" + ] + }, + { + "canonical_surface_name": "Options", + "child_ids": [], + "child_paths": [], + "label": "Options", + "level": 3, + "node_id": "413", + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Options" + ], + "path_label": "Personal Finance > Personal Investing > Options", + "sibling_ids": [ + "411", + "412", + "414" + ], + "sibling_paths": [ + "Personal Finance > Personal Investing > Hedge Funds", + "Personal Finance > Personal Investing > Mutual Funds", + "Personal Finance > Personal Investing > Stocks and Bonds" + ] + }, + { + "canonical_surface_name": "Stocks and Bonds", + "child_ids": [], + "child_paths": [], + "label": "Stocks and Bonds", + "level": 3, + "node_id": "414", + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Stocks and Bonds" + ], + "path_label": "Personal Finance > Personal Investing > Stocks and Bonds", + "sibling_ids": [ + "411", + "412", + "413" + ], + "sibling_paths": [ + "Personal Finance > Personal Investing > Hedge Funds", + "Personal Finance > Personal Investing > Mutual Funds", + "Personal Finance > Personal Investing > Options" + ] + }, + { + "canonical_surface_name": "Personal Taxes", + "child_ids": [], + "child_paths": [], + "label": "Personal Taxes", + "level": 2, + "node_id": "415", + "parent_id": "391", + "path": [ + "Personal Finance", + "Personal Taxes" + ], + "path_label": "Personal Finance > Personal Taxes", + "sibling_ids": [ + "392", + "393", + "396", + "397", + "417", + "398", + "405", + "410", + "416" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Retirement Planning" + ] + }, + { + "canonical_surface_name": "Retirement Planning", + "child_ids": [], + "child_paths": [], + "label": "Retirement Planning", + "level": 2, + "node_id": "416", + "parent_id": "391", + "path": [ + "Personal Finance", + "Retirement Planning" + ], + "path_label": "Personal Finance > Retirement Planning", + "sibling_ids": [ + "392", + "393", + "396", + "397", + "417", + "398", + "405", + "410", + "415" + ], + "sibling_paths": [ + "Personal Finance > Consumer Banking", + "Personal Finance > Financial Assistance", + "Personal Finance > Financial Planning", + "Personal Finance > Frugal Living", + "Personal Finance > Home Utilities", + "Personal Finance > Insurance", + "Personal Finance > Personal Debt", + "Personal Finance > Personal Investing", + "Personal Finance > Personal Taxes" + ] + }, + { + "canonical_surface_name": "Pets", + "child_ids": [ + "423", + "424", + "425", + "426", + "427", + "428", + "431", + "429", + "430" + ], + "child_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ], + "label": "Pets", + "level": 1, + "node_id": "422", + "parent_id": null, + "path": [ + "Pets" + ], + "path_label": "Pets", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Birds", + "child_ids": [], + "child_paths": [], + "label": "Birds", + "level": 2, + "node_id": "423", + "parent_id": "422", + "path": [ + "Pets", + "Birds" + ], + "path_label": "Pets > Birds", + "sibling_ids": [ + "424", + "425", + "426", + "427", + "428", + "431", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Cats", + "child_ids": [], + "child_paths": [], + "label": "Cats", + "level": 2, + "node_id": "424", + "parent_id": "422", + "path": [ + "Pets", + "Cats" + ], + "path_label": "Pets > Cats", + "sibling_ids": [ + "423", + "425", + "426", + "427", + "428", + "431", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Dogs", + "child_ids": [], + "child_paths": [], + "label": "Dogs", + "level": 2, + "node_id": "425", + "parent_id": "422", + "path": [ + "Pets", + "Dogs" + ], + "path_label": "Pets > Dogs", + "sibling_ids": [ + "423", + "424", + "426", + "427", + "428", + "431", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Fish and Aquariums", + "child_ids": [], + "child_paths": [], + "label": "Fish and Aquariums", + "level": 2, + "node_id": "426", + "parent_id": "422", + "path": [ + "Pets", + "Fish and Aquariums" + ], + "path_label": "Pets > Fish and Aquariums", + "sibling_ids": [ + "423", + "424", + "425", + "427", + "428", + "431", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Large Animals", + "child_ids": [], + "child_paths": [], + "label": "Large Animals", + "level": 2, + "node_id": "427", + "parent_id": "422", + "path": [ + "Pets", + "Large Animals" + ], + "path_label": "Pets > Large Animals", + "sibling_ids": [ + "423", + "424", + "425", + "426", + "428", + "431", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Pet Adoptions", + "child_ids": [], + "child_paths": [], + "label": "Pet Adoptions", + "level": 2, + "node_id": "428", + "parent_id": "422", + "path": [ + "Pets", + "Pet Adoptions" + ], + "path_label": "Pets > Pet Adoptions", + "sibling_ids": [ + "423", + "424", + "425", + "426", + "427", + "431", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Supplies", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Pet Supplies", + "child_ids": [], + "child_paths": [], + "label": "Pet Supplies", + "level": 2, + "node_id": "431", + "parent_id": "422", + "path": [ + "Pets", + "Pet Supplies" + ], + "path_label": "Pets > Pet Supplies", + "sibling_ids": [ + "423", + "424", + "425", + "426", + "427", + "428", + "429", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Reptiles", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Reptiles", + "child_ids": [], + "child_paths": [], + "label": "Reptiles", + "level": 2, + "node_id": "429", + "parent_id": "422", + "path": [ + "Pets", + "Reptiles" + ], + "path_label": "Pets > Reptiles", + "sibling_ids": [ + "423", + "424", + "425", + "426", + "427", + "428", + "431", + "430" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Veterinary Medicine" + ] + }, + { + "canonical_surface_name": "Veterinary Medicine", + "child_ids": [], + "child_paths": [], + "label": "Veterinary Medicine", + "level": 2, + "node_id": "430", + "parent_id": "422", + "path": [ + "Pets", + "Veterinary Medicine" + ], + "path_label": "Pets > Veterinary Medicine", + "sibling_ids": [ + "423", + "424", + "425", + "426", + "427", + "428", + "431", + "429" + ], + "sibling_paths": [ + "Pets > Birds", + "Pets > Cats", + "Pets > Dogs", + "Pets > Fish and Aquariums", + "Pets > Large Animals", + "Pets > Pet Adoptions", + "Pets > Pet Supplies", + "Pets > Reptiles" + ] + }, + { + "canonical_surface_name": "Politics", + "child_ids": [ + "8YPBBL", + "387", + "388" + ], + "child_paths": [ + "Politics > Civic affairs", + "Politics > Elections", + "Politics > Political Issues & policy" + ], + "label": "Politics", + "level": 1, + "node_id": "386", + "parent_id": null, + "path": [ + "Politics" + ], + "path_label": "Politics", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Civic affairs", + "child_ids": [], + "child_paths": [], + "label": "Civic affairs", + "level": 2, + "node_id": "8YPBBL", + "parent_id": "386", + "path": [ + "Politics", + "Civic affairs" + ], + "path_label": "Politics > Civic affairs", + "sibling_ids": [ + "387", + "388" + ], + "sibling_paths": [ + "Politics > Elections", + "Politics > Political Issues & policy" + ] + }, + { + "canonical_surface_name": "Elections", + "child_ids": [], + "child_paths": [], + "label": "Elections", + "level": 2, + "node_id": "387", + "parent_id": "386", + "path": [ + "Politics", + "Elections" + ], + "path_label": "Politics > Elections", + "sibling_ids": [ + "8YPBBL", + "388" + ], + "sibling_paths": [ + "Politics > Civic affairs", + "Politics > Political Issues & policy" + ] + }, + { + "canonical_surface_name": "Political Issues & Policy", + "child_ids": [], + "child_paths": [], + "label": "Political Issues & Policy", + "level": 2, + "node_id": "388", + "parent_id": "386", + "path": [ + "Politics", + "Political Issues & policy" + ], + "path_label": "Politics > Political Issues & policy", + "sibling_ids": [ + "8YPBBL", + "387" + ], + "sibling_paths": [ + "Politics > Civic affairs", + "Politics > Elections" + ] + }, + { + "canonical_surface_name": "Pop Culture", + "child_ids": [ + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440" + ], + "child_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ], + "label": "Pop Culture", + "level": 1, + "node_id": "432", + "parent_id": null, + "path": [ + "Pop Culture" + ], + "path_label": "Pop Culture", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Celebrity Deaths", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Deaths", + "level": 2, + "node_id": "433", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Deaths" + ], + "path_label": "Pop Culture > Celebrity Deaths", + "sibling_ids": [ + "434", + "435", + "436", + "437", + "438", + "439", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Celebrity Families", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Families", + "level": 2, + "node_id": "434", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Families" + ], + "path_label": "Pop Culture > Celebrity Families", + "sibling_ids": [ + "433", + "435", + "436", + "437", + "438", + "439", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Celebrity Homes", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Homes", + "level": 2, + "node_id": "435", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Homes" + ], + "path_label": "Pop Culture > Celebrity Homes", + "sibling_ids": [ + "433", + "434", + "436", + "437", + "438", + "439", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Celebrity Pregnancy", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Pregnancy", + "level": 2, + "node_id": "436", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Pregnancy" + ], + "path_label": "Pop Culture > Celebrity Pregnancy", + "sibling_ids": [ + "433", + "434", + "435", + "437", + "438", + "439", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Celebrity Relationships", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Relationships", + "level": 2, + "node_id": "437", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Relationships" + ], + "path_label": "Pop Culture > Celebrity Relationships", + "sibling_ids": [ + "433", + "434", + "435", + "436", + "438", + "439", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Celebrity Scandal", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Scandal", + "level": 2, + "node_id": "438", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Scandal" + ], + "path_label": "Pop Culture > Celebrity Scandal", + "sibling_ids": [ + "433", + "434", + "435", + "436", + "437", + "439", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Style", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Celebrity Style", + "child_ids": [], + "child_paths": [], + "label": "Celebrity Style", + "level": 2, + "node_id": "439", + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Style" + ], + "path_label": "Pop Culture > Celebrity Style", + "sibling_ids": [ + "433", + "434", + "435", + "436", + "437", + "438", + "440" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Humor and Satire" + ] + }, + { + "canonical_surface_name": "Humor and Satire", + "child_ids": [], + "child_paths": [], + "label": "Humor and Satire", + "level": 2, + "node_id": "440", + "parent_id": "432", + "path": [ + "Pop Culture", + "Humor and Satire" + ], + "path_label": "Pop Culture > Humor and Satire", + "sibling_ids": [ + "433", + "434", + "435", + "436", + "437", + "438", + "439" + ], + "sibling_paths": [ + "Pop Culture > Celebrity Deaths", + "Pop Culture > Celebrity Families", + "Pop Culture > Celebrity Homes", + "Pop Culture > Celebrity Pregnancy", + "Pop Culture > Celebrity Relationships", + "Pop Culture > Celebrity Scandal", + "Pop Culture > Celebrity Style" + ] + }, + { + "canonical_surface_name": "Productivity", + "child_ids": [], + "child_paths": [], + "label": "Productivity", + "level": 4, + "node_id": "W3CW2J", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Productivity" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Real Estate", + "child_ids": [ + "442", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "443", + "444" + ], + "child_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ], + "label": "Real Estate", + "level": 1, + "node_id": "441", + "parent_id": null, + "path": [ + "Real Estate" + ], + "path_label": "Real Estate", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Apartments", + "child_ids": [], + "child_paths": [], + "label": "Apartments", + "level": 2, + "node_id": "442", + "parent_id": "441", + "path": [ + "Real Estate", + "Apartments" + ], + "path_label": "Real Estate > Apartments", + "sibling_ids": [ + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Developmental Sites", + "child_ids": [], + "child_paths": [], + "label": "Developmental Sites", + "level": 2, + "node_id": "445", + "parent_id": "441", + "path": [ + "Real Estate", + "Developmental Sites" + ], + "path_label": "Real Estate > Developmental Sites", + "sibling_ids": [ + "442", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Hotel Properties", + "child_ids": [], + "child_paths": [], + "label": "Hotel Properties", + "level": 2, + "node_id": "446", + "parent_id": "441", + "path": [ + "Real Estate", + "Hotel Properties" + ], + "path_label": "Real Estate > Hotel Properties", + "sibling_ids": [ + "442", + "445", + "447", + "448", + "449", + "450", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Houses", + "child_ids": [], + "child_paths": [], + "label": "Houses", + "level": 2, + "node_id": "447", + "parent_id": "441", + "path": [ + "Real Estate", + "Houses" + ], + "path_label": "Real Estate > Houses", + "sibling_ids": [ + "442", + "445", + "446", + "448", + "449", + "450", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Industrial Property", + "child_ids": [], + "child_paths": [], + "label": "Industrial Property", + "level": 2, + "node_id": "448", + "parent_id": "441", + "path": [ + "Real Estate", + "Industrial Property" + ], + "path_label": "Real Estate > Industrial Property", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "449", + "450", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Land and Farms", + "child_ids": [], + "child_paths": [], + "label": "Land and Farms", + "level": 2, + "node_id": "449", + "parent_id": "441", + "path": [ + "Real Estate", + "Land and Farms" + ], + "path_label": "Real Estate > Land and Farms", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "448", + "450", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Office Property", + "child_ids": [], + "child_paths": [], + "label": "Office Property", + "level": 2, + "node_id": "450", + "parent_id": "441", + "path": [ + "Real Estate", + "Office Property" + ], + "path_label": "Real Estate > Office Property", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "448", + "449", + "451", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Real Estate Buying and Selling", + "child_ids": [], + "child_paths": [], + "label": "Real Estate Buying and Selling", + "level": 2, + "node_id": "451", + "parent_id": "441", + "path": [ + "Real Estate", + "Real Estate Buying and Selling" + ], + "path_label": "Real Estate > Real Estate Buying and Selling", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "448", + "449", + "450", + "452", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Real Estate Renting and Leasing", + "child_ids": [], + "child_paths": [], + "label": "Real Estate Renting and Leasing", + "level": 2, + "node_id": "452", + "parent_id": "441", + "path": [ + "Real Estate", + "Real Estate Renting and Leasing" + ], + "path_label": "Real Estate > Real Estate Renting and Leasing", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "443", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Retail Property", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Retail Property", + "child_ids": [], + "child_paths": [], + "label": "Retail Property", + "level": 2, + "node_id": "443", + "parent_id": "441", + "path": [ + "Real Estate", + "Retail Property" + ], + "path_label": "Real Estate > Retail Property", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "444" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Vacation Properties" + ] + }, + { + "canonical_surface_name": "Vacation Properties", + "child_ids": [], + "child_paths": [], + "label": "Vacation Properties", + "level": 2, + "node_id": "444", + "parent_id": "441", + "path": [ + "Real Estate", + "Vacation Properties" + ], + "path_label": "Real Estate > Vacation Properties", + "sibling_ids": [ + "442", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "443" + ], + "sibling_paths": [ + "Real Estate > Apartments", + "Real Estate > Developmental Sites", + "Real Estate > Hotel Properties", + "Real Estate > Houses", + "Real Estate > Industrial Property", + "Real Estate > Land and Farms", + "Real Estate > Office Property", + "Real Estate > Real Estate Buying and Selling", + "Real Estate > Real Estate Renting and Leasing", + "Real Estate > Retail Property" + ] + }, + { + "canonical_surface_name": "Religion & Spirituality", + "child_ids": [ + "454", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "455" + ], + "child_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ], + "label": "Religion & Spirituality", + "level": 1, + "node_id": "453", + "parent_id": null, + "path": [ + "Religion & Spirituality" + ], + "path_label": "Religion & Spirituality", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Agnosticism", + "child_ids": [], + "child_paths": [], + "label": "Agnosticism", + "level": 2, + "node_id": "454", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Agnosticism" + ], + "path_label": "Religion & Spirituality > Agnosticism", + "sibling_ids": [ + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Astrology", + "child_ids": [], + "child_paths": [], + "label": "Astrology", + "level": 2, + "node_id": "456", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Astrology" + ], + "path_label": "Religion & Spirituality > Astrology", + "sibling_ids": [ + "454", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Atheism", + "child_ids": [], + "child_paths": [], + "label": "Atheism", + "level": 2, + "node_id": "457", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Atheism" + ], + "path_label": "Religion & Spirituality > Atheism", + "sibling_ids": [ + "454", + "456", + "458", + "459", + "460", + "461", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Buddhism", + "child_ids": [], + "child_paths": [], + "label": "Buddhism", + "level": 2, + "node_id": "458", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Buddhism" + ], + "path_label": "Religion & Spirituality > Buddhism", + "sibling_ids": [ + "454", + "456", + "457", + "459", + "460", + "461", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Christianity", + "child_ids": [], + "child_paths": [], + "label": "Christianity", + "level": 2, + "node_id": "459", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Christianity" + ], + "path_label": "Religion & Spirituality > Christianity", + "sibling_ids": [ + "454", + "456", + "457", + "458", + "460", + "461", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Hinduism", + "child_ids": [], + "child_paths": [], + "label": "Hinduism", + "level": 2, + "node_id": "460", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Hinduism" + ], + "path_label": "Religion & Spirituality > Hinduism", + "sibling_ids": [ + "454", + "456", + "457", + "458", + "459", + "461", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Islam", + "child_ids": [], + "child_paths": [], + "label": "Islam", + "level": 2, + "node_id": "461", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Islam" + ], + "path_label": "Religion & Spirituality > Islam", + "sibling_ids": [ + "454", + "456", + "457", + "458", + "459", + "460", + "462", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Judaism", + "child_ids": [], + "child_paths": [], + "label": "Judaism", + "level": 2, + "node_id": "462", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Judaism" + ], + "path_label": "Religion & Spirituality > Judaism", + "sibling_ids": [ + "454", + "456", + "457", + "458", + "459", + "460", + "461", + "463", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Sikhism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Sikhism", + "child_ids": [], + "child_paths": [], + "label": "Sikhism", + "level": 2, + "node_id": "463", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Sikhism" + ], + "path_label": "Religion & Spirituality > Sikhism", + "sibling_ids": [ + "454", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "455" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Spirituality" + ] + }, + { + "canonical_surface_name": "Spirituality", + "child_ids": [], + "child_paths": [], + "label": "Spirituality", + "level": 2, + "node_id": "455", + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Spirituality" + ], + "path_label": "Religion & Spirituality > Spirituality", + "sibling_ids": [ + "454", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463" + ], + "sibling_paths": [ + "Religion & Spirituality > Agnosticism", + "Religion & Spirituality > Astrology", + "Religion & Spirituality > Atheism", + "Religion & Spirituality > Buddhism", + "Religion & Spirituality > Christianity", + "Religion & Spirituality > Hinduism", + "Religion & Spirituality > Islam", + "Religion & Spirituality > Judaism", + "Religion & Spirituality > Sikhism" + ] + }, + { + "canonical_surface_name": "Science", + "child_ids": [ + "465", + "466", + "467", + "468", + "469", + "470", + "471", + "472", + "390" + ], + "child_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ], + "label": "Science", + "level": 1, + "node_id": "464", + "parent_id": null, + "path": [ + "Science" + ], + "path_label": "Science", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Biological Sciences", + "child_ids": [], + "child_paths": [], + "label": "Biological Sciences", + "level": 2, + "node_id": "465", + "parent_id": "464", + "path": [ + "Science", + "Biological Sciences" + ], + "path_label": "Science > Biological Sciences", + "sibling_ids": [ + "466", + "467", + "468", + "469", + "470", + "471", + "472", + "390" + ], + "sibling_paths": [ + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Chemistry", + "child_ids": [], + "child_paths": [], + "label": "Chemistry", + "level": 2, + "node_id": "466", + "parent_id": "464", + "path": [ + "Science", + "Chemistry" + ], + "path_label": "Science > Chemistry", + "sibling_ids": [ + "465", + "467", + "468", + "469", + "470", + "471", + "472", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Environment", + "child_ids": [], + "child_paths": [], + "label": "Environment", + "level": 2, + "node_id": "467", + "parent_id": "464", + "path": [ + "Science", + "Environment" + ], + "path_label": "Science > Environment", + "sibling_ids": [ + "465", + "466", + "468", + "469", + "470", + "471", + "472", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Genetics", + "child_ids": [], + "child_paths": [], + "label": "Genetics", + "level": 2, + "node_id": "468", + "parent_id": "464", + "path": [ + "Science", + "Genetics" + ], + "path_label": "Science > Genetics", + "sibling_ids": [ + "465", + "466", + "467", + "469", + "470", + "471", + "472", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Geography", + "child_ids": [], + "child_paths": [], + "label": "Geography", + "level": 2, + "node_id": "469", + "parent_id": "464", + "path": [ + "Science", + "Geography" + ], + "path_label": "Science > Geography", + "sibling_ids": [ + "465", + "466", + "467", + "468", + "470", + "471", + "472", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Geology", + "child_ids": [], + "child_paths": [], + "label": "Geology", + "level": 2, + "node_id": "470", + "parent_id": "464", + "path": [ + "Science", + "Geology" + ], + "path_label": "Science > Geology", + "sibling_ids": [ + "465", + "466", + "467", + "468", + "469", + "471", + "472", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Physics", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Physics", + "child_ids": [], + "child_paths": [], + "label": "Physics", + "level": 2, + "node_id": "471", + "parent_id": "464", + "path": [ + "Science", + "Physics" + ], + "path_label": "Science > Physics", + "sibling_ids": [ + "465", + "466", + "467", + "468", + "469", + "470", + "472", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Space and Astronomy", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Space and Astronomy", + "child_ids": [], + "child_paths": [], + "label": "Space and Astronomy", + "level": 2, + "node_id": "472", + "parent_id": "464", + "path": [ + "Science", + "Space and Astronomy" + ], + "path_label": "Science > Space and Astronomy", + "sibling_ids": [ + "465", + "466", + "467", + "468", + "469", + "470", + "471", + "390" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Weather" + ] + }, + { + "canonical_surface_name": "Weather", + "child_ids": [], + "child_paths": [], + "label": "Weather", + "level": 2, + "node_id": "390", + "parent_id": "464", + "path": [ + "Science", + "Weather" + ], + "path_label": "Science > Weather", + "sibling_ids": [ + "465", + "466", + "467", + "468", + "469", + "470", + "471", + "472" + ], + "sibling_paths": [ + "Science > Biological Sciences", + "Science > Chemistry", + "Science > Environment", + "Science > Genetics", + "Science > Geography", + "Science > Geology", + "Science > Physics", + "Science > Space and Astronomy" + ] + }, + { + "canonical_surface_name": "Sensitive Topics", + "child_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "child_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ], + "label": "Sensitive Topics", + "level": 1, + "node_id": "v9i3On", + "parent_id": null, + "path": [ + "Sensitive Topics" + ], + "path_label": "Sensitive Topics", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "473", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Adult & Explicit Sexual Content", + "child_ids": [], + "child_paths": [], + "label": "Adult & Explicit Sexual Content", + "level": 2, + "node_id": "Rm3SiT", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Adult & Explicit Sexual Content" + ], + "path_label": "Sensitive Topics > Adult & Explicit Sexual Content", + "sibling_ids": [ + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Arms & Ammunition", + "child_ids": [], + "child_paths": [], + "label": "Arms & Ammunition", + "level": 2, + "node_id": "avbNf2", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Arms & Ammunition" + ], + "path_label": "Sensitive Topics > Arms & Ammunition", + "sibling_ids": [ + "Rm3SiT", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "child_ids": [], + "child_paths": [], + "label": "Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "level": 2, + "node_id": "XtODT3", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Crime & Harmful Acts to Individuals, Society & Human Right Violations" + ], + "path_label": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Death, Injury, or Military Conflict", + "child_ids": [], + "child_paths": [], + "label": "Death, Injury, or Military Conflict", + "level": 2, + "node_id": "I4GWl6", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Death, Injury, or Military Conflict" + ], + "path_label": "Sensitive Topics > Death, Injury, or Military Conflict", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Debated Sensitive Social Issues", + "child_ids": [], + "child_paths": [], + "label": "Debated Sensitive Social Issues", + "level": 2, + "node_id": "Z7rJBM", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Debated Sensitive Social Issues" + ], + "path_label": "Sensitive Topics > Debated Sensitive Social Issues", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Hate Speech and Acts of Aggression", + "child_ids": [], + "child_paths": [], + "label": "Hate Speech and Acts of Aggression", + "level": 2, + "node_id": "HxqYV1", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Hate Speech and Acts of Aggression" + ], + "path_label": "Sensitive Topics > Hate Speech and Acts of Aggression", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "child_ids": [], + "child_paths": [], + "label": "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "level": 2, + "node_id": "pg0WhF", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" + ], + "path_label": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "j9PaO9", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Obscenity and Profanity", + "child_ids": [], + "child_paths": [], + "label": "Obscenity and Profanity", + "level": 2, + "node_id": "j9PaO9", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Obscenity and Profanity" + ], + "path_label": "Sensitive Topics > Obscenity and Profanity", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "mm3UXx", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Online Piracy", + "child_ids": [], + "child_paths": [], + "label": "Online Piracy", + "level": 2, + "node_id": "mm3UXx", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Online Piracy" + ], + "path_label": "Sensitive Topics > Online Piracy", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "6i4dB6", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Spam or Harmful Content", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Spam or Harmful Content", + "child_ids": [], + "child_paths": [], + "label": "Spam or Harmful Content", + "level": 2, + "node_id": "6i4dB6", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Spam or Harmful Content" + ], + "path_label": "Sensitive Topics > Spam or Harmful Content", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "8FD8nI" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Terrorism" + ] + }, + { + "canonical_surface_name": "Terrorism", + "child_ids": [], + "child_paths": [], + "label": "Terrorism", + "level": 2, + "node_id": "8FD8nI", + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Terrorism" + ], + "path_label": "Sensitive Topics > Terrorism", + "sibling_ids": [ + "Rm3SiT", + "avbNf2", + "XtODT3", + "I4GWl6", + "Z7rJBM", + "HxqYV1", + "pg0WhF", + "j9PaO9", + "mm3UXx", + "6i4dB6" + ], + "sibling_paths": [ + "Sensitive Topics > Adult & Explicit Sexual Content", + "Sensitive Topics > Arms & Ammunition", + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "Sensitive Topics > Death, Injury, or Military Conflict", + "Sensitive Topics > Debated Sensitive Social Issues", + "Sensitive Topics > Hate Speech and Acts of Aggression", + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "Sensitive Topics > Obscenity and Profanity", + "Sensitive Topics > Online Piracy", + "Sensitive Topics > Spam or Harmful Content" + ] + }, + { + "canonical_surface_name": "Shopping", + "child_ids": [ + "482", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "161", + "481" + ], + "child_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ], + "label": "Shopping", + "level": 1, + "node_id": "473", + "parent_id": null, + "path": [ + "Shopping" + ], + "path_label": "Shopping", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "483", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Children's Games and Toys", + "child_ids": [], + "child_paths": [], + "label": "Children's Games and Toys", + "level": 2, + "node_id": "482", + "parent_id": "473", + "path": [ + "Shopping", + "Children's Games and Toys" + ], + "path_label": "Shopping > Children's Games and Toys", + "sibling_ids": [ + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Coupons and Discounts", + "child_ids": [], + "child_paths": [], + "label": "Coupons and Discounts", + "level": 2, + "node_id": "474", + "parent_id": "473", + "path": [ + "Shopping", + "Coupons and Discounts" + ], + "path_label": "Shopping > Coupons and Discounts", + "sibling_ids": [ + "482", + "475", + "476", + "477", + "478", + "479", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Flower Shopping", + "child_ids": [], + "child_paths": [], + "label": "Flower Shopping", + "level": 2, + "node_id": "475", + "parent_id": "473", + "path": [ + "Shopping", + "Flower Shopping" + ], + "path_label": "Shopping > Flower Shopping", + "sibling_ids": [ + "482", + "474", + "476", + "477", + "478", + "479", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Gifts and Greetings Cards", + "child_ids": [], + "child_paths": [], + "label": "Gifts and Greetings Cards", + "level": 2, + "node_id": "476", + "parent_id": "473", + "path": [ + "Shopping", + "Gifts and Greetings Cards" + ], + "path_label": "Shopping > Gifts and Greetings Cards", + "sibling_ids": [ + "482", + "474", + "475", + "477", + "478", + "479", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Grocery Shopping", + "child_ids": [], + "child_paths": [], + "label": "Grocery Shopping", + "level": 2, + "node_id": "477", + "parent_id": "473", + "path": [ + "Shopping", + "Grocery Shopping" + ], + "path_label": "Shopping > Grocery Shopping", + "sibling_ids": [ + "482", + "474", + "475", + "476", + "478", + "479", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Holiday Shopping", + "child_ids": [], + "child_paths": [], + "label": "Holiday Shopping", + "level": 2, + "node_id": "478", + "parent_id": "473", + "path": [ + "Shopping", + "Holiday Shopping" + ], + "path_label": "Shopping > Holiday Shopping", + "sibling_ids": [ + "482", + "474", + "475", + "476", + "477", + "479", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Household Supplies", + "child_ids": [], + "child_paths": [], + "label": "Household Supplies", + "level": 2, + "node_id": "479", + "parent_id": "473", + "path": [ + "Shopping", + "Household Supplies" + ], + "path_label": "Shopping > Household Supplies", + "sibling_ids": [ + "482", + "474", + "475", + "476", + "477", + "478", + "480", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Lotteries and Scratchcards", + "child_ids": [], + "child_paths": [], + "label": "Lotteries and Scratchcards", + "level": 2, + "node_id": "480", + "parent_id": "473", + "path": [ + "Shopping", + "Lotteries and Scratchcards" + ], + "path_label": "Shopping > Lotteries and Scratchcards", + "sibling_ids": [ + "482", + "474", + "475", + "476", + "477", + "478", + "479", + "161", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Party Supplies and Decorations", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Party Supplies and Decorations", + "child_ids": [], + "child_paths": [], + "label": "Party Supplies and Decorations", + "level": 2, + "node_id": "161", + "parent_id": "473", + "path": [ + "Shopping", + "Party Supplies and Decorations" + ], + "path_label": "Shopping > Party Supplies and Decorations", + "sibling_ids": [ + "482", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Sales and Promotions" + ] + }, + { + "canonical_surface_name": "Sales and Promotions", + "child_ids": [], + "child_paths": [], + "label": "Sales and Promotions", + "level": 2, + "node_id": "481", + "parent_id": "473", + "path": [ + "Shopping", + "Sales and Promotions" + ], + "path_label": "Shopping > Sales and Promotions", + "sibling_ids": [ + "482", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "161" + ], + "sibling_paths": [ + "Shopping > Children's Games and Toys", + "Shopping > Coupons and Discounts", + "Shopping > Flower Shopping", + "Shopping > Gifts and Greetings Cards", + "Shopping > Grocery Shopping", + "Shopping > Holiday Shopping", + "Shopping > Household Supplies", + "Shopping > Lotteries and Scratchcards", + "Shopping > Party Supplies and Decorations" + ] + }, + { + "canonical_surface_name": "Sports", + "child_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "child_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ], + "label": "Sports", + "level": 1, + "node_id": "483", + "parent_id": null, + "path": [ + "Sports" + ], + "path_label": "Sports", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "552", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "American Football", + "child_ids": [], + "child_paths": [], + "label": "American Football", + "level": 2, + "node_id": "484", + "parent_id": "483", + "path": [ + "Sports", + "American Football" + ], + "path_label": "Sports > American Football", + "sibling_ids": [ + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Australian Rules Football", + "child_ids": [], + "child_paths": [], + "label": "Australian Rules Football", + "level": 2, + "node_id": "507", + "parent_id": "483", + "path": [ + "Sports", + "Australian Rules Football" + ], + "path_label": "Sports > Australian Rules Football", + "sibling_ids": [ + "484", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Auto Racing", + "child_ids": [ + "519" + ], + "child_paths": [ + "Sports > Auto Racing > Motorcycle Sports" + ], + "label": "Auto Racing", + "level": 2, + "node_id": "518", + "parent_id": "483", + "path": [ + "Sports", + "Auto Racing" + ], + "path_label": "Sports > Auto Racing", + "sibling_ids": [ + "484", + "507", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Motorcycle Sports", + "child_ids": [], + "child_paths": [], + "label": "Motorcycle Sports", + "level": 3, + "node_id": "519", + "parent_id": "518", + "path": [ + "Sports", + "Auto Racing", + "Motorcycle Sports" + ], + "path_label": "Sports > Auto Racing > Motorcycle Sports", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Badminton", + "child_ids": [], + "child_paths": [], + "label": "Badminton", + "level": 2, + "node_id": "534", + "parent_id": "483", + "path": [ + "Sports", + "Badminton" + ], + "path_label": "Sports > Badminton", + "sibling_ids": [ + "484", + "507", + "518", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Baseball", + "child_ids": [], + "child_paths": [], + "label": "Baseball", + "level": 2, + "node_id": "545", + "parent_id": "483", + "path": [ + "Sports", + "Baseball" + ], + "path_label": "Sports > Baseball", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Basketball", + "child_ids": [], + "child_paths": [], + "label": "Basketball", + "level": 2, + "node_id": "547", + "parent_id": "483", + "path": [ + "Sports", + "Basketball" + ], + "path_label": "Sports > Basketball", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Beach Volleyball", + "child_ids": [], + "child_paths": [], + "label": "Beach Volleyball", + "level": 2, + "node_id": "548", + "parent_id": "483", + "path": [ + "Sports", + "Beach Volleyball" + ], + "path_label": "Sports > Beach Volleyball", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Bodybuilding", + "child_ids": [], + "child_paths": [], + "label": "Bodybuilding", + "level": 2, + "node_id": "549", + "parent_id": "483", + "path": [ + "Sports", + "Bodybuilding" + ], + "path_label": "Sports > Bodybuilding", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Bowling", + "child_ids": [], + "child_paths": [], + "label": "Bowling", + "level": 2, + "node_id": "550", + "parent_id": "483", + "path": [ + "Sports", + "Bowling" + ], + "path_label": "Sports > Bowling", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Boxing", + "child_ids": [], + "child_paths": [], + "label": "Boxing", + "level": 2, + "node_id": "485", + "parent_id": "483", + "path": [ + "Sports", + "Boxing" + ], + "path_label": "Sports > Boxing", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Cheerleading", + "child_ids": [], + "child_paths": [], + "label": "Cheerleading", + "level": 2, + "node_id": "486", + "parent_id": "483", + "path": [ + "Sports", + "Cheerleading" + ], + "path_label": "Sports > Cheerleading", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "College Sports", + "child_ids": [ + "490", + "489", + "488" + ], + "child_paths": [ + "Sports > College Sports > College Baseball", + "Sports > College Sports > College Basketball", + "Sports > College Sports > College Football" + ], + "label": "College Sports", + "level": 2, + "node_id": "487", + "parent_id": "483", + "path": [ + "Sports", + "College Sports" + ], + "path_label": "Sports > College Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "College Baseball", + "child_ids": [], + "child_paths": [], + "label": "College Baseball", + "level": 3, + "node_id": "490", + "parent_id": "487", + "path": [ + "Sports", + "College Sports", + "College Baseball" + ], + "path_label": "Sports > College Sports > College Baseball", + "sibling_ids": [ + "489", + "488" + ], + "sibling_paths": [ + "Sports > College Sports > College Basketball", + "Sports > College Sports > College Football" + ] + }, + { + "canonical_surface_name": "College Basketball", + "child_ids": [], + "child_paths": [], + "label": "College Basketball", + "level": 3, + "node_id": "489", + "parent_id": "487", + "path": [ + "Sports", + "College Sports", + "College Basketball" + ], + "path_label": "Sports > College Sports > College Basketball", + "sibling_ids": [ + "490", + "488" + ], + "sibling_paths": [ + "Sports > College Sports > College Baseball", + "Sports > College Sports > College Football" + ] + }, + { + "canonical_surface_name": "College Football", + "child_ids": [], + "child_paths": [], + "label": "College Football", + "level": 3, + "node_id": "488", + "parent_id": "487", + "path": [ + "Sports", + "College Sports", + "College Football" + ], + "path_label": "Sports > College Sports > College Football", + "sibling_ids": [ + "490", + "489" + ], + "sibling_paths": [ + "Sports > College Sports > College Baseball", + "Sports > College Sports > College Basketball" + ] + }, + { + "canonical_surface_name": "Cricket", + "child_ids": [], + "child_paths": [], + "label": "Cricket", + "level": 2, + "node_id": "491", + "parent_id": "483", + "path": [ + "Sports", + "Cricket" + ], + "path_label": "Sports > Cricket", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Cycling", + "child_ids": [], + "child_paths": [], + "label": "Cycling", + "level": 2, + "node_id": "492", + "parent_id": "483", + "path": [ + "Sports", + "Cycling" + ], + "path_label": "Sports > Cycling", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Darts", + "child_ids": [], + "child_paths": [], + "label": "Darts", + "level": 2, + "node_id": "493", + "parent_id": "483", + "path": [ + "Sports", + "Darts" + ], + "path_label": "Sports > Darts", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Disabled Sports", + "child_ids": [], + "child_paths": [], + "label": "Disabled Sports", + "level": 2, + "node_id": "494", + "parent_id": "483", + "path": [ + "Sports", + "Disabled Sports" + ], + "path_label": "Sports > Disabled Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Diving", + "child_ids": [], + "child_paths": [], + "label": "Diving", + "level": 2, + "node_id": "495", + "parent_id": "483", + "path": [ + "Sports", + "Diving" + ], + "path_label": "Sports > Diving", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Equine Sports", + "child_ids": [ + "497" + ], + "child_paths": [ + "Sports > Equine Sports > Horse Racing" + ], + "label": "Equine Sports", + "level": 2, + "node_id": "496", + "parent_id": "483", + "path": [ + "Sports", + "Equine Sports" + ], + "path_label": "Sports > Equine Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Horse Racing", + "child_ids": [], + "child_paths": [], + "label": "Horse Racing", + "level": 3, + "node_id": "497", + "parent_id": "496", + "path": [ + "Sports", + "Equine Sports", + "Horse Racing" + ], + "path_label": "Sports > Equine Sports > Horse Racing", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Extreme Sports", + "child_ids": [ + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506" + ], + "child_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ], + "label": "Extreme Sports", + "level": 2, + "node_id": "498", + "parent_id": "483", + "path": [ + "Sports", + "Extreme Sports" + ], + "path_label": "Sports > Extreme Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Canoeing and Kayaking", + "child_ids": [], + "child_paths": [], + "label": "Canoeing and Kayaking", + "level": 3, + "node_id": "499", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Canoeing and Kayaking" + ], + "path_label": "Sports > Extreme Sports > Canoeing and Kayaking", + "sibling_ids": [ + "500", + "501", + "502", + "503", + "504", + "505", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Climbing", + "child_ids": [], + "child_paths": [], + "label": "Climbing", + "level": 3, + "node_id": "500", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Climbing" + ], + "path_label": "Sports > Extreme Sports > Climbing", + "sibling_ids": [ + "499", + "501", + "502", + "503", + "504", + "505", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Paintball", + "child_ids": [], + "child_paths": [], + "label": "Paintball", + "level": 3, + "node_id": "501", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Paintball" + ], + "path_label": "Sports > Extreme Sports > Paintball", + "sibling_ids": [ + "499", + "500", + "502", + "503", + "504", + "505", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Scuba Diving", + "child_ids": [], + "child_paths": [], + "label": "Scuba Diving", + "level": 3, + "node_id": "502", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Scuba Diving" + ], + "path_label": "Sports > Extreme Sports > Scuba Diving", + "sibling_ids": [ + "499", + "500", + "501", + "503", + "504", + "505", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Skateboarding", + "child_ids": [], + "child_paths": [], + "label": "Skateboarding", + "level": 3, + "node_id": "503", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Skateboarding" + ], + "path_label": "Sports > Extreme Sports > Skateboarding", + "sibling_ids": [ + "499", + "500", + "501", + "502", + "504", + "505", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Snowboarding", + "child_ids": [], + "child_paths": [], + "label": "Snowboarding", + "level": 3, + "node_id": "504", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Snowboarding" + ], + "path_label": "Sports > Extreme Sports > Snowboarding", + "sibling_ids": [ + "499", + "500", + "501", + "502", + "503", + "505", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Surfing and Bodyboarding", + "child_ids": [], + "child_paths": [], + "label": "Surfing and Bodyboarding", + "level": 3, + "node_id": "505", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Surfing and Bodyboarding" + ], + "path_label": "Sports > Extreme Sports > Surfing and Bodyboarding", + "sibling_ids": [ + "499", + "500", + "501", + "502", + "503", + "504", + "506" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Waterskiing and Wakeboarding" + ] + }, + { + "canonical_surface_name": "Waterskiing and Wakeboarding", + "child_ids": [], + "child_paths": [], + "label": "Waterskiing and Wakeboarding", + "level": 3, + "node_id": "506", + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Waterskiing and Wakeboarding" + ], + "path_label": "Sports > Extreme Sports > Waterskiing and Wakeboarding", + "sibling_ids": [ + "499", + "500", + "501", + "502", + "503", + "504", + "505" + ], + "sibling_paths": [ + "Sports > Extreme Sports > Canoeing and Kayaking", + "Sports > Extreme Sports > Climbing", + "Sports > Extreme Sports > Paintball", + "Sports > Extreme Sports > Scuba Diving", + "Sports > Extreme Sports > Skateboarding", + "Sports > Extreme Sports > Snowboarding", + "Sports > Extreme Sports > Surfing and Bodyboarding" + ] + }, + { + "canonical_surface_name": "Fantasy Sports", + "child_ids": [], + "child_paths": [], + "label": "Fantasy Sports", + "level": 2, + "node_id": "508", + "parent_id": "483", + "path": [ + "Sports", + "Fantasy Sports" + ], + "path_label": "Sports > Fantasy Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Field Hockey", + "child_ids": [], + "child_paths": [], + "label": "Field Hockey", + "level": 2, + "node_id": "509", + "parent_id": "483", + "path": [ + "Sports", + "Field Hockey" + ], + "path_label": "Sports > Field Hockey", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Figure Skating", + "child_ids": [], + "child_paths": [], + "label": "Figure Skating", + "level": 2, + "node_id": "510", + "parent_id": "483", + "path": [ + "Sports", + "Figure Skating" + ], + "path_label": "Sports > Figure Skating", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Fishing Sports", + "child_ids": [], + "child_paths": [], + "label": "Fishing Sports", + "level": 2, + "node_id": "511", + "parent_id": "483", + "path": [ + "Sports", + "Fishing Sports" + ], + "path_label": "Sports > Fishing Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Golf", + "child_ids": [], + "child_paths": [], + "label": "Golf", + "level": 2, + "node_id": "512", + "parent_id": "483", + "path": [ + "Sports", + "Golf" + ], + "path_label": "Sports > Golf", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Gymnastics", + "child_ids": [], + "child_paths": [], + "label": "Gymnastics", + "level": 2, + "node_id": "513", + "parent_id": "483", + "path": [ + "Sports", + "Gymnastics" + ], + "path_label": "Sports > Gymnastics", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Hunting and Shooting", + "child_ids": [], + "child_paths": [], + "label": "Hunting and Shooting", + "level": 2, + "node_id": "514", + "parent_id": "483", + "path": [ + "Sports", + "Hunting and Shooting" + ], + "path_label": "Sports > Hunting and Shooting", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Ice Hockey", + "child_ids": [], + "child_paths": [], + "label": "Ice Hockey", + "level": 2, + "node_id": "515", + "parent_id": "483", + "path": [ + "Sports", + "Ice Hockey" + ], + "path_label": "Sports > Ice Hockey", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Inline Skating", + "child_ids": [], + "child_paths": [], + "label": "Inline Skating", + "level": 2, + "node_id": "516", + "parent_id": "483", + "path": [ + "Sports", + "Inline Skating" + ], + "path_label": "Sports > Inline Skating", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Lacrosse", + "child_ids": [], + "child_paths": [], + "label": "Lacrosse", + "level": 2, + "node_id": "517", + "parent_id": "483", + "path": [ + "Sports", + "Lacrosse" + ], + "path_label": "Sports > Lacrosse", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Martial Arts", + "child_ids": [], + "child_paths": [], + "label": "Martial Arts", + "level": 2, + "node_id": "520", + "parent_id": "483", + "path": [ + "Sports", + "Martial Arts" + ], + "path_label": "Sports > Martial Arts", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Olympic Sports", + "child_ids": [ + "522", + "523" + ], + "child_paths": [ + "Sports > Olympic Sports > Summer Olympic Sports", + "Sports > Olympic Sports > Winter Olympic Sports" + ], + "label": "Olympic Sports", + "level": 2, + "node_id": "521", + "parent_id": "483", + "path": [ + "Sports", + "Olympic Sports" + ], + "path_label": "Sports > Olympic Sports", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Summer Olympic Sports", + "child_ids": [], + "child_paths": [], + "label": "Summer Olympic Sports", + "level": 3, + "node_id": "522", + "parent_id": "521", + "path": [ + "Sports", + "Olympic Sports", + "Summer Olympic Sports" + ], + "path_label": "Sports > Olympic Sports > Summer Olympic Sports", + "sibling_ids": [ + "523" + ], + "sibling_paths": [ + "Sports > Olympic Sports > Winter Olympic Sports" + ] + }, + { + "canonical_surface_name": "Winter Olympic Sports", + "child_ids": [], + "child_paths": [], + "label": "Winter Olympic Sports", + "level": 3, + "node_id": "523", + "parent_id": "521", + "path": [ + "Sports", + "Olympic Sports", + "Winter Olympic Sports" + ], + "path_label": "Sports > Olympic Sports > Winter Olympic Sports", + "sibling_ids": [ + "522" + ], + "sibling_paths": [ + "Sports > Olympic Sports > Summer Olympic Sports" + ] + }, + { + "canonical_surface_name": "Poker and Professional Gambling", + "child_ids": [], + "child_paths": [], + "label": "Poker and Professional Gambling", + "level": 2, + "node_id": "524", + "parent_id": "483", + "path": [ + "Sports", + "Poker and Professional Gambling" + ], + "path_label": "Sports > Poker and Professional Gambling", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Rodeo", + "child_ids": [], + "child_paths": [], + "label": "Rodeo", + "level": 2, + "node_id": "525", + "parent_id": "483", + "path": [ + "Sports", + "Rodeo" + ], + "path_label": "Sports > Rodeo", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Rowing", + "child_ids": [], + "child_paths": [], + "label": "Rowing", + "level": 2, + "node_id": "526", + "parent_id": "483", + "path": [ + "Sports", + "Rowing" + ], + "path_label": "Sports > Rowing", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Rugby", + "child_ids": [ + "528", + "529" + ], + "child_paths": [ + "Sports > Rugby > Rugby League", + "Sports > Rugby > Rugby Union" + ], + "label": "Rugby", + "level": 2, + "node_id": "527", + "parent_id": "483", + "path": [ + "Sports", + "Rugby" + ], + "path_label": "Sports > Rugby", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Rugby League", + "child_ids": [], + "child_paths": [], + "label": "Rugby League", + "level": 3, + "node_id": "528", + "parent_id": "527", + "path": [ + "Sports", + "Rugby", + "Rugby League" + ], + "path_label": "Sports > Rugby > Rugby League", + "sibling_ids": [ + "529" + ], + "sibling_paths": [ + "Sports > Rugby > Rugby Union" + ] + }, + { + "canonical_surface_name": "Rugby Union", + "child_ids": [], + "child_paths": [], + "label": "Rugby Union", + "level": 3, + "node_id": "529", + "parent_id": "527", + "path": [ + "Sports", + "Rugby", + "Rugby Union" + ], + "path_label": "Sports > Rugby > Rugby Union", + "sibling_ids": [ + "528" + ], + "sibling_paths": [ + "Sports > Rugby > Rugby League" + ] + }, + { + "canonical_surface_name": "Sailing", + "child_ids": [], + "child_paths": [], + "label": "Sailing", + "level": 2, + "node_id": "530", + "parent_id": "483", + "path": [ + "Sports", + "Sailing" + ], + "path_label": "Sports > Sailing", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Skiing", + "child_ids": [], + "child_paths": [], + "label": "Skiing", + "level": 2, + "node_id": "531", + "parent_id": "483", + "path": [ + "Sports", + "Skiing" + ], + "path_label": "Sports > Skiing", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Snooker/Pool/Billiards", + "child_ids": [], + "child_paths": [], + "label": "Snooker/Pool/Billiards", + "level": 2, + "node_id": "532", + "parent_id": "483", + "path": [ + "Sports", + "Snooker/Pool/Billiards" + ], + "path_label": "Sports > Snooker/Pool/Billiards", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Soccer", + "child_ids": [], + "child_paths": [], + "label": "Soccer", + "level": 2, + "node_id": "533", + "parent_id": "483", + "path": [ + "Sports", + "Soccer" + ], + "path_label": "Sports > Soccer", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Softball", + "child_ids": [], + "child_paths": [], + "label": "Softball", + "level": 2, + "node_id": "535", + "parent_id": "483", + "path": [ + "Sports", + "Softball" + ], + "path_label": "Sports > Softball", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Sports Equipment", + "child_ids": [], + "child_paths": [], + "label": "Sports Equipment", + "level": 2, + "node_id": "551", + "parent_id": "483", + "path": [ + "Sports", + "Sports Equipment" + ], + "path_label": "Sports > Sports Equipment", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Squash", + "child_ids": [], + "child_paths": [], + "label": "Squash", + "level": 2, + "node_id": "536", + "parent_id": "483", + "path": [ + "Sports", + "Squash" + ], + "path_label": "Sports > Squash", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Swimming", + "child_ids": [], + "child_paths": [], + "label": "Swimming", + "level": 2, + "node_id": "537", + "parent_id": "483", + "path": [ + "Sports", + "Swimming" + ], + "path_label": "Sports > Swimming", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Table Tennis", + "child_ids": [], + "child_paths": [], + "label": "Table Tennis", + "level": 2, + "node_id": "538", + "parent_id": "483", + "path": [ + "Sports", + "Table Tennis" + ], + "path_label": "Sports > Table Tennis", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "539", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Tennis", + "child_ids": [], + "child_paths": [], + "label": "Tennis", + "level": 2, + "node_id": "539", + "parent_id": "483", + "path": [ + "Sports", + "Tennis" + ], + "path_label": "Sports > Tennis", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "540", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Track and Field", + "child_ids": [], + "child_paths": [], + "label": "Track and Field", + "level": 2, + "node_id": "540", + "parent_id": "483", + "path": [ + "Sports", + "Track and Field" + ], + "path_label": "Sports > Track and Field", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "541", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Volleyball", + "child_ids": [], + "child_paths": [], + "label": "Volleyball", + "level": 2, + "node_id": "541", + "parent_id": "483", + "path": [ + "Sports", + "Volleyball" + ], + "path_label": "Sports > Volleyball", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "542", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Walking", + "child_ids": [], + "child_paths": [], + "label": "Walking", + "level": 2, + "node_id": "542", + "parent_id": "483", + "path": [ + "Sports", + "Walking" + ], + "path_label": "Sports > Walking", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "543", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Water Polo", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Water Polo", + "child_ids": [], + "child_paths": [], + "label": "Water Polo", + "level": 2, + "node_id": "543", + "parent_id": "483", + "path": [ + "Sports", + "Water Polo" + ], + "path_label": "Sports > Water Polo", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "544", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Weightlifting", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Weightlifting", + "child_ids": [], + "child_paths": [], + "label": "Weightlifting", + "level": 2, + "node_id": "544", + "parent_id": "483", + "path": [ + "Sports", + "Weightlifting" + ], + "path_label": "Sports > Weightlifting", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "546" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Wrestling" + ] + }, + { + "canonical_surface_name": "Wrestling", + "child_ids": [], + "child_paths": [], + "label": "Wrestling", + "level": 2, + "node_id": "546", + "parent_id": "483", + "path": [ + "Sports", + "Wrestling" + ], + "path_label": "Sports > Wrestling", + "sibling_ids": [ + "484", + "507", + "518", + "534", + "545", + "547", + "548", + "549", + "550", + "485", + "486", + "487", + "491", + "492", + "493", + "494", + "495", + "496", + "498", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "520", + "521", + "524", + "525", + "526", + "527", + "530", + "531", + "532", + "533", + "535", + "551", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544" + ], + "sibling_paths": [ + "Sports > American Football", + "Sports > Australian Rules Football", + "Sports > Auto Racing", + "Sports > Badminton", + "Sports > Baseball", + "Sports > Basketball", + "Sports > Beach Volleyball", + "Sports > Bodybuilding", + "Sports > Bowling", + "Sports > Boxing", + "Sports > Cheerleading", + "Sports > College Sports", + "Sports > Cricket", + "Sports > Cycling", + "Sports > Darts", + "Sports > Disabled Sports", + "Sports > Diving", + "Sports > Equine Sports", + "Sports > Extreme Sports", + "Sports > Fantasy Sports", + "Sports > Field Hockey", + "Sports > Figure Skating", + "Sports > Fishing Sports", + "Sports > Golf", + "Sports > Gymnastics", + "Sports > Hunting and Shooting", + "Sports > Ice Hockey", + "Sports > Inline Skating", + "Sports > Lacrosse", + "Sports > Martial Arts", + "Sports > Olympic Sports", + "Sports > Poker and Professional Gambling", + "Sports > Rodeo", + "Sports > Rowing", + "Sports > Rugby", + "Sports > Sailing", + "Sports > Skiing", + "Sports > Snooker/Pool/Billiards", + "Sports > Soccer", + "Sports > Softball", + "Sports > Sports Equipment", + "Sports > Squash", + "Sports > Swimming", + "Sports > Table Tennis", + "Sports > Tennis", + "Sports > Track and Field", + "Sports > Volleyball", + "Sports > Walking", + "Sports > Water Polo", + "Sports > Weightlifting" + ] + }, + { + "canonical_surface_name": "Style & Fashion", + "child_ids": [ + "553", + "574", + "575", + "576", + "577", + "578", + "579", + "590", + "595", + "560" + ], + "child_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ], + "label": "Style & Fashion", + "level": 1, + "node_id": "552", + "parent_id": null, + "path": [ + "Style & Fashion" + ], + "path_label": "Style & Fashion", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "596", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Technology & Computing", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Beauty", + "child_ids": [ + "554", + "555", + "556", + "557", + "558", + "559" + ], + "child_paths": [ + "Style & Fashion > Beauty > Hair Care", + "Style & Fashion > Beauty > Makeup and Accessories", + "Style & Fashion > Beauty > Nail Care", + "Style & Fashion > Beauty > Natural and Organic Beauty", + "Style & Fashion > Beauty > Perfume and Fragrance", + "Style & Fashion > Beauty > Skin Care" + ], + "label": "Beauty", + "level": 2, + "node_id": "553", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Beauty" + ], + "path_label": "Style & Fashion > Beauty", + "sibling_ids": [ + "574", + "575", + "576", + "577", + "578", + "579", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Hair Care", + "child_ids": [], + "child_paths": [], + "label": "Hair Care", + "level": 3, + "node_id": "554", + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Hair Care" + ], + "path_label": "Style & Fashion > Beauty > Hair Care", + "sibling_ids": [ + "555", + "556", + "557", + "558", + "559" + ], + "sibling_paths": [ + "Style & Fashion > Beauty > Makeup and Accessories", + "Style & Fashion > Beauty > Nail Care", + "Style & Fashion > Beauty > Natural and Organic Beauty", + "Style & Fashion > Beauty > Perfume and Fragrance", + "Style & Fashion > Beauty > Skin Care" + ] + }, + { + "canonical_surface_name": "Makeup and Accessories", + "child_ids": [], + "child_paths": [], + "label": "Makeup and Accessories", + "level": 3, + "node_id": "555", + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Makeup and Accessories" + ], + "path_label": "Style & Fashion > Beauty > Makeup and Accessories", + "sibling_ids": [ + "554", + "556", + "557", + "558", + "559" + ], + "sibling_paths": [ + "Style & Fashion > Beauty > Hair Care", + "Style & Fashion > Beauty > Nail Care", + "Style & Fashion > Beauty > Natural and Organic Beauty", + "Style & Fashion > Beauty > Perfume and Fragrance", + "Style & Fashion > Beauty > Skin Care" + ] + }, + { + "canonical_surface_name": "Nail Care", + "child_ids": [], + "child_paths": [], + "label": "Nail Care", + "level": 3, + "node_id": "556", + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Nail Care" + ], + "path_label": "Style & Fashion > Beauty > Nail Care", + "sibling_ids": [ + "554", + "555", + "557", + "558", + "559" + ], + "sibling_paths": [ + "Style & Fashion > Beauty > Hair Care", + "Style & Fashion > Beauty > Makeup and Accessories", + "Style & Fashion > Beauty > Natural and Organic Beauty", + "Style & Fashion > Beauty > Perfume and Fragrance", + "Style & Fashion > Beauty > Skin Care" + ] + }, + { + "canonical_surface_name": "Natural and Organic Beauty", + "child_ids": [], + "child_paths": [], + "label": "Natural and Organic Beauty", + "level": 3, + "node_id": "557", + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Natural and Organic Beauty" + ], + "path_label": "Style & Fashion > Beauty > Natural and Organic Beauty", + "sibling_ids": [ + "554", + "555", + "556", + "558", + "559" + ], + "sibling_paths": [ + "Style & Fashion > Beauty > Hair Care", + "Style & Fashion > Beauty > Makeup and Accessories", + "Style & Fashion > Beauty > Nail Care", + "Style & Fashion > Beauty > Perfume and Fragrance", + "Style & Fashion > Beauty > Skin Care" + ] + }, + { + "canonical_surface_name": "Perfume and Fragrance", + "child_ids": [], + "child_paths": [], + "label": "Perfume and Fragrance", + "level": 3, + "node_id": "558", + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Perfume and Fragrance" + ], + "path_label": "Style & Fashion > Beauty > Perfume and Fragrance", + "sibling_ids": [ + "554", + "555", + "556", + "557", + "559" + ], + "sibling_paths": [ + "Style & Fashion > Beauty > Hair Care", + "Style & Fashion > Beauty > Makeup and Accessories", + "Style & Fashion > Beauty > Nail Care", + "Style & Fashion > Beauty > Natural and Organic Beauty", + "Style & Fashion > Beauty > Skin Care" + ] + }, + { + "canonical_surface_name": "Skin Care", + "child_ids": [], + "child_paths": [], + "label": "Skin Care", + "level": 3, + "node_id": "559", + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Skin Care" + ], + "path_label": "Style & Fashion > Beauty > Skin Care", + "sibling_ids": [ + "554", + "555", + "556", + "557", + "558" + ], + "sibling_paths": [ + "Style & Fashion > Beauty > Hair Care", + "Style & Fashion > Beauty > Makeup and Accessories", + "Style & Fashion > Beauty > Nail Care", + "Style & Fashion > Beauty > Natural and Organic Beauty", + "Style & Fashion > Beauty > Perfume and Fragrance" + ] + }, + { + "canonical_surface_name": "Body Art", + "child_ids": [], + "child_paths": [], + "label": "Body Art", + "level": 2, + "node_id": "574", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Body Art" + ], + "path_label": "Style & Fashion > Body Art", + "sibling_ids": [ + "553", + "575", + "576", + "577", + "578", + "579", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Children's Clothing", + "child_ids": [], + "child_paths": [], + "label": "Children's Clothing", + "level": 2, + "node_id": "575", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Children's Clothing" + ], + "path_label": "Style & Fashion > Children's Clothing", + "sibling_ids": [ + "553", + "574", + "576", + "577", + "578", + "579", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Designer Clothing", + "child_ids": [], + "child_paths": [], + "label": "Designer Clothing", + "level": 2, + "node_id": "576", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Designer Clothing" + ], + "path_label": "Style & Fashion > Designer Clothing", + "sibling_ids": [ + "553", + "574", + "575", + "577", + "578", + "579", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Fashion Trends", + "child_ids": [], + "child_paths": [], + "label": "Fashion Trends", + "level": 2, + "node_id": "577", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Fashion Trends" + ], + "path_label": "Style & Fashion > Fashion Trends", + "sibling_ids": [ + "553", + "574", + "575", + "576", + "578", + "579", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "High Fashion", + "child_ids": [], + "child_paths": [], + "label": "High Fashion", + "level": 2, + "node_id": "578", + "parent_id": "552", + "path": [ + "Style & Fashion", + "High Fashion" + ], + "path_label": "Style & Fashion > High Fashion", + "sibling_ids": [ + "553", + "574", + "575", + "576", + "577", + "579", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Men's Fashion", + "child_ids": [ + "580", + "582", + "589" + ], + "child_paths": [ + "Style & Fashion > Men's Fashion > Men's Accessories", + "Style & Fashion > Men's Fashion > Men's Clothing", + "Style & Fashion > Men's Fashion > Men's Shoes and Footwear" + ], + "label": "Men's Fashion", + "level": 2, + "node_id": "579", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Men's Fashion" + ], + "path_label": "Style & Fashion > Men's Fashion", + "sibling_ids": [ + "553", + "574", + "575", + "576", + "577", + "578", + "590", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Men's Accessories", + "child_ids": [ + "581" + ], + "child_paths": [ + "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches" + ], + "label": "Men's Accessories", + "level": 3, + "node_id": "580", + "parent_id": "579", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Accessories" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Accessories", + "sibling_ids": [ + "582", + "589" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing", + "Style & Fashion > Men's Fashion > Men's Shoes and Footwear" + ] + }, + { + "canonical_surface_name": "Men's Jewelry and Watches", + "child_ids": [], + "child_paths": [], + "label": "Men's Jewelry and Watches", + "level": 4, + "node_id": "581", + "parent_id": "580", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Accessories", + "Men's Jewelry and Watches" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", + "sibling_ids": [], + "sibling_paths": [] + }, + { + "canonical_surface_name": "Men's Clothing", + "child_ids": [ + "583", + "584", + "585", + "586", + "587", + "588" + ], + "child_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear" + ], + "label": "Men's Clothing", + "level": 3, + "node_id": "582", + "parent_id": "579", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing", + "sibling_ids": [ + "580", + "589" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Accessories", + "Style & Fashion > Men's Fashion > Men's Shoes and Footwear" + ] + }, + { + "canonical_surface_name": "Men's Business Wear", + "child_ids": [], + "child_paths": [], + "label": "Men's Business Wear", + "level": 4, + "node_id": "583", + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Business Wear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "sibling_ids": [ + "584", + "585", + "586", + "587", + "588" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear" + ] + }, + { + "canonical_surface_name": "Men's Casual Wear", + "child_ids": [], + "child_paths": [], + "label": "Men's Casual Wear", + "level": 4, + "node_id": "584", + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Casual Wear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "sibling_ids": [ + "583", + "585", + "586", + "587", + "588" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear" + ] + }, + { + "canonical_surface_name": "Men's Formal Wear", + "child_ids": [], + "child_paths": [], + "label": "Men's Formal Wear", + "level": 4, + "node_id": "585", + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Formal Wear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "sibling_ids": [ + "583", + "584", + "586", + "587", + "588" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear" + ] + }, + { + "canonical_surface_name": "Men's Outerwear", + "child_ids": [], + "child_paths": [], + "label": "Men's Outerwear", + "level": 4, + "node_id": "586", + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Outerwear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "sibling_ids": [ + "583", + "584", + "585", + "587", + "588" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear" + ] + }, + { + "canonical_surface_name": "Men's Sportswear", + "child_ids": [], + "child_paths": [], + "label": "Men's Sportswear", + "level": 4, + "node_id": "587", + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Sportswear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "sibling_ids": [ + "583", + "584", + "585", + "586", + "588" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear" + ] + }, + { + "canonical_surface_name": "Men's Underwear and Sleepwear", + "child_ids": [], + "child_paths": [], + "label": "Men's Underwear and Sleepwear", + "level": 4, + "node_id": "588", + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Underwear and Sleepwear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", + "sibling_ids": [ + "583", + "584", + "585", + "586", + "587" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear" + ] + }, + { + "canonical_surface_name": "Men's Shoes and Footwear", + "child_ids": [], + "child_paths": [], + "label": "Men's Shoes and Footwear", + "level": 3, + "node_id": "589", + "parent_id": "579", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Shoes and Footwear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", + "sibling_ids": [ + "580", + "582" + ], + "sibling_paths": [ + "Style & Fashion > Men's Fashion > Men's Accessories", + "Style & Fashion > Men's Fashion > Men's Clothing" + ] + }, + { + "canonical_surface_name": "Personal Care", + "child_ids": [ + "591", + "592", + "593", + "594" + ], + "child_paths": [ + "Style & Fashion > Personal Care > Bath and Shower", + "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "Style & Fashion > Personal Care > Oral care", + "Style & Fashion > Personal Care > Shaving" + ], + "label": "Personal Care", + "level": 2, + "node_id": "590", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Personal Care" + ], + "path_label": "Style & Fashion > Personal Care", + "sibling_ids": [ + "553", + "574", + "575", + "576", + "577", + "578", + "579", + "595", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Street Style", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Bath and Shower", + "child_ids": [], + "child_paths": [], + "label": "Bath and Shower", + "level": 3, + "node_id": "591", + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Bath and Shower" + ], + "path_label": "Style & Fashion > Personal Care > Bath and Shower", + "sibling_ids": [ + "592", + "593", + "594" + ], + "sibling_paths": [ + "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "Style & Fashion > Personal Care > Oral care", + "Style & Fashion > Personal Care > Shaving" + ] + }, + { + "canonical_surface_name": "Deodorant and Antiperspirant", + "child_ids": [], + "child_paths": [], + "label": "Deodorant and Antiperspirant", + "level": 3, + "node_id": "592", + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Deodorant and Antiperspirant" + ], + "path_label": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "sibling_ids": [ + "591", + "593", + "594" + ], + "sibling_paths": [ + "Style & Fashion > Personal Care > Bath and Shower", + "Style & Fashion > Personal Care > Oral care", + "Style & Fashion > Personal Care > Shaving" + ] + }, + { + "canonical_surface_name": "Oral care", + "child_ids": [], + "child_paths": [], + "label": "Oral care", + "level": 3, + "node_id": "593", + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Oral care" + ], + "path_label": "Style & Fashion > Personal Care > Oral care", + "sibling_ids": [ + "591", + "592", + "594" + ], + "sibling_paths": [ + "Style & Fashion > Personal Care > Bath and Shower", + "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "Style & Fashion > Personal Care > Shaving" + ] + }, + { + "canonical_surface_name": "Shaving", + "child_ids": [], + "child_paths": [], + "label": "Shaving", + "level": 3, + "node_id": "594", + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Shaving" + ], + "path_label": "Style & Fashion > Personal Care > Shaving", + "sibling_ids": [ + "591", + "592", + "593" + ], + "sibling_paths": [ + "Style & Fashion > Personal Care > Bath and Shower", + "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "Style & Fashion > Personal Care > Oral care" + ] + }, + { + "canonical_surface_name": "Street Style", + "child_ids": [], + "child_paths": [], + "label": "Street Style", + "level": 2, + "node_id": "595", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Street Style" + ], + "path_label": "Style & Fashion > Street Style", + "sibling_ids": [ + "553", + "574", + "575", + "576", + "577", + "578", + "579", + "590", + "560" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Women's Fashion" + ] + }, + { + "canonical_surface_name": "Women's Fashion", + "child_ids": [ + "561", + "566", + "573" + ], + "child_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories", + "Style & Fashion > Women's Fashion > Women's Clothing", + "Style & Fashion > Women's Fashion > Women's Shoes and Footwear" + ], + "label": "Women's Fashion", + "level": 2, + "node_id": "560", + "parent_id": "552", + "path": [ + "Style & Fashion", + "Women's Fashion" + ], + "path_label": "Style & Fashion > Women's Fashion", + "sibling_ids": [ + "553", + "574", + "575", + "576", + "577", + "578", + "579", + "590", + "595" + ], + "sibling_paths": [ + "Style & Fashion > Beauty", + "Style & Fashion > Body Art", + "Style & Fashion > Children's Clothing", + "Style & Fashion > Designer Clothing", + "Style & Fashion > Fashion Trends", + "Style & Fashion > High Fashion", + "Style & Fashion > Men's Fashion", + "Style & Fashion > Personal Care", + "Style & Fashion > Street Style" + ] + }, + { + "canonical_surface_name": "Women's Accessories", + "child_ids": [ + "562", + "563", + "564", + "565" + ], + "child_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches" + ], + "label": "Women's Accessories", + "level": 3, + "node_id": "561", + "parent_id": "560", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories", + "sibling_ids": [ + "566", + "573" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing", + "Style & Fashion > Women's Fashion > Women's Shoes and Footwear" + ] + }, + { + "canonical_surface_name": "Women's Glasses", + "child_ids": [], + "child_paths": [], + "label": "Women's Glasses", + "level": 4, + "node_id": "562", + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Glasses" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "sibling_ids": [ + "563", + "564", + "565" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches" + ] + }, + { + "canonical_surface_name": "Women's Handbags and Wallets", + "child_ids": [], + "child_paths": [], + "label": "Women's Handbags and Wallets", + "level": 4, + "node_id": "563", + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Handbags and Wallets" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "sibling_ids": [ + "562", + "564", + "565" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches" + ] + }, + { + "canonical_surface_name": "Women's Hats and Scarves", + "child_ids": [], + "child_paths": [], + "label": "Women's Hats and Scarves", + "level": 4, + "node_id": "564", + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Hats and Scarves" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", + "sibling_ids": [ + "562", + "563", + "565" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches" + ] + }, + { + "canonical_surface_name": "Women's Jewelry and Watches", + "child_ids": [], + "child_paths": [], + "label": "Women's Jewelry and Watches", + "level": 4, + "node_id": "565", + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Jewelry and Watches" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", + "sibling_ids": [ + "562", + "563", + "564" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves" + ] + }, + { + "canonical_surface_name": "Women's Clothing", + "child_ids": [ + "567", + "568", + "569", + "570", + "571", + "572" + ], + "child_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear" + ], + "label": "Women's Clothing", + "level": 3, + "node_id": "566", + "parent_id": "560", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing", + "sibling_ids": [ + "561", + "573" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories", + "Style & Fashion > Women's Fashion > Women's Shoes and Footwear" + ] + }, + { + "canonical_surface_name": "Women's Business Wear", + "child_ids": [], + "child_paths": [], + "label": "Women's Business Wear", + "level": 4, + "node_id": "567", + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Business Wear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "sibling_ids": [ + "568", + "569", + "570", + "571", + "572" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear" + ] + }, + { + "canonical_surface_name": "Women's Casual Wear", + "child_ids": [], + "child_paths": [], + "label": "Women's Casual Wear", + "level": 4, + "node_id": "568", + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Casual Wear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "sibling_ids": [ + "567", + "569", + "570", + "571", + "572" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear" + ] + }, + { + "canonical_surface_name": "Women's Formal Wear", + "child_ids": [], + "child_paths": [], + "label": "Women's Formal Wear", + "level": 4, + "node_id": "569", + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Formal Wear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "sibling_ids": [ + "567", + "568", + "570", + "571", + "572" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear" + ] + }, + { + "canonical_surface_name": "Women's Intimates and Sleepwear", + "child_ids": [], + "child_paths": [], + "label": "Women's Intimates and Sleepwear", + "level": 4, + "node_id": "570", + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Intimates and Sleepwear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "sibling_ids": [ + "567", + "568", + "569", + "571", + "572" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear" + ] + }, + { + "canonical_surface_name": "Women's Outerwear", + "child_ids": [], + "child_paths": [], + "label": "Women's Outerwear", + "level": 4, + "node_id": "571", + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Outerwear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "sibling_ids": [ + "567", + "568", + "569", + "570", + "572" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear" + ] + }, + { + "canonical_surface_name": "Women's Sportswear", + "child_ids": [], + "child_paths": [], + "label": "Women's Sportswear", + "level": 4, + "node_id": "572", + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Sportswear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", + "sibling_ids": [ + "567", + "568", + "569", + "570", + "571" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear" + ] + }, + { + "canonical_surface_name": "Women's Shoes and Footwear", + "child_ids": [], + "child_paths": [], + "label": "Women's Shoes and Footwear", + "level": 3, + "node_id": "573", + "parent_id": "560", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Shoes and Footwear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", + "sibling_ids": [ + "561", + "566" + ], + "sibling_paths": [ + "Style & Fashion > Women's Fashion > Women's Accessories", + "Style & Fashion > Women's Fashion > Women's Clothing" + ] + }, + { + "canonical_surface_name": "Technology & Computing", + "child_ids": [ + "597", + "598", + "599", + "632", + "638", + "639" + ], + "child_paths": [ + "Technology & Computing > Artificial Intelligence", + "Technology & Computing > Augmented Reality", + "Technology & Computing > Computing", + "Technology & Computing > Consumer Electronics", + "Technology & Computing > Robotics", + "Technology & Computing > Virtual Reality" + ], + "label": "Technology & Computing", + "level": 1, + "node_id": "596", + "parent_id": null, + "path": [ + "Technology & Computing" + ], + "path_label": "Technology & Computing", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "653", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Travel", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Artificial Intelligence", + "child_ids": [], + "child_paths": [], + "label": "Artificial Intelligence", + "level": 2, + "node_id": "597", + "parent_id": "596", + "path": [ + "Technology & Computing", + "Artificial Intelligence" + ], + "path_label": "Technology & Computing > Artificial Intelligence", + "sibling_ids": [ + "598", + "599", + "632", + "638", + "639" + ], + "sibling_paths": [ + "Technology & Computing > Augmented Reality", + "Technology & Computing > Computing", + "Technology & Computing > Consumer Electronics", + "Technology & Computing > Robotics", + "Technology & Computing > Virtual Reality" + ] + }, + { + "canonical_surface_name": "Augmented Reality", + "child_ids": [], + "child_paths": [], + "label": "Augmented Reality", + "level": 2, + "node_id": "598", + "parent_id": "596", + "path": [ + "Technology & Computing", + "Augmented Reality" + ], + "path_label": "Technology & Computing > Augmented Reality", + "sibling_ids": [ + "597", + "599", + "632", + "638", + "639" + ], + "sibling_paths": [ + "Technology & Computing > Artificial Intelligence", + "Technology & Computing > Computing", + "Technology & Computing > Consumer Electronics", + "Technology & Computing > Robotics", + "Technology & Computing > Virtual Reality" + ] + }, + { + "canonical_surface_name": "Computing", + "child_ids": [ + "600", + "601", + "602", + "616", + "617", + "618", + "619", + "630", + "631" + ], + "child_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ], + "label": "Computing", + "level": 2, + "node_id": "599", + "parent_id": "596", + "path": [ + "Technology & Computing", + "Computing" + ], + "path_label": "Technology & Computing > Computing", + "sibling_ids": [ + "597", + "598", + "632", + "638", + "639" + ], + "sibling_paths": [ + "Technology & Computing > Artificial Intelligence", + "Technology & Computing > Augmented Reality", + "Technology & Computing > Consumer Electronics", + "Technology & Computing > Robotics", + "Technology & Computing > Virtual Reality" + ] + }, + { + "canonical_surface_name": "Computer Networking", + "child_ids": [], + "child_paths": [], + "label": "Computer Networking", + "level": 3, + "node_id": "600", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Computer Networking" + ], + "path_label": "Technology & Computing > Computing > Computer Networking", + "sibling_ids": [ + "601", + "602", + "616", + "617", + "618", + "619", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Computer Peripherals", + "child_ids": [], + "child_paths": [], + "label": "Computer Peripherals", + "level": 3, + "node_id": "601", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Computer Peripherals" + ], + "path_label": "Technology & Computing > Computing > Computer Peripherals", + "sibling_ids": [ + "600", + "602", + "616", + "617", + "618", + "619", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Software and Applications", + "child_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "child_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ], + "label": "Software and Applications", + "level": 3, + "node_id": "602", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications", + "sibling_ids": [ + "600", + "601", + "616", + "617", + "618", + "619", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "3-D Graphics", + "child_ids": [], + "child_paths": [], + "label": "3-D Graphics", + "level": 4, + "node_id": "603", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "3-D Graphics" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "sibling_ids": [ + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Antivirus Software", + "child_ids": [], + "child_paths": [], + "label": "Antivirus Software", + "level": 4, + "node_id": "608", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Antivirus Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "sibling_ids": [ + "603", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Browsers", + "child_ids": [], + "child_paths": [], + "label": "Browsers", + "level": 4, + "node_id": "609", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Browsers" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "sibling_ids": [ + "603", + "608", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Computer Animation", + "child_ids": [], + "child_paths": [], + "label": "Computer Animation", + "level": 4, + "node_id": "610", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Computer Animation" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Databases", + "child_ids": [], + "child_paths": [], + "label": "Databases", + "level": 4, + "node_id": "611", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Databases" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Databases", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Desktop Publishing", + "child_ids": [], + "child_paths": [], + "label": "Desktop Publishing", + "level": 4, + "node_id": "612", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Desktop Publishing" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Digital Audio", + "child_ids": [], + "child_paths": [], + "label": "Digital Audio", + "level": 4, + "node_id": "613", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Digital Audio" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Graphics Software", + "child_ids": [], + "child_paths": [], + "label": "Graphics Software", + "level": 4, + "node_id": "614", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Graphics Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Operating Systems", + "child_ids": [], + "child_paths": [], + "label": "Operating Systems", + "level": 4, + "node_id": "615", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Operating Systems" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "604", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Photo Editing Software", + "child_ids": [], + "child_paths": [], + "label": "Photo Editing Software", + "level": 4, + "node_id": "604", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Photo Editing Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "W3CW2J", + "605", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Shareware and Freeware", + "child_ids": [], + "child_paths": [], + "label": "Shareware and Freeware", + "level": 4, + "node_id": "605", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Shareware and Freeware" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "606", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Video Software", + "child_ids": [], + "child_paths": [], + "label": "Video Software", + "level": 4, + "node_id": "606", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Video Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "607" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing" + ] + }, + { + "canonical_surface_name": "Web Conferencing", + "child_ids": [], + "child_paths": [], + "label": "Web Conferencing", + "level": 4, + "node_id": "607", + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Web Conferencing" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", + "sibling_ids": [ + "603", + "608", + "609", + "80DV8O", + "610", + "611", + "612", + "613", + "614", + "WQC6HR", + "615", + "604", + "W3CW2J", + "605", + "606" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "Technology & Computing > Computing > Computer Software and Applications > Communication", + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "Technology & Computing > Computing > Computer Software and Applications > Databases", + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "Technology & Computing > Computing > Computer Software and Applications > Video Software" + ] + }, + { + "canonical_surface_name": "Data Storage and Warehousing", + "child_ids": [], + "child_paths": [], + "label": "Data Storage and Warehousing", + "level": 3, + "node_id": "616", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Data Storage and Warehousing" + ], + "path_label": "Technology & Computing > Computing > Data Storage and Warehousing", + "sibling_ids": [ + "600", + "601", + "602", + "617", + "618", + "619", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Desktops", + "child_ids": [], + "child_paths": [], + "label": "Desktops", + "level": 3, + "node_id": "617", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Desktops" + ], + "path_label": "Technology & Computing > Computing > Desktops", + "sibling_ids": [ + "600", + "601", + "602", + "616", + "618", + "619", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Information and Network Security", + "child_ids": [], + "child_paths": [], + "label": "Information and Network Security", + "level": 3, + "node_id": "618", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Information and Network Security" + ], + "path_label": "Technology & Computing > Computing > Information and Network Security", + "sibling_ids": [ + "600", + "601", + "602", + "616", + "617", + "619", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Internet", + "child_ids": [ + "620", + "623", + "626", + "624", + "625", + "627", + "628", + "629", + "621", + "622" + ], + "child_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ], + "label": "Internet", + "level": 3, + "node_id": "619", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Internet" + ], + "path_label": "Technology & Computing > Computing > Internet", + "sibling_ids": [ + "600", + "601", + "602", + "616", + "617", + "618", + "630", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Laptops", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Cloud Computing", + "child_ids": [], + "child_paths": [], + "label": "Cloud Computing", + "level": 4, + "node_id": "620", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Cloud Computing" + ], + "path_label": "Technology & Computing > Computing > Internet > Cloud Computing", + "sibling_ids": [ + "623", + "626", + "624", + "625", + "627", + "628", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Email", + "child_ids": [], + "child_paths": [], + "label": "Email", + "level": 4, + "node_id": "623", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Email" + ], + "path_label": "Technology & Computing > Computing > Internet > Email", + "sibling_ids": [ + "620", + "626", + "624", + "625", + "627", + "628", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Internet for Beginners", + "child_ids": [], + "child_paths": [], + "label": "Internet for Beginners", + "level": 4, + "node_id": "624", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Internet for Beginners" + ], + "path_label": "Technology & Computing > Computing > Internet > Internet for Beginners", + "sibling_ids": [ + "620", + "623", + "626", + "625", + "627", + "628", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Internet of Things", + "child_ids": [], + "child_paths": [], + "label": "Internet of Things", + "level": 4, + "node_id": "625", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Internet of Things" + ], + "path_label": "Technology & Computing > Computing > Internet > Internet of Things", + "sibling_ids": [ + "620", + "623", + "626", + "624", + "627", + "628", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "IT and Internet Support", + "child_ids": [], + "child_paths": [], + "label": "IT and Internet Support", + "level": 4, + "node_id": "626", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "IT and Internet Support" + ], + "path_label": "Technology & Computing > Computing > Internet > IT and Internet Support", + "sibling_ids": [ + "620", + "623", + "624", + "625", + "627", + "628", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Search", + "child_ids": [], + "child_paths": [], + "label": "Search", + "level": 4, + "node_id": "627", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Search" + ], + "path_label": "Technology & Computing > Computing > Internet > Search", + "sibling_ids": [ + "620", + "623", + "626", + "624", + "625", + "628", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Social Networking", + "child_ids": [], + "child_paths": [], + "label": "Social Networking", + "level": 4, + "node_id": "628", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Social Networking" + ], + "path_label": "Technology & Computing > Computing > Internet > Social Networking", + "sibling_ids": [ + "620", + "623", + "626", + "624", + "625", + "627", + "629", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Web Design and HTML", + "child_ids": [], + "child_paths": [], + "label": "Web Design and HTML", + "level": 4, + "node_id": "629", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Web Design and HTML" + ], + "path_label": "Technology & Computing > Computing > Internet > Web Design and HTML", + "sibling_ids": [ + "620", + "623", + "626", + "624", + "625", + "627", + "628", + "621", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Development", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Web Development", + "child_ids": [], + "child_paths": [], + "label": "Web Development", + "level": 4, + "node_id": "621", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Web Development" + ], + "path_label": "Technology & Computing > Computing > Internet > Web Development", + "sibling_ids": [ + "620", + "623", + "626", + "624", + "625", + "627", + "628", + "629", + "622" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Hosting" + ] + }, + { + "canonical_surface_name": "Web Hosting", + "child_ids": [], + "child_paths": [], + "label": "Web Hosting", + "level": 4, + "node_id": "622", + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Web Hosting" + ], + "path_label": "Technology & Computing > Computing > Internet > Web Hosting", + "sibling_ids": [ + "620", + "623", + "626", + "624", + "625", + "627", + "628", + "629", + "621" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Internet > Cloud Computing", + "Technology & Computing > Computing > Internet > Email", + "Technology & Computing > Computing > Internet > IT and Internet Support", + "Technology & Computing > Computing > Internet > Internet for Beginners", + "Technology & Computing > Computing > Internet > Internet of Things", + "Technology & Computing > Computing > Internet > Search", + "Technology & Computing > Computing > Internet > Social Networking", + "Technology & Computing > Computing > Internet > Web Design and HTML", + "Technology & Computing > Computing > Internet > Web Development" + ] + }, + { + "canonical_surface_name": "Laptops", + "child_ids": [], + "child_paths": [], + "label": "Laptops", + "level": 3, + "node_id": "630", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Laptops" + ], + "path_label": "Technology & Computing > Computing > Laptops", + "sibling_ids": [ + "600", + "601", + "602", + "616", + "617", + "618", + "619", + "631" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Programming Languages" + ] + }, + { + "canonical_surface_name": "Programming Languages", + "child_ids": [], + "child_paths": [], + "label": "Programming Languages", + "level": 3, + "node_id": "631", + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Programming Languages" + ], + "path_label": "Technology & Computing > Computing > Programming Languages", + "sibling_ids": [ + "600", + "601", + "602", + "616", + "617", + "618", + "619", + "630" + ], + "sibling_paths": [ + "Technology & Computing > Computing > Computer Networking", + "Technology & Computing > Computing > Computer Peripherals", + "Technology & Computing > Computing > Computer Software and Applications", + "Technology & Computing > Computing > Data Storage and Warehousing", + "Technology & Computing > Computing > Desktops", + "Technology & Computing > Computing > Information and Network Security", + "Technology & Computing > Computing > Internet", + "Technology & Computing > Computing > Laptops" + ] + }, + { + "canonical_surface_name": "Consumer Electronics", + "child_ids": [ + "633", + "634", + "635", + "636", + "637" + ], + "child_paths": [ + "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "Technology & Computing > Consumer Electronics > Smartphones", + "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "Technology & Computing > Consumer Electronics > Wearable Technology" + ], + "label": "Consumer Electronics", + "level": 2, + "node_id": "632", + "parent_id": "596", + "path": [ + "Technology & Computing", + "Consumer Electronics" + ], + "path_label": "Technology & Computing > Consumer Electronics", + "sibling_ids": [ + "597", + "598", + "599", + "638", + "639" + ], + "sibling_paths": [ + "Technology & Computing > Artificial Intelligence", + "Technology & Computing > Augmented Reality", + "Technology & Computing > Computing", + "Technology & Computing > Robotics", + "Technology & Computing > Virtual Reality" + ] + }, + { + "canonical_surface_name": "Cameras and Camcorders", + "child_ids": [], + "child_paths": [], + "label": "Cameras and Camcorders", + "level": 3, + "node_id": "633", + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Cameras and Camcorders" + ], + "path_label": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "sibling_ids": [ + "634", + "635", + "636", + "637" + ], + "sibling_paths": [ + "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "Technology & Computing > Consumer Electronics > Smartphones", + "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "Technology & Computing > Consumer Electronics > Wearable Technology" + ] + }, + { + "canonical_surface_name": "Home Entertainment Systems", + "child_ids": [], + "child_paths": [], + "label": "Home Entertainment Systems", + "level": 3, + "node_id": "634", + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Home Entertainment Systems" + ], + "path_label": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "sibling_ids": [ + "633", + "635", + "636", + "637" + ], + "sibling_paths": [ + "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "Technology & Computing > Consumer Electronics > Smartphones", + "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "Technology & Computing > Consumer Electronics > Wearable Technology" + ] + }, + { + "canonical_surface_name": "Smartphones", + "child_ids": [], + "child_paths": [], + "label": "Smartphones", + "level": 3, + "node_id": "635", + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Smartphones" + ], + "path_label": "Technology & Computing > Consumer Electronics > Smartphones", + "sibling_ids": [ + "633", + "634", + "636", + "637" + ], + "sibling_paths": [ + "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "Technology & Computing > Consumer Electronics > Wearable Technology" + ] + }, + { + "canonical_surface_name": "Tablets and E-readers", + "child_ids": [], + "child_paths": [], + "label": "Tablets and E-readers", + "level": 3, + "node_id": "636", + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Tablets and E-readers" + ], + "path_label": "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "sibling_ids": [ + "633", + "634", + "635", + "637" + ], + "sibling_paths": [ + "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "Technology & Computing > Consumer Electronics > Smartphones", + "Technology & Computing > Consumer Electronics > Wearable Technology" + ] + }, + { + "canonical_surface_name": "Wearable Technology", + "child_ids": [], + "child_paths": [], + "label": "Wearable Technology", + "level": 3, + "node_id": "637", + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Wearable Technology" + ], + "path_label": "Technology & Computing > Consumer Electronics > Wearable Technology", + "sibling_ids": [ + "633", + "634", + "635", + "636" + ], + "sibling_paths": [ + "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "Technology & Computing > Consumer Electronics > Smartphones", + "Technology & Computing > Consumer Electronics > Tablets and E-readers" + ] + }, + { + "canonical_surface_name": "Robotics", + "child_ids": [], + "child_paths": [], + "label": "Robotics", + "level": 2, + "node_id": "638", + "parent_id": "596", + "path": [ + "Technology & Computing", + "Robotics" + ], + "path_label": "Technology & Computing > Robotics", + "sibling_ids": [ + "597", + "598", + "599", + "632", + "639" + ], + "sibling_paths": [ + "Technology & Computing > Artificial Intelligence", + "Technology & Computing > Augmented Reality", + "Technology & Computing > Computing", + "Technology & Computing > Consumer Electronics", + "Technology & Computing > Virtual Reality" + ] + }, + { + "canonical_surface_name": "Virtual Reality", + "child_ids": [], + "child_paths": [], + "label": "Virtual Reality", + "level": 2, + "node_id": "639", + "parent_id": "596", + "path": [ + "Technology & Computing", + "Virtual Reality" + ], + "path_label": "Technology & Computing > Virtual Reality", + "sibling_ids": [ + "597", + "598", + "599", + "632", + "638" + ], + "sibling_paths": [ + "Technology & Computing > Artificial Intelligence", + "Technology & Computing > Augmented Reality", + "Technology & Computing > Computing", + "Technology & Computing > Consumer Electronics", + "Technology & Computing > Robotics" + ] + }, + { + "canonical_surface_name": "Travel", + "child_ids": [ + "654", + "655", + "663", + "664" + ], + "child_paths": [ + "Travel > Travel Accessories", + "Travel > Travel Locations", + "Travel > Travel Preparation and Advice", + "Travel > Travel Type" + ], + "label": "Travel", + "level": 1, + "node_id": "653", + "parent_id": null, + "path": [ + "Travel" + ], + "path_label": "Travel", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "680", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Video Gaming", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Travel Accessories", + "child_ids": [], + "child_paths": [], + "label": "Travel Accessories", + "level": 2, + "node_id": "654", + "parent_id": "653", + "path": [ + "Travel", + "Travel Accessories" + ], + "path_label": "Travel > Travel Accessories", + "sibling_ids": [ + "655", + "663", + "664" + ], + "sibling_paths": [ + "Travel > Travel Locations", + "Travel > Travel Preparation and Advice", + "Travel > Travel Type" + ] + }, + { + "canonical_surface_name": "Travel Locations", + "child_ids": [ + "656", + "657", + "658", + "659", + "660", + "661", + "662" + ], + "child_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > Polar Travel", + "Travel > Travel Locations > South America Travel" + ], + "label": "Travel Locations", + "level": 2, + "node_id": "655", + "parent_id": "653", + "path": [ + "Travel", + "Travel Locations" + ], + "path_label": "Travel > Travel Locations", + "sibling_ids": [ + "654", + "663", + "664" + ], + "sibling_paths": [ + "Travel > Travel Accessories", + "Travel > Travel Preparation and Advice", + "Travel > Travel Type" + ] + }, + { + "canonical_surface_name": "Africa Travel", + "child_ids": [], + "child_paths": [], + "label": "Africa Travel", + "level": 3, + "node_id": "656", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Africa Travel" + ], + "path_label": "Travel > Travel Locations > Africa Travel", + "sibling_ids": [ + "657", + "658", + "659", + "660", + "661", + "662" + ], + "sibling_paths": [ + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > Polar Travel", + "Travel > Travel Locations > South America Travel" + ] + }, + { + "canonical_surface_name": "Asia Travel", + "child_ids": [], + "child_paths": [], + "label": "Asia Travel", + "level": 3, + "node_id": "657", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Asia Travel" + ], + "path_label": "Travel > Travel Locations > Asia Travel", + "sibling_ids": [ + "656", + "658", + "659", + "660", + "661", + "662" + ], + "sibling_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > Polar Travel", + "Travel > Travel Locations > South America Travel" + ] + }, + { + "canonical_surface_name": "Australia and Oceania Travel", + "child_ids": [], + "child_paths": [], + "label": "Australia and Oceania Travel", + "level": 3, + "node_id": "658", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Australia and Oceania Travel" + ], + "path_label": "Travel > Travel Locations > Australia and Oceania Travel", + "sibling_ids": [ + "656", + "657", + "659", + "660", + "661", + "662" + ], + "sibling_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > Polar Travel", + "Travel > Travel Locations > South America Travel" + ] + }, + { + "canonical_surface_name": "Europe Travel", + "child_ids": [], + "child_paths": [], + "label": "Europe Travel", + "level": 3, + "node_id": "659", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Europe Travel" + ], + "path_label": "Travel > Travel Locations > Europe Travel", + "sibling_ids": [ + "656", + "657", + "658", + "660", + "661", + "662" + ], + "sibling_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > Polar Travel", + "Travel > Travel Locations > South America Travel" + ] + }, + { + "canonical_surface_name": "North America Travel", + "child_ids": [], + "child_paths": [], + "label": "North America Travel", + "level": 3, + "node_id": "660", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "North America Travel" + ], + "path_label": "Travel > Travel Locations > North America Travel", + "sibling_ids": [ + "656", + "657", + "658", + "659", + "661", + "662" + ], + "sibling_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > Polar Travel", + "Travel > Travel Locations > South America Travel" + ] + }, + { + "canonical_surface_name": "Polar Travel", + "child_ids": [], + "child_paths": [], + "label": "Polar Travel", + "level": 3, + "node_id": "661", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Polar Travel" + ], + "path_label": "Travel > Travel Locations > Polar Travel", + "sibling_ids": [ + "656", + "657", + "658", + "659", + "660", + "662" + ], + "sibling_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > South America Travel" + ] + }, + { + "canonical_surface_name": "South America Travel", + "child_ids": [], + "child_paths": [], + "label": "South America Travel", + "level": 3, + "node_id": "662", + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "South America Travel" + ], + "path_label": "Travel > Travel Locations > South America Travel", + "sibling_ids": [ + "656", + "657", + "658", + "659", + "660", + "661" + ], + "sibling_paths": [ + "Travel > Travel Locations > Africa Travel", + "Travel > Travel Locations > Asia Travel", + "Travel > Travel Locations > Australia and Oceania Travel", + "Travel > Travel Locations > Europe Travel", + "Travel > Travel Locations > North America Travel", + "Travel > Travel Locations > Polar Travel" + ] + }, + { + "canonical_surface_name": "Travel Preparation and Advice", + "child_ids": [], + "child_paths": [], + "label": "Travel Preparation and Advice", + "level": 2, + "node_id": "663", + "parent_id": "653", + "path": [ + "Travel", + "Travel Preparation and Advice" + ], + "path_label": "Travel > Travel Preparation and Advice", + "sibling_ids": [ + "654", + "655", + "664" + ], + "sibling_paths": [ + "Travel > Travel Accessories", + "Travel > Travel Locations", + "Travel > Travel Type" + ] + }, + { + "canonical_surface_name": "Travel Type", + "child_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "child_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ], + "label": "Travel Type", + "level": 2, + "node_id": "664", + "parent_id": "653", + "path": [ + "Travel", + "Travel Type" + ], + "path_label": "Travel > Travel Type", + "sibling_ids": [ + "654", + "655", + "663" + ], + "sibling_paths": [ + "Travel > Travel Accessories", + "Travel > Travel Locations", + "Travel > Travel Preparation and Advice" + ] + }, + { + "canonical_surface_name": "Adventure Travel", + "child_ids": [], + "child_paths": [], + "label": "Adventure Travel", + "level": 3, + "node_id": "665", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Adventure Travel" + ], + "path_label": "Travel > Travel Type > Adventure Travel", + "sibling_ids": [ + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Air Travel", + "child_ids": [], + "child_paths": [], + "label": "Air Travel", + "level": 3, + "node_id": "672", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Air Travel" + ], + "path_label": "Travel > Travel Type > Air Travel", + "sibling_ids": [ + "665", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Beach Travel", + "child_ids": [], + "child_paths": [], + "label": "Beach Travel", + "level": 3, + "node_id": "673", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Beach Travel" + ], + "path_label": "Travel > Travel Type > Beach Travel", + "sibling_ids": [ + "665", + "672", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Bed & Breakfasts", + "child_ids": [], + "child_paths": [], + "label": "Bed & Breakfasts", + "level": 3, + "node_id": "674", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Bed & Breakfasts" + ], + "path_label": "Travel > Travel Type > Bed & Breakfasts", + "sibling_ids": [ + "665", + "672", + "673", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Budget Travel", + "child_ids": [], + "child_paths": [], + "label": "Budget Travel", + "level": 3, + "node_id": "675", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Budget Travel" + ], + "path_label": "Travel > Travel Type > Budget Travel", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Business Travel", + "child_ids": [], + "child_paths": [], + "label": "Business Travel", + "level": 3, + "node_id": "676", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Business Travel" + ], + "path_label": "Travel > Travel Type > Business Travel", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Camping", + "child_ids": [], + "child_paths": [], + "label": "Camping", + "level": 3, + "node_id": "677", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Camping" + ], + "path_label": "Travel > Travel Type > Camping", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "678", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Cruises", + "child_ids": [], + "child_paths": [], + "label": "Cruises", + "level": 3, + "node_id": "678", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Cruises" + ], + "path_label": "Travel > Travel Type > Cruises", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "679", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Day Trips", + "child_ids": [], + "child_paths": [], + "label": "Day Trips", + "level": 3, + "node_id": "679", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Day Trips" + ], + "path_label": "Travel > Travel Type > Day Trips", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "666", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Family Travel", + "child_ids": [], + "child_paths": [], + "label": "Family Travel", + "level": 3, + "node_id": "666", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Family Travel" + ], + "path_label": "Travel > Travel Type > Family Travel", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "667", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Honeymoons and Getaways", + "child_ids": [], + "child_paths": [], + "label": "Honeymoons and Getaways", + "level": 3, + "node_id": "667", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Honeymoons and Getaways" + ], + "path_label": "Travel > Travel Type > Honeymoons and Getaways", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "668", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Hotels and Motels", + "child_ids": [], + "child_paths": [], + "label": "Hotels and Motels", + "level": 3, + "node_id": "668", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Hotels and Motels" + ], + "path_label": "Travel > Travel Type > Hotels and Motels", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "669", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Rail Travel", + "child_ids": [], + "child_paths": [], + "label": "Rail Travel", + "level": 3, + "node_id": "669", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Rail Travel" + ], + "path_label": "Travel > Travel Type > Rail Travel", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "670", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Road Trips", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Road Trips", + "child_ids": [], + "child_paths": [], + "label": "Road Trips", + "level": 3, + "node_id": "670", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Road Trips" + ], + "path_label": "Travel > Travel Type > Road Trips", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "671" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Spas" + ] + }, + { + "canonical_surface_name": "Spas", + "child_ids": [], + "child_paths": [], + "label": "Spas", + "level": 3, + "node_id": "671", + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Spas" + ], + "path_label": "Travel > Travel Type > Spas", + "sibling_ids": [ + "665", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "666", + "667", + "668", + "669", + "670" + ], + "sibling_paths": [ + "Travel > Travel Type > Adventure Travel", + "Travel > Travel Type > Air Travel", + "Travel > Travel Type > Beach Travel", + "Travel > Travel Type > Bed & Breakfasts", + "Travel > Travel Type > Budget Travel", + "Travel > Travel Type > Business Travel", + "Travel > Travel Type > Camping", + "Travel > Travel Type > Cruises", + "Travel > Travel Type > Day Trips", + "Travel > Travel Type > Family Travel", + "Travel > Travel Type > Honeymoons and Getaways", + "Travel > Travel Type > Hotels and Motels", + "Travel > Travel Type > Rail Travel", + "Travel > Travel Type > Road Trips" + ] + }, + { + "canonical_surface_name": "Video Gaming", + "child_ids": [ + "681", + "683", + "684", + "685", + "682" + ], + "child_paths": [ + "Video Gaming > Console Games", + "Video Gaming > Mobile Games", + "Video Gaming > PC Games", + "Video Gaming > Video Game Genres", + "Video Gaming > eSports" + ], + "label": "Video Gaming", + "level": 1, + "node_id": "680", + "parent_id": null, + "path": [ + "Video Gaming" + ], + "path_label": "Video Gaming", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "389" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "War and Conflicts" + ] + }, + { + "canonical_surface_name": "Console Games", + "child_ids": [], + "child_paths": [], + "label": "Console Games", + "level": 2, + "node_id": "681", + "parent_id": "680", + "path": [ + "Video Gaming", + "Console Games" + ], + "path_label": "Video Gaming > Console Games", + "sibling_ids": [ + "683", + "684", + "685", + "682" + ], + "sibling_paths": [ + "Video Gaming > Mobile Games", + "Video Gaming > PC Games", + "Video Gaming > Video Game Genres", + "Video Gaming > eSports" + ] + }, + { + "canonical_surface_name": "eSports", + "child_ids": [], + "child_paths": [], + "label": "eSports", + "level": 2, + "node_id": "682", + "parent_id": "680", + "path": [ + "Video Gaming", + "eSports" + ], + "path_label": "Video Gaming > eSports", + "sibling_ids": [ + "681", + "683", + "684", + "685" + ], + "sibling_paths": [ + "Video Gaming > Console Games", + "Video Gaming > Mobile Games", + "Video Gaming > PC Games", + "Video Gaming > Video Game Genres" + ] + }, + { + "canonical_surface_name": "Mobile Games", + "child_ids": [], + "child_paths": [], + "label": "Mobile Games", + "level": 2, + "node_id": "683", + "parent_id": "680", + "path": [ + "Video Gaming", + "Mobile Games" + ], + "path_label": "Video Gaming > Mobile Games", + "sibling_ids": [ + "681", + "684", + "685", + "682" + ], + "sibling_paths": [ + "Video Gaming > Console Games", + "Video Gaming > PC Games", + "Video Gaming > Video Game Genres", + "Video Gaming > eSports" + ] + }, + { + "canonical_surface_name": "PC Games", + "child_ids": [], + "child_paths": [], + "label": "PC Games", + "level": 2, + "node_id": "684", + "parent_id": "680", + "path": [ + "Video Gaming", + "PC Games" + ], + "path_label": "Video Gaming > PC Games", + "sibling_ids": [ + "681", + "683", + "685", + "682" + ], + "sibling_paths": [ + "Video Gaming > Console Games", + "Video Gaming > Mobile Games", + "Video Gaming > Video Game Genres", + "Video Gaming > eSports" + ] + }, + { + "canonical_surface_name": "Video Game Genres", + "child_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "child_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ], + "label": "Video Game Genres", + "level": 2, + "node_id": "685", + "parent_id": "680", + "path": [ + "Video Gaming", + "Video Game Genres" + ], + "path_label": "Video Gaming > Video Game Genres", + "sibling_ids": [ + "681", + "683", + "684", + "682" + ], + "sibling_paths": [ + "Video Gaming > Console Games", + "Video Gaming > Mobile Games", + "Video Gaming > PC Games", + "Video Gaming > eSports" + ] + }, + { + "canonical_surface_name": "Action Video Games", + "child_ids": [], + "child_paths": [], + "label": "Action Video Games", + "level": 3, + "node_id": "686", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Action Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Action Video Games", + "sibling_ids": [ + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Action-Adventure Video Games", + "child_ids": [], + "child_paths": [], + "label": "Action-Adventure Video Games", + "level": 3, + "node_id": "691", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Action-Adventure Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "sibling_ids": [ + "686", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Adult Video Games", + "child_ids": [], + "child_paths": [], + "label": "Adult Video Games", + "level": 3, + "node_id": "MQ2XML", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Adult Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Adult Video Games", + "sibling_ids": [ + "686", + "691", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Adventure Video Games", + "child_ids": [], + "child_paths": [], + "label": "Adventure Video Games", + "level": 3, + "node_id": "692", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Adventure Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Adventure Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Casino and Gambling Video Games", + "child_ids": [], + "child_paths": [], + "label": "Casino and Gambling Video Games", + "level": 3, + "node_id": "ZJG29S", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Casino and Gambling Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Casual Games", + "child_ids": [], + "child_paths": [], + "label": "Casual Games", + "level": 3, + "node_id": "693", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Casual Games" + ], + "path_label": "Video Gaming > Video Game Genres > Casual Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Educational Video Games", + "child_ids": [], + "child_paths": [], + "label": "Educational Video Games", + "level": 3, + "node_id": "694", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Educational Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Educational Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Exercise and Fitness Video Games", + "child_ids": [], + "child_paths": [], + "label": "Exercise and Fitness Video Games", + "level": 3, + "node_id": "695", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Exercise and Fitness Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Family Video Games", + "child_ids": [], + "child_paths": [], + "label": "Family Video Games", + "level": 3, + "node_id": "VWGKS7", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Family Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Family Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Horror Video Games", + "child_ids": [], + "child_paths": [], + "label": "Horror Video Games", + "level": 3, + "node_id": "II436J", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Horror Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Horror Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "MMOs", + "child_ids": [], + "child_paths": [], + "label": "MMOs", + "level": 3, + "node_id": "696", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "MMOs" + ], + "path_label": "Video Gaming > Video Game Genres > MMOs", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "697", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Music and Party Video Games", + "child_ids": [], + "child_paths": [], + "label": "Music and Party Video Games", + "level": 3, + "node_id": "697", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Music and Party Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Music and Party Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "698", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Puzzle Video Games", + "child_ids": [], + "child_paths": [], + "label": "Puzzle Video Games", + "level": 3, + "node_id": "698", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Puzzle Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Puzzle Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "VK7KD0", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Racing Video Games", + "child_ids": [], + "child_paths": [], + "label": "Racing Video Games", + "level": 3, + "node_id": "VK7KD0", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Racing Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Racing Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "687", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Role-Playing Video Games", + "child_ids": [], + "child_paths": [], + "label": "Role-Playing Video Games", + "level": 3, + "node_id": "687", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Role-Playing Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Role-Playing Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "688", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Simulation Video Games", + "child_ids": [], + "child_paths": [], + "label": "Simulation Video Games", + "level": 3, + "node_id": "688", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Simulation Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Simulation Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "689", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Sports Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Sports Video Games", + "child_ids": [], + "child_paths": [], + "label": "Sports Video Games", + "level": 3, + "node_id": "689", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Sports Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Sports Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "690" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Strategy Video Games" + ] + }, + { + "canonical_surface_name": "Strategy Video Games", + "child_ids": [], + "child_paths": [], + "label": "Strategy Video Games", + "level": 3, + "node_id": "690", + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Strategy Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Strategy Video Games", + "sibling_ids": [ + "686", + "691", + "MQ2XML", + "692", + "ZJG29S", + "693", + "694", + "695", + "VWGKS7", + "II436J", + "696", + "697", + "698", + "VK7KD0", + "687", + "688", + "689" + ], + "sibling_paths": [ + "Video Gaming > Video Game Genres > Action Video Games", + "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "Video Gaming > Video Game Genres > Adult Video Games", + "Video Gaming > Video Game Genres > Adventure Video Games", + "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "Video Gaming > Video Game Genres > Casual Games", + "Video Gaming > Video Game Genres > Educational Video Games", + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "Video Gaming > Video Game Genres > Family Video Games", + "Video Gaming > Video Game Genres > Horror Video Games", + "Video Gaming > Video Game Genres > MMOs", + "Video Gaming > Video Game Genres > Music and Party Video Games", + "Video Gaming > Video Game Genres > Puzzle Video Games", + "Video Gaming > Video Game Genres > Racing Video Games", + "Video Gaming > Video Game Genres > Role-Playing Video Games", + "Video Gaming > Video Game Genres > Simulation Video Games", + "Video Gaming > Video Game Genres > Sports Video Games" + ] + }, + { + "canonical_surface_name": "War and Conflicts", + "child_ids": [], + "child_paths": [], + "label": "War and Conflicts", + "level": 1, + "node_id": "389", + "parent_id": null, + "path": [ + "War and Conflicts" + ], + "path_label": "War and Conflicts", + "sibling_ids": [ + "150", + "1", + "42", + "52", + "123", + "380", + "381", + "132", + "JLBCU7", + "8VZQHL", + "186", + "201", + "210", + "SPSHQ5", + "223", + "239", + "1KXCLD", + "274", + "383", + "286", + "163", + "391", + "422", + "386", + "432", + "441", + "453", + "464", + "v9i3On", + "473", + "483", + "552", + "596", + "653", + "680" + ], + "sibling_paths": [ + "Attractions", + "Automotive", + "Books and Literature", + "Business and Finance", + "Careers", + "Crime", + "Disasters", + "Education", + "Entertainment", + "Events", + "Family and Relationships", + "Fine Art", + "Food & Drink", + "Genres", + "Healthy Living", + "Hobbies & Interests", + "Holidays", + "Home & Garden", + "Law", + "Medical Health", + "Personal Celebrations & Life Events", + "Personal Finance", + "Pets", + "Politics", + "Pop Culture", + "Real Estate", + "Religion & Spirituality", + "Science", + "Sensitive Topics", + "Shopping", + "Sports", + "Style & Fashion", + "Technology & Computing", + "Travel", + "Video Gaming" + ] + } + ], + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0" +} diff --git a/artifacts/iab/taxonomy_nodes.json b/artifacts/iab/taxonomy_nodes.json new file mode 100644 index 0000000000000000000000000000000000000000..3310c041af5ea20a7cd58b0dd5c97d2145ae2c1f --- /dev/null +++ b/artifacts/iab/taxonomy_nodes.json @@ -0,0 +1,12677 @@ +[ + { + "keywords": [ + "attractions" + ], + "label": "Attractions", + "level": 1, + "parent_id": null, + "path": [ + "Attractions" + ], + "path_label": "Attractions", + "retrieval_text": "IAB category path: Attractions. Canonical label: Attractions. Tier depth: 1. Keywords: attractions", + "unique_id": "150" + }, + { + "keywords": [ + "amusement and theme parks", + "attractions", + "attractions amusement and theme parks" + ], + "label": "Amusement and Theme Parks", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Amusement and Theme Parks" + ], + "path_label": "Attractions > Amusement and Theme Parks", + "retrieval_text": "IAB category path: Attractions > Amusement and Theme Parks. Canonical label: Amusement and Theme Parks. Tier depth: 2. Parent path: Attractions. Keywords: amusement and theme parks, attractions, attractions amusement and theme parks", + "unique_id": "151" + }, + { + "keywords": [ + "attractions", + "attractions bars and restaurants", + "bars and restaurants" + ], + "label": "Bars & Restaurants", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Bars & Restaurants" + ], + "path_label": "Attractions > Bars & Restaurants", + "retrieval_text": "IAB category path: Attractions > Bars & Restaurants. Canonical label: Bars & Restaurants. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions bars and restaurants, bars and restaurants", + "unique_id": "179" + }, + { + "keywords": [ + "attractions", + "attractions casinos and gambling", + "casinos and gambling" + ], + "label": "Casinos & Gambling", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Casinos & Gambling" + ], + "path_label": "Attractions > Casinos & Gambling", + "retrieval_text": "IAB category path: Attractions > Casinos & Gambling. Canonical label: Casinos & Gambling. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions casinos and gambling, casinos and gambling", + "unique_id": "181" + }, + { + "keywords": [ + "attractions", + "attractions historic site and landmark tours", + "historic site and landmark tours" + ], + "label": "Historic Site and Landmark Tours", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Historic Site and Landmark Tours" + ], + "path_label": "Attractions > Historic Site and Landmark Tours", + "retrieval_text": "IAB category path: Attractions > Historic Site and Landmark Tours. Canonical label: Historic Site and Landmark Tours. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions historic site and landmark tours, historic site and landmark tours", + "unique_id": "153" + }, + { + "keywords": [ + "attractions", + "attractions malls and shopping centers", + "malls and shopping centers" + ], + "label": "Malls & Shopping Centers", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Malls & Shopping Centers" + ], + "path_label": "Attractions > Malls & Shopping Centers", + "retrieval_text": "IAB category path: Attractions > Malls & Shopping Centers. Canonical label: Malls & Shopping Centers. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions malls and shopping centers, malls and shopping centers", + "unique_id": "154" + }, + { + "keywords": [ + "attractions", + "attractions museums and galleries", + "museums and galleries" + ], + "label": "Museums & Galleries", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Museums & Galleries" + ], + "path_label": "Attractions > Museums & Galleries", + "retrieval_text": "IAB category path: Attractions > Museums & Galleries. Canonical label: Museums & Galleries. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions museums and galleries, museums and galleries", + "unique_id": "155" + }, + { + "keywords": [ + "attractions", + "attractions nightclubs", + "nightclubs" + ], + "label": "Nightclubs", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Nightclubs" + ], + "path_label": "Attractions > Nightclubs", + "retrieval_text": "IAB category path: Attractions > Nightclubs. Canonical label: Nightclubs. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions nightclubs, nightclubs", + "unique_id": "158" + }, + { + "keywords": [ + "attractions", + "attractions outdoor activities", + "outdoor activities" + ], + "label": "Outdoor Activities", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Outdoor Activities" + ], + "path_label": "Attractions > Outdoor Activities", + "retrieval_text": "IAB category path: Attractions > Outdoor Activities. Canonical label: Outdoor Activities. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions outdoor activities, outdoor activities", + "unique_id": "159" + }, + { + "keywords": [ + "attractions", + "attractions parks and nature", + "parks and nature" + ], + "label": "Parks & Nature", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Parks & Nature" + ], + "path_label": "Attractions > Parks & Nature", + "retrieval_text": "IAB category path: Attractions > Parks & Nature. Canonical label: Parks & Nature. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions parks and nature, parks and nature", + "unique_id": "160" + }, + { + "keywords": [ + "attractions", + "attractions theater venues", + "theater venues" + ], + "label": "Theater Venues", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Theater Venues" + ], + "path_label": "Attractions > Theater Venues", + "retrieval_text": "IAB category path: Attractions > Theater Venues. Canonical label: Theater Venues. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions theater venues, theater venues", + "unique_id": "177" + }, + { + "keywords": [ + "attractions", + "attractions zoos and aquariums", + "zoos and aquariums" + ], + "label": "Zoos & Aquariums", + "level": 2, + "parent_id": "150", + "path": [ + "Attractions", + "Zoos & Aquariums" + ], + "path_label": "Attractions > Zoos & Aquariums", + "retrieval_text": "IAB category path: Attractions > Zoos & Aquariums. Canonical label: Zoos & Aquariums. Tier depth: 2. Parent path: Attractions. Keywords: attractions, attractions zoos and aquariums, zoos and aquariums", + "unique_id": "178" + }, + { + "keywords": [ + "automotive" + ], + "label": "Automotive", + "level": 1, + "parent_id": null, + "path": [ + "Automotive" + ], + "path_label": "Automotive", + "retrieval_text": "IAB category path: Automotive. Canonical label: Automotive. Tier depth: 1. Keywords: automotive", + "unique_id": "1" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles" + ], + "label": "Auto Body Styles", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Body Styles" + ], + "path_label": "Automotive > Auto Body Styles", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles. Canonical label: Auto Body Styles. Tier depth: 2. Parent path: Automotive. Keywords: auto body styles, automotive, automotive auto body styles", + "unique_id": "2" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles commercial trucks", + "commercial trucks" + ], + "label": "Commercial Trucks", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Commercial Trucks" + ], + "path_label": "Automotive > Auto Body Styles > Commercial Trucks", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Commercial Trucks. Canonical label: Commercial Trucks. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles commercial trucks, commercial trucks", + "unique_id": "3" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles convertible", + "convertible" + ], + "label": "Convertible", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Convertible" + ], + "path_label": "Automotive > Auto Body Styles > Convertible", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Convertible. Canonical label: Convertible. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles convertible, convertible", + "unique_id": "8" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles coupe", + "coupe" + ], + "label": "Coupe", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Coupe" + ], + "path_label": "Automotive > Auto Body Styles > Coupe", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Coupe. Canonical label: Coupe. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles coupe, coupe", + "unique_id": "9" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles crossover", + "crossover" + ], + "label": "Crossover", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Crossover" + ], + "path_label": "Automotive > Auto Body Styles > Crossover", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Crossover. Canonical label: Crossover. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles crossover, crossover", + "unique_id": "10" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles hatchback", + "hatchback" + ], + "label": "Hatchback", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Hatchback" + ], + "path_label": "Automotive > Auto Body Styles > Hatchback", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Hatchback. Canonical label: Hatchback. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles hatchback, hatchback", + "unique_id": "11" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles microcar", + "microcar" + ], + "label": "Microcar", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Microcar" + ], + "path_label": "Automotive > Auto Body Styles > Microcar", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Microcar. Canonical label: Microcar. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles microcar, microcar", + "unique_id": "12" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles minivan", + "minivan" + ], + "label": "Minivan", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Minivan" + ], + "path_label": "Automotive > Auto Body Styles > Minivan", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Minivan. Canonical label: Minivan. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles minivan, minivan", + "unique_id": "13" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles off road vehicles", + "off road vehicles" + ], + "label": "Off-Road Vehicles", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Off-Road Vehicles" + ], + "path_label": "Automotive > Auto Body Styles > Off-Road Vehicles", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Off-Road Vehicles. Canonical label: Off-Road Vehicles. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles off road vehicles, off road vehicles", + "unique_id": "14" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles pickup trucks", + "pickup trucks" + ], + "label": "Pickup Trucks", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Pickup Trucks" + ], + "path_label": "Automotive > Auto Body Styles > Pickup Trucks", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Pickup Trucks. Canonical label: Pickup Trucks. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles pickup trucks, pickup trucks", + "unique_id": "15" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles sedan", + "sedan" + ], + "label": "Sedan", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Sedan" + ], + "path_label": "Automotive > Auto Body Styles > Sedan", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Sedan. Canonical label: Sedan. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles sedan, sedan", + "unique_id": "4" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles station wagon", + "station wagon" + ], + "label": "Station Wagon", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Station Wagon" + ], + "path_label": "Automotive > Auto Body Styles > Station Wagon", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Station Wagon. Canonical label: Station Wagon. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles station wagon, station wagon", + "unique_id": "5" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles suv", + "suv" + ], + "label": "SUV", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "SUV" + ], + "path_label": "Automotive > Auto Body Styles > SUV", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > SUV. Canonical label: SUV. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles suv, suv", + "unique_id": "6" + }, + { + "keywords": [ + "auto body styles", + "automotive", + "automotive auto body styles van", + "van" + ], + "label": "Van", + "level": 3, + "parent_id": "2", + "path": [ + "Automotive", + "Auto Body Styles", + "Van" + ], + "path_label": "Automotive > Auto Body Styles > Van", + "retrieval_text": "IAB category path: Automotive > Auto Body Styles > Van. Canonical label: Van. Tier depth: 3. Parent path: Automotive > Auto Body Styles. Keywords: auto body styles, automotive, automotive auto body styles van, van", + "unique_id": "7" + }, + { + "keywords": [ + "auto buying and selling", + "automotive", + "automotive auto buying and selling" + ], + "label": "Auto Buying and Selling", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Buying and Selling" + ], + "path_label": "Automotive > Auto Buying and Selling", + "retrieval_text": "IAB category path: Automotive > Auto Buying and Selling. Canonical label: Auto Buying and Selling. Tier depth: 2. Parent path: Automotive. Keywords: auto buying and selling, automotive, automotive auto buying and selling", + "unique_id": "30" + }, + { + "keywords": [ + "auto insurance", + "automotive", + "automotive auto insurance" + ], + "label": "Auto Insurance", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Insurance" + ], + "path_label": "Automotive > Auto Insurance", + "retrieval_text": "IAB category path: Automotive > Auto Insurance. Canonical label: Auto Insurance. Tier depth: 2. Parent path: Automotive. Keywords: auto insurance, automotive, automotive auto insurance", + "unique_id": "31" + }, + { + "keywords": [ + "auto parts", + "automotive", + "automotive auto parts" + ], + "label": "Auto Parts", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Parts" + ], + "path_label": "Automotive > Auto Parts", + "retrieval_text": "IAB category path: Automotive > Auto Parts. Canonical label: Auto Parts. Tier depth: 2. Parent path: Automotive. Keywords: auto parts, automotive, automotive auto parts", + "unique_id": "32" + }, + { + "keywords": [ + "auto recalls", + "automotive", + "automotive auto recalls" + ], + "label": "Auto Recalls", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Recalls" + ], + "path_label": "Automotive > Auto Recalls", + "retrieval_text": "IAB category path: Automotive > Auto Recalls. Canonical label: Auto Recalls. Tier depth: 2. Parent path: Automotive. Keywords: auto recalls, automotive, automotive auto recalls", + "unique_id": "33" + }, + { + "keywords": [ + "auto rentals", + "automotive", + "automotive auto rentals" + ], + "label": "Auto Rentals", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Rentals" + ], + "path_label": "Automotive > Auto Rentals", + "retrieval_text": "IAB category path: Automotive > Auto Rentals. Canonical label: Auto Rentals. Tier depth: 2. Parent path: Automotive. Keywords: auto rentals, automotive, automotive auto rentals", + "unique_id": "41" + }, + { + "keywords": [ + "auto repair", + "automotive", + "automotive auto repair" + ], + "label": "Auto Repair", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Repair" + ], + "path_label": "Automotive > Auto Repair", + "retrieval_text": "IAB category path: Automotive > Auto Repair. Canonical label: Auto Repair. Tier depth: 2. Parent path: Automotive. Keywords: auto repair, automotive, automotive auto repair", + "unique_id": "34" + }, + { + "keywords": [ + "auto safety", + "automotive", + "automotive auto safety" + ], + "label": "Auto Safety", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Safety" + ], + "path_label": "Automotive > Auto Safety", + "retrieval_text": "IAB category path: Automotive > Auto Safety. Canonical label: Auto Safety. Tier depth: 2. Parent path: Automotive. Keywords: auto safety, automotive, automotive auto safety", + "unique_id": "35" + }, + { + "keywords": [ + "auto shows", + "automotive", + "automotive auto shows" + ], + "label": "Auto Shows", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Shows" + ], + "path_label": "Automotive > Auto Shows", + "retrieval_text": "IAB category path: Automotive > Auto Shows. Canonical label: Auto Shows. Tier depth: 2. Parent path: Automotive. Keywords: auto shows, automotive, automotive auto shows", + "unique_id": "36" + }, + { + "keywords": [ + "auto technology", + "automotive", + "automotive auto technology" + ], + "label": "Auto Technology", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Technology" + ], + "path_label": "Automotive > Auto Technology", + "retrieval_text": "IAB category path: Automotive > Auto Technology. Canonical label: Auto Technology. Tier depth: 2. Parent path: Automotive. Keywords: auto technology, automotive, automotive auto technology", + "unique_id": "37" + }, + { + "keywords": [ + "auto infotainment technologies", + "auto technology", + "automotive", + "automotive auto technology auto infotainment technologies" + ], + "label": "Auto Infotainment Technologies", + "level": 3, + "parent_id": "37", + "path": [ + "Automotive", + "Auto Technology", + "Auto Infotainment Technologies" + ], + "path_label": "Automotive > Auto Technology > Auto Infotainment Technologies", + "retrieval_text": "IAB category path: Automotive > Auto Technology > Auto Infotainment Technologies. Canonical label: Auto Infotainment Technologies. Tier depth: 3. Parent path: Automotive > Auto Technology. Keywords: auto infotainment technologies, auto technology, automotive, automotive auto technology auto infotainment technologies", + "unique_id": "38" + }, + { + "keywords": [ + "auto navigation systems", + "auto technology", + "automotive", + "automotive auto technology auto navigation systems" + ], + "label": "Auto Navigation Systems", + "level": 3, + "parent_id": "37", + "path": [ + "Automotive", + "Auto Technology", + "Auto Navigation Systems" + ], + "path_label": "Automotive > Auto Technology > Auto Navigation Systems", + "retrieval_text": "IAB category path: Automotive > Auto Technology > Auto Navigation Systems. Canonical label: Auto Navigation Systems. Tier depth: 3. Parent path: Automotive > Auto Technology. Keywords: auto navigation systems, auto technology, automotive, automotive auto technology auto navigation systems", + "unique_id": "39" + }, + { + "keywords": [ + "auto safety technologies", + "auto technology", + "automotive", + "automotive auto technology auto safety technologies" + ], + "label": "Auto Safety Technologies", + "level": 3, + "parent_id": "37", + "path": [ + "Automotive", + "Auto Technology", + "Auto Safety Technologies" + ], + "path_label": "Automotive > Auto Technology > Auto Safety Technologies", + "retrieval_text": "IAB category path: Automotive > Auto Technology > Auto Safety Technologies. Canonical label: Auto Safety Technologies. Tier depth: 3. Parent path: Automotive > Auto Technology. Keywords: auto safety technologies, auto technology, automotive, automotive auto technology auto safety technologies", + "unique_id": "40" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type" + ], + "label": "Auto Type", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Auto Type" + ], + "path_label": "Automotive > Auto Type", + "retrieval_text": "IAB category path: Automotive > Auto Type. Canonical label: Auto Type. Tier depth: 2. Parent path: Automotive. Keywords: auto type, automotive, automotive auto type", + "unique_id": "16" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type budget cars", + "budget cars" + ], + "label": "Budget Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Budget Cars" + ], + "path_label": "Automotive > Auto Type > Budget Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Budget Cars. Canonical label: Budget Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type budget cars, budget cars", + "unique_id": "17" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type certified pre owned cars", + "certified pre owned cars" + ], + "label": "Certified Pre-Owned Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Certified Pre-Owned Cars" + ], + "path_label": "Automotive > Auto Type > Certified Pre-Owned Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Certified Pre-Owned Cars. Canonical label: Certified Pre-Owned Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type certified pre owned cars, certified pre owned cars", + "unique_id": "18" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type classic cars", + "classic cars" + ], + "label": "Classic Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Classic Cars" + ], + "path_label": "Automotive > Auto Type > Classic Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Classic Cars. Canonical label: Classic Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type classic cars, classic cars", + "unique_id": "19" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type concept cars", + "concept cars" + ], + "label": "Concept Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Concept Cars" + ], + "path_label": "Automotive > Auto Type > Concept Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Concept Cars. Canonical label: Concept Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type concept cars, concept cars", + "unique_id": "20" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type driverless cars", + "driverless cars" + ], + "label": "Driverless Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Driverless Cars" + ], + "path_label": "Automotive > Auto Type > Driverless Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Driverless Cars. Canonical label: Driverless Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type driverless cars, driverless cars", + "unique_id": "21" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type green vehicles", + "green vehicles" + ], + "label": "Green Vehicles", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Green Vehicles" + ], + "path_label": "Automotive > Auto Type > Green Vehicles", + "retrieval_text": "IAB category path: Automotive > Auto Type > Green Vehicles. Canonical label: Green Vehicles. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type green vehicles, green vehicles", + "unique_id": "22" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type luxury cars", + "luxury cars" + ], + "label": "Luxury Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Luxury Cars" + ], + "path_label": "Automotive > Auto Type > Luxury Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Luxury Cars. Canonical label: Luxury Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type luxury cars, luxury cars", + "unique_id": "23" + }, + { + "keywords": [ + "auto type", + "automotive", + "automotive auto type performance cars", + "performance cars" + ], + "label": "Performance Cars", + "level": 3, + "parent_id": "16", + "path": [ + "Automotive", + "Auto Type", + "Performance Cars" + ], + "path_label": "Automotive > Auto Type > Performance Cars", + "retrieval_text": "IAB category path: Automotive > Auto Type > Performance Cars. Canonical label: Performance Cars. Tier depth: 3. Parent path: Automotive > Auto Type. Keywords: auto type, automotive, automotive auto type performance cars, performance cars", + "unique_id": "24" + }, + { + "keywords": [ + "automotive", + "automotive car culture", + "car culture" + ], + "label": "Car Culture", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Car Culture" + ], + "path_label": "Automotive > Car Culture", + "retrieval_text": "IAB category path: Automotive > Car Culture. Canonical label: Car Culture. Tier depth: 2. Parent path: Automotive. Keywords: automotive, automotive car culture, car culture", + "unique_id": "25" + }, + { + "keywords": [ + "automotive", + "automotive dash cam videos", + "dash cam videos" + ], + "label": "Dash Cam Videos", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Dash Cam Videos" + ], + "path_label": "Automotive > Dash Cam Videos", + "retrieval_text": "IAB category path: Automotive > Dash Cam Videos. Canonical label: Dash Cam Videos. Tier depth: 2. Parent path: Automotive. Keywords: automotive, automotive dash cam videos, dash cam videos", + "unique_id": "26" + }, + { + "keywords": [ + "automotive", + "automotive motorcycles", + "motorcycles" + ], + "label": "Motorcycles", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Motorcycles" + ], + "path_label": "Automotive > Motorcycles", + "retrieval_text": "IAB category path: Automotive > Motorcycles. Canonical label: Motorcycles. Tier depth: 2. Parent path: Automotive. Keywords: automotive, automotive motorcycles, motorcycles", + "unique_id": "27" + }, + { + "keywords": [ + "automotive", + "automotive road side assistance", + "road side assistance" + ], + "label": "Road-Side Assistance", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Road-Side Assistance" + ], + "path_label": "Automotive > Road-Side Assistance", + "retrieval_text": "IAB category path: Automotive > Road-Side Assistance. Canonical label: Road-Side Assistance. Tier depth: 2. Parent path: Automotive. Keywords: automotive, automotive road side assistance, road side assistance", + "unique_id": "28" + }, + { + "keywords": [ + "automotive", + "automotive scooters", + "scooters" + ], + "label": "Scooters", + "level": 2, + "parent_id": "1", + "path": [ + "Automotive", + "Scooters" + ], + "path_label": "Automotive > Scooters", + "retrieval_text": "IAB category path: Automotive > Scooters. Canonical label: Scooters. Tier depth: 2. Parent path: Automotive. Keywords: automotive, automotive scooters, scooters", + "unique_id": "29" + }, + { + "keywords": [ + "books and literature" + ], + "label": "Books and Literature", + "level": 1, + "parent_id": null, + "path": [ + "Books and Literature" + ], + "path_label": "Books and Literature", + "retrieval_text": "IAB category path: Books and Literature. Canonical label: Books and Literature. Tier depth: 1. Keywords: books and literature", + "unique_id": "42" + }, + { + "keywords": [ + "art and photography", + "books and literature", + "books and literature art and photography" + ], + "label": "Art and Photography", + "level": 2, + "parent_id": "42", + "path": [ + "Books and Literature", + "Art and Photography" + ], + "path_label": "Books and Literature > Art and Photography", + "retrieval_text": "IAB category path: Books and Literature > Art and Photography. Canonical label: Art and Photography. Tier depth: 2. Parent path: Books and Literature. Keywords: art and photography, books and literature, books and literature art and photography", + "unique_id": "43" + }, + { + "keywords": [ + "books and literature", + "books and literature comics and graphic novels", + "comics and graphic novels" + ], + "label": "Comics and Graphic Novels", + "level": 2, + "parent_id": "42", + "path": [ + "Books and Literature", + "Comics and Graphic Novels" + ], + "path_label": "Books and Literature > Comics and Graphic Novels", + "retrieval_text": "IAB category path: Books and Literature > Comics and Graphic Novels. Canonical label: Comics and Graphic Novels. Tier depth: 2. Parent path: Books and Literature. Keywords: books and literature, books and literature comics and graphic novels, comics and graphic novels", + "unique_id": "46" + }, + { + "keywords": [ + "books and literature", + "books and literature fiction", + "fiction" + ], + "label": "Fiction", + "level": 2, + "parent_id": "42", + "path": [ + "Books and Literature", + "Fiction" + ], + "path_label": "Books and Literature > Fiction", + "retrieval_text": "IAB category path: Books and Literature > Fiction. Canonical label: Fiction. Tier depth: 2. Parent path: Books and Literature. Keywords: books and literature, books and literature fiction, fiction", + "unique_id": "48" + }, + { + "keywords": [ + "books and literature", + "books and literature poetry", + "poetry" + ], + "label": "Poetry", + "level": 2, + "parent_id": "42", + "path": [ + "Books and Literature", + "Poetry" + ], + "path_label": "Books and Literature > Poetry", + "retrieval_text": "IAB category path: Books and Literature > Poetry. Canonical label: Poetry. Tier depth: 2. Parent path: Books and Literature. Keywords: books and literature, books and literature poetry, poetry", + "unique_id": "49" + }, + { + "keywords": [ + "business and finance" + ], + "label": "Business and Finance", + "level": 1, + "parent_id": null, + "path": [ + "Business and Finance" + ], + "path_label": "Business and Finance", + "retrieval_text": "IAB category path: Business and Finance. Canonical label: Business and Finance. Tier depth: 1. Keywords: business and finance", + "unique_id": "52" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business" + ], + "label": "Business", + "level": 2, + "parent_id": "52", + "path": [ + "Business and Finance", + "Business" + ], + "path_label": "Business and Finance > Business", + "retrieval_text": "IAB category path: Business and Finance > Business. Canonical label: Business. Tier depth: 2. Parent path: Business and Finance. Keywords: business, business and finance, business and finance business", + "unique_id": "53" + }, + { + "keywords": [ + "business", + "business accounting and finance", + "business and finance", + "business and finance business business accounting and finance" + ], + "label": "Business Accounting & Finance", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Accounting & Finance" + ], + "path_label": "Business and Finance > Business > Business Accounting & Finance", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Accounting & Finance. Canonical label: Business Accounting & Finance. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business accounting and finance, business and finance, business and finance business business accounting and finance", + "unique_id": "54" + }, + { + "keywords": [ + "business", + "business administration", + "business and finance", + "business and finance business business administration" + ], + "label": "Business Administration", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Administration" + ], + "path_label": "Business and Finance > Business > Business Administration", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Administration. Canonical label: Business Administration. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business administration, business and finance, business and finance business business administration", + "unique_id": "62" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance", + "business banking and finance" + ], + "label": "Business Banking & Finance", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance. Canonical label: Business Banking & Finance. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business business banking and finance, business banking and finance", + "unique_id": "63" + }, + { + "keywords": [ + "angel investment", + "business", + "business and finance", + "business and finance business business banking and finance angel investment", + "business banking and finance" + ], + "label": "Angel Investment", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Angel Investment" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Angel Investment. Canonical label: Angel Investment. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: angel investment, business, business and finance, business and finance business business banking and finance angel investment, business banking and finance", + "unique_id": "64" + }, + { + "keywords": [ + "bankruptcy", + "business", + "business and finance", + "business and finance business business banking and finance bankruptcy", + "business banking and finance" + ], + "label": "Bankruptcy", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Bankruptcy" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Bankruptcy. Canonical label: Bankruptcy. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: bankruptcy, business, business and finance, business and finance business business banking and finance bankruptcy, business banking and finance", + "unique_id": "65" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance business loans", + "business banking and finance", + "business loans" + ], + "label": "Business Loans", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Business Loans" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Business Loans", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Business Loans. Canonical label: Business Loans. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: business, business and finance, business and finance business business banking and finance business loans, business banking and finance, business loans", + "unique_id": "66" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance debt factoring and invoice discounting", + "business banking and finance", + "debt factoring and invoice discounting" + ], + "label": "Debt Factoring & Invoice Discounting", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Debt Factoring & Invoice Discounting" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting. Canonical label: Debt Factoring & Invoice Discounting. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: business, business and finance, business and finance business business banking and finance debt factoring and invoice discounting, business banking and finance, debt factoring and invoice discounting", + "unique_id": "67" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance mergers and acquisitions", + "business banking and finance", + "mergers and acquisitions" + ], + "label": "Mergers and Acquisitions", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Mergers and Acquisitions" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions. Canonical label: Mergers and Acquisitions. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: business, business and finance, business and finance business business banking and finance mergers and acquisitions, business banking and finance, mergers and acquisitions", + "unique_id": "68" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance private equity", + "business banking and finance", + "private equity" + ], + "label": "Private Equity", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Private Equity" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Private Equity", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Private Equity. Canonical label: Private Equity. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: business, business and finance, business and finance business business banking and finance private equity, business banking and finance, private equity", + "unique_id": "69" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance sale and lease back", + "business banking and finance", + "sale and lease back" + ], + "label": "Sale & Lease Back", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Sale & Lease Back" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Sale & Lease Back. Canonical label: Sale & Lease Back. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: business, business and finance, business and finance business business banking and finance sale and lease back, business banking and finance, sale and lease back", + "unique_id": "70" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business banking and finance venture capital", + "business banking and finance", + "venture capital" + ], + "label": "Venture Capital", + "level": 4, + "parent_id": "63", + "path": [ + "Business and Finance", + "Business", + "Business Banking & Finance", + "Venture Capital" + ], + "path_label": "Business and Finance > Business > Business Banking & Finance > Venture Capital", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Banking & Finance > Venture Capital. Canonical label: Venture Capital. Tier depth: 4. Parent path: Business and Finance > Business > Business Banking & Finance. Keywords: business, business and finance, business and finance business business banking and finance venture capital, business banking and finance, venture capital", + "unique_id": "71" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business i t", + "business i t" + ], + "label": "Business I.T.", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business I.T." + ], + "path_label": "Business and Finance > Business > Business I.T.", + "retrieval_text": "IAB category path: Business and Finance > Business > Business I.T.. Canonical label: Business I.T.. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business business i t, business i t", + "unique_id": "72" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business operations", + "business operations" + ], + "label": "Business Operations", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Operations" + ], + "path_label": "Business and Finance > Business > Business Operations", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Operations. Canonical label: Business Operations. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business business operations, business operations", + "unique_id": "73" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business business utilities", + "business utilities" + ], + "label": "Business Utilities", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Business Utilities" + ], + "path_label": "Business and Finance > Business > Business Utilities", + "retrieval_text": "IAB category path: Business and Finance > Business > Business Utilities. Canonical label: Business Utilities. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business business utilities, business utilities", + "unique_id": "79" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business consumer issues", + "consumer issues" + ], + "label": "Consumer Issues", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Consumer Issues" + ], + "path_label": "Business and Finance > Business > Consumer Issues", + "retrieval_text": "IAB category path: Business and Finance > Business > Consumer Issues. Canonical label: Consumer Issues. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business consumer issues, consumer issues", + "unique_id": "74" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business consumer issues recalls", + "consumer issues", + "recalls" + ], + "label": "Recalls", + "level": 4, + "parent_id": "74", + "path": [ + "Business and Finance", + "Business", + "Consumer Issues", + "Recalls" + ], + "path_label": "Business and Finance > Business > Consumer Issues > Recalls", + "retrieval_text": "IAB category path: Business and Finance > Business > Consumer Issues > Recalls. Canonical label: Recalls. Tier depth: 4. Parent path: Business and Finance > Business > Consumer Issues. Keywords: business, business and finance, business and finance business consumer issues recalls, consumer issues, recalls", + "unique_id": "75" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business executive leadership and management", + "executive leadership and management" + ], + "label": "Executive Leadership & Management", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Executive Leadership & Management" + ], + "path_label": "Business and Finance > Business > Executive Leadership & Management", + "retrieval_text": "IAB category path: Business and Finance > Business > Executive Leadership & Management. Canonical label: Executive Leadership & Management. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business executive leadership and management, executive leadership and management", + "unique_id": "76" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business government business", + "government business" + ], + "label": "Government Business", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Government Business" + ], + "path_label": "Business and Finance > Business > Government Business", + "retrieval_text": "IAB category path: Business and Finance > Business > Government Business. Canonical label: Government Business. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business government business, government business", + "unique_id": "77" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business green solutions", + "green solutions" + ], + "label": "Green Solutions", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Green Solutions" + ], + "path_label": "Business and Finance > Business > Green Solutions", + "retrieval_text": "IAB category path: Business and Finance > Business > Green Solutions. Canonical label: Green Solutions. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business green solutions, green solutions", + "unique_id": "78" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business human resources", + "human resources" + ], + "label": "Human Resources", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Human Resources" + ], + "path_label": "Business and Finance > Business > Human Resources", + "retrieval_text": "IAB category path: Business and Finance > Business > Human Resources. Canonical label: Human Resources. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business human resources, human resources", + "unique_id": "55" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business large business", + "large business" + ], + "label": "Large Business", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Large Business" + ], + "path_label": "Business and Finance > Business > Large Business", + "retrieval_text": "IAB category path: Business and Finance > Business > Large Business. Canonical label: Large Business. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business large business, large business", + "unique_id": "56" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business logistics", + "logistics" + ], + "label": "Logistics", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Logistics" + ], + "path_label": "Business and Finance > Business > Logistics", + "retrieval_text": "IAB category path: Business and Finance > Business > Logistics. Canonical label: Logistics. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business logistics, logistics", + "unique_id": "57" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business marketing and advertising", + "marketing and advertising" + ], + "label": "Marketing and Advertising", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Marketing and Advertising" + ], + "path_label": "Business and Finance > Business > Marketing and Advertising", + "retrieval_text": "IAB category path: Business and Finance > Business > Marketing and Advertising. Canonical label: Marketing and Advertising. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business marketing and advertising, marketing and advertising", + "unique_id": "58" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business sales", + "sales" + ], + "label": "Sales", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Sales" + ], + "path_label": "Business and Finance > Business > Sales", + "retrieval_text": "IAB category path: Business and Finance > Business > Sales. Canonical label: Sales. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business sales, sales", + "unique_id": "59" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business small and medium sized business", + "small and medium sized business" + ], + "label": "Small and Medium-sized Business", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Small and Medium-sized Business" + ], + "path_label": "Business and Finance > Business > Small and Medium-sized Business", + "retrieval_text": "IAB category path: Business and Finance > Business > Small and Medium-sized Business. Canonical label: Small and Medium-sized Business. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business small and medium sized business, small and medium sized business", + "unique_id": "60" + }, + { + "keywords": [ + "business", + "business and finance", + "business and finance business startups", + "startups" + ], + "label": "Startups", + "level": 3, + "parent_id": "53", + "path": [ + "Business and Finance", + "Business", + "Startups" + ], + "path_label": "Business and Finance > Business > Startups", + "retrieval_text": "IAB category path: Business and Finance > Business > Startups. Canonical label: Startups. Tier depth: 3. Parent path: Business and Finance > Business. Keywords: business, business and finance, business and finance business startups, startups", + "unique_id": "61" + }, + { + "keywords": [ + "business and finance", + "business and finance economy", + "economy" + ], + "label": "Economy", + "level": 2, + "parent_id": "52", + "path": [ + "Business and Finance", + "Economy" + ], + "path_label": "Business and Finance > Economy", + "retrieval_text": "IAB category path: Business and Finance > Economy. Canonical label: Economy. Tier depth: 2. Parent path: Business and Finance. Keywords: business and finance, business and finance economy, economy", + "unique_id": "80" + }, + { + "keywords": [ + "business and finance", + "business and finance economy commodities", + "commodities", + "economy" + ], + "label": "Commodities", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Commodities" + ], + "path_label": "Business and Finance > Economy > Commodities", + "retrieval_text": "IAB category path: Business and Finance > Economy > Commodities. Canonical label: Commodities. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy commodities, commodities, economy", + "unique_id": "81" + }, + { + "keywords": [ + "business and finance", + "business and finance economy currencies", + "currencies", + "economy" + ], + "label": "Currencies", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Currencies" + ], + "path_label": "Business and Finance > Economy > Currencies", + "retrieval_text": "IAB category path: Business and Finance > Economy > Currencies. Canonical label: Currencies. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy currencies, currencies, economy", + "unique_id": "82" + }, + { + "keywords": [ + "business and finance", + "business and finance economy financial crisis", + "economy", + "financial crisis" + ], + "label": "Financial Crisis", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Financial Crisis" + ], + "path_label": "Business and Finance > Economy > Financial Crisis", + "retrieval_text": "IAB category path: Business and Finance > Economy > Financial Crisis. Canonical label: Financial Crisis. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy financial crisis, economy, financial crisis", + "unique_id": "83" + }, + { + "keywords": [ + "business and finance", + "business and finance economy financial reform", + "economy", + "financial reform" + ], + "label": "Financial Reform", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Financial Reform" + ], + "path_label": "Business and Finance > Economy > Financial Reform", + "retrieval_text": "IAB category path: Business and Finance > Economy > Financial Reform. Canonical label: Financial Reform. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy financial reform, economy, financial reform", + "unique_id": "84" + }, + { + "keywords": [ + "business and finance", + "business and finance economy financial regulation", + "economy", + "financial regulation" + ], + "label": "Financial Regulation", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Financial Regulation" + ], + "path_label": "Business and Finance > Economy > Financial Regulation", + "retrieval_text": "IAB category path: Business and Finance > Economy > Financial Regulation. Canonical label: Financial Regulation. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy financial regulation, economy, financial regulation", + "unique_id": "85" + }, + { + "keywords": [ + "business and finance", + "business and finance economy gasoline prices", + "economy", + "gasoline prices" + ], + "label": "Gasoline Prices", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Gasoline Prices" + ], + "path_label": "Business and Finance > Economy > Gasoline Prices", + "retrieval_text": "IAB category path: Business and Finance > Economy > Gasoline Prices. Canonical label: Gasoline Prices. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy gasoline prices, economy, gasoline prices", + "unique_id": "86" + }, + { + "keywords": [ + "business and finance", + "business and finance economy housing market", + "economy", + "housing market" + ], + "label": "Housing Market", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Housing Market" + ], + "path_label": "Business and Finance > Economy > Housing Market", + "retrieval_text": "IAB category path: Business and Finance > Economy > Housing Market. Canonical label: Housing Market. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy housing market, economy, housing market", + "unique_id": "87" + }, + { + "keywords": [ + "business and finance", + "business and finance economy interest rates", + "economy", + "interest rates" + ], + "label": "Interest Rates", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Interest Rates" + ], + "path_label": "Business and Finance > Economy > Interest Rates", + "retrieval_text": "IAB category path: Business and Finance > Economy > Interest Rates. Canonical label: Interest Rates. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy interest rates, economy, interest rates", + "unique_id": "88" + }, + { + "keywords": [ + "business and finance", + "business and finance economy job market", + "economy", + "job market" + ], + "label": "Job Market", + "level": 3, + "parent_id": "80", + "path": [ + "Business and Finance", + "Economy", + "Job Market" + ], + "path_label": "Business and Finance > Economy > Job Market", + "retrieval_text": "IAB category path: Business and Finance > Economy > Job Market. Canonical label: Job Market. Tier depth: 3. Parent path: Business and Finance > Economy. Keywords: business and finance, business and finance economy job market, economy, job market", + "unique_id": "89" + }, + { + "keywords": [ + "business and finance", + "business and finance industries", + "industries" + ], + "label": "Industries", + "level": 2, + "parent_id": "52", + "path": [ + "Business and Finance", + "Industries" + ], + "path_label": "Business and Finance > Industries", + "retrieval_text": "IAB category path: Business and Finance > Industries. Canonical label: Industries. Tier depth: 2. Parent path: Business and Finance. Keywords: business and finance, business and finance industries, industries", + "unique_id": "90" + }, + { + "keywords": [ + "advertising industry", + "business and finance", + "business and finance industries advertising industry", + "industries" + ], + "label": "Advertising Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Advertising Industry" + ], + "path_label": "Business and Finance > Industries > Advertising Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Advertising Industry. Canonical label: Advertising Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: advertising industry, business and finance, business and finance industries advertising industry, industries", + "unique_id": "91" + }, + { + "keywords": [ + "agriculture", + "business and finance", + "business and finance industries agriculture", + "industries" + ], + "label": "Agriculture", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Agriculture" + ], + "path_label": "Business and Finance > Industries > Agriculture", + "retrieval_text": "IAB category path: Business and Finance > Industries > Agriculture. Canonical label: Agriculture. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: agriculture, business and finance, business and finance industries agriculture, industries", + "unique_id": "102" + }, + { + "keywords": [ + "apparel industry", + "business and finance", + "business and finance industries apparel industry", + "industries" + ], + "label": "Apparel Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Apparel Industry" + ], + "path_label": "Business and Finance > Industries > Apparel Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Apparel Industry. Canonical label: Apparel Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: apparel industry, business and finance, business and finance industries apparel industry, industries", + "unique_id": "113" + }, + { + "keywords": [ + "automotive industry", + "business and finance", + "business and finance industries automotive industry", + "industries" + ], + "label": "Automotive Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Automotive Industry" + ], + "path_label": "Business and Finance > Industries > Automotive Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Automotive Industry. Canonical label: Automotive Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: automotive industry, business and finance, business and finance industries automotive industry, industries", + "unique_id": "117" + }, + { + "keywords": [ + "aviation industry", + "business and finance", + "business and finance industries aviation industry", + "industries" + ], + "label": "Aviation Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Aviation Industry" + ], + "path_label": "Business and Finance > Industries > Aviation Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Aviation Industry. Canonical label: Aviation Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: aviation industry, business and finance, business and finance industries aviation industry, industries", + "unique_id": "118" + }, + { + "keywords": [ + "biotech and biomedical industry", + "business and finance", + "business and finance industries biotech and biomedical industry", + "industries" + ], + "label": "Biotech and Biomedical Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Biotech and Biomedical Industry" + ], + "path_label": "Business and Finance > Industries > Biotech and Biomedical Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Biotech and Biomedical Industry. Canonical label: Biotech and Biomedical Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: biotech and biomedical industry, business and finance, business and finance industries biotech and biomedical industry, industries", + "unique_id": "119" + }, + { + "keywords": [ + "business and finance", + "business and finance industries civil engineering industry", + "civil engineering industry", + "industries" + ], + "label": "Civil Engineering Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Civil Engineering Industry" + ], + "path_label": "Business and Finance > Industries > Civil Engineering Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Civil Engineering Industry. Canonical label: Civil Engineering Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries civil engineering industry, civil engineering industry, industries", + "unique_id": "120" + }, + { + "keywords": [ + "business and finance", + "business and finance industries construction industry", + "construction industry", + "industries" + ], + "label": "Construction Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Construction Industry" + ], + "path_label": "Business and Finance > Industries > Construction Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Construction Industry. Canonical label: Construction Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries construction industry, construction industry, industries", + "unique_id": "121" + }, + { + "keywords": [ + "business and finance", + "business and finance industries defense industry", + "defense industry", + "industries" + ], + "label": "Defense Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Defense Industry" + ], + "path_label": "Business and Finance > Industries > Defense Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Defense Industry. Canonical label: Defense Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries defense industry, defense industry, industries", + "unique_id": "122" + }, + { + "keywords": [ + "business and finance", + "business and finance industries education industry", + "education industry", + "industries" + ], + "label": "Education industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Education industry" + ], + "path_label": "Business and Finance > Industries > Education industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Education industry. Canonical label: Education industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries education industry, education industry, industries", + "unique_id": "92" + }, + { + "keywords": [ + "business and finance", + "business and finance industries entertainment industry", + "entertainment industry", + "industries" + ], + "label": "Entertainment Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Entertainment Industry" + ], + "path_label": "Business and Finance > Industries > Entertainment Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Entertainment Industry. Canonical label: Entertainment Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries entertainment industry, entertainment industry, industries", + "unique_id": "93" + }, + { + "keywords": [ + "business and finance", + "business and finance industries environmental services industry", + "environmental services industry", + "industries" + ], + "label": "Environmental Services Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Environmental Services Industry" + ], + "path_label": "Business and Finance > Industries > Environmental Services Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Environmental Services Industry. Canonical label: Environmental Services Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries environmental services industry, environmental services industry, industries", + "unique_id": "94" + }, + { + "keywords": [ + "business and finance", + "business and finance industries financial industry", + "financial industry", + "industries" + ], + "label": "Financial Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Financial Industry" + ], + "path_label": "Business and Finance > Industries > Financial Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Financial Industry. Canonical label: Financial Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries financial industry, financial industry, industries", + "unique_id": "95" + }, + { + "keywords": [ + "business and finance", + "business and finance industries food industry", + "food industry", + "industries" + ], + "label": "Food Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Food Industry" + ], + "path_label": "Business and Finance > Industries > Food Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Food Industry. Canonical label: Food Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries food industry, food industry, industries", + "unique_id": "96" + }, + { + "keywords": [ + "business and finance", + "business and finance industries healthcare industry", + "healthcare industry", + "industries" + ], + "label": "Healthcare Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Healthcare Industry" + ], + "path_label": "Business and Finance > Industries > Healthcare Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Healthcare Industry. Canonical label: Healthcare Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries healthcare industry, healthcare industry, industries", + "unique_id": "97" + }, + { + "keywords": [ + "business and finance", + "business and finance industries hospitality industry", + "hospitality industry", + "industries" + ], + "label": "Hospitality Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Hospitality Industry" + ], + "path_label": "Business and Finance > Industries > Hospitality Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Hospitality Industry. Canonical label: Hospitality Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries hospitality industry, hospitality industry, industries", + "unique_id": "98" + }, + { + "keywords": [ + "business and finance", + "business and finance industries information services industry", + "industries", + "information services industry" + ], + "label": "Information Services Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Information Services Industry" + ], + "path_label": "Business and Finance > Industries > Information Services Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Information Services Industry. Canonical label: Information Services Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries information services industry, industries, information services industry", + "unique_id": "99" + }, + { + "keywords": [ + "business and finance", + "business and finance industries legal services industry", + "industries", + "legal services industry" + ], + "label": "Legal Services Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Legal Services Industry" + ], + "path_label": "Business and Finance > Industries > Legal Services Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Legal Services Industry. Canonical label: Legal Services Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries legal services industry, industries, legal services industry", + "unique_id": "100" + }, + { + "keywords": [ + "business and finance", + "business and finance industries logistics and transportation industry", + "industries", + "logistics and transportation industry" + ], + "label": "Logistics and Transportation Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Logistics and Transportation Industry" + ], + "path_label": "Business and Finance > Industries > Logistics and Transportation Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Logistics and Transportation Industry. Canonical label: Logistics and Transportation Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries logistics and transportation industry, industries, logistics and transportation industry", + "unique_id": "101" + }, + { + "keywords": [ + "business and finance", + "business and finance industries management consulting industry", + "industries", + "management consulting industry" + ], + "label": "Management Consulting Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Management Consulting Industry" + ], + "path_label": "Business and Finance > Industries > Management Consulting Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Management Consulting Industry. Canonical label: Management Consulting Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries management consulting industry, industries, management consulting industry", + "unique_id": "103" + }, + { + "keywords": [ + "business and finance", + "business and finance industries manufacturing industry", + "industries", + "manufacturing industry" + ], + "label": "Manufacturing Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Manufacturing Industry" + ], + "path_label": "Business and Finance > Industries > Manufacturing Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Manufacturing Industry. Canonical label: Manufacturing Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries manufacturing industry, industries, manufacturing industry", + "unique_id": "104" + }, + { + "keywords": [ + "business and finance", + "business and finance industries mechanical and industrial engineering industry", + "industries", + "mechanical and industrial engineering industry" + ], + "label": "Mechanical and Industrial Engineering Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Mechanical and Industrial Engineering Industry" + ], + "path_label": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Mechanical and Industrial Engineering Industry. Canonical label: Mechanical and Industrial Engineering Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries mechanical and industrial engineering industry, industries, mechanical and industrial engineering industry", + "unique_id": "105" + }, + { + "keywords": [ + "business and finance", + "business and finance industries media industry", + "industries", + "media industry" + ], + "label": "Media Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Media Industry" + ], + "path_label": "Business and Finance > Industries > Media Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Media Industry. Canonical label: Media Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries media industry, industries, media industry", + "unique_id": "106" + }, + { + "keywords": [ + "business and finance", + "business and finance industries metals industry", + "industries", + "metals industry" + ], + "label": "Metals Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Metals Industry" + ], + "path_label": "Business and Finance > Industries > Metals Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Metals Industry. Canonical label: Metals Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries metals industry, industries, metals industry", + "unique_id": "107" + }, + { + "keywords": [ + "business and finance", + "business and finance industries non profit organizations", + "industries", + "non profit organizations" + ], + "label": "Non-Profit Organizations", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Non-Profit Organizations" + ], + "path_label": "Business and Finance > Industries > Non-Profit Organizations", + "retrieval_text": "IAB category path: Business and Finance > Industries > Non-Profit Organizations. Canonical label: Non-Profit Organizations. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries non profit organizations, industries, non profit organizations", + "unique_id": "108" + }, + { + "keywords": [ + "business and finance", + "business and finance industries pharmaceutical industry", + "industries", + "pharmaceutical industry" + ], + "label": "Pharmaceutical Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Pharmaceutical Industry" + ], + "path_label": "Business and Finance > Industries > Pharmaceutical Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Pharmaceutical Industry. Canonical label: Pharmaceutical Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries pharmaceutical industry, industries, pharmaceutical industry", + "unique_id": "109" + }, + { + "keywords": [ + "business and finance", + "business and finance industries power and energy industry", + "industries", + "power and energy industry" + ], + "label": "Power and Energy Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Power and Energy Industry" + ], + "path_label": "Business and Finance > Industries > Power and Energy Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Power and Energy Industry. Canonical label: Power and Energy Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries power and energy industry, industries, power and energy industry", + "unique_id": "110" + }, + { + "keywords": [ + "business and finance", + "business and finance industries publishing industry", + "industries", + "publishing industry" + ], + "label": "Publishing Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Publishing Industry" + ], + "path_label": "Business and Finance > Industries > Publishing Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Publishing Industry. Canonical label: Publishing Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries publishing industry, industries, publishing industry", + "unique_id": "111" + }, + { + "keywords": [ + "business and finance", + "business and finance industries real estate industry", + "industries", + "real estate industry" + ], + "label": "Real Estate Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Real Estate Industry" + ], + "path_label": "Business and Finance > Industries > Real Estate Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Real Estate Industry. Canonical label: Real Estate Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries real estate industry, industries, real estate industry", + "unique_id": "112" + }, + { + "keywords": [ + "business and finance", + "business and finance industries retail industry", + "industries", + "retail industry" + ], + "label": "Retail Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Retail Industry" + ], + "path_label": "Business and Finance > Industries > Retail Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Retail Industry. Canonical label: Retail Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries retail industry, industries, retail industry", + "unique_id": "114" + }, + { + "keywords": [ + "business and finance", + "business and finance industries technology industry", + "industries", + "technology industry" + ], + "label": "Technology Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Technology Industry" + ], + "path_label": "Business and Finance > Industries > Technology Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Technology Industry. Canonical label: Technology Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries technology industry, industries, technology industry", + "unique_id": "115" + }, + { + "keywords": [ + "business and finance", + "business and finance industries telecommunications industry", + "industries", + "telecommunications industry" + ], + "label": "Telecommunications Industry", + "level": 3, + "parent_id": "90", + "path": [ + "Business and Finance", + "Industries", + "Telecommunications Industry" + ], + "path_label": "Business and Finance > Industries > Telecommunications Industry", + "retrieval_text": "IAB category path: Business and Finance > Industries > Telecommunications Industry. Canonical label: Telecommunications Industry. Tier depth: 3. Parent path: Business and Finance > Industries. Keywords: business and finance, business and finance industries telecommunications industry, industries, telecommunications industry", + "unique_id": "116" + }, + { + "keywords": [ + "careers" + ], + "label": "Careers", + "level": 1, + "parent_id": null, + "path": [ + "Careers" + ], + "path_label": "Careers", + "retrieval_text": "IAB category path: Careers. Canonical label: Careers. Tier depth: 1. Keywords: careers", + "unique_id": "123" + }, + { + "keywords": [ + "apprenticeships", + "careers", + "careers apprenticeships" + ], + "label": "Apprenticeships", + "level": 2, + "parent_id": "123", + "path": [ + "Careers", + "Apprenticeships" + ], + "path_label": "Careers > Apprenticeships", + "retrieval_text": "IAB category path: Careers > Apprenticeships. Canonical label: Apprenticeships. Tier depth: 2. Parent path: Careers. Keywords: apprenticeships, careers, careers apprenticeships", + "unique_id": "124" + }, + { + "keywords": [ + "career advice", + "careers", + "careers career advice" + ], + "label": "Career Advice", + "level": 2, + "parent_id": "123", + "path": [ + "Careers", + "Career Advice" + ], + "path_label": "Careers > Career Advice", + "retrieval_text": "IAB category path: Careers > Career Advice. Canonical label: Career Advice. Tier depth: 2. Parent path: Careers. Keywords: career advice, careers, careers career advice", + "unique_id": "125" + }, + { + "keywords": [ + "career planning", + "careers", + "careers career planning" + ], + "label": "Career Planning", + "level": 2, + "parent_id": "123", + "path": [ + "Careers", + "Career Planning" + ], + "path_label": "Careers > Career Planning", + "retrieval_text": "IAB category path: Careers > Career Planning. Canonical label: Career Planning. Tier depth: 2. Parent path: Careers. Keywords: career planning, careers, careers career planning", + "unique_id": "126" + }, + { + "keywords": [ + "careers", + "careers job search", + "job search" + ], + "label": "Job Search", + "level": 2, + "parent_id": "123", + "path": [ + "Careers", + "Job Search" + ], + "path_label": "Careers > Job Search", + "retrieval_text": "IAB category path: Careers > Job Search. Canonical label: Job Search. Tier depth: 2. Parent path: Careers. Keywords: careers, careers job search, job search", + "unique_id": "127" + }, + { + "keywords": [ + "careers", + "careers job search job fairs", + "job fairs", + "job search" + ], + "label": "Job Fairs", + "level": 3, + "parent_id": "127", + "path": [ + "Careers", + "Job Search", + "Job Fairs" + ], + "path_label": "Careers > Job Search > Job Fairs", + "retrieval_text": "IAB category path: Careers > Job Search > Job Fairs. Canonical label: Job Fairs. Tier depth: 3. Parent path: Careers > Job Search. Keywords: careers, careers job search job fairs, job fairs, job search", + "unique_id": "128" + }, + { + "keywords": [ + "careers", + "careers job search resume writing and advice", + "job search", + "resume writing and advice" + ], + "label": "Resume Writing and Advice", + "level": 3, + "parent_id": "127", + "path": [ + "Careers", + "Job Search", + "Resume Writing and Advice" + ], + "path_label": "Careers > Job Search > Resume Writing and Advice", + "retrieval_text": "IAB category path: Careers > Job Search > Resume Writing and Advice. Canonical label: Resume Writing and Advice. Tier depth: 3. Parent path: Careers > Job Search. Keywords: careers, careers job search resume writing and advice, job search, resume writing and advice", + "unique_id": "129" + }, + { + "keywords": [ + "careers", + "careers remote working", + "remote working" + ], + "label": "Remote Working", + "level": 2, + "parent_id": "123", + "path": [ + "Careers", + "Remote Working" + ], + "path_label": "Careers > Remote Working", + "retrieval_text": "IAB category path: Careers > Remote Working. Canonical label: Remote Working. Tier depth: 2. Parent path: Careers. Keywords: careers, careers remote working, remote working", + "unique_id": "130" + }, + { + "keywords": [ + "careers", + "careers vocational training", + "vocational training" + ], + "label": "Vocational Training", + "level": 2, + "parent_id": "123", + "path": [ + "Careers", + "Vocational Training" + ], + "path_label": "Careers > Vocational Training", + "retrieval_text": "IAB category path: Careers > Vocational Training. Canonical label: Vocational Training. Tier depth: 2. Parent path: Careers. Keywords: careers, careers vocational training, vocational training", + "unique_id": "131" + }, + { + "keywords": [ + "communication", + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications communication" + ], + "label": "Communication", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Communication" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Communication", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Communication. Canonical label: Communication. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: communication, computer software and applications, computing, technology and computing, technology and computing computing computer software and applications communication", + "unique_id": "80DV8O" + }, + { + "keywords": [ + "crime" + ], + "label": "Crime", + "level": 1, + "parent_id": null, + "path": [ + "Crime" + ], + "path_label": "Crime", + "retrieval_text": "IAB category path: Crime. Canonical label: Crime. Tier depth: 1. Keywords: crime", + "unique_id": "380" + }, + { + "keywords": [ + "disasters" + ], + "label": "Disasters", + "level": 1, + "parent_id": null, + "path": [ + "Disasters" + ], + "path_label": "Disasters", + "retrieval_text": "IAB category path: Disasters. Canonical label: Disasters. Tier depth: 1. Keywords: disasters", + "unique_id": "381" + }, + { + "keywords": [ + "education" + ], + "label": "Education", + "level": 1, + "parent_id": null, + "path": [ + "Education" + ], + "path_label": "Education", + "retrieval_text": "IAB category path: Education. Canonical label: Education. Tier depth: 1. Keywords: education", + "unique_id": "132" + }, + { + "keywords": [ + "adult education", + "education", + "education adult education" + ], + "label": "Adult Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Adult Education" + ], + "path_label": "Education > Adult Education", + "retrieval_text": "IAB category path: Education > Adult Education. Canonical label: Adult Education. Tier depth: 2. Parent path: Education. Keywords: adult education, education, education adult education", + "unique_id": "133" + }, + { + "keywords": [ + "college education", + "education", + "education college education" + ], + "label": "College Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "College Education" + ], + "path_label": "Education > College Education", + "retrieval_text": "IAB category path: Education > College Education. Canonical label: College Education. Tier depth: 2. Parent path: Education. Keywords: college education, education, education college education", + "unique_id": "137" + }, + { + "keywords": [ + "college education", + "college planning", + "education", + "education college education college planning" + ], + "label": "College Planning", + "level": 3, + "parent_id": "137", + "path": [ + "Education", + "College Education", + "College Planning" + ], + "path_label": "Education > College Education > College Planning", + "retrieval_text": "IAB category path: Education > College Education > College Planning. Canonical label: College Planning. Tier depth: 3. Parent path: Education > College Education. Keywords: college education, college planning, education, education college education college planning", + "unique_id": "138" + }, + { + "keywords": [ + "college education", + "education", + "education college education postgraduate education", + "postgraduate education" + ], + "label": "Postgraduate Education", + "level": 3, + "parent_id": "137", + "path": [ + "Education", + "College Education", + "Postgraduate Education" + ], + "path_label": "Education > College Education > Postgraduate Education", + "retrieval_text": "IAB category path: Education > College Education > Postgraduate Education. Canonical label: Postgraduate Education. Tier depth: 3. Parent path: Education > College Education. Keywords: college education, education, education college education postgraduate education, postgraduate education", + "unique_id": "139" + }, + { + "keywords": [ + "college education", + "education", + "education college education postgraduate education professional school", + "postgraduate education", + "professional school" + ], + "label": "Professional School", + "level": 4, + "parent_id": "139", + "path": [ + "Education", + "College Education", + "Postgraduate Education", + "Professional School" + ], + "path_label": "Education > College Education > Postgraduate Education > Professional School", + "retrieval_text": "IAB category path: Education > College Education > Postgraduate Education > Professional School. Canonical label: Professional School. Tier depth: 4. Parent path: Education > College Education > Postgraduate Education. Keywords: college education, education, education college education postgraduate education professional school, postgraduate education, professional school", + "unique_id": "140" + }, + { + "keywords": [ + "college education", + "education", + "education college education undergraduate education", + "undergraduate education" + ], + "label": "Undergraduate Education", + "level": 3, + "parent_id": "137", + "path": [ + "Education", + "College Education", + "Undergraduate Education" + ], + "path_label": "Education > College Education > Undergraduate Education", + "retrieval_text": "IAB category path: Education > College Education > Undergraduate Education. Canonical label: Undergraduate Education. Tier depth: 3. Parent path: Education > College Education. Keywords: college education, education, education college education undergraduate education, undergraduate education", + "unique_id": "141" + }, + { + "keywords": [ + "early childhood education", + "education", + "education early childhood education" + ], + "label": "Early Childhood Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Early Childhood Education" + ], + "path_label": "Education > Early Childhood Education", + "retrieval_text": "IAB category path: Education > Early Childhood Education. Canonical label: Early Childhood Education. Tier depth: 2. Parent path: Education. Keywords: early childhood education, education, education early childhood education", + "unique_id": "142" + }, + { + "keywords": [ + "education", + "education educational assessment", + "educational assessment" + ], + "label": "Educational Assessment", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Educational Assessment" + ], + "path_label": "Education > Educational Assessment", + "retrieval_text": "IAB category path: Education > Educational Assessment. Canonical label: Educational Assessment. Tier depth: 2. Parent path: Education. Keywords: education, education educational assessment, educational assessment", + "unique_id": "143" + }, + { + "keywords": [ + "education", + "education educational assessment standardized testing", + "educational assessment", + "standardized testing" + ], + "label": "Standardized Testing", + "level": 3, + "parent_id": "143", + "path": [ + "Education", + "Educational Assessment", + "Standardized Testing" + ], + "path_label": "Education > Educational Assessment > Standardized Testing", + "retrieval_text": "IAB category path: Education > Educational Assessment > Standardized Testing. Canonical label: Standardized Testing. Tier depth: 3. Parent path: Education > Educational Assessment. Keywords: education, education educational assessment standardized testing, educational assessment, standardized testing", + "unique_id": "144" + }, + { + "keywords": [ + "education", + "education homeschooling", + "homeschooling" + ], + "label": "Homeschooling", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Homeschooling" + ], + "path_label": "Education > Homeschooling", + "retrieval_text": "IAB category path: Education > Homeschooling. Canonical label: Homeschooling. Tier depth: 2. Parent path: Education. Keywords: education, education homeschooling, homeschooling", + "unique_id": "145" + }, + { + "keywords": [ + "education", + "education homework and study", + "homework and study" + ], + "label": "Homework and Study", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Homework and Study" + ], + "path_label": "Education > Homework and Study", + "retrieval_text": "IAB category path: Education > Homework and Study. Canonical label: Homework and Study. Tier depth: 2. Parent path: Education. Keywords: education, education homework and study, homework and study", + "unique_id": "146" + }, + { + "keywords": [ + "education", + "education language learning", + "language learning" + ], + "label": "Language Learning", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Language Learning" + ], + "path_label": "Education > Language Learning", + "retrieval_text": "IAB category path: Education > Language Learning. Canonical label: Language Learning. Tier depth: 2. Parent path: Education. Keywords: education, education language learning, language learning", + "unique_id": "147" + }, + { + "keywords": [ + "education", + "education online education", + "online education" + ], + "label": "Online Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Online Education" + ], + "path_label": "Education > Online Education", + "retrieval_text": "IAB category path: Education > Online Education. Canonical label: Online Education. Tier depth: 2. Parent path: Education. Keywords: education, education online education, online education", + "unique_id": "148" + }, + { + "keywords": [ + "education", + "education primary education", + "primary education" + ], + "label": "Primary Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Primary Education" + ], + "path_label": "Education > Primary Education", + "retrieval_text": "IAB category path: Education > Primary Education. Canonical label: Primary Education. Tier depth: 2. Parent path: Education. Keywords: education, education primary education, primary education", + "unique_id": "149" + }, + { + "keywords": [ + "education", + "education private school", + "private school" + ], + "label": "Private School", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Private School" + ], + "path_label": "Education > Private School", + "retrieval_text": "IAB category path: Education > Private School. Canonical label: Private School. Tier depth: 2. Parent path: Education. Keywords: education, education private school, private school", + "unique_id": "134" + }, + { + "keywords": [ + "education", + "education secondary education", + "secondary education" + ], + "label": "Secondary Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Secondary Education" + ], + "path_label": "Education > Secondary Education", + "retrieval_text": "IAB category path: Education > Secondary Education. Canonical label: Secondary Education. Tier depth: 2. Parent path: Education. Keywords: education, education secondary education, secondary education", + "unique_id": "135" + }, + { + "keywords": [ + "education", + "education special education", + "special education" + ], + "label": "Special Education", + "level": 2, + "parent_id": "132", + "path": [ + "Education", + "Special Education" + ], + "path_label": "Education > Special Education", + "retrieval_text": "IAB category path: Education > Special Education. Canonical label: Special Education. Tier depth: 2. Parent path: Education. Keywords: education, education special education, special education", + "unique_id": "136" + }, + { + "keywords": [ + "entertainment" + ], + "label": "Entertainment", + "level": 1, + "parent_id": null, + "path": [ + "Entertainment" + ], + "path_label": "Entertainment", + "retrieval_text": "IAB category path: Entertainment. Canonical label: Entertainment. Tier depth: 1. Keywords: entertainment", + "unique_id": "JLBCU7" + }, + { + "keywords": [ + "entertainment", + "entertainment movies", + "movies" + ], + "label": "Movies", + "level": 2, + "parent_id": "JLBCU7", + "path": [ + "Entertainment", + "Movies" + ], + "path_label": "Entertainment > Movies", + "retrieval_text": "IAB category path: Entertainment > Movies. Canonical label: Movies. Tier depth: 2. Parent path: Entertainment. Keywords: entertainment, entertainment movies, movies", + "unique_id": "324" + }, + { + "keywords": [ + "entertainment", + "entertainment music", + "music" + ], + "label": "Music", + "level": 2, + "parent_id": "JLBCU7", + "path": [ + "Entertainment", + "Music" + ], + "path_label": "Entertainment > Music", + "retrieval_text": "IAB category path: Entertainment > Music. Canonical label: Music. Tier depth: 2. Parent path: Entertainment. Keywords: entertainment, entertainment music, music", + "unique_id": "338" + }, + { + "keywords": [ + "entertainment", + "entertainment television", + "television" + ], + "label": "Television", + "level": 2, + "parent_id": "JLBCU7", + "path": [ + "Entertainment", + "Television" + ], + "path_label": "Entertainment > Television", + "retrieval_text": "IAB category path: Entertainment > Television. Canonical label: Television. Tier depth: 2. Parent path: Entertainment. Keywords: entertainment, entertainment television, television", + "unique_id": "640" + }, + { + "keywords": [ + "events" + ], + "label": "Events", + "level": 1, + "parent_id": null, + "path": [ + "Events" + ], + "path_label": "Events", + "retrieval_text": "IAB category path: Events. Canonical label: Events. Tier depth: 1. Keywords: events", + "unique_id": "8VZQHL" + }, + { + "keywords": [ + "awards shows", + "events", + "events awards shows" + ], + "label": "Awards Shows", + "level": 2, + "parent_id": "8VZQHL", + "path": [ + "Events", + "Awards Shows" + ], + "path_label": "Events > Awards Shows", + "retrieval_text": "IAB category path: Events > Awards Shows. Canonical label: Awards Shows. Tier depth: 2. Parent path: Events. Keywords: awards shows, events, events awards shows", + "unique_id": "162" + }, + { + "keywords": [ + "business expos and conferences", + "events", + "events business expos and conferences" + ], + "label": "Business Expos & Conferences", + "level": 2, + "parent_id": "8VZQHL", + "path": [ + "Events", + "Business Expos & Conferences" + ], + "path_label": "Events > Business Expos & Conferences", + "retrieval_text": "IAB category path: Events > Business Expos & Conferences. Canonical label: Business Expos & Conferences. Tier depth: 2. Parent path: Events. Keywords: business expos and conferences, events, events business expos and conferences", + "unique_id": "180" + }, + { + "keywords": [ + "events", + "events fan conventions", + "fan conventions" + ], + "label": "Fan Conventions", + "level": 2, + "parent_id": "8VZQHL", + "path": [ + "Events", + "Fan Conventions" + ], + "path_label": "Events > Fan Conventions", + "retrieval_text": "IAB category path: Events > Fan Conventions. Canonical label: Fan Conventions. Tier depth: 2. Parent path: Events. Keywords: events, events fan conventions, fan conventions", + "unique_id": "185" + }, + { + "keywords": [ + "family and relationships" + ], + "label": "Family and Relationships", + "level": 1, + "parent_id": null, + "path": [ + "Family and Relationships" + ], + "path_label": "Family and Relationships", + "retrieval_text": "IAB category path: Family and Relationships. Canonical label: Family and Relationships. Tier depth: 1. Keywords: family and relationships", + "unique_id": "186" + }, + { + "keywords": [ + "bereavement", + "family and relationships", + "family and relationships bereavement" + ], + "label": "Bereavement", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Bereavement" + ], + "path_label": "Family and Relationships > Bereavement", + "retrieval_text": "IAB category path: Family and Relationships > Bereavement. Canonical label: Bereavement. Tier depth: 2. Parent path: Family and Relationships. Keywords: bereavement, family and relationships, family and relationships bereavement", + "unique_id": "187" + }, + { + "keywords": [ + "dating", + "family and relationships", + "family and relationships dating" + ], + "label": "Dating", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Dating" + ], + "path_label": "Family and Relationships > Dating", + "retrieval_text": "IAB category path: Family and Relationships > Dating. Canonical label: Dating. Tier depth: 2. Parent path: Family and Relationships. Keywords: dating, family and relationships, family and relationships dating", + "unique_id": "188" + }, + { + "keywords": [ + "divorce", + "family and relationships", + "family and relationships divorce" + ], + "label": "Divorce", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Divorce" + ], + "path_label": "Family and Relationships > Divorce", + "retrieval_text": "IAB category path: Family and Relationships > Divorce. Canonical label: Divorce. Tier depth: 2. Parent path: Family and Relationships. Keywords: divorce, family and relationships, family and relationships divorce", + "unique_id": "189" + }, + { + "keywords": [ + "eldercare", + "family and relationships", + "family and relationships eldercare" + ], + "label": "Eldercare", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Eldercare" + ], + "path_label": "Family and Relationships > Eldercare", + "retrieval_text": "IAB category path: Family and Relationships > Eldercare. Canonical label: Eldercare. Tier depth: 2. Parent path: Family and Relationships. Keywords: eldercare, family and relationships, family and relationships eldercare", + "unique_id": "190" + }, + { + "keywords": [ + "family and relationships", + "family and relationships marriage and civil unions", + "marriage and civil unions" + ], + "label": "Marriage and Civil Unions", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Marriage and Civil Unions" + ], + "path_label": "Family and Relationships > Marriage and Civil Unions", + "retrieval_text": "IAB category path: Family and Relationships > Marriage and Civil Unions. Canonical label: Marriage and Civil Unions. Tier depth: 2. Parent path: Family and Relationships. Keywords: family and relationships, family and relationships marriage and civil unions, marriage and civil unions", + "unique_id": "191" + }, + { + "keywords": [ + "family and relationships", + "family and relationships parenting", + "parenting" + ], + "label": "Parenting", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Parenting" + ], + "path_label": "Family and Relationships > Parenting", + "retrieval_text": "IAB category path: Family and Relationships > Parenting. Canonical label: Parenting. Tier depth: 2. Parent path: Family and Relationships. Keywords: family and relationships, family and relationships parenting, parenting", + "unique_id": "192" + }, + { + "keywords": [ + "adoption and fostering", + "family and relationships", + "family and relationships parenting adoption and fostering", + "parenting" + ], + "label": "Adoption and Fostering", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Adoption and Fostering" + ], + "path_label": "Family and Relationships > Parenting > Adoption and Fostering", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Adoption and Fostering. Canonical label: Adoption and Fostering. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: adoption and fostering, family and relationships, family and relationships parenting adoption and fostering, parenting", + "unique_id": "193" + }, + { + "keywords": [ + "daycare and pre school", + "family and relationships", + "family and relationships parenting daycare and pre school", + "parenting" + ], + "label": "Daycare and Pre-School", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Daycare and Pre-School" + ], + "path_label": "Family and Relationships > Parenting > Daycare and Pre-School", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Daycare and Pre-School. Canonical label: Daycare and Pre-School. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: daycare and pre school, family and relationships, family and relationships parenting daycare and pre school, parenting", + "unique_id": "194" + }, + { + "keywords": [ + "family and relationships", + "family and relationships parenting internet safety", + "internet safety", + "parenting" + ], + "label": "Internet Safety", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Internet Safety" + ], + "path_label": "Family and Relationships > Parenting > Internet Safety", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Internet Safety. Canonical label: Internet Safety. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: family and relationships, family and relationships parenting internet safety, internet safety, parenting", + "unique_id": "195" + }, + { + "keywords": [ + "family and relationships", + "family and relationships parenting parenting babies and toddlers", + "parenting", + "parenting babies and toddlers" + ], + "label": "Parenting Babies and Toddlers", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Parenting Babies and Toddlers" + ], + "path_label": "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Parenting Babies and Toddlers. Canonical label: Parenting Babies and Toddlers. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: family and relationships, family and relationships parenting parenting babies and toddlers, parenting, parenting babies and toddlers", + "unique_id": "196" + }, + { + "keywords": [ + "family and relationships", + "family and relationships parenting parenting children aged 4 11", + "parenting", + "parenting children aged 4 11" + ], + "label": "Parenting Children Aged 4-11", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Parenting Children Aged 4-11" + ], + "path_label": "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Parenting Children Aged 4-11. Canonical label: Parenting Children Aged 4-11. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: family and relationships, family and relationships parenting parenting children aged 4 11, parenting, parenting children aged 4 11", + "unique_id": "197" + }, + { + "keywords": [ + "family and relationships", + "family and relationships parenting parenting teens", + "parenting", + "parenting teens" + ], + "label": "Parenting Teens", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Parenting Teens" + ], + "path_label": "Family and Relationships > Parenting > Parenting Teens", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Parenting Teens. Canonical label: Parenting Teens. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: family and relationships, family and relationships parenting parenting teens, parenting, parenting teens", + "unique_id": "198" + }, + { + "keywords": [ + "family and relationships", + "family and relationships parenting special needs kids", + "parenting", + "special needs kids" + ], + "label": "Special Needs Kids", + "level": 3, + "parent_id": "192", + "path": [ + "Family and Relationships", + "Parenting", + "Special Needs Kids" + ], + "path_label": "Family and Relationships > Parenting > Special Needs Kids", + "retrieval_text": "IAB category path: Family and Relationships > Parenting > Special Needs Kids. Canonical label: Special Needs Kids. Tier depth: 3. Parent path: Family and Relationships > Parenting. Keywords: family and relationships, family and relationships parenting special needs kids, parenting, special needs kids", + "unique_id": "199" + }, + { + "keywords": [ + "family and relationships", + "family and relationships single life", + "single life" + ], + "label": "Single Life", + "level": 2, + "parent_id": "186", + "path": [ + "Family and Relationships", + "Single Life" + ], + "path_label": "Family and Relationships > Single Life", + "retrieval_text": "IAB category path: Family and Relationships > Single Life. Canonical label: Single Life. Tier depth: 2. Parent path: Family and Relationships. Keywords: family and relationships, family and relationships single life, single life", + "unique_id": "200" + }, + { + "keywords": [ + "fine art" + ], + "label": "Fine Art", + "level": 1, + "parent_id": null, + "path": [ + "Fine Art" + ], + "path_label": "Fine Art", + "retrieval_text": "IAB category path: Fine Art. Canonical label: Fine Art. Tier depth: 1. Keywords: fine art", + "unique_id": "201" + }, + { + "keywords": [ + "costume", + "fine art", + "fine art costume" + ], + "label": "Costume", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Costume" + ], + "path_label": "Fine Art > Costume", + "retrieval_text": "IAB category path: Fine Art > Costume. Canonical label: Costume. Tier depth: 2. Parent path: Fine Art. Keywords: costume, fine art, fine art costume", + "unique_id": "202" + }, + { + "keywords": [ + "dance", + "fine art", + "fine art dance" + ], + "label": "Dance", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Dance" + ], + "path_label": "Fine Art > Dance", + "retrieval_text": "IAB category path: Fine Art > Dance. Canonical label: Dance. Tier depth: 2. Parent path: Fine Art. Keywords: dance, fine art, fine art dance", + "unique_id": "203" + }, + { + "keywords": [ + "design", + "fine art", + "fine art design" + ], + "label": "Design", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Design" + ], + "path_label": "Fine Art > Design", + "retrieval_text": "IAB category path: Fine Art > Design. Canonical label: Design. Tier depth: 2. Parent path: Fine Art. Keywords: design, fine art, fine art design", + "unique_id": "204" + }, + { + "keywords": [ + "digital arts", + "fine art", + "fine art digital arts" + ], + "label": "Digital Arts", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Digital Arts" + ], + "path_label": "Fine Art > Digital Arts", + "retrieval_text": "IAB category path: Fine Art > Digital Arts. Canonical label: Digital Arts. Tier depth: 2. Parent path: Fine Art. Keywords: digital arts, fine art, fine art digital arts", + "unique_id": "205" + }, + { + "keywords": [ + "fine art", + "fine art fine art photography", + "fine art photography" + ], + "label": "Fine Art Photography", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Fine Art Photography" + ], + "path_label": "Fine Art > Fine Art Photography", + "retrieval_text": "IAB category path: Fine Art > Fine Art Photography. Canonical label: Fine Art Photography. Tier depth: 2. Parent path: Fine Art. Keywords: fine art, fine art fine art photography, fine art photography", + "unique_id": "206" + }, + { + "keywords": [ + "fine art", + "fine art modern art", + "modern art" + ], + "label": "Modern Art", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Modern Art" + ], + "path_label": "Fine Art > Modern Art", + "retrieval_text": "IAB category path: Fine Art > Modern Art. Canonical label: Modern Art. Tier depth: 2. Parent path: Fine Art. Keywords: fine art, fine art modern art, modern art", + "unique_id": "207" + }, + { + "keywords": [ + "fine art", + "fine art opera", + "opera" + ], + "label": "Opera", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Opera" + ], + "path_label": "Fine Art > Opera", + "retrieval_text": "IAB category path: Fine Art > Opera. Canonical label: Opera. Tier depth: 2. Parent path: Fine Art. Keywords: fine art, fine art opera, opera", + "unique_id": "208" + }, + { + "keywords": [ + "fine art", + "fine art theater", + "theater" + ], + "label": "Theater", + "level": 2, + "parent_id": "201", + "path": [ + "Fine Art", + "Theater" + ], + "path_label": "Fine Art > Theater", + "retrieval_text": "IAB category path: Fine Art > Theater. Canonical label: Theater. Tier depth: 2. Parent path: Fine Art. Keywords: fine art, fine art theater, theater", + "unique_id": "209" + }, + { + "keywords": [ + "food and drink" + ], + "label": "Food & Drink", + "level": 1, + "parent_id": null, + "path": [ + "Food & Drink" + ], + "path_label": "Food & Drink", + "retrieval_text": "IAB category path: Food & Drink. Canonical label: Food & Drink. Tier depth: 1. Keywords: food and drink", + "unique_id": "210" + }, + { + "keywords": [ + "alcoholic beverages", + "food and drink", + "food and drink alcoholic beverages" + ], + "label": "Alcoholic Beverages", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Alcoholic Beverages" + ], + "path_label": "Food & Drink > Alcoholic Beverages", + "retrieval_text": "IAB category path: Food & Drink > Alcoholic Beverages. Canonical label: Alcoholic Beverages. Tier depth: 2. Parent path: Food & Drink. Keywords: alcoholic beverages, food and drink, food and drink alcoholic beverages", + "unique_id": "211" + }, + { + "keywords": [ + "barbecues and grilling", + "food and drink", + "food and drink barbecues and grilling" + ], + "label": "Barbecues and Grilling", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Barbecues and Grilling" + ], + "path_label": "Food & Drink > Barbecues and Grilling", + "retrieval_text": "IAB category path: Food & Drink > Barbecues and Grilling. Canonical label: Barbecues and Grilling. Tier depth: 2. Parent path: Food & Drink. Keywords: barbecues and grilling, food and drink, food and drink barbecues and grilling", + "unique_id": "215" + }, + { + "keywords": [ + "cooking", + "food and drink", + "food and drink cooking" + ], + "label": "Cooking", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Cooking" + ], + "path_label": "Food & Drink > Cooking", + "retrieval_text": "IAB category path: Food & Drink > Cooking. Canonical label: Cooking. Tier depth: 2. Parent path: Food & Drink. Keywords: cooking, food and drink, food and drink cooking", + "unique_id": "216" + }, + { + "keywords": [ + "desserts and baking", + "food and drink", + "food and drink desserts and baking" + ], + "label": "Desserts and Baking", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Desserts and Baking" + ], + "path_label": "Food & Drink > Desserts and Baking", + "retrieval_text": "IAB category path: Food & Drink > Desserts and Baking. Canonical label: Desserts and Baking. Tier depth: 2. Parent path: Food & Drink. Keywords: desserts and baking, food and drink, food and drink desserts and baking", + "unique_id": "217" + }, + { + "keywords": [ + "dining out", + "food and drink", + "food and drink dining out" + ], + "label": "Dining Out", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Dining Out" + ], + "path_label": "Food & Drink > Dining Out", + "retrieval_text": "IAB category path: Food & Drink > Dining Out. Canonical label: Dining Out. Tier depth: 2. Parent path: Food & Drink. Keywords: dining out, food and drink, food and drink dining out", + "unique_id": "218" + }, + { + "keywords": [ + "food allergies", + "food and drink", + "food and drink food allergies" + ], + "label": "Food Allergies", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Food Allergies" + ], + "path_label": "Food & Drink > Food Allergies", + "retrieval_text": "IAB category path: Food & Drink > Food Allergies. Canonical label: Food Allergies. Tier depth: 2. Parent path: Food & Drink. Keywords: food allergies, food and drink, food and drink food allergies", + "unique_id": "219" + }, + { + "keywords": [ + "food and drink", + "food and drink food movements", + "food movements" + ], + "label": "Food Movements", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Food Movements" + ], + "path_label": "Food & Drink > Food Movements", + "retrieval_text": "IAB category path: Food & Drink > Food Movements. Canonical label: Food Movements. Tier depth: 2. Parent path: Food & Drink. Keywords: food and drink, food and drink food movements, food movements", + "unique_id": "220" + }, + { + "keywords": [ + "food and drink", + "food and drink healthy cooking and eating", + "healthy cooking and eating" + ], + "label": "Healthy Cooking and Eating", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Healthy Cooking and Eating" + ], + "path_label": "Food & Drink > Healthy Cooking and Eating", + "retrieval_text": "IAB category path: Food & Drink > Healthy Cooking and Eating. Canonical label: Healthy Cooking and Eating. Tier depth: 2. Parent path: Food & Drink. Keywords: food and drink, food and drink healthy cooking and eating, healthy cooking and eating", + "unique_id": "221" + }, + { + "keywords": [ + "food and drink", + "food and drink non alcoholic beverages", + "non alcoholic beverages" + ], + "label": "Non-Alcoholic Beverages", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Non-Alcoholic Beverages" + ], + "path_label": "Food & Drink > Non-Alcoholic Beverages", + "retrieval_text": "IAB category path: Food & Drink > Non-Alcoholic Beverages. Canonical label: Non-Alcoholic Beverages. Tier depth: 2. Parent path: Food & Drink. Keywords: food and drink, food and drink non alcoholic beverages, non alcoholic beverages", + "unique_id": "222" + }, + { + "keywords": [ + "food and drink", + "food and drink vegan diets", + "vegan diets" + ], + "label": "Vegan Diets", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Vegan Diets" + ], + "path_label": "Food & Drink > Vegan Diets", + "retrieval_text": "IAB category path: Food & Drink > Vegan Diets. Canonical label: Vegan Diets. Tier depth: 2. Parent path: Food & Drink. Keywords: food and drink, food and drink vegan diets, vegan diets", + "unique_id": "212" + }, + { + "keywords": [ + "food and drink", + "food and drink vegetarian diets", + "vegetarian diets" + ], + "label": "Vegetarian Diets", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "Vegetarian Diets" + ], + "path_label": "Food & Drink > Vegetarian Diets", + "retrieval_text": "IAB category path: Food & Drink > Vegetarian Diets. Canonical label: Vegetarian Diets. Tier depth: 2. Parent path: Food & Drink. Keywords: food and drink, food and drink vegetarian diets, vegetarian diets", + "unique_id": "213" + }, + { + "keywords": [ + "food and drink", + "food and drink world cuisines", + "world cuisines" + ], + "label": "World Cuisines", + "level": 2, + "parent_id": "210", + "path": [ + "Food & Drink", + "World Cuisines" + ], + "path_label": "Food & Drink > World Cuisines", + "retrieval_text": "IAB category path: Food & Drink > World Cuisines. Canonical label: World Cuisines. Tier depth: 2. Parent path: Food & Drink. Keywords: food and drink, food and drink world cuisines, world cuisines", + "unique_id": "214" + }, + { + "keywords": [ + "genres" + ], + "label": "Genres", + "level": 1, + "parent_id": null, + "path": [ + "Genres" + ], + "path_label": "Genres", + "retrieval_text": "IAB category path: Genres. Canonical label: Genres. Tier depth: 1. Keywords: genres", + "unique_id": "SPSHQ5" + }, + { + "keywords": [ + "genres", + "genres nature", + "nature" + ], + "label": "Nature", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Nature" + ], + "path_label": "Genres > Nature", + "retrieval_text": "IAB category path: Genres > Nature. Canonical label: Nature. Tier depth: 2. Parent path: Genres. Keywords: genres, genres nature, nature", + "unique_id": "VKIV56" + }, + { + "keywords": [ + "action adventure", + "genres", + "genres action adventure" + ], + "label": "Action/Adventure", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Action/Adventure" + ], + "path_label": "Genres > Action/Adventure", + "retrieval_text": "IAB category path: Genres > Action/Adventure. Canonical label: Action/Adventure. Tier depth: 2. Parent path: Genres. Keywords: action adventure, genres, genres action adventure", + "unique_id": "325" + }, + { + "keywords": [ + "animation and anime", + "genres", + "genres animation and anime" + ], + "label": "Animation & Anime", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Animation & Anime" + ], + "path_label": "Genres > Animation & Anime", + "retrieval_text": "IAB category path: Genres > Animation & Anime. Canonical label: Animation & Anime. Tier depth: 2. Parent path: Genres. Keywords: animation and anime, genres, genres animation and anime", + "unique_id": "641" + }, + { + "keywords": [ + "biographies", + "genres", + "genres biographies" + ], + "label": "Biographies", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Biographies" + ], + "path_label": "Genres > Biographies", + "retrieval_text": "IAB category path: Genres > Biographies. Canonical label: Biographies. Tier depth: 2. Parent path: Genres. Keywords: biographies, genres, genres biographies", + "unique_id": "44" + }, + { + "keywords": [ + "comedy", + "genres", + "genres comedy" + ], + "label": "Comedy", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Comedy" + ], + "path_label": "Genres > Comedy", + "retrieval_text": "IAB category path: Genres > Comedy. Canonical label: Comedy. Tier depth: 2. Parent path: Genres. Keywords: comedy, genres, genres comedy", + "unique_id": "646" + }, + { + "keywords": [ + "documentary", + "genres", + "genres documentary" + ], + "label": "Documentary", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Documentary" + ], + "path_label": "Genres > Documentary", + "retrieval_text": "IAB category path: Genres > Documentary. Canonical label: Documentary. Tier depth: 2. Parent path: Genres. Keywords: documentary, genres, genres documentary", + "unique_id": "332" + }, + { + "keywords": [ + "drama", + "genres", + "genres drama" + ], + "label": "Drama", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Drama" + ], + "path_label": "Genres > Drama", + "retrieval_text": "IAB category path: Genres > Drama. Canonical label: Drama. Tier depth: 2. Parent path: Genres. Keywords: drama, genres, genres drama", + "unique_id": "647" + }, + { + "keywords": [ + "factual", + "genres", + "genres factual" + ], + "label": "Factual", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Factual" + ], + "path_label": "Genres > Factual", + "retrieval_text": "IAB category path: Genres > Factual. Canonical label: Factual. Tier depth: 2. Parent path: Genres. Keywords: factual, genres, genres factual", + "unique_id": "648" + }, + { + "keywords": [ + "family children", + "genres", + "genres family children" + ], + "label": "Family/Children", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Family/Children" + ], + "path_label": "Genres > Family/Children", + "retrieval_text": "IAB category path: Genres > Family/Children. Canonical label: Family/Children. Tier depth: 2. Parent path: Genres. Keywords: family children, genres, genres family children", + "unique_id": "645" + }, + { + "keywords": [ + "fantasy", + "genres", + "genres fantasy" + ], + "label": "Fantasy", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Fantasy" + ], + "path_label": "Genres > Fantasy", + "retrieval_text": "IAB category path: Genres > Fantasy. Canonical label: Fantasy. Tier depth: 2. Parent path: Genres. Keywords: fantasy, genres, genres fantasy", + "unique_id": "335" + }, + { + "keywords": [ + "genres", + "genres history", + "history" + ], + "label": "History", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "History" + ], + "path_label": "Genres > History", + "retrieval_text": "IAB category path: Genres > History. Canonical label: History. Tier depth: 2. Parent path: Genres. Keywords: genres, genres history, history", + "unique_id": "EZWB7V" + }, + { + "keywords": [ + "genres", + "genres holiday", + "holiday" + ], + "label": "Holiday", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Holiday" + ], + "path_label": "Genres > Holiday", + "retrieval_text": "IAB category path: Genres > Holiday. Canonical label: Holiday. Tier depth: 2. Parent path: Genres. Keywords: genres, genres holiday, holiday", + "unique_id": "649" + }, + { + "keywords": [ + "genres", + "genres horror", + "horror" + ], + "label": "Horror", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Horror" + ], + "path_label": "Genres > Horror", + "retrieval_text": "IAB category path: Genres > Horror. Canonical label: Horror. Tier depth: 2. Parent path: Genres. Keywords: genres, genres horror, horror", + "unique_id": "336" + }, + { + "keywords": [ + "genres", + "genres lifestyle", + "lifestyle" + ], + "label": "Lifestyle", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Lifestyle" + ], + "path_label": "Genres > Lifestyle", + "retrieval_text": "IAB category path: Genres > Lifestyle. Canonical label: Lifestyle. Tier depth: 2. Parent path: Genres. Keywords: genres, genres lifestyle, lifestyle", + "unique_id": "TIFQA5" + }, + { + "keywords": [ + "genres", + "genres music video", + "music video" + ], + "label": "Music Video", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Music Video" + ], + "path_label": "Genres > Music Video", + "retrieval_text": "IAB category path: Genres > Music Video. Canonical label: Music Video. Tier depth: 2. Parent path: Genres. Keywords: genres, genres music video, music video", + "unique_id": "650" + }, + { + "keywords": [ + "genres", + "genres musical", + "musical", + "musicals" + ], + "label": "Musicals", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Musical" + ], + "path_label": "Genres > Musical", + "retrieval_text": "IAB category path: Genres > Musical. Canonical label: Musicals. Tier depth: 2. Parent path: Genres. Keywords: genres, genres musical, musical, musicals", + "unique_id": "156" + }, + { + "keywords": [ + "genres", + "genres mystery", + "mystery" + ], + "label": "Mystery", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Mystery" + ], + "path_label": "Genres > Mystery", + "retrieval_text": "IAB category path: Genres > Mystery. Canonical label: Mystery. Tier depth: 2. Parent path: Genres. Keywords: genres, genres mystery, mystery", + "unique_id": "331" + }, + { + "keywords": [ + "genres", + "genres reality tv", + "reality tv" + ], + "label": "Reality TV", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Reality TV" + ], + "path_label": "Genres > Reality TV", + "retrieval_text": "IAB category path: Genres > Reality TV. Canonical label: Reality TV. Tier depth: 2. Parent path: Genres. Keywords: genres, genres reality tv, reality tv", + "unique_id": "651" + }, + { + "keywords": [ + "genres", + "genres romance", + "romance" + ], + "label": "Romance", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Romance" + ], + "path_label": "Genres > Romance", + "retrieval_text": "IAB category path: Genres > Romance. Canonical label: Romance. Tier depth: 2. Parent path: Genres. Keywords: genres, genres romance, romance", + "unique_id": "326" + }, + { + "keywords": [ + "genres", + "genres science fiction", + "science fiction" + ], + "label": "Science Fiction", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Science Fiction" + ], + "path_label": "Genres > Science Fiction", + "retrieval_text": "IAB category path: Genres > Science Fiction. Canonical label: Science Fiction. Tier depth: 2. Parent path: Genres. Keywords: genres, genres science fiction, science fiction", + "unique_id": "652" + }, + { + "keywords": [ + "genres", + "genres soap opera", + "soap opera" + ], + "label": "Soap Opera", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Soap Opera" + ], + "path_label": "Genres > Soap Opera", + "retrieval_text": "IAB category path: Genres > Soap Opera. Canonical label: Soap Opera. Tier depth: 2. Parent path: Genres. Keywords: genres, genres soap opera, soap opera", + "unique_id": "642" + }, + { + "keywords": [ + "genres", + "genres special interest indie art house", + "special interest indie art house" + ], + "label": "Special Interest (Indie/Art House)", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Special Interest (Indie/Art House)" + ], + "path_label": "Genres > Special Interest (Indie/Art House)", + "retrieval_text": "IAB category path: Genres > Special Interest (Indie/Art House). Canonical label: Special Interest (Indie/Art House). Tier depth: 2. Parent path: Genres. Keywords: genres, genres special interest indie art house, special interest indie art house", + "unique_id": "643" + }, + { + "keywords": [ + "genres", + "genres sports radio", + "sports radio" + ], + "label": "Sports Radio", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Sports Radio" + ], + "path_label": "Genres > Sports Radio", + "retrieval_text": "IAB category path: Genres > Sports Radio. Canonical label: Sports Radio. Tier depth: 2. Parent path: Genres. Keywords: genres, genres sports radio, sports radio", + "unique_id": "370" + }, + { + "keywords": [ + "genres", + "genres talk radio", + "talk radio" + ], + "label": "Talk Radio", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Talk Radio" + ], + "path_label": "Genres > Talk Radio", + "retrieval_text": "IAB category path: Genres > Talk Radio. Canonical label: Talk Radio. Tier depth: 2. Parent path: Genres. Keywords: genres, genres talk radio, talk radio", + "unique_id": "371" + }, + { + "keywords": [ + "genres", + "genres talk radio public radio", + "public radio", + "talk radio" + ], + "label": "Public Radio", + "level": 3, + "parent_id": "371", + "path": [ + "Genres", + "Talk Radio", + "Public Radio" + ], + "path_label": "Genres > Talk Radio > Public Radio", + "retrieval_text": "IAB category path: Genres > Talk Radio > Public Radio. Canonical label: Public Radio. Tier depth: 3. Parent path: Genres > Talk Radio. Keywords: genres, genres talk radio public radio, public radio, talk radio", + "unique_id": "376" + }, + { + "keywords": [ + "genres", + "genres talk show", + "talk show" + ], + "label": "Talk Show", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Talk Show" + ], + "path_label": "Genres > Talk Show", + "retrieval_text": "IAB category path: Genres > Talk Show. Canonical label: Talk Show. Tier depth: 2. Parent path: Genres. Keywords: genres, genres talk show, talk show", + "unique_id": "A0AH3G" + }, + { + "keywords": [ + "genres", + "genres true crime", + "true crime" + ], + "label": "True Crime", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "True Crime" + ], + "path_label": "Genres > True Crime", + "retrieval_text": "IAB category path: Genres > True Crime. Canonical label: True Crime. Tier depth: 2. Parent path: Genres. Keywords: genres, genres true crime, true crime", + "unique_id": "KHPC5A" + }, + { + "keywords": [ + "genres", + "genres western", + "western" + ], + "label": "Western", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Western" + ], + "path_label": "Genres > Western", + "retrieval_text": "IAB category path: Genres > Western. Canonical label: Western. Tier depth: 2. Parent path: Genres. Keywords: genres, genres western, western", + "unique_id": "KHPC6A" + }, + { + "keywords": [ + "genres", + "genres young adult", + "young adult" + ], + "label": "Young Adult", + "level": 2, + "parent_id": "SPSHQ5", + "path": [ + "Genres", + "Young Adult" + ], + "path_label": "Genres > Young Adult", + "retrieval_text": "IAB category path: Genres > Young Adult. Canonical label: Young Adult. Tier depth: 2. Parent path: Genres. Keywords: genres, genres young adult, young adult", + "unique_id": "51" + }, + { + "keywords": [ + "healthy living" + ], + "label": "Healthy Living", + "level": 1, + "parent_id": null, + "path": [ + "Healthy Living" + ], + "path_label": "Healthy Living", + "retrieval_text": "IAB category path: Healthy Living. Canonical label: Healthy Living. Tier depth: 1. Keywords: healthy living", + "unique_id": "223" + }, + { + "keywords": [ + "children s health", + "healthy living", + "healthy living children s health" + ], + "label": "Children's Health", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Children's Health" + ], + "path_label": "Healthy Living > Children's Health", + "retrieval_text": "IAB category path: Healthy Living > Children's Health. Canonical label: Children's Health. Tier depth: 2. Parent path: Healthy Living. Keywords: children s health, healthy living, healthy living children s health", + "unique_id": "224" + }, + { + "keywords": [ + "fitness and exercise", + "healthy living", + "healthy living fitness and exercise" + ], + "label": "Fitness and Exercise", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Fitness and Exercise" + ], + "path_label": "Healthy Living > Fitness and Exercise", + "retrieval_text": "IAB category path: Healthy Living > Fitness and Exercise. Canonical label: Fitness and Exercise. Tier depth: 2. Parent path: Healthy Living. Keywords: fitness and exercise, healthy living, healthy living fitness and exercise", + "unique_id": "225" + }, + { + "keywords": [ + "fitness and exercise", + "healthy living", + "healthy living fitness and exercise participant sports", + "participant sports" + ], + "label": "Participant Sports", + "level": 3, + "parent_id": "225", + "path": [ + "Healthy Living", + "Fitness and Exercise", + "Participant Sports" + ], + "path_label": "Healthy Living > Fitness and Exercise > Participant Sports", + "retrieval_text": "IAB category path: Healthy Living > Fitness and Exercise > Participant Sports. Canonical label: Participant Sports. Tier depth: 3. Parent path: Healthy Living > Fitness and Exercise. Keywords: fitness and exercise, healthy living, healthy living fitness and exercise participant sports, participant sports", + "unique_id": "226" + }, + { + "keywords": [ + "fitness and exercise", + "healthy living", + "healthy living fitness and exercise running and jogging", + "running and jogging" + ], + "label": "Running and Jogging", + "level": 3, + "parent_id": "225", + "path": [ + "Healthy Living", + "Fitness and Exercise", + "Running and Jogging" + ], + "path_label": "Healthy Living > Fitness and Exercise > Running and Jogging", + "retrieval_text": "IAB category path: Healthy Living > Fitness and Exercise > Running and Jogging. Canonical label: Running and Jogging. Tier depth: 3. Parent path: Healthy Living > Fitness and Exercise. Keywords: fitness and exercise, healthy living, healthy living fitness and exercise running and jogging, running and jogging", + "unique_id": "227" + }, + { + "keywords": [ + "healthy living", + "healthy living men s health", + "men s health" + ], + "label": "Men's Health", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Men's Health" + ], + "path_label": "Healthy Living > Men's Health", + "retrieval_text": "IAB category path: Healthy Living > Men's Health. Canonical label: Men's Health. Tier depth: 2. Parent path: Healthy Living. Keywords: healthy living, healthy living men s health, men s health", + "unique_id": "228" + }, + { + "keywords": [ + "healthy living", + "healthy living nutrition", + "nutrition" + ], + "label": "Nutrition", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Nutrition" + ], + "path_label": "Healthy Living > Nutrition", + "retrieval_text": "IAB category path: Healthy Living > Nutrition. Canonical label: Nutrition. Tier depth: 2. Parent path: Healthy Living. Keywords: healthy living, healthy living nutrition, nutrition", + "unique_id": "229" + }, + { + "keywords": [ + "healthy living", + "healthy living senior health", + "senior health" + ], + "label": "Senior Health", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Senior Health" + ], + "path_label": "Healthy Living > Senior Health", + "retrieval_text": "IAB category path: Healthy Living > Senior Health. Canonical label: Senior Health. Tier depth: 2. Parent path: Healthy Living. Keywords: healthy living, healthy living senior health, senior health", + "unique_id": "230" + }, + { + "keywords": [ + "healthy living", + "healthy living weight loss", + "weight loss" + ], + "label": "Weight Loss", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Weight Loss" + ], + "path_label": "Healthy Living > Weight Loss", + "retrieval_text": "IAB category path: Healthy Living > Weight Loss. Canonical label: Weight Loss. Tier depth: 2. Parent path: Healthy Living. Keywords: healthy living, healthy living weight loss, weight loss", + "unique_id": "231" + }, + { + "keywords": [ + "healthy living", + "healthy living wellness", + "wellness" + ], + "label": "Wellness", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Wellness" + ], + "path_label": "Healthy Living > Wellness", + "retrieval_text": "IAB category path: Healthy Living > Wellness. Canonical label: Wellness. Tier depth: 2. Parent path: Healthy Living. Keywords: healthy living, healthy living wellness, wellness", + "unique_id": "232" + }, + { + "keywords": [ + "alternative medicine", + "healthy living", + "healthy living wellness alternative medicine", + "wellness" + ], + "label": "Alternative Medicine", + "level": 3, + "parent_id": "232", + "path": [ + "Healthy Living", + "Wellness", + "Alternative Medicine" + ], + "path_label": "Healthy Living > Wellness > Alternative Medicine", + "retrieval_text": "IAB category path: Healthy Living > Wellness > Alternative Medicine. Canonical label: Alternative Medicine. Tier depth: 3. Parent path: Healthy Living > Wellness. Keywords: alternative medicine, healthy living, healthy living wellness alternative medicine, wellness", + "unique_id": "233" + }, + { + "keywords": [ + "alternative medicine", + "healthy living", + "healthy living wellness alternative medicine herbs and supplements", + "herbs and supplements", + "wellness" + ], + "label": "Herbs and Supplements", + "level": 4, + "parent_id": "233", + "path": [ + "Healthy Living", + "Wellness", + "Alternative Medicine", + "Herbs and Supplements" + ], + "path_label": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", + "retrieval_text": "IAB category path: Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements. Canonical label: Herbs and Supplements. Tier depth: 4. Parent path: Healthy Living > Wellness > Alternative Medicine. Keywords: alternative medicine, healthy living, healthy living wellness alternative medicine herbs and supplements, herbs and supplements, wellness", + "unique_id": "234" + }, + { + "keywords": [ + "alternative medicine", + "healthy living", + "healthy living wellness alternative medicine holistic health", + "holistic health", + "wellness" + ], + "label": "Holistic Health", + "level": 4, + "parent_id": "233", + "path": [ + "Healthy Living", + "Wellness", + "Alternative Medicine", + "Holistic Health" + ], + "path_label": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", + "retrieval_text": "IAB category path: Healthy Living > Wellness > Alternative Medicine > Holistic Health. Canonical label: Holistic Health. Tier depth: 4. Parent path: Healthy Living > Wellness > Alternative Medicine. Keywords: alternative medicine, healthy living, healthy living wellness alternative medicine holistic health, holistic health, wellness", + "unique_id": "235" + }, + { + "keywords": [ + "healthy living", + "healthy living wellness physical therapy", + "physical therapy", + "wellness" + ], + "label": "Physical Therapy", + "level": 3, + "parent_id": "232", + "path": [ + "Healthy Living", + "Wellness", + "Physical Therapy" + ], + "path_label": "Healthy Living > Wellness > Physical Therapy", + "retrieval_text": "IAB category path: Healthy Living > Wellness > Physical Therapy. Canonical label: Physical Therapy. Tier depth: 3. Parent path: Healthy Living > Wellness. Keywords: healthy living, healthy living wellness physical therapy, physical therapy, wellness", + "unique_id": "236" + }, + { + "keywords": [ + "healthy living", + "healthy living wellness smoking cessation", + "smoking cessation", + "wellness" + ], + "label": "Smoking Cessation", + "level": 3, + "parent_id": "232", + "path": [ + "Healthy Living", + "Wellness", + "Smoking Cessation" + ], + "path_label": "Healthy Living > Wellness > Smoking Cessation", + "retrieval_text": "IAB category path: Healthy Living > Wellness > Smoking Cessation. Canonical label: Smoking Cessation. Tier depth: 3. Parent path: Healthy Living > Wellness. Keywords: healthy living, healthy living wellness smoking cessation, smoking cessation, wellness", + "unique_id": "237" + }, + { + "keywords": [ + "healthy living", + "healthy living women s health", + "women s health" + ], + "label": "Women's Health", + "level": 2, + "parent_id": "223", + "path": [ + "Healthy Living", + "Women's Health" + ], + "path_label": "Healthy Living > Women's Health", + "retrieval_text": "IAB category path: Healthy Living > Women's Health. Canonical label: Women's Health. Tier depth: 2. Parent path: Healthy Living. Keywords: healthy living, healthy living women s health, women s health", + "unique_id": "238" + }, + { + "keywords": [ + "hobbies and interests" + ], + "label": "Hobbies & Interests", + "level": 1, + "parent_id": null, + "path": [ + "Hobbies & Interests" + ], + "path_label": "Hobbies & Interests", + "retrieval_text": "IAB category path: Hobbies & Interests. Canonical label: Hobbies & Interests. Tier depth: 1. Keywords: hobbies and interests", + "unique_id": "239" + }, + { + "keywords": [ + "antiquing and antiques", + "hobbies and interests", + "hobbies and interests antiquing and antiques" + ], + "label": "Antiquing and Antiques", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Antiquing and Antiques" + ], + "path_label": "Hobbies & Interests > Antiquing and Antiques", + "retrieval_text": "IAB category path: Hobbies & Interests > Antiquing and Antiques. Canonical label: Antiquing and Antiques. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: antiquing and antiques, hobbies and interests, hobbies and interests antiquing and antiques", + "unique_id": "240" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts" + ], + "label": "Arts and Crafts", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Arts and Crafts" + ], + "path_label": "Hobbies & Interests > Arts and Crafts", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts. Canonical label: Arts and Crafts. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts", + "unique_id": "248" + }, + { + "keywords": [ + "arts and crafts", + "beadwork", + "hobbies and interests", + "hobbies and interests arts and crafts beadwork" + ], + "label": "Beadwork", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Beadwork" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Beadwork", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Beadwork. Canonical label: Beadwork. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, beadwork, hobbies and interests, hobbies and interests arts and crafts beadwork", + "unique_id": "249" + }, + { + "keywords": [ + "arts and crafts", + "candle and soap making", + "hobbies and interests", + "hobbies and interests arts and crafts candle and soap making" + ], + "label": "Candle and Soap Making", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Candle and Soap Making" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Candle and Soap Making. Canonical label: Candle and Soap Making. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, candle and soap making, hobbies and interests, hobbies and interests arts and crafts candle and soap making", + "unique_id": "250" + }, + { + "keywords": [ + "arts and crafts", + "drawing and sketching", + "hobbies and interests", + "hobbies and interests arts and crafts drawing and sketching" + ], + "label": "Drawing and Sketching", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Drawing and Sketching" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Drawing and Sketching. Canonical label: Drawing and Sketching. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, drawing and sketching, hobbies and interests, hobbies and interests arts and crafts drawing and sketching", + "unique_id": "251" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts jewelry making", + "jewelry making" + ], + "label": "Jewelry Making", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Jewelry Making" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Jewelry Making. Canonical label: Jewelry Making. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts jewelry making, jewelry making", + "unique_id": "252" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts needlework", + "needlework" + ], + "label": "Needlework", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Needlework" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Needlework", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Needlework. Canonical label: Needlework. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts needlework, needlework", + "unique_id": "253" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts painting", + "painting" + ], + "label": "Painting", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Painting" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Painting", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Painting. Canonical label: Painting. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts painting, painting", + "unique_id": "254" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts photography", + "photography" + ], + "label": "Photography", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Photography" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Photography", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Photography. Canonical label: Photography. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts photography, photography", + "unique_id": "255" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts scrapbooking", + "scrapbooking" + ], + "label": "Scrapbooking", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Scrapbooking" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Scrapbooking. Canonical label: Scrapbooking. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts scrapbooking, scrapbooking", + "unique_id": "256" + }, + { + "keywords": [ + "arts and crafts", + "hobbies and interests", + "hobbies and interests arts and crafts woodworking", + "woodworking" + ], + "label": "Woodworking", + "level": 3, + "parent_id": "248", + "path": [ + "Hobbies & Interests", + "Arts and Crafts", + "Woodworking" + ], + "path_label": "Hobbies & Interests > Arts and Crafts > Woodworking", + "retrieval_text": "IAB category path: Hobbies & Interests > Arts and Crafts > Woodworking. Canonical label: Woodworking. Tier depth: 3. Parent path: Hobbies & Interests > Arts and Crafts. Keywords: arts and crafts, hobbies and interests, hobbies and interests arts and crafts woodworking, woodworking", + "unique_id": "257" + }, + { + "keywords": [ + "beekeeping", + "hobbies and interests", + "hobbies and interests beekeeping" + ], + "label": "Beekeeping", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Beekeeping" + ], + "path_label": "Hobbies & Interests > Beekeeping", + "retrieval_text": "IAB category path: Hobbies & Interests > Beekeeping. Canonical label: Beekeeping. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: beekeeping, hobbies and interests, hobbies and interests beekeeping", + "unique_id": "258" + }, + { + "keywords": [ + "birdwatching", + "hobbies and interests", + "hobbies and interests birdwatching" + ], + "label": "Birdwatching", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Birdwatching" + ], + "path_label": "Hobbies & Interests > Birdwatching", + "retrieval_text": "IAB category path: Hobbies & Interests > Birdwatching. Canonical label: Birdwatching. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: birdwatching, hobbies and interests, hobbies and interests birdwatching", + "unique_id": "259" + }, + { + "keywords": [ + "cigars", + "hobbies and interests", + "hobbies and interests cigars" + ], + "label": "Cigars", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Cigars" + ], + "path_label": "Hobbies & Interests > Cigars", + "retrieval_text": "IAB category path: Hobbies & Interests > Cigars. Canonical label: Cigars. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: cigars, hobbies and interests, hobbies and interests cigars", + "unique_id": "260" + }, + { + "keywords": [ + "collecting", + "hobbies and interests", + "hobbies and interests collecting" + ], + "label": "Collecting", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Collecting" + ], + "path_label": "Hobbies & Interests > Collecting", + "retrieval_text": "IAB category path: Hobbies & Interests > Collecting. Canonical label: Collecting. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: collecting, hobbies and interests, hobbies and interests collecting", + "unique_id": "261" + }, + { + "keywords": [ + "collecting", + "comic books", + "hobbies and interests", + "hobbies and interests collecting comic books" + ], + "label": "Comic Books", + "level": 3, + "parent_id": "261", + "path": [ + "Hobbies & Interests", + "Collecting", + "Comic Books" + ], + "path_label": "Hobbies & Interests > Collecting > Comic Books", + "retrieval_text": "IAB category path: Hobbies & Interests > Collecting > Comic Books. Canonical label: Comic Books. Tier depth: 3. Parent path: Hobbies & Interests > Collecting. Keywords: collecting, comic books, hobbies and interests, hobbies and interests collecting comic books", + "unique_id": "262" + }, + { + "keywords": [ + "collecting", + "hobbies and interests", + "hobbies and interests collecting stamps and coins", + "stamps and coins" + ], + "label": "Stamps and Coins", + "level": 3, + "parent_id": "261", + "path": [ + "Hobbies & Interests", + "Collecting", + "Stamps and Coins" + ], + "path_label": "Hobbies & Interests > Collecting > Stamps and Coins", + "retrieval_text": "IAB category path: Hobbies & Interests > Collecting > Stamps and Coins. Canonical label: Stamps and Coins. Tier depth: 3. Parent path: Hobbies & Interests > Collecting. Keywords: collecting, hobbies and interests, hobbies and interests collecting stamps and coins, stamps and coins", + "unique_id": "263" + }, + { + "keywords": [ + "content production", + "hobbies and interests", + "hobbies and interests content production" + ], + "label": "Content Production", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Content Production" + ], + "path_label": "Hobbies & Interests > Content Production", + "retrieval_text": "IAB category path: Hobbies & Interests > Content Production. Canonical label: Content Production. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: content production, hobbies and interests, hobbies and interests content production", + "unique_id": "264" + }, + { + "keywords": [ + "audio production", + "content production", + "hobbies and interests", + "hobbies and interests content production audio production" + ], + "label": "Audio Production", + "level": 3, + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Audio Production" + ], + "path_label": "Hobbies & Interests > Content Production > Audio Production", + "retrieval_text": "IAB category path: Hobbies & Interests > Content Production > Audio Production. Canonical label: Audio Production. Tier depth: 3. Parent path: Hobbies & Interests > Content Production. Keywords: audio production, content production, hobbies and interests, hobbies and interests content production audio production", + "unique_id": "265" + }, + { + "keywords": [ + "content production", + "freelance writing", + "hobbies and interests", + "hobbies and interests content production freelance writing" + ], + "label": "Freelance Writing", + "level": 3, + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Freelance Writing" + ], + "path_label": "Hobbies & Interests > Content Production > Freelance Writing", + "retrieval_text": "IAB category path: Hobbies & Interests > Content Production > Freelance Writing. Canonical label: Freelance Writing. Tier depth: 3. Parent path: Hobbies & Interests > Content Production. Keywords: content production, freelance writing, hobbies and interests, hobbies and interests content production freelance writing", + "unique_id": "266" + }, + { + "keywords": [ + "content production", + "hobbies and interests", + "hobbies and interests content production screenwriting", + "screenwriting" + ], + "label": "Screenwriting", + "level": 3, + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Screenwriting" + ], + "path_label": "Hobbies & Interests > Content Production > Screenwriting", + "retrieval_text": "IAB category path: Hobbies & Interests > Content Production > Screenwriting. Canonical label: Screenwriting. Tier depth: 3. Parent path: Hobbies & Interests > Content Production. Keywords: content production, hobbies and interests, hobbies and interests content production screenwriting, screenwriting", + "unique_id": "267" + }, + { + "keywords": [ + "content production", + "hobbies and interests", + "hobbies and interests content production video production", + "video production" + ], + "label": "Video Production", + "level": 3, + "parent_id": "264", + "path": [ + "Hobbies & Interests", + "Content Production", + "Video Production" + ], + "path_label": "Hobbies & Interests > Content Production > Video Production", + "retrieval_text": "IAB category path: Hobbies & Interests > Content Production > Video Production. Canonical label: Video Production. Tier depth: 3. Parent path: Hobbies & Interests > Content Production. Keywords: content production, hobbies and interests, hobbies and interests content production video production, video production", + "unique_id": "268" + }, + { + "keywords": [ + "games and puzzles", + "hobbies and interests", + "hobbies and interests games and puzzles" + ], + "label": "Games and Puzzles", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Games and Puzzles" + ], + "path_label": "Hobbies & Interests > Games and Puzzles", + "retrieval_text": "IAB category path: Hobbies & Interests > Games and Puzzles. Canonical label: Games and Puzzles. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: games and puzzles, hobbies and interests, hobbies and interests games and puzzles", + "unique_id": "269" + }, + { + "keywords": [ + "board games and puzzles", + "games and puzzles", + "hobbies and interests", + "hobbies and interests games and puzzles board games and puzzles" + ], + "label": "Board Games and Puzzles", + "level": 3, + "parent_id": "269", + "path": [ + "Hobbies & Interests", + "Games and Puzzles", + "Board Games and Puzzles" + ], + "path_label": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", + "retrieval_text": "IAB category path: Hobbies & Interests > Games and Puzzles > Board Games and Puzzles. Canonical label: Board Games and Puzzles. Tier depth: 3. Parent path: Hobbies & Interests > Games and Puzzles. Keywords: board games and puzzles, games and puzzles, hobbies and interests, hobbies and interests games and puzzles board games and puzzles", + "unique_id": "270" + }, + { + "keywords": [ + "card games", + "games and puzzles", + "hobbies and interests", + "hobbies and interests games and puzzles card games" + ], + "label": "Card Games", + "level": 3, + "parent_id": "269", + "path": [ + "Hobbies & Interests", + "Games and Puzzles", + "Card Games" + ], + "path_label": "Hobbies & Interests > Games and Puzzles > Card Games", + "retrieval_text": "IAB category path: Hobbies & Interests > Games and Puzzles > Card Games. Canonical label: Card Games. Tier depth: 3. Parent path: Hobbies & Interests > Games and Puzzles. Keywords: card games, games and puzzles, hobbies and interests, hobbies and interests games and puzzles card games", + "unique_id": "271" + }, + { + "keywords": [ + "games and puzzles", + "hobbies and interests", + "hobbies and interests games and puzzles roleplaying games", + "roleplaying games" + ], + "label": "Roleplaying Games", + "level": 3, + "parent_id": "269", + "path": [ + "Hobbies & Interests", + "Games and Puzzles", + "Roleplaying Games" + ], + "path_label": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", + "retrieval_text": "IAB category path: Hobbies & Interests > Games and Puzzles > Roleplaying Games. Canonical label: Roleplaying Games. Tier depth: 3. Parent path: Hobbies & Interests > Games and Puzzles. Keywords: games and puzzles, hobbies and interests, hobbies and interests games and puzzles roleplaying games, roleplaying games", + "unique_id": "272" + }, + { + "keywords": [ + "genealogy and ancestry", + "hobbies and interests", + "hobbies and interests genealogy and ancestry" + ], + "label": "Genealogy and Ancestry", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Genealogy and Ancestry" + ], + "path_label": "Hobbies & Interests > Genealogy and Ancestry", + "retrieval_text": "IAB category path: Hobbies & Interests > Genealogy and Ancestry. Canonical label: Genealogy and Ancestry. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: genealogy and ancestry, hobbies and interests, hobbies and interests genealogy and ancestry", + "unique_id": "273" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests magic and illusion", + "magic and illusion" + ], + "label": "Magic and Illusion", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Magic and Illusion" + ], + "path_label": "Hobbies & Interests > Magic and Illusion", + "retrieval_text": "IAB category path: Hobbies & Interests > Magic and Illusion. Canonical label: Magic and Illusion. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests magic and illusion, magic and illusion", + "unique_id": "241" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests model toys", + "model toys" + ], + "label": "Model Toys", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Model Toys" + ], + "path_label": "Hobbies & Interests > Model Toys", + "retrieval_text": "IAB category path: Hobbies & Interests > Model Toys. Canonical label: Model Toys. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests model toys, model toys", + "unique_id": "242" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests musical instruments", + "musical instruments" + ], + "label": "Musical Instruments", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Musical Instruments" + ], + "path_label": "Hobbies & Interests > Musical Instruments", + "retrieval_text": "IAB category path: Hobbies & Interests > Musical Instruments. Canonical label: Musical Instruments. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests musical instruments, musical instruments", + "unique_id": "243" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests paranormal phenomena", + "paranormal phenomena" + ], + "label": "Paranormal Phenomena", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Paranormal Phenomena" + ], + "path_label": "Hobbies & Interests > Paranormal Phenomena", + "retrieval_text": "IAB category path: Hobbies & Interests > Paranormal Phenomena. Canonical label: Paranormal Phenomena. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests paranormal phenomena, paranormal phenomena", + "unique_id": "244" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests radio control", + "radio control" + ], + "label": "Radio Control", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Radio Control" + ], + "path_label": "Hobbies & Interests > Radio Control", + "retrieval_text": "IAB category path: Hobbies & Interests > Radio Control. Canonical label: Radio Control. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests radio control, radio control", + "unique_id": "245" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests sci fi and fantasy", + "sci fi and fantasy" + ], + "label": "Sci-fi and Fantasy", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Sci-fi and Fantasy" + ], + "path_label": "Hobbies & Interests > Sci-fi and Fantasy", + "retrieval_text": "IAB category path: Hobbies & Interests > Sci-fi and Fantasy. Canonical label: Sci-fi and Fantasy. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests sci fi and fantasy, sci fi and fantasy", + "unique_id": "246" + }, + { + "keywords": [ + "hobbies and interests", + "hobbies and interests workshops and classes", + "workshops and classes" + ], + "label": "Workshops and Classes", + "level": 2, + "parent_id": "239", + "path": [ + "Hobbies & Interests", + "Workshops and Classes" + ], + "path_label": "Hobbies & Interests > Workshops and Classes", + "retrieval_text": "IAB category path: Hobbies & Interests > Workshops and Classes. Canonical label: Workshops and Classes. Tier depth: 2. Parent path: Hobbies & Interests. Keywords: hobbies and interests, hobbies and interests workshops and classes, workshops and classes", + "unique_id": "247" + }, + { + "keywords": [ + "holidays" + ], + "label": "Holidays", + "level": 1, + "parent_id": null, + "path": [ + "Holidays" + ], + "path_label": "Holidays", + "retrieval_text": "IAB category path: Holidays. Canonical label: Holidays. Tier depth: 1. Keywords: holidays", + "unique_id": "1KXCLD" + }, + { + "keywords": [ + "holidays", + "holidays national and civic holidays", + "national and civic holidays" + ], + "label": "National & Civic Holidays", + "level": 2, + "parent_id": "1KXCLD", + "path": [ + "Holidays", + "National & Civic Holidays" + ], + "path_label": "Holidays > National & Civic Holidays", + "retrieval_text": "IAB category path: Holidays > National & Civic Holidays. Canonical label: National & Civic Holidays. Tier depth: 2. Parent path: Holidays. Keywords: holidays, holidays national and civic holidays, national and civic holidays", + "unique_id": "157" + }, + { + "keywords": [ + "home and garden" + ], + "label": "Home & Garden", + "level": 1, + "parent_id": null, + "path": [ + "Home & Garden" + ], + "path_label": "Home & Garden", + "retrieval_text": "IAB category path: Home & Garden. Canonical label: Home & Garden. Tier depth: 1. Keywords: home and garden", + "unique_id": "274" + }, + { + "keywords": [ + "gardening", + "home and garden", + "home and garden gardening" + ], + "label": "Gardening", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Gardening" + ], + "path_label": "Home & Garden > Gardening", + "retrieval_text": "IAB category path: Home & Garden > Gardening. Canonical label: Gardening. Tier depth: 2. Parent path: Home & Garden. Keywords: gardening, home and garden, home and garden gardening", + "unique_id": "275" + }, + { + "keywords": [ + "home and garden", + "home and garden home appliances", + "home appliances" + ], + "label": "Home Appliances", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Appliances" + ], + "path_label": "Home & Garden > Home Appliances", + "retrieval_text": "IAB category path: Home & Garden > Home Appliances. Canonical label: Home Appliances. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden home appliances, home appliances", + "unique_id": "278" + }, + { + "keywords": [ + "home and garden", + "home and garden home entertaining", + "home entertaining" + ], + "label": "Home Entertaining", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Entertaining" + ], + "path_label": "Home & Garden > Home Entertaining", + "retrieval_text": "IAB category path: Home & Garden > Home Entertaining. Canonical label: Home Entertaining. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden home entertaining, home entertaining", + "unique_id": "279" + }, + { + "keywords": [ + "home and garden", + "home and garden home improvement", + "home improvement" + ], + "label": "Home Improvement", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Improvement" + ], + "path_label": "Home & Garden > Home Improvement", + "retrieval_text": "IAB category path: Home & Garden > Home Improvement. Canonical label: Home Improvement. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden home improvement, home improvement", + "unique_id": "280" + }, + { + "keywords": [ + "home and garden", + "home and garden home security", + "home security" + ], + "label": "Home Security", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Home Security" + ], + "path_label": "Home & Garden > Home Security", + "retrieval_text": "IAB category path: Home & Garden > Home Security. Canonical label: Home Security. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden home security, home security", + "unique_id": "281" + }, + { + "keywords": [ + "home and garden", + "home and garden indoor environmental quality", + "indoor environmental quality" + ], + "label": "Indoor Environmental Quality", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Indoor Environmental Quality" + ], + "path_label": "Home & Garden > Indoor Environmental Quality", + "retrieval_text": "IAB category path: Home & Garden > Indoor Environmental Quality. Canonical label: Indoor Environmental Quality. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden indoor environmental quality, indoor environmental quality", + "unique_id": "282" + }, + { + "keywords": [ + "home and garden", + "home and garden interior decorating", + "interior decorating" + ], + "label": "Interior Decorating", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Interior Decorating" + ], + "path_label": "Home & Garden > Interior Decorating", + "retrieval_text": "IAB category path: Home & Garden > Interior Decorating. Canonical label: Interior Decorating. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden interior decorating, interior decorating", + "unique_id": "283" + }, + { + "keywords": [ + "home and garden", + "home and garden landscaping", + "landscaping" + ], + "label": "Landscaping", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Landscaping" + ], + "path_label": "Home & Garden > Landscaping", + "retrieval_text": "IAB category path: Home & Garden > Landscaping. Canonical label: Landscaping. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden landscaping, landscaping", + "unique_id": "284" + }, + { + "keywords": [ + "home and garden", + "home and garden outdoor decorating", + "outdoor decorating" + ], + "label": "Outdoor Decorating", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Outdoor Decorating" + ], + "path_label": "Home & Garden > Outdoor Decorating", + "retrieval_text": "IAB category path: Home & Garden > Outdoor Decorating. Canonical label: Outdoor Decorating. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden outdoor decorating, outdoor decorating", + "unique_id": "285" + }, + { + "keywords": [ + "home and garden", + "home and garden remodeling and construction", + "remodeling and construction" + ], + "label": "Remodeling & Construction", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Remodeling & Construction" + ], + "path_label": "Home & Garden > Remodeling & Construction", + "retrieval_text": "IAB category path: Home & Garden > Remodeling & Construction. Canonical label: Remodeling & Construction. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden remodeling and construction, remodeling and construction", + "unique_id": "276" + }, + { + "keywords": [ + "home and garden", + "home and garden smart home", + "smart home" + ], + "label": "Smart Home", + "level": 2, + "parent_id": "274", + "path": [ + "Home & Garden", + "Smart Home" + ], + "path_label": "Home & Garden > Smart Home", + "retrieval_text": "IAB category path: Home & Garden > Smart Home. Canonical label: Smart Home. Tier depth: 2. Parent path: Home & Garden. Keywords: home and garden, home and garden smart home, smart home", + "unique_id": "277" + }, + { + "keywords": [ + "law" + ], + "label": "Law", + "level": 1, + "parent_id": null, + "path": [ + "Law" + ], + "path_label": "Law", + "retrieval_text": "IAB category path: Law. Canonical label: Law. Tier depth: 1. Keywords: law", + "unique_id": "383" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "maps and navigation", + "technology and computing", + "technology and computing computing computer software and applications maps and navigation" + ], + "label": "Maps & Navigation", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Maps & Navigation" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation. Canonical label: Maps & Navigation. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, maps and navigation, technology and computing, technology and computing computing computer software and applications maps and navigation", + "unique_id": "WQC6HR" + }, + { + "keywords": [ + "medical health" + ], + "label": "Medical Health", + "level": 1, + "parent_id": null, + "path": [ + "Medical Health" + ], + "path_label": "Medical Health", + "retrieval_text": "IAB category path: Medical Health. Canonical label: Medical Health. Tier depth: 1. Keywords: medical health", + "unique_id": "286" + }, + { + "keywords": [ + "cosmetic medical services", + "medical health", + "medical health cosmetic medical services" + ], + "label": "Cosmetic Medical Services", + "level": 2, + "parent_id": "286", + "path": [ + "Medical Health", + "Cosmetic Medical Services" + ], + "path_label": "Medical Health > Cosmetic Medical Services", + "retrieval_text": "IAB category path: Medical Health > Cosmetic Medical Services. Canonical label: Cosmetic Medical Services. Tier depth: 2. Parent path: Medical Health. Keywords: cosmetic medical services, medical health, medical health cosmetic medical services", + "unique_id": "323" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions" + ], + "label": "Diseases and Conditions", + "level": 2, + "parent_id": "286", + "path": [ + "Medical Health", + "Diseases and Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions. Canonical label: Diseases and Conditions. Tier depth: 2. Parent path: Medical Health. Keywords: diseases and conditions, medical health, medical health diseases and conditions", + "unique_id": "287" + }, + { + "keywords": [ + "allergies", + "diseases and conditions", + "medical health", + "medical health diseases and conditions allergies" + ], + "label": "Allergies", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Allergies" + ], + "path_label": "Medical Health > Diseases and Conditions > Allergies", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Allergies. Canonical label: Allergies. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: allergies, diseases and conditions, medical health, medical health diseases and conditions allergies", + "unique_id": "288" + }, + { + "keywords": [ + "blood disorders", + "diseases and conditions", + "medical health", + "medical health diseases and conditions blood disorders" + ], + "label": "Blood Disorders", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Blood Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Blood Disorders", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Blood Disorders. Canonical label: Blood Disorders. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: blood disorders, diseases and conditions, medical health, medical health diseases and conditions blood disorders", + "unique_id": "306" + }, + { + "keywords": [ + "bone and joint conditions", + "diseases and conditions", + "medical health", + "medical health diseases and conditions bone and joint conditions" + ], + "label": "Bone and Joint Conditions", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Bone and Joint Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Bone and Joint Conditions. Canonical label: Bone and Joint Conditions. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: bone and joint conditions, diseases and conditions, medical health, medical health diseases and conditions bone and joint conditions", + "unique_id": "312" + }, + { + "keywords": [ + "brain and nervous system disorders", + "diseases and conditions", + "medical health", + "medical health diseases and conditions brain and nervous system disorders" + ], + "label": "Brain and Nervous System Disorders", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Brain and Nervous System Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Brain and Nervous System Disorders. Canonical label: Brain and Nervous System Disorders. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: brain and nervous system disorders, diseases and conditions, medical health, medical health diseases and conditions brain and nervous system disorders", + "unique_id": "313" + }, + { + "keywords": [ + "cancer", + "diseases and conditions", + "medical health", + "medical health diseases and conditions cancer" + ], + "label": "Cancer", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Cancer" + ], + "path_label": "Medical Health > Diseases and Conditions > Cancer", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Cancer. Canonical label: Cancer. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: cancer, diseases and conditions, medical health, medical health diseases and conditions cancer", + "unique_id": "314" + }, + { + "keywords": [ + "cold and flu", + "diseases and conditions", + "medical health", + "medical health diseases and conditions cold and flu" + ], + "label": "Cold and Flu", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Cold and Flu" + ], + "path_label": "Medical Health > Diseases and Conditions > Cold and Flu", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Cold and Flu. Canonical label: Cold and Flu. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: cold and flu, diseases and conditions, medical health, medical health diseases and conditions cold and flu", + "unique_id": "315" + }, + { + "keywords": [ + "dental health", + "diseases and conditions", + "medical health", + "medical health diseases and conditions dental health" + ], + "label": "Dental Health", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Dental Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Dental Health", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Dental Health. Canonical label: Dental Health. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: dental health, diseases and conditions, medical health, medical health diseases and conditions dental health", + "unique_id": "316" + }, + { + "keywords": [ + "diabetes", + "diseases and conditions", + "medical health", + "medical health diseases and conditions diabetes" + ], + "label": "Diabetes", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Diabetes" + ], + "path_label": "Medical Health > Diseases and Conditions > Diabetes", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Diabetes. Canonical label: Diabetes. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diabetes, diseases and conditions, medical health, medical health diseases and conditions diabetes", + "unique_id": "317" + }, + { + "keywords": [ + "digestive disorders", + "diseases and conditions", + "medical health", + "medical health diseases and conditions digestive disorders" + ], + "label": "Digestive Disorders", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Digestive Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Digestive Disorders", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Digestive Disorders. Canonical label: Digestive Disorders. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: digestive disorders, diseases and conditions, medical health, medical health diseases and conditions digestive disorders", + "unique_id": "318" + }, + { + "keywords": [ + "diseases and conditions", + "ear nose and throat conditions", + "medical health", + "medical health diseases and conditions ear nose and throat conditions" + ], + "label": "Ear, Nose and Throat Conditions", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Ear, Nose and Throat Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions. Canonical label: Ear, Nose and Throat Conditions. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, ear nose and throat conditions, medical health, medical health diseases and conditions ear nose and throat conditions", + "unique_id": "289" + }, + { + "keywords": [ + "diseases and conditions", + "endocrine and metabolic diseases", + "medical health", + "medical health diseases and conditions endocrine and metabolic diseases" + ], + "label": "Endocrine and Metabolic Diseases", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases. Canonical label: Endocrine and Metabolic Diseases. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, endocrine and metabolic diseases, medical health, medical health diseases and conditions endocrine and metabolic diseases", + "unique_id": "290" + }, + { + "keywords": [ + "diseases and conditions", + "endocrine and metabolic diseases", + "hormonal disorders", + "medical health", + "medical health diseases and conditions endocrine and metabolic diseases hormonal disorders" + ], + "label": "Hormonal Disorders", + "level": 4, + "parent_id": "290", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases", + "Hormonal Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders. Canonical label: Hormonal Disorders. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases. Keywords: diseases and conditions, endocrine and metabolic diseases, hormonal disorders, medical health, medical health diseases and conditions endocrine and metabolic diseases hormonal disorders", + "unique_id": "291" + }, + { + "keywords": [ + "diseases and conditions", + "endocrine and metabolic diseases", + "medical health", + "medical health diseases and conditions endocrine and metabolic diseases menopause", + "menopause" + ], + "label": "Menopause", + "level": 4, + "parent_id": "290", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases", + "Menopause" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause. Canonical label: Menopause. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases. Keywords: diseases and conditions, endocrine and metabolic diseases, medical health, medical health diseases and conditions endocrine and metabolic diseases menopause, menopause", + "unique_id": "292" + }, + { + "keywords": [ + "diseases and conditions", + "endocrine and metabolic diseases", + "medical health", + "medical health diseases and conditions endocrine and metabolic diseases thyroid disorders", + "thyroid disorders" + ], + "label": "Thyroid Disorders", + "level": 4, + "parent_id": "290", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Endocrine and Metabolic Diseases", + "Thyroid Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders. Canonical label: Thyroid Disorders. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases. Keywords: diseases and conditions, endocrine and metabolic diseases, medical health, medical health diseases and conditions endocrine and metabolic diseases thyroid disorders, thyroid disorders", + "unique_id": "293" + }, + { + "keywords": [ + "diseases and conditions", + "eye and vision conditions", + "medical health", + "medical health diseases and conditions eye and vision conditions" + ], + "label": "Eye and Vision Conditions", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Eye and Vision Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Eye and Vision Conditions. Canonical label: Eye and Vision Conditions. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, eye and vision conditions, medical health, medical health diseases and conditions eye and vision conditions", + "unique_id": "294" + }, + { + "keywords": [ + "diseases and conditions", + "foot health", + "medical health", + "medical health diseases and conditions foot health" + ], + "label": "Foot Health", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Foot Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Foot Health", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Foot Health. Canonical label: Foot Health. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, foot health, medical health, medical health diseases and conditions foot health", + "unique_id": "295" + }, + { + "keywords": [ + "diseases and conditions", + "heart and cardiovascular diseases", + "medical health", + "medical health diseases and conditions heart and cardiovascular diseases" + ], + "label": "Heart and Cardiovascular Diseases", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Heart and Cardiovascular Diseases" + ], + "path_label": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases. Canonical label: Heart and Cardiovascular Diseases. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, heart and cardiovascular diseases, medical health, medical health diseases and conditions heart and cardiovascular diseases", + "unique_id": "296" + }, + { + "keywords": [ + "diseases and conditions", + "infectious diseases", + "medical health", + "medical health diseases and conditions infectious diseases" + ], + "label": "Infectious Diseases", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Infectious Diseases" + ], + "path_label": "Medical Health > Diseases and Conditions > Infectious Diseases", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Infectious Diseases. Canonical label: Infectious Diseases. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, infectious diseases, medical health, medical health diseases and conditions infectious diseases", + "unique_id": "297" + }, + { + "keywords": [ + "diseases and conditions", + "injuries", + "medical health", + "medical health diseases and conditions injuries" + ], + "label": "Injuries", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Injuries" + ], + "path_label": "Medical Health > Diseases and Conditions > Injuries", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Injuries. Canonical label: Injuries. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, injuries, medical health, medical health diseases and conditions injuries", + "unique_id": "298" + }, + { + "keywords": [ + "diseases and conditions", + "first aid", + "injuries", + "medical health", + "medical health diseases and conditions injuries first aid" + ], + "label": "First Aid", + "level": 4, + "parent_id": "298", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Injuries", + "First Aid" + ], + "path_label": "Medical Health > Diseases and Conditions > Injuries > First Aid", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Injuries > First Aid. Canonical label: First Aid. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Injuries. Keywords: diseases and conditions, first aid, injuries, medical health, medical health diseases and conditions injuries first aid", + "unique_id": "299" + }, + { + "keywords": [ + "diseases and conditions", + "lung and respiratory health", + "medical health", + "medical health diseases and conditions lung and respiratory health" + ], + "label": "Lung and Respiratory Health", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Lung and Respiratory Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Lung and Respiratory Health. Canonical label: Lung and Respiratory Health. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, lung and respiratory health, medical health, medical health diseases and conditions lung and respiratory health", + "unique_id": "300" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions mental health", + "mental health" + ], + "label": "Mental Health", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Mental Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Mental Health", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Mental Health. Canonical label: Mental Health. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, medical health, medical health diseases and conditions mental health, mental health", + "unique_id": "301" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions reproductive health", + "reproductive health" + ], + "label": "Reproductive Health", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Reproductive Health. Canonical label: Reproductive Health. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, medical health, medical health diseases and conditions reproductive health, reproductive health", + "unique_id": "302" + }, + { + "keywords": [ + "birth control", + "diseases and conditions", + "medical health", + "medical health diseases and conditions reproductive health birth control", + "reproductive health" + ], + "label": "Birth Control", + "level": 4, + "parent_id": "302", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health", + "Birth Control" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Reproductive Health > Birth Control. Canonical label: Birth Control. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Reproductive Health. Keywords: birth control, diseases and conditions, medical health, medical health diseases and conditions reproductive health birth control, reproductive health", + "unique_id": "303" + }, + { + "keywords": [ + "diseases and conditions", + "infertility", + "medical health", + "medical health diseases and conditions reproductive health infertility", + "reproductive health" + ], + "label": "Infertility", + "level": 4, + "parent_id": "302", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health", + "Infertility" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Reproductive Health > Infertility. Canonical label: Infertility. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Reproductive Health. Keywords: diseases and conditions, infertility, medical health, medical health diseases and conditions reproductive health infertility, reproductive health", + "unique_id": "304" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions reproductive health pregnancy", + "pregnancy", + "reproductive health" + ], + "label": "Pregnancy", + "level": 4, + "parent_id": "302", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Reproductive Health", + "Pregnancy" + ], + "path_label": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy. Canonical label: Pregnancy. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Reproductive Health. Keywords: diseases and conditions, medical health, medical health diseases and conditions reproductive health pregnancy, pregnancy, reproductive health", + "unique_id": "305" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions sexual health", + "sexual health" + ], + "label": "Sexual Health", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Sexual Health" + ], + "path_label": "Medical Health > Diseases and Conditions > Sexual Health", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Sexual Health. Canonical label: Sexual Health. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, medical health, medical health diseases and conditions sexual health, sexual health", + "unique_id": "307" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions sexual health sexual conditions", + "sexual conditions", + "sexual health" + ], + "label": "Sexual Conditions", + "level": 4, + "parent_id": "307", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Sexual Health", + "Sexual Conditions" + ], + "path_label": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions. Canonical label: Sexual Conditions. Tier depth: 4. Parent path: Medical Health > Diseases and Conditions > Sexual Health. Keywords: diseases and conditions, medical health, medical health diseases and conditions sexual health sexual conditions, sexual conditions, sexual health", + "unique_id": "308" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions skin and dermatology", + "skin and dermatology" + ], + "label": "Skin and Dermatology", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Skin and Dermatology" + ], + "path_label": "Medical Health > Diseases and Conditions > Skin and Dermatology", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Skin and Dermatology. Canonical label: Skin and Dermatology. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, medical health, medical health diseases and conditions skin and dermatology, skin and dermatology", + "unique_id": "309" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions sleep disorders", + "sleep disorders" + ], + "label": "Sleep Disorders", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Sleep Disorders" + ], + "path_label": "Medical Health > Diseases and Conditions > Sleep Disorders", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Sleep Disorders. Canonical label: Sleep Disorders. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, medical health, medical health diseases and conditions sleep disorders, sleep disorders", + "unique_id": "310" + }, + { + "keywords": [ + "diseases and conditions", + "medical health", + "medical health diseases and conditions substance abuse", + "substance abuse" + ], + "label": "Substance Abuse", + "level": 3, + "parent_id": "287", + "path": [ + "Medical Health", + "Diseases and Conditions", + "Substance Abuse" + ], + "path_label": "Medical Health > Diseases and Conditions > Substance Abuse", + "retrieval_text": "IAB category path: Medical Health > Diseases and Conditions > Substance Abuse. Canonical label: Substance Abuse. Tier depth: 3. Parent path: Medical Health > Diseases and Conditions. Keywords: diseases and conditions, medical health, medical health diseases and conditions substance abuse, substance abuse", + "unique_id": "311" + }, + { + "keywords": [ + "medical health", + "medical health medical tests", + "medical tests" + ], + "label": "Medical Tests", + "level": 2, + "parent_id": "286", + "path": [ + "Medical Health", + "Medical Tests" + ], + "path_label": "Medical Health > Medical Tests", + "retrieval_text": "IAB category path: Medical Health > Medical Tests. Canonical label: Medical Tests. Tier depth: 2. Parent path: Medical Health. Keywords: medical health, medical health medical tests, medical tests", + "unique_id": "319" + }, + { + "keywords": [ + "medical health", + "medical health pharmaceutical drugs", + "pharmaceutical drugs" + ], + "label": "Pharmaceutical Drugs", + "level": 2, + "parent_id": "286", + "path": [ + "Medical Health", + "Pharmaceutical Drugs" + ], + "path_label": "Medical Health > Pharmaceutical Drugs", + "retrieval_text": "IAB category path: Medical Health > Pharmaceutical Drugs. Canonical label: Pharmaceutical Drugs. Tier depth: 2. Parent path: Medical Health. Keywords: medical health, medical health pharmaceutical drugs, pharmaceutical drugs", + "unique_id": "320" + }, + { + "keywords": [ + "medical health", + "medical health surgery", + "surgery" + ], + "label": "Surgery", + "level": 2, + "parent_id": "286", + "path": [ + "Medical Health", + "Surgery" + ], + "path_label": "Medical Health > Surgery", + "retrieval_text": "IAB category path: Medical Health > Surgery. Canonical label: Surgery. Tier depth: 2. Parent path: Medical Health. Keywords: medical health, medical health surgery, surgery", + "unique_id": "321" + }, + { + "keywords": [ + "medical health", + "medical health vaccines", + "vaccines" + ], + "label": "Vaccines", + "level": 2, + "parent_id": "286", + "path": [ + "Medical Health", + "Vaccines" + ], + "path_label": "Medical Health > Vaccines", + "retrieval_text": "IAB category path: Medical Health > Vaccines. Canonical label: Vaccines. Tier depth: 2. Parent path: Medical Health. Keywords: medical health, medical health vaccines, vaccines", + "unique_id": "322" + }, + { + "keywords": [ + "adult album alternative", + "entertainment", + "entertainment music adult album alternative", + "music" + ], + "label": "Adult Album Alternative", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Adult Album Alternative" + ], + "path_label": "Entertainment > Music > Adult Album Alternative", + "retrieval_text": "IAB category path: Entertainment > Music > Adult Album Alternative. Canonical label: Adult Album Alternative. Tier depth: 3. Parent path: Entertainment > Music. Keywords: adult album alternative, entertainment, entertainment music adult album alternative, music", + "unique_id": "342" + }, + { + "keywords": [ + "adult contemporary music", + "entertainment", + "entertainment music adult contemporary music", + "music" + ], + "label": "Adult Contemporary Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Adult Contemporary Music" + ], + "path_label": "Entertainment > Music > Adult Contemporary Music", + "retrieval_text": "IAB category path: Entertainment > Music > Adult Contemporary Music. Canonical label: Adult Contemporary Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: adult contemporary music, entertainment, entertainment music adult contemporary music, music", + "unique_id": "339" + }, + { + "keywords": [ + "adult contemporary music", + "entertainment", + "entertainment music adult contemporary music soft ac music", + "music", + "soft ac music" + ], + "label": "Soft AC Music", + "level": 4, + "parent_id": "339", + "path": [ + "Entertainment", + "Music", + "Adult Contemporary Music", + "Soft AC Music" + ], + "path_label": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", + "retrieval_text": "IAB category path: Entertainment > Music > Adult Contemporary Music > Soft AC Music. Canonical label: Soft AC Music. Tier depth: 4. Parent path: Entertainment > Music > Adult Contemporary Music. Keywords: adult contemporary music, entertainment, entertainment music adult contemporary music soft ac music, music, soft ac music", + "unique_id": "340" + }, + { + "keywords": [ + "adult contemporary music", + "entertainment", + "entertainment music adult contemporary music urban ac music", + "music", + "urban ac music" + ], + "label": "Urban AC Music", + "level": 4, + "parent_id": "339", + "path": [ + "Entertainment", + "Music", + "Adult Contemporary Music", + "Urban AC Music" + ], + "path_label": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", + "retrieval_text": "IAB category path: Entertainment > Music > Adult Contemporary Music > Urban AC Music. Canonical label: Urban AC Music. Tier depth: 4. Parent path: Entertainment > Music > Adult Contemporary Music. Keywords: adult contemporary music, entertainment, entertainment music adult contemporary music urban ac music, music, urban ac music", + "unique_id": "341" + }, + { + "keywords": [ + "alternative music", + "entertainment", + "entertainment music alternative music", + "music" + ], + "label": "Alternative Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Alternative Music" + ], + "path_label": "Entertainment > Music > Alternative Music", + "retrieval_text": "IAB category path: Entertainment > Music > Alternative Music. Canonical label: Alternative Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: alternative music, entertainment, entertainment music alternative music, music", + "unique_id": "343" + }, + { + "keywords": [ + "blues", + "entertainment", + "entertainment music blues", + "music" + ], + "label": "Blues", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Blues" + ], + "path_label": "Entertainment > Music > Blues", + "retrieval_text": "IAB category path: Entertainment > Music > Blues. Canonical label: Blues. Tier depth: 3. Parent path: Entertainment > Music. Keywords: blues, entertainment, entertainment music blues, music", + "unique_id": "360" + }, + { + "keywords": [ + "children s music", + "entertainment", + "entertainment music children s music", + "music" + ], + "label": "Children's Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Children's Music" + ], + "path_label": "Entertainment > Music > Children's Music", + "retrieval_text": "IAB category path: Entertainment > Music > Children's Music. Canonical label: Children's Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: children s music, entertainment, entertainment music children s music, music", + "unique_id": "344" + }, + { + "keywords": [ + "classic hits", + "entertainment", + "entertainment music classic hits", + "music" + ], + "label": "Classic Hits", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Classic Hits" + ], + "path_label": "Entertainment > Music > Classic Hits", + "retrieval_text": "IAB category path: Entertainment > Music > Classic Hits. Canonical label: Classic Hits. Tier depth: 3. Parent path: Entertainment > Music. Keywords: classic hits, entertainment, entertainment music classic hits, music", + "unique_id": "345" + }, + { + "keywords": [ + "classical music", + "entertainment", + "entertainment music classical music", + "music" + ], + "label": "Classical Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Classical Music" + ], + "path_label": "Entertainment > Music > Classical Music", + "retrieval_text": "IAB category path: Entertainment > Music > Classical Music. Canonical label: Classical Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: classical music, entertainment, entertainment music classical music, music", + "unique_id": "346" + }, + { + "keywords": [ + "college radio", + "entertainment", + "entertainment music college radio", + "music" + ], + "label": "College Radio", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "College Radio" + ], + "path_label": "Entertainment > Music > College Radio", + "retrieval_text": "IAB category path: Entertainment > Music > College Radio. Canonical label: College Radio. Tier depth: 3. Parent path: Entertainment > Music. Keywords: college radio, entertainment, entertainment music college radio, music", + "unique_id": "347" + }, + { + "keywords": [ + "comedy music and audio", + "entertainment", + "entertainment music comedy music and audio", + "music" + ], + "label": "Comedy (Music and Audio)", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Comedy (Music and Audio)" + ], + "path_label": "Entertainment > Music > Comedy (Music and Audio)", + "retrieval_text": "IAB category path: Entertainment > Music > Comedy (Music and Audio). Canonical label: Comedy (Music and Audio). Tier depth: 3. Parent path: Entertainment > Music. Keywords: comedy music and audio, entertainment, entertainment music comedy music and audio, music", + "unique_id": "348" + }, + { + "keywords": [ + "contemporary hits pop top 40", + "entertainment", + "entertainment music contemporary hits pop top 40", + "music" + ], + "label": "Contemporary Hits/Pop/Top 40", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Contemporary Hits/Pop/Top 40" + ], + "path_label": "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "retrieval_text": "IAB category path: Entertainment > Music > Contemporary Hits/Pop/Top 40. Canonical label: Contemporary Hits/Pop/Top 40. Tier depth: 3. Parent path: Entertainment > Music. Keywords: contemporary hits pop top 40, entertainment, entertainment music contemporary hits pop top 40, music", + "unique_id": "349" + }, + { + "keywords": [ + "country music", + "entertainment", + "entertainment music country music", + "music" + ], + "label": "Country Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Country Music" + ], + "path_label": "Entertainment > Music > Country Music", + "retrieval_text": "IAB category path: Entertainment > Music > Country Music. Canonical label: Country Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: country music, entertainment, entertainment music country music, music", + "unique_id": "350" + }, + { + "keywords": [ + "dance and electronic music", + "entertainment", + "entertainment music dance and electronic music", + "music" + ], + "label": "Dance and Electronic Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Dance and Electronic Music" + ], + "path_label": "Entertainment > Music > Dance and Electronic Music", + "retrieval_text": "IAB category path: Entertainment > Music > Dance and Electronic Music. Canonical label: Dance and Electronic Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: dance and electronic music, entertainment, entertainment music dance and electronic music, music", + "unique_id": "351" + }, + { + "keywords": [ + "entertainment", + "entertainment music gospel music", + "gospel music", + "music" + ], + "label": "Gospel Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Gospel Music" + ], + "path_label": "Entertainment > Music > Gospel Music", + "retrieval_text": "IAB category path: Entertainment > Music > Gospel Music. Canonical label: Gospel Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music gospel music, gospel music, music", + "unique_id": "354" + }, + { + "keywords": [ + "entertainment", + "entertainment music hip hop music", + "hip hop music", + "music" + ], + "label": "Hip Hop Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Hip Hop Music" + ], + "path_label": "Entertainment > Music > Hip Hop Music", + "retrieval_text": "IAB category path: Entertainment > Music > Hip Hop Music. Canonical label: Hip Hop Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music hip hop music, hip hop music, music", + "unique_id": "355" + }, + { + "keywords": [ + "entertainment", + "entertainment music inspirational new age music", + "inspirational new age music", + "music" + ], + "label": "Inspirational/New Age Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Inspirational/New Age Music" + ], + "path_label": "Entertainment > Music > Inspirational/New Age Music", + "retrieval_text": "IAB category path: Entertainment > Music > Inspirational/New Age Music. Canonical label: Inspirational/New Age Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music inspirational new age music, inspirational new age music, music", + "unique_id": "356" + }, + { + "keywords": [ + "entertainment", + "entertainment music jazz", + "jazz", + "music" + ], + "label": "Jazz", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Jazz" + ], + "path_label": "Entertainment > Music > Jazz", + "retrieval_text": "IAB category path: Entertainment > Music > Jazz. Canonical label: Jazz. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music jazz, jazz, music", + "unique_id": "357" + }, + { + "keywords": [ + "entertainment", + "entertainment music oldies adult standards", + "music", + "oldies adult standards" + ], + "label": "Oldies/Adult Standards", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Oldies/Adult Standards" + ], + "path_label": "Entertainment > Music > Oldies/Adult Standards", + "retrieval_text": "IAB category path: Entertainment > Music > Oldies/Adult Standards. Canonical label: Oldies/Adult Standards. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music oldies adult standards, music, oldies adult standards", + "unique_id": "358" + }, + { + "keywords": [ + "entertainment", + "entertainment music r and b soul funk", + "music", + "r and b soul funk" + ], + "label": "R&B/Soul/Funk", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "R&B/Soul/Funk" + ], + "path_label": "Entertainment > Music > R&B/Soul/Funk", + "retrieval_text": "IAB category path: Entertainment > Music > R&B/Soul/Funk. Canonical label: R&B/Soul/Funk. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music r and b soul funk, music, r and b soul funk", + "unique_id": "362" + }, + { + "keywords": [ + "entertainment", + "entertainment music reggae", + "music", + "reggae" + ], + "label": "Reggae", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Reggae" + ], + "path_label": "Entertainment > Music > Reggae", + "retrieval_text": "IAB category path: Entertainment > Music > Reggae. Canonical label: Reggae. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music reggae, music, reggae", + "unique_id": "359" + }, + { + "keywords": [ + "entertainment", + "entertainment music religious music and audio", + "music", + "religious music and audio" + ], + "label": "Religious (Music and Audio)", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Religious (Music and Audio)" + ], + "path_label": "Entertainment > Music > Religious (Music and Audio)", + "retrieval_text": "IAB category path: Entertainment > Music > Religious (Music and Audio). Canonical label: Religious (Music and Audio). Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music religious music and audio, music, religious music and audio", + "unique_id": "361" + }, + { + "keywords": [ + "entertainment", + "entertainment music rock music", + "music", + "rock music" + ], + "label": "Rock Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Rock Music" + ], + "path_label": "Entertainment > Music > Rock Music", + "retrieval_text": "IAB category path: Entertainment > Music > Rock Music. Canonical label: Rock Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music rock music, music, rock music", + "unique_id": "363" + }, + { + "keywords": [ + "album oriented rock", + "entertainment", + "entertainment music rock music album oriented rock", + "music", + "rock music" + ], + "label": "Album-oriented Rock", + "level": 4, + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Album-oriented Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Album-oriented Rock", + "retrieval_text": "IAB category path: Entertainment > Music > Rock Music > Album-oriented Rock. Canonical label: Album-oriented Rock. Tier depth: 4. Parent path: Entertainment > Music > Rock Music. Keywords: album oriented rock, entertainment, entertainment music rock music album oriented rock, music, rock music", + "unique_id": "364" + }, + { + "keywords": [ + "alternative rock", + "entertainment", + "entertainment music rock music alternative rock", + "music", + "rock music" + ], + "label": "Alternative Rock", + "level": 4, + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Alternative Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Alternative Rock", + "retrieval_text": "IAB category path: Entertainment > Music > Rock Music > Alternative Rock. Canonical label: Alternative Rock. Tier depth: 4. Parent path: Entertainment > Music > Rock Music. Keywords: alternative rock, entertainment, entertainment music rock music alternative rock, music, rock music", + "unique_id": "365" + }, + { + "keywords": [ + "classic rock", + "entertainment", + "entertainment music rock music classic rock", + "music", + "rock music" + ], + "label": "Classic Rock", + "level": 4, + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Classic Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Classic Rock", + "retrieval_text": "IAB category path: Entertainment > Music > Rock Music > Classic Rock. Canonical label: Classic Rock. Tier depth: 4. Parent path: Entertainment > Music > Rock Music. Keywords: classic rock, entertainment, entertainment music rock music classic rock, music, rock music", + "unique_id": "366" + }, + { + "keywords": [ + "entertainment", + "entertainment music rock music hard rock", + "hard rock", + "music", + "rock music" + ], + "label": "Hard Rock", + "level": 4, + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Hard Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Hard Rock", + "retrieval_text": "IAB category path: Entertainment > Music > Rock Music > Hard Rock. Canonical label: Hard Rock. Tier depth: 4. Parent path: Entertainment > Music > Rock Music. Keywords: entertainment, entertainment music rock music hard rock, hard rock, music, rock music", + "unique_id": "367" + }, + { + "keywords": [ + "entertainment", + "entertainment music rock music soft rock", + "music", + "rock music", + "soft rock" + ], + "label": "Soft Rock", + "level": 4, + "parent_id": "363", + "path": [ + "Entertainment", + "Music", + "Rock Music", + "Soft Rock" + ], + "path_label": "Entertainment > Music > Rock Music > Soft Rock", + "retrieval_text": "IAB category path: Entertainment > Music > Rock Music > Soft Rock. Canonical label: Soft Rock. Tier depth: 4. Parent path: Entertainment > Music > Rock Music. Keywords: entertainment, entertainment music rock music soft rock, music, rock music, soft rock", + "unique_id": "368" + }, + { + "keywords": [ + "entertainment", + "entertainment music songwriters folk", + "music", + "songwriters folk" + ], + "label": "Songwriters/Folk", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Songwriters/Folk" + ], + "path_label": "Entertainment > Music > Songwriters/Folk", + "retrieval_text": "IAB category path: Entertainment > Music > Songwriters/Folk. Canonical label: Songwriters/Folk. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music songwriters folk, music, songwriters folk", + "unique_id": "353" + }, + { + "keywords": [ + "entertainment", + "entertainment music soundtracks tv and showtunes", + "music", + "soundtracks tv and showtunes" + ], + "label": "Soundtracks, TV and Showtunes", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Soundtracks, TV and Showtunes" + ], + "path_label": "Entertainment > Music > Soundtracks, TV and Showtunes", + "retrieval_text": "IAB category path: Entertainment > Music > Soundtracks, TV and Showtunes. Canonical label: Soundtracks, TV and Showtunes. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music soundtracks tv and showtunes, music, soundtracks tv and showtunes", + "unique_id": "369" + }, + { + "keywords": [ + "entertainment", + "entertainment music world international music", + "music", + "world international music" + ], + "label": "World/International Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "World/International Music" + ], + "path_label": "Entertainment > Music > World/International Music", + "retrieval_text": "IAB category path: Entertainment > Music > World/International Music. Canonical label: World/International Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music world international music, music, world international music", + "unique_id": "352" + }, + { + "keywords": [ + "entertainment", + "entertainment music urban contemporary music", + "music", + "urban contemporary music" + ], + "label": "Urban Contemporary Music", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Urban Contemporary Music" + ], + "path_label": "Entertainment > Music > Urban Contemporary Music", + "retrieval_text": "IAB category path: Entertainment > Music > Urban Contemporary Music. Canonical label: Urban Contemporary Music. Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music urban contemporary music, music, urban contemporary music", + "unique_id": "377" + }, + { + "keywords": [ + "entertainment", + "entertainment music variety music and audio", + "music", + "variety music and audio" + ], + "label": "Variety (Music and Audio)", + "level": 3, + "parent_id": "338", + "path": [ + "Entertainment", + "Music", + "Variety (Music and Audio)" + ], + "path_label": "Entertainment > Music > Variety (Music and Audio)", + "retrieval_text": "IAB category path: Entertainment > Music > Variety (Music and Audio). Canonical label: Variety (Music and Audio). Tier depth: 3. Parent path: Entertainment > Music. Keywords: entertainment, entertainment music variety music and audio, music, variety music and audio", + "unique_id": "378" + }, + { + "keywords": [ + "personal celebrations and life events" + ], + "label": "Personal Celebrations & Life Events", + "level": 1, + "parent_id": null, + "path": [ + "Personal Celebrations & Life Events" + ], + "path_label": "Personal Celebrations & Life Events", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events. Canonical label: Personal Celebrations & Life Events. Tier depth: 1. Keywords: personal celebrations and life events", + "unique_id": "163" + }, + { + "keywords": [ + "anniversary", + "personal celebrations and life events", + "personal celebrations and life events anniversary" + ], + "label": "Anniversary", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Anniversary" + ], + "path_label": "Personal Celebrations & Life Events > Anniversary", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Anniversary. Canonical label: Anniversary. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: anniversary, personal celebrations and life events, personal celebrations and life events anniversary", + "unique_id": "164" + }, + { + "keywords": [ + "baby shower", + "personal celebrations and life events", + "personal celebrations and life events baby shower" + ], + "label": "Baby Shower", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Baby Shower" + ], + "path_label": "Personal Celebrations & Life Events > Baby Shower", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Baby Shower. Canonical label: Baby Shower. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: baby shower, personal celebrations and life events, personal celebrations and life events baby shower", + "unique_id": "166" + }, + { + "keywords": [ + "bachelor party", + "personal celebrations and life events", + "personal celebrations and life events bachelor party" + ], + "label": "Bachelor Party", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Bachelor Party" + ], + "path_label": "Personal Celebrations & Life Events > Bachelor Party", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Bachelor Party. Canonical label: Bachelor Party. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: bachelor party, personal celebrations and life events, personal celebrations and life events bachelor party", + "unique_id": "167" + }, + { + "keywords": [ + "bachelorette party", + "personal celebrations and life events", + "personal celebrations and life events bachelorette party" + ], + "label": "Bachelorette Party", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Bachelorette Party" + ], + "path_label": "Personal Celebrations & Life Events > Bachelorette Party", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Bachelorette Party. Canonical label: Bachelorette Party. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: bachelorette party, personal celebrations and life events, personal celebrations and life events bachelorette party", + "unique_id": "168" + }, + { + "keywords": [ + "birth", + "personal celebrations and life events", + "personal celebrations and life events birth" + ], + "label": "Birth", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Birth" + ], + "path_label": "Personal Celebrations & Life Events > Birth", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Birth. Canonical label: Birth. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: birth, personal celebrations and life events, personal celebrations and life events birth", + "unique_id": "169" + }, + { + "keywords": [ + "birthday", + "personal celebrations and life events", + "personal celebrations and life events birthday" + ], + "label": "Birthday", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Birthday" + ], + "path_label": "Personal Celebrations & Life Events > Birthday", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Birthday. Canonical label: Birthday. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: birthday, personal celebrations and life events, personal celebrations and life events birthday", + "unique_id": "170" + }, + { + "keywords": [ + "funeral", + "personal celebrations and life events", + "personal celebrations and life events funeral" + ], + "label": "Funeral", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Funeral" + ], + "path_label": "Personal Celebrations & Life Events > Funeral", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Funeral. Canonical label: Funeral. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: funeral, personal celebrations and life events, personal celebrations and life events funeral", + "unique_id": "171" + }, + { + "keywords": [ + "graduation", + "personal celebrations and life events", + "personal celebrations and life events graduation" + ], + "label": "Graduation", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Graduation" + ], + "path_label": "Personal Celebrations & Life Events > Graduation", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Graduation. Canonical label: Graduation. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: graduation, personal celebrations and life events, personal celebrations and life events graduation", + "unique_id": "172" + }, + { + "keywords": [ + "personal celebrations and life events", + "personal celebrations and life events prom", + "prom" + ], + "label": "Prom", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Prom" + ], + "path_label": "Personal Celebrations & Life Events > Prom", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Prom. Canonical label: Prom. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: personal celebrations and life events, personal celebrations and life events prom, prom", + "unique_id": "173" + }, + { + "keywords": [ + "personal celebrations and life events", + "personal celebrations and life events wedding", + "wedding" + ], + "label": "Wedding", + "level": 2, + "parent_id": "163", + "path": [ + "Personal Celebrations & Life Events", + "Wedding" + ], + "path_label": "Personal Celebrations & Life Events > Wedding", + "retrieval_text": "IAB category path: Personal Celebrations & Life Events > Wedding. Canonical label: Wedding. Tier depth: 2. Parent path: Personal Celebrations & Life Events. Keywords: personal celebrations and life events, personal celebrations and life events wedding, wedding", + "unique_id": "165" + }, + { + "keywords": [ + "personal finance" + ], + "label": "Personal Finance", + "level": 1, + "parent_id": null, + "path": [ + "Personal Finance" + ], + "path_label": "Personal Finance", + "retrieval_text": "IAB category path: Personal Finance. Canonical label: Personal Finance. Tier depth: 1. Keywords: personal finance", + "unique_id": "391" + }, + { + "keywords": [ + "consumer banking", + "personal finance", + "personal finance consumer banking" + ], + "label": "Consumer Banking", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Consumer Banking" + ], + "path_label": "Personal Finance > Consumer Banking", + "retrieval_text": "IAB category path: Personal Finance > Consumer Banking. Canonical label: Consumer Banking. Tier depth: 2. Parent path: Personal Finance. Keywords: consumer banking, personal finance, personal finance consumer banking", + "unique_id": "392" + }, + { + "keywords": [ + "financial assistance", + "personal finance", + "personal finance financial assistance" + ], + "label": "Financial Assistance", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Financial Assistance" + ], + "path_label": "Personal Finance > Financial Assistance", + "retrieval_text": "IAB category path: Personal Finance > Financial Assistance. Canonical label: Financial Assistance. Tier depth: 2. Parent path: Personal Finance. Keywords: financial assistance, personal finance, personal finance financial assistance", + "unique_id": "393" + }, + { + "keywords": [ + "financial assistance", + "government support and welfare", + "personal finance", + "personal finance financial assistance government support and welfare" + ], + "label": "Government Support and Welfare", + "level": 3, + "parent_id": "393", + "path": [ + "Personal Finance", + "Financial Assistance", + "Government Support and Welfare" + ], + "path_label": "Personal Finance > Financial Assistance > Government Support and Welfare", + "retrieval_text": "IAB category path: Personal Finance > Financial Assistance > Government Support and Welfare. Canonical label: Government Support and Welfare. Tier depth: 3. Parent path: Personal Finance > Financial Assistance. Keywords: financial assistance, government support and welfare, personal finance, personal finance financial assistance government support and welfare", + "unique_id": "394" + }, + { + "keywords": [ + "financial assistance", + "personal finance", + "personal finance financial assistance student financial aid", + "student financial aid" + ], + "label": "Student Financial Aid", + "level": 3, + "parent_id": "393", + "path": [ + "Personal Finance", + "Financial Assistance", + "Student Financial Aid" + ], + "path_label": "Personal Finance > Financial Assistance > Student Financial Aid", + "retrieval_text": "IAB category path: Personal Finance > Financial Assistance > Student Financial Aid. Canonical label: Student Financial Aid. Tier depth: 3. Parent path: Personal Finance > Financial Assistance. Keywords: financial assistance, personal finance, personal finance financial assistance student financial aid, student financial aid", + "unique_id": "395" + }, + { + "keywords": [ + "financial planning", + "personal finance", + "personal finance financial planning" + ], + "label": "Financial Planning", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Financial Planning" + ], + "path_label": "Personal Finance > Financial Planning", + "retrieval_text": "IAB category path: Personal Finance > Financial Planning. Canonical label: Financial Planning. Tier depth: 2. Parent path: Personal Finance. Keywords: financial planning, personal finance, personal finance financial planning", + "unique_id": "396" + }, + { + "keywords": [ + "frugal living", + "personal finance", + "personal finance frugal living" + ], + "label": "Frugal Living", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Frugal Living" + ], + "path_label": "Personal Finance > Frugal Living", + "retrieval_text": "IAB category path: Personal Finance > Frugal Living. Canonical label: Frugal Living. Tier depth: 2. Parent path: Personal Finance. Keywords: frugal living, personal finance, personal finance frugal living", + "unique_id": "397" + }, + { + "keywords": [ + "home utilities", + "personal finance", + "personal finance home utilities" + ], + "label": "Home Utilities", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Home Utilities" + ], + "path_label": "Personal Finance > Home Utilities", + "retrieval_text": "IAB category path: Personal Finance > Home Utilities. Canonical label: Home Utilities. Tier depth: 2. Parent path: Personal Finance. Keywords: home utilities, personal finance, personal finance home utilities", + "unique_id": "417" + }, + { + "keywords": [ + "gas and electric", + "home utilities", + "personal finance", + "personal finance home utilities gas and electric" + ], + "label": "Gas and Electric", + "level": 3, + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Gas and Electric" + ], + "path_label": "Personal Finance > Home Utilities > Gas and Electric", + "retrieval_text": "IAB category path: Personal Finance > Home Utilities > Gas and Electric. Canonical label: Gas and Electric. Tier depth: 3. Parent path: Personal Finance > Home Utilities. Keywords: gas and electric, home utilities, personal finance, personal finance home utilities gas and electric", + "unique_id": "418" + }, + { + "keywords": [ + "home utilities", + "internet service providers", + "personal finance", + "personal finance home utilities internet service providers" + ], + "label": "Internet Service Providers", + "level": 3, + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Internet Service Providers" + ], + "path_label": "Personal Finance > Home Utilities > Internet Service Providers", + "retrieval_text": "IAB category path: Personal Finance > Home Utilities > Internet Service Providers. Canonical label: Internet Service Providers. Tier depth: 3. Parent path: Personal Finance > Home Utilities. Keywords: home utilities, internet service providers, personal finance, personal finance home utilities internet service providers", + "unique_id": "419" + }, + { + "keywords": [ + "home utilities", + "personal finance", + "personal finance home utilities phone services", + "phone services" + ], + "label": "Phone Services", + "level": 3, + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Phone Services" + ], + "path_label": "Personal Finance > Home Utilities > Phone Services", + "retrieval_text": "IAB category path: Personal Finance > Home Utilities > Phone Services. Canonical label: Phone Services. Tier depth: 3. Parent path: Personal Finance > Home Utilities. Keywords: home utilities, personal finance, personal finance home utilities phone services, phone services", + "unique_id": "420" + }, + { + "keywords": [ + "home utilities", + "personal finance", + "personal finance home utilities water services", + "water services" + ], + "label": "Water Services", + "level": 3, + "parent_id": "417", + "path": [ + "Personal Finance", + "Home Utilities", + "Water Services" + ], + "path_label": "Personal Finance > Home Utilities > Water Services", + "retrieval_text": "IAB category path: Personal Finance > Home Utilities > Water Services. Canonical label: Water Services. Tier depth: 3. Parent path: Personal Finance > Home Utilities. Keywords: home utilities, personal finance, personal finance home utilities water services, water services", + "unique_id": "421" + }, + { + "keywords": [ + "insurance", + "personal finance", + "personal finance insurance" + ], + "label": "Insurance", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Insurance" + ], + "path_label": "Personal Finance > Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance. Canonical label: Insurance. Tier depth: 2. Parent path: Personal Finance. Keywords: insurance, personal finance, personal finance insurance", + "unique_id": "398" + }, + { + "keywords": [ + "health insurance", + "insurance", + "personal finance", + "personal finance insurance health insurance" + ], + "label": "Health Insurance", + "level": 3, + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Health Insurance" + ], + "path_label": "Personal Finance > Insurance > Health Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance > Health Insurance. Canonical label: Health Insurance. Tier depth: 3. Parent path: Personal Finance > Insurance. Keywords: health insurance, insurance, personal finance, personal finance insurance health insurance", + "unique_id": "399" + }, + { + "keywords": [ + "home insurance", + "insurance", + "personal finance", + "personal finance insurance home insurance" + ], + "label": "Home Insurance", + "level": 3, + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Home Insurance" + ], + "path_label": "Personal Finance > Insurance > Home Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance > Home Insurance. Canonical label: Home Insurance. Tier depth: 3. Parent path: Personal Finance > Insurance. Keywords: home insurance, insurance, personal finance, personal finance insurance home insurance", + "unique_id": "400" + }, + { + "keywords": [ + "insurance", + "life insurance", + "personal finance", + "personal finance insurance life insurance" + ], + "label": "Life Insurance", + "level": 3, + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Life Insurance" + ], + "path_label": "Personal Finance > Insurance > Life Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance > Life Insurance. Canonical label: Life Insurance. Tier depth: 3. Parent path: Personal Finance > Insurance. Keywords: insurance, life insurance, personal finance, personal finance insurance life insurance", + "unique_id": "401" + }, + { + "keywords": [ + "insurance", + "motor insurance", + "personal finance", + "personal finance insurance motor insurance" + ], + "label": "Motor Insurance", + "level": 3, + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Motor Insurance" + ], + "path_label": "Personal Finance > Insurance > Motor Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance > Motor Insurance. Canonical label: Motor Insurance. Tier depth: 3. Parent path: Personal Finance > Insurance. Keywords: insurance, motor insurance, personal finance, personal finance insurance motor insurance", + "unique_id": "402" + }, + { + "keywords": [ + "insurance", + "personal finance", + "personal finance insurance pet insurance", + "pet insurance" + ], + "label": "Pet Insurance", + "level": 3, + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Pet Insurance" + ], + "path_label": "Personal Finance > Insurance > Pet Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance > Pet Insurance. Canonical label: Pet Insurance. Tier depth: 3. Parent path: Personal Finance > Insurance. Keywords: insurance, personal finance, personal finance insurance pet insurance, pet insurance", + "unique_id": "403" + }, + { + "keywords": [ + "insurance", + "personal finance", + "personal finance insurance travel insurance", + "travel insurance" + ], + "label": "Travel Insurance", + "level": 3, + "parent_id": "398", + "path": [ + "Personal Finance", + "Insurance", + "Travel Insurance" + ], + "path_label": "Personal Finance > Insurance > Travel Insurance", + "retrieval_text": "IAB category path: Personal Finance > Insurance > Travel Insurance. Canonical label: Travel Insurance. Tier depth: 3. Parent path: Personal Finance > Insurance. Keywords: insurance, personal finance, personal finance insurance travel insurance, travel insurance", + "unique_id": "404" + }, + { + "keywords": [ + "personal debt", + "personal finance", + "personal finance personal debt" + ], + "label": "Personal Debt", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Personal Debt" + ], + "path_label": "Personal Finance > Personal Debt", + "retrieval_text": "IAB category path: Personal Finance > Personal Debt. Canonical label: Personal Debt. Tier depth: 2. Parent path: Personal Finance. Keywords: personal debt, personal finance, personal finance personal debt", + "unique_id": "405" + }, + { + "keywords": [ + "credit cards", + "personal debt", + "personal finance", + "personal finance personal debt credit cards" + ], + "label": "Credit Cards", + "level": 3, + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Credit Cards" + ], + "path_label": "Personal Finance > Personal Debt > Credit Cards", + "retrieval_text": "IAB category path: Personal Finance > Personal Debt > Credit Cards. Canonical label: Credit Cards. Tier depth: 3. Parent path: Personal Finance > Personal Debt. Keywords: credit cards, personal debt, personal finance, personal finance personal debt credit cards", + "unique_id": "406" + }, + { + "keywords": [ + "home financing", + "personal debt", + "personal finance", + "personal finance personal debt home financing" + ], + "label": "Home Financing", + "level": 3, + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Home Financing" + ], + "path_label": "Personal Finance > Personal Debt > Home Financing", + "retrieval_text": "IAB category path: Personal Finance > Personal Debt > Home Financing. Canonical label: Home Financing. Tier depth: 3. Parent path: Personal Finance > Personal Debt. Keywords: home financing, personal debt, personal finance, personal finance personal debt home financing", + "unique_id": "407" + }, + { + "keywords": [ + "personal debt", + "personal finance", + "personal finance personal debt personal loans", + "personal loans" + ], + "label": "Personal Loans", + "level": 3, + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Personal Loans" + ], + "path_label": "Personal Finance > Personal Debt > Personal Loans", + "retrieval_text": "IAB category path: Personal Finance > Personal Debt > Personal Loans. Canonical label: Personal Loans. Tier depth: 3. Parent path: Personal Finance > Personal Debt. Keywords: personal debt, personal finance, personal finance personal debt personal loans, personal loans", + "unique_id": "408" + }, + { + "keywords": [ + "personal debt", + "personal finance", + "personal finance personal debt student loans", + "student loans" + ], + "label": "Student Loans", + "level": 3, + "parent_id": "405", + "path": [ + "Personal Finance", + "Personal Debt", + "Student Loans" + ], + "path_label": "Personal Finance > Personal Debt > Student Loans", + "retrieval_text": "IAB category path: Personal Finance > Personal Debt > Student Loans. Canonical label: Student Loans. Tier depth: 3. Parent path: Personal Finance > Personal Debt. Keywords: personal debt, personal finance, personal finance personal debt student loans, student loans", + "unique_id": "409" + }, + { + "keywords": [ + "personal finance", + "personal finance personal investing", + "personal investing" + ], + "label": "Personal Investing", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Personal Investing" + ], + "path_label": "Personal Finance > Personal Investing", + "retrieval_text": "IAB category path: Personal Finance > Personal Investing. Canonical label: Personal Investing. Tier depth: 2. Parent path: Personal Finance. Keywords: personal finance, personal finance personal investing, personal investing", + "unique_id": "410" + }, + { + "keywords": [ + "hedge funds", + "personal finance", + "personal finance personal investing hedge funds", + "personal investing" + ], + "label": "Hedge Funds", + "level": 3, + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Hedge Funds" + ], + "path_label": "Personal Finance > Personal Investing > Hedge Funds", + "retrieval_text": "IAB category path: Personal Finance > Personal Investing > Hedge Funds. Canonical label: Hedge Funds. Tier depth: 3. Parent path: Personal Finance > Personal Investing. Keywords: hedge funds, personal finance, personal finance personal investing hedge funds, personal investing", + "unique_id": "411" + }, + { + "keywords": [ + "mutual funds", + "personal finance", + "personal finance personal investing mutual funds", + "personal investing" + ], + "label": "Mutual Funds", + "level": 3, + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Mutual Funds" + ], + "path_label": "Personal Finance > Personal Investing > Mutual Funds", + "retrieval_text": "IAB category path: Personal Finance > Personal Investing > Mutual Funds. Canonical label: Mutual Funds. Tier depth: 3. Parent path: Personal Finance > Personal Investing. Keywords: mutual funds, personal finance, personal finance personal investing mutual funds, personal investing", + "unique_id": "412" + }, + { + "keywords": [ + "options", + "personal finance", + "personal finance personal investing options", + "personal investing" + ], + "label": "Options", + "level": 3, + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Options" + ], + "path_label": "Personal Finance > Personal Investing > Options", + "retrieval_text": "IAB category path: Personal Finance > Personal Investing > Options. Canonical label: Options. Tier depth: 3. Parent path: Personal Finance > Personal Investing. Keywords: options, personal finance, personal finance personal investing options, personal investing", + "unique_id": "413" + }, + { + "keywords": [ + "personal finance", + "personal finance personal investing stocks and bonds", + "personal investing", + "stocks and bonds" + ], + "label": "Stocks and Bonds", + "level": 3, + "parent_id": "410", + "path": [ + "Personal Finance", + "Personal Investing", + "Stocks and Bonds" + ], + "path_label": "Personal Finance > Personal Investing > Stocks and Bonds", + "retrieval_text": "IAB category path: Personal Finance > Personal Investing > Stocks and Bonds. Canonical label: Stocks and Bonds. Tier depth: 3. Parent path: Personal Finance > Personal Investing. Keywords: personal finance, personal finance personal investing stocks and bonds, personal investing, stocks and bonds", + "unique_id": "414" + }, + { + "keywords": [ + "personal finance", + "personal finance personal taxes", + "personal taxes" + ], + "label": "Personal Taxes", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Personal Taxes" + ], + "path_label": "Personal Finance > Personal Taxes", + "retrieval_text": "IAB category path: Personal Finance > Personal Taxes. Canonical label: Personal Taxes. Tier depth: 2. Parent path: Personal Finance. Keywords: personal finance, personal finance personal taxes, personal taxes", + "unique_id": "415" + }, + { + "keywords": [ + "personal finance", + "personal finance retirement planning", + "retirement planning" + ], + "label": "Retirement Planning", + "level": 2, + "parent_id": "391", + "path": [ + "Personal Finance", + "Retirement Planning" + ], + "path_label": "Personal Finance > Retirement Planning", + "retrieval_text": "IAB category path: Personal Finance > Retirement Planning. Canonical label: Retirement Planning. Tier depth: 2. Parent path: Personal Finance. Keywords: personal finance, personal finance retirement planning, retirement planning", + "unique_id": "416" + }, + { + "keywords": [ + "pets" + ], + "label": "Pets", + "level": 1, + "parent_id": null, + "path": [ + "Pets" + ], + "path_label": "Pets", + "retrieval_text": "IAB category path: Pets. Canonical label: Pets. Tier depth: 1. Keywords: pets", + "unique_id": "422" + }, + { + "keywords": [ + "birds", + "pets", + "pets birds" + ], + "label": "Birds", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Birds" + ], + "path_label": "Pets > Birds", + "retrieval_text": "IAB category path: Pets > Birds. Canonical label: Birds. Tier depth: 2. Parent path: Pets. Keywords: birds, pets, pets birds", + "unique_id": "423" + }, + { + "keywords": [ + "cats", + "pets", + "pets cats" + ], + "label": "Cats", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Cats" + ], + "path_label": "Pets > Cats", + "retrieval_text": "IAB category path: Pets > Cats. Canonical label: Cats. Tier depth: 2. Parent path: Pets. Keywords: cats, pets, pets cats", + "unique_id": "424" + }, + { + "keywords": [ + "dogs", + "pets", + "pets dogs" + ], + "label": "Dogs", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Dogs" + ], + "path_label": "Pets > Dogs", + "retrieval_text": "IAB category path: Pets > Dogs. Canonical label: Dogs. Tier depth: 2. Parent path: Pets. Keywords: dogs, pets, pets dogs", + "unique_id": "425" + }, + { + "keywords": [ + "fish and aquariums", + "pets", + "pets fish and aquariums" + ], + "label": "Fish and Aquariums", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Fish and Aquariums" + ], + "path_label": "Pets > Fish and Aquariums", + "retrieval_text": "IAB category path: Pets > Fish and Aquariums. Canonical label: Fish and Aquariums. Tier depth: 2. Parent path: Pets. Keywords: fish and aquariums, pets, pets fish and aquariums", + "unique_id": "426" + }, + { + "keywords": [ + "large animals", + "pets", + "pets large animals" + ], + "label": "Large Animals", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Large Animals" + ], + "path_label": "Pets > Large Animals", + "retrieval_text": "IAB category path: Pets > Large Animals. Canonical label: Large Animals. Tier depth: 2. Parent path: Pets. Keywords: large animals, pets, pets large animals", + "unique_id": "427" + }, + { + "keywords": [ + "pet adoptions", + "pets", + "pets pet adoptions" + ], + "label": "Pet Adoptions", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Pet Adoptions" + ], + "path_label": "Pets > Pet Adoptions", + "retrieval_text": "IAB category path: Pets > Pet Adoptions. Canonical label: Pet Adoptions. Tier depth: 2. Parent path: Pets. Keywords: pet adoptions, pets, pets pet adoptions", + "unique_id": "428" + }, + { + "keywords": [ + "pet supplies", + "pets", + "pets pet supplies" + ], + "label": "Pet Supplies", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Pet Supplies" + ], + "path_label": "Pets > Pet Supplies", + "retrieval_text": "IAB category path: Pets > Pet Supplies. Canonical label: Pet Supplies. Tier depth: 2. Parent path: Pets. Keywords: pet supplies, pets, pets pet supplies", + "unique_id": "431" + }, + { + "keywords": [ + "pets", + "pets reptiles", + "reptiles" + ], + "label": "Reptiles", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Reptiles" + ], + "path_label": "Pets > Reptiles", + "retrieval_text": "IAB category path: Pets > Reptiles. Canonical label: Reptiles. Tier depth: 2. Parent path: Pets. Keywords: pets, pets reptiles, reptiles", + "unique_id": "429" + }, + { + "keywords": [ + "pets", + "pets veterinary medicine", + "veterinary medicine" + ], + "label": "Veterinary Medicine", + "level": 2, + "parent_id": "422", + "path": [ + "Pets", + "Veterinary Medicine" + ], + "path_label": "Pets > Veterinary Medicine", + "retrieval_text": "IAB category path: Pets > Veterinary Medicine. Canonical label: Veterinary Medicine. Tier depth: 2. Parent path: Pets. Keywords: pets, pets veterinary medicine, veterinary medicine", + "unique_id": "430" + }, + { + "keywords": [ + "politics" + ], + "label": "Politics", + "level": 1, + "parent_id": null, + "path": [ + "Politics" + ], + "path_label": "Politics", + "retrieval_text": "IAB category path: Politics. Canonical label: Politics. Tier depth: 1. Keywords: politics", + "unique_id": "386" + }, + { + "keywords": [ + "civic affairs", + "politics", + "politics civic affairs" + ], + "label": "Civic affairs", + "level": 2, + "parent_id": "386", + "path": [ + "Politics", + "Civic affairs" + ], + "path_label": "Politics > Civic affairs", + "retrieval_text": "IAB category path: Politics > Civic affairs. Canonical label: Civic affairs. Tier depth: 2. Parent path: Politics. Keywords: civic affairs, politics, politics civic affairs", + "unique_id": "8YPBBL" + }, + { + "keywords": [ + "elections", + "politics", + "politics elections" + ], + "label": "Elections", + "level": 2, + "parent_id": "386", + "path": [ + "Politics", + "Elections" + ], + "path_label": "Politics > Elections", + "retrieval_text": "IAB category path: Politics > Elections. Canonical label: Elections. Tier depth: 2. Parent path: Politics. Keywords: elections, politics, politics elections", + "unique_id": "387" + }, + { + "keywords": [ + "political issues and policy", + "politics", + "politics political issues and policy" + ], + "label": "Political Issues & Policy", + "level": 2, + "parent_id": "386", + "path": [ + "Politics", + "Political Issues & policy" + ], + "path_label": "Politics > Political Issues & policy", + "retrieval_text": "IAB category path: Politics > Political Issues & policy. Canonical label: Political Issues & Policy. Tier depth: 2. Parent path: Politics. Keywords: political issues and policy, politics, politics political issues and policy", + "unique_id": "388" + }, + { + "keywords": [ + "pop culture" + ], + "label": "Pop Culture", + "level": 1, + "parent_id": null, + "path": [ + "Pop Culture" + ], + "path_label": "Pop Culture", + "retrieval_text": "IAB category path: Pop Culture. Canonical label: Pop Culture. Tier depth: 1. Keywords: pop culture", + "unique_id": "432" + }, + { + "keywords": [ + "celebrity deaths", + "pop culture", + "pop culture celebrity deaths" + ], + "label": "Celebrity Deaths", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Deaths" + ], + "path_label": "Pop Culture > Celebrity Deaths", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Deaths. Canonical label: Celebrity Deaths. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity deaths, pop culture, pop culture celebrity deaths", + "unique_id": "433" + }, + { + "keywords": [ + "celebrity families", + "pop culture", + "pop culture celebrity families" + ], + "label": "Celebrity Families", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Families" + ], + "path_label": "Pop Culture > Celebrity Families", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Families. Canonical label: Celebrity Families. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity families, pop culture, pop culture celebrity families", + "unique_id": "434" + }, + { + "keywords": [ + "celebrity homes", + "pop culture", + "pop culture celebrity homes" + ], + "label": "Celebrity Homes", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Homes" + ], + "path_label": "Pop Culture > Celebrity Homes", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Homes. Canonical label: Celebrity Homes. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity homes, pop culture, pop culture celebrity homes", + "unique_id": "435" + }, + { + "keywords": [ + "celebrity pregnancy", + "pop culture", + "pop culture celebrity pregnancy" + ], + "label": "Celebrity Pregnancy", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Pregnancy" + ], + "path_label": "Pop Culture > Celebrity Pregnancy", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Pregnancy. Canonical label: Celebrity Pregnancy. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity pregnancy, pop culture, pop culture celebrity pregnancy", + "unique_id": "436" + }, + { + "keywords": [ + "celebrity relationships", + "pop culture", + "pop culture celebrity relationships" + ], + "label": "Celebrity Relationships", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Relationships" + ], + "path_label": "Pop Culture > Celebrity Relationships", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Relationships. Canonical label: Celebrity Relationships. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity relationships, pop culture, pop culture celebrity relationships", + "unique_id": "437" + }, + { + "keywords": [ + "celebrity scandal", + "pop culture", + "pop culture celebrity scandal" + ], + "label": "Celebrity Scandal", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Scandal" + ], + "path_label": "Pop Culture > Celebrity Scandal", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Scandal. Canonical label: Celebrity Scandal. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity scandal, pop culture, pop culture celebrity scandal", + "unique_id": "438" + }, + { + "keywords": [ + "celebrity style", + "pop culture", + "pop culture celebrity style" + ], + "label": "Celebrity Style", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Celebrity Style" + ], + "path_label": "Pop Culture > Celebrity Style", + "retrieval_text": "IAB category path: Pop Culture > Celebrity Style. Canonical label: Celebrity Style. Tier depth: 2. Parent path: Pop Culture. Keywords: celebrity style, pop culture, pop culture celebrity style", + "unique_id": "439" + }, + { + "keywords": [ + "humor and satire", + "pop culture", + "pop culture humor and satire" + ], + "label": "Humor and Satire", + "level": 2, + "parent_id": "432", + "path": [ + "Pop Culture", + "Humor and Satire" + ], + "path_label": "Pop Culture > Humor and Satire", + "retrieval_text": "IAB category path: Pop Culture > Humor and Satire. Canonical label: Humor and Satire. Tier depth: 2. Parent path: Pop Culture. Keywords: humor and satire, pop culture, pop culture humor and satire", + "unique_id": "440" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "productivity", + "technology and computing", + "technology and computing computing computer software and applications productivity" + ], + "label": "Productivity", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Productivity" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Productivity. Canonical label: Productivity. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, productivity, technology and computing, technology and computing computing computer software and applications productivity", + "unique_id": "W3CW2J" + }, + { + "keywords": [ + "real estate" + ], + "label": "Real Estate", + "level": 1, + "parent_id": null, + "path": [ + "Real Estate" + ], + "path_label": "Real Estate", + "retrieval_text": "IAB category path: Real Estate. Canonical label: Real Estate. Tier depth: 1. Keywords: real estate", + "unique_id": "441" + }, + { + "keywords": [ + "apartments", + "real estate", + "real estate apartments" + ], + "label": "Apartments", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Apartments" + ], + "path_label": "Real Estate > Apartments", + "retrieval_text": "IAB category path: Real Estate > Apartments. Canonical label: Apartments. Tier depth: 2. Parent path: Real Estate. Keywords: apartments, real estate, real estate apartments", + "unique_id": "442" + }, + { + "keywords": [ + "developmental sites", + "real estate", + "real estate developmental sites" + ], + "label": "Developmental Sites", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Developmental Sites" + ], + "path_label": "Real Estate > Developmental Sites", + "retrieval_text": "IAB category path: Real Estate > Developmental Sites. Canonical label: Developmental Sites. Tier depth: 2. Parent path: Real Estate. Keywords: developmental sites, real estate, real estate developmental sites", + "unique_id": "445" + }, + { + "keywords": [ + "hotel properties", + "real estate", + "real estate hotel properties" + ], + "label": "Hotel Properties", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Hotel Properties" + ], + "path_label": "Real Estate > Hotel Properties", + "retrieval_text": "IAB category path: Real Estate > Hotel Properties. Canonical label: Hotel Properties. Tier depth: 2. Parent path: Real Estate. Keywords: hotel properties, real estate, real estate hotel properties", + "unique_id": "446" + }, + { + "keywords": [ + "houses", + "real estate", + "real estate houses" + ], + "label": "Houses", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Houses" + ], + "path_label": "Real Estate > Houses", + "retrieval_text": "IAB category path: Real Estate > Houses. Canonical label: Houses. Tier depth: 2. Parent path: Real Estate. Keywords: houses, real estate, real estate houses", + "unique_id": "447" + }, + { + "keywords": [ + "industrial property", + "real estate", + "real estate industrial property" + ], + "label": "Industrial Property", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Industrial Property" + ], + "path_label": "Real Estate > Industrial Property", + "retrieval_text": "IAB category path: Real Estate > Industrial Property. Canonical label: Industrial Property. Tier depth: 2. Parent path: Real Estate. Keywords: industrial property, real estate, real estate industrial property", + "unique_id": "448" + }, + { + "keywords": [ + "land and farms", + "real estate", + "real estate land and farms" + ], + "label": "Land and Farms", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Land and Farms" + ], + "path_label": "Real Estate > Land and Farms", + "retrieval_text": "IAB category path: Real Estate > Land and Farms. Canonical label: Land and Farms. Tier depth: 2. Parent path: Real Estate. Keywords: land and farms, real estate, real estate land and farms", + "unique_id": "449" + }, + { + "keywords": [ + "office property", + "real estate", + "real estate office property" + ], + "label": "Office Property", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Office Property" + ], + "path_label": "Real Estate > Office Property", + "retrieval_text": "IAB category path: Real Estate > Office Property. Canonical label: Office Property. Tier depth: 2. Parent path: Real Estate. Keywords: office property, real estate, real estate office property", + "unique_id": "450" + }, + { + "keywords": [ + "real estate", + "real estate buying and selling", + "real estate real estate buying and selling" + ], + "label": "Real Estate Buying and Selling", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Real Estate Buying and Selling" + ], + "path_label": "Real Estate > Real Estate Buying and Selling", + "retrieval_text": "IAB category path: Real Estate > Real Estate Buying and Selling. Canonical label: Real Estate Buying and Selling. Tier depth: 2. Parent path: Real Estate. Keywords: real estate, real estate buying and selling, real estate real estate buying and selling", + "unique_id": "451" + }, + { + "keywords": [ + "real estate", + "real estate real estate renting and leasing", + "real estate renting and leasing" + ], + "label": "Real Estate Renting and Leasing", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Real Estate Renting and Leasing" + ], + "path_label": "Real Estate > Real Estate Renting and Leasing", + "retrieval_text": "IAB category path: Real Estate > Real Estate Renting and Leasing. Canonical label: Real Estate Renting and Leasing. Tier depth: 2. Parent path: Real Estate. Keywords: real estate, real estate real estate renting and leasing, real estate renting and leasing", + "unique_id": "452" + }, + { + "keywords": [ + "real estate", + "real estate retail property", + "retail property" + ], + "label": "Retail Property", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Retail Property" + ], + "path_label": "Real Estate > Retail Property", + "retrieval_text": "IAB category path: Real Estate > Retail Property. Canonical label: Retail Property. Tier depth: 2. Parent path: Real Estate. Keywords: real estate, real estate retail property, retail property", + "unique_id": "443" + }, + { + "keywords": [ + "real estate", + "real estate vacation properties", + "vacation properties" + ], + "label": "Vacation Properties", + "level": 2, + "parent_id": "441", + "path": [ + "Real Estate", + "Vacation Properties" + ], + "path_label": "Real Estate > Vacation Properties", + "retrieval_text": "IAB category path: Real Estate > Vacation Properties. Canonical label: Vacation Properties. Tier depth: 2. Parent path: Real Estate. Keywords: real estate, real estate vacation properties, vacation properties", + "unique_id": "444" + }, + { + "keywords": [ + "religion and spirituality" + ], + "label": "Religion & Spirituality", + "level": 1, + "parent_id": null, + "path": [ + "Religion & Spirituality" + ], + "path_label": "Religion & Spirituality", + "retrieval_text": "IAB category path: Religion & Spirituality. Canonical label: Religion & Spirituality. Tier depth: 1. Keywords: religion and spirituality", + "unique_id": "453" + }, + { + "keywords": [ + "agnosticism", + "religion and spirituality", + "religion and spirituality agnosticism" + ], + "label": "Agnosticism", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Agnosticism" + ], + "path_label": "Religion & Spirituality > Agnosticism", + "retrieval_text": "IAB category path: Religion & Spirituality > Agnosticism. Canonical label: Agnosticism. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: agnosticism, religion and spirituality, religion and spirituality agnosticism", + "unique_id": "454" + }, + { + "keywords": [ + "astrology", + "religion and spirituality", + "religion and spirituality astrology" + ], + "label": "Astrology", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Astrology" + ], + "path_label": "Religion & Spirituality > Astrology", + "retrieval_text": "IAB category path: Religion & Spirituality > Astrology. Canonical label: Astrology. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: astrology, religion and spirituality, religion and spirituality astrology", + "unique_id": "456" + }, + { + "keywords": [ + "atheism", + "religion and spirituality", + "religion and spirituality atheism" + ], + "label": "Atheism", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Atheism" + ], + "path_label": "Religion & Spirituality > Atheism", + "retrieval_text": "IAB category path: Religion & Spirituality > Atheism. Canonical label: Atheism. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: atheism, religion and spirituality, religion and spirituality atheism", + "unique_id": "457" + }, + { + "keywords": [ + "buddhism", + "religion and spirituality", + "religion and spirituality buddhism" + ], + "label": "Buddhism", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Buddhism" + ], + "path_label": "Religion & Spirituality > Buddhism", + "retrieval_text": "IAB category path: Religion & Spirituality > Buddhism. Canonical label: Buddhism. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: buddhism, religion and spirituality, religion and spirituality buddhism", + "unique_id": "458" + }, + { + "keywords": [ + "christianity", + "religion and spirituality", + "religion and spirituality christianity" + ], + "label": "Christianity", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Christianity" + ], + "path_label": "Religion & Spirituality > Christianity", + "retrieval_text": "IAB category path: Religion & Spirituality > Christianity. Canonical label: Christianity. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: christianity, religion and spirituality, religion and spirituality christianity", + "unique_id": "459" + }, + { + "keywords": [ + "hinduism", + "religion and spirituality", + "religion and spirituality hinduism" + ], + "label": "Hinduism", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Hinduism" + ], + "path_label": "Religion & Spirituality > Hinduism", + "retrieval_text": "IAB category path: Religion & Spirituality > Hinduism. Canonical label: Hinduism. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: hinduism, religion and spirituality, religion and spirituality hinduism", + "unique_id": "460" + }, + { + "keywords": [ + "islam", + "religion and spirituality", + "religion and spirituality islam" + ], + "label": "Islam", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Islam" + ], + "path_label": "Religion & Spirituality > Islam", + "retrieval_text": "IAB category path: Religion & Spirituality > Islam. Canonical label: Islam. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: islam, religion and spirituality, religion and spirituality islam", + "unique_id": "461" + }, + { + "keywords": [ + "judaism", + "religion and spirituality", + "religion and spirituality judaism" + ], + "label": "Judaism", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Judaism" + ], + "path_label": "Religion & Spirituality > Judaism", + "retrieval_text": "IAB category path: Religion & Spirituality > Judaism. Canonical label: Judaism. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: judaism, religion and spirituality, religion and spirituality judaism", + "unique_id": "462" + }, + { + "keywords": [ + "religion and spirituality", + "religion and spirituality sikhism", + "sikhism" + ], + "label": "Sikhism", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Sikhism" + ], + "path_label": "Religion & Spirituality > Sikhism", + "retrieval_text": "IAB category path: Religion & Spirituality > Sikhism. Canonical label: Sikhism. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: religion and spirituality, religion and spirituality sikhism, sikhism", + "unique_id": "463" + }, + { + "keywords": [ + "religion and spirituality", + "religion and spirituality spirituality", + "spirituality" + ], + "label": "Spirituality", + "level": 2, + "parent_id": "453", + "path": [ + "Religion & Spirituality", + "Spirituality" + ], + "path_label": "Religion & Spirituality > Spirituality", + "retrieval_text": "IAB category path: Religion & Spirituality > Spirituality. Canonical label: Spirituality. Tier depth: 2. Parent path: Religion & Spirituality. Keywords: religion and spirituality, religion and spirituality spirituality, spirituality", + "unique_id": "455" + }, + { + "keywords": [ + "science" + ], + "label": "Science", + "level": 1, + "parent_id": null, + "path": [ + "Science" + ], + "path_label": "Science", + "retrieval_text": "IAB category path: Science. Canonical label: Science. Tier depth: 1. Keywords: science", + "unique_id": "464" + }, + { + "keywords": [ + "biological sciences", + "science", + "science biological sciences" + ], + "label": "Biological Sciences", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Biological Sciences" + ], + "path_label": "Science > Biological Sciences", + "retrieval_text": "IAB category path: Science > Biological Sciences. Canonical label: Biological Sciences. Tier depth: 2. Parent path: Science. Keywords: biological sciences, science, science biological sciences", + "unique_id": "465" + }, + { + "keywords": [ + "chemistry", + "science", + "science chemistry" + ], + "label": "Chemistry", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Chemistry" + ], + "path_label": "Science > Chemistry", + "retrieval_text": "IAB category path: Science > Chemistry. Canonical label: Chemistry. Tier depth: 2. Parent path: Science. Keywords: chemistry, science, science chemistry", + "unique_id": "466" + }, + { + "keywords": [ + "environment", + "science", + "science environment" + ], + "label": "Environment", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Environment" + ], + "path_label": "Science > Environment", + "retrieval_text": "IAB category path: Science > Environment. Canonical label: Environment. Tier depth: 2. Parent path: Science. Keywords: environment, science, science environment", + "unique_id": "467" + }, + { + "keywords": [ + "genetics", + "science", + "science genetics" + ], + "label": "Genetics", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Genetics" + ], + "path_label": "Science > Genetics", + "retrieval_text": "IAB category path: Science > Genetics. Canonical label: Genetics. Tier depth: 2. Parent path: Science. Keywords: genetics, science, science genetics", + "unique_id": "468" + }, + { + "keywords": [ + "geography", + "science", + "science geography" + ], + "label": "Geography", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Geography" + ], + "path_label": "Science > Geography", + "retrieval_text": "IAB category path: Science > Geography. Canonical label: Geography. Tier depth: 2. Parent path: Science. Keywords: geography, science, science geography", + "unique_id": "469" + }, + { + "keywords": [ + "geology", + "science", + "science geology" + ], + "label": "Geology", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Geology" + ], + "path_label": "Science > Geology", + "retrieval_text": "IAB category path: Science > Geology. Canonical label: Geology. Tier depth: 2. Parent path: Science. Keywords: geology, science, science geology", + "unique_id": "470" + }, + { + "keywords": [ + "physics", + "science", + "science physics" + ], + "label": "Physics", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Physics" + ], + "path_label": "Science > Physics", + "retrieval_text": "IAB category path: Science > Physics. Canonical label: Physics. Tier depth: 2. Parent path: Science. Keywords: physics, science, science physics", + "unique_id": "471" + }, + { + "keywords": [ + "science", + "science space and astronomy", + "space and astronomy" + ], + "label": "Space and Astronomy", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Space and Astronomy" + ], + "path_label": "Science > Space and Astronomy", + "retrieval_text": "IAB category path: Science > Space and Astronomy. Canonical label: Space and Astronomy. Tier depth: 2. Parent path: Science. Keywords: science, science space and astronomy, space and astronomy", + "unique_id": "472" + }, + { + "keywords": [ + "science", + "science weather", + "weather" + ], + "label": "Weather", + "level": 2, + "parent_id": "464", + "path": [ + "Science", + "Weather" + ], + "path_label": "Science > Weather", + "retrieval_text": "IAB category path: Science > Weather. Canonical label: Weather. Tier depth: 2. Parent path: Science. Keywords: science, science weather, weather", + "unique_id": "390" + }, + { + "keywords": [ + "sensitive topics" + ], + "label": "Sensitive Topics", + "level": 1, + "parent_id": null, + "path": [ + "Sensitive Topics" + ], + "path_label": "Sensitive Topics", + "retrieval_text": "IAB category path: Sensitive Topics. Canonical label: Sensitive Topics. Tier depth: 1. Keywords: sensitive topics", + "unique_id": "v9i3On" + }, + { + "keywords": [ + "adult and explicit sexual content", + "sensitive topics", + "sensitive topics adult and explicit sexual content" + ], + "label": "Adult & Explicit Sexual Content", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Adult & Explicit Sexual Content" + ], + "path_label": "Sensitive Topics > Adult & Explicit Sexual Content", + "retrieval_text": "IAB category path: Sensitive Topics > Adult & Explicit Sexual Content. Canonical label: Adult & Explicit Sexual Content. Tier depth: 2. Parent path: Sensitive Topics. Keywords: adult and explicit sexual content, sensitive topics, sensitive topics adult and explicit sexual content", + "unique_id": "Rm3SiT" + }, + { + "keywords": [ + "arms and ammunition", + "sensitive topics", + "sensitive topics arms and ammunition" + ], + "label": "Arms & Ammunition", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Arms & Ammunition" + ], + "path_label": "Sensitive Topics > Arms & Ammunition", + "retrieval_text": "IAB category path: Sensitive Topics > Arms & Ammunition. Canonical label: Arms & Ammunition. Tier depth: 2. Parent path: Sensitive Topics. Keywords: arms and ammunition, sensitive topics, sensitive topics arms and ammunition", + "unique_id": "avbNf2" + }, + { + "keywords": [ + "crime and harmful acts to individuals society and human right violations", + "sensitive topics", + "sensitive topics crime and harmful acts to individuals society and human right violations" + ], + "label": "Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Crime & Harmful Acts to Individuals, Society & Human Right Violations" + ], + "path_label": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "retrieval_text": "IAB category path: Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations. Canonical label: Crime & Harmful Acts to Individuals, Society & Human Right Violations. Tier depth: 2. Parent path: Sensitive Topics. Keywords: crime and harmful acts to individuals society and human right violations, sensitive topics, sensitive topics crime and harmful acts to individuals society and human right violations", + "unique_id": "XtODT3" + }, + { + "keywords": [ + "death injury or military conflict", + "sensitive topics", + "sensitive topics death injury or military conflict" + ], + "label": "Death, Injury, or Military Conflict", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Death, Injury, or Military Conflict" + ], + "path_label": "Sensitive Topics > Death, Injury, or Military Conflict", + "retrieval_text": "IAB category path: Sensitive Topics > Death, Injury, or Military Conflict. Canonical label: Death, Injury, or Military Conflict. Tier depth: 2. Parent path: Sensitive Topics. Keywords: death injury or military conflict, sensitive topics, sensitive topics death injury or military conflict", + "unique_id": "I4GWl6" + }, + { + "keywords": [ + "debated sensitive social issues", + "sensitive topics", + "sensitive topics debated sensitive social issues" + ], + "label": "Debated Sensitive Social Issues", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Debated Sensitive Social Issues" + ], + "path_label": "Sensitive Topics > Debated Sensitive Social Issues", + "retrieval_text": "IAB category path: Sensitive Topics > Debated Sensitive Social Issues. Canonical label: Debated Sensitive Social Issues. Tier depth: 2. Parent path: Sensitive Topics. Keywords: debated sensitive social issues, sensitive topics, sensitive topics debated sensitive social issues", + "unique_id": "Z7rJBM" + }, + { + "keywords": [ + "hate speech and acts of aggression", + "sensitive topics", + "sensitive topics hate speech and acts of aggression" + ], + "label": "Hate Speech and Acts of Aggression", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Hate Speech and Acts of Aggression" + ], + "path_label": "Sensitive Topics > Hate Speech and Acts of Aggression", + "retrieval_text": "IAB category path: Sensitive Topics > Hate Speech and Acts of Aggression. Canonical label: Hate Speech and Acts of Aggression. Tier depth: 2. Parent path: Sensitive Topics. Keywords: hate speech and acts of aggression, sensitive topics, sensitive topics hate speech and acts of aggression", + "unique_id": "HxqYV1" + }, + { + "keywords": [ + "illegal drugs tobacco ecigarettes vaping alcohol", + "sensitive topics", + "sensitive topics illegal drugs tobacco ecigarettes vaping alcohol" + ], + "label": "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" + ], + "path_label": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "retrieval_text": "IAB category path: Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol. Canonical label: Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol. Tier depth: 2. Parent path: Sensitive Topics. Keywords: illegal drugs tobacco ecigarettes vaping alcohol, sensitive topics, sensitive topics illegal drugs tobacco ecigarettes vaping alcohol", + "unique_id": "pg0WhF" + }, + { + "keywords": [ + "obscenity and profanity", + "sensitive topics", + "sensitive topics obscenity and profanity" + ], + "label": "Obscenity and Profanity", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Obscenity and Profanity" + ], + "path_label": "Sensitive Topics > Obscenity and Profanity", + "retrieval_text": "IAB category path: Sensitive Topics > Obscenity and Profanity. Canonical label: Obscenity and Profanity. Tier depth: 2. Parent path: Sensitive Topics. Keywords: obscenity and profanity, sensitive topics, sensitive topics obscenity and profanity", + "unique_id": "j9PaO9" + }, + { + "keywords": [ + "online piracy", + "sensitive topics", + "sensitive topics online piracy" + ], + "label": "Online Piracy", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Online Piracy" + ], + "path_label": "Sensitive Topics > Online Piracy", + "retrieval_text": "IAB category path: Sensitive Topics > Online Piracy. Canonical label: Online Piracy. Tier depth: 2. Parent path: Sensitive Topics. Keywords: online piracy, sensitive topics, sensitive topics online piracy", + "unique_id": "mm3UXx" + }, + { + "keywords": [ + "sensitive topics", + "sensitive topics spam or harmful content", + "spam or harmful content" + ], + "label": "Spam or Harmful Content", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Spam or Harmful Content" + ], + "path_label": "Sensitive Topics > Spam or Harmful Content", + "retrieval_text": "IAB category path: Sensitive Topics > Spam or Harmful Content. Canonical label: Spam or Harmful Content. Tier depth: 2. Parent path: Sensitive Topics. Keywords: sensitive topics, sensitive topics spam or harmful content, spam or harmful content", + "unique_id": "6i4dB6" + }, + { + "keywords": [ + "sensitive topics", + "sensitive topics terrorism", + "terrorism" + ], + "label": "Terrorism", + "level": 2, + "parent_id": "v9i3On", + "path": [ + "Sensitive Topics", + "Terrorism" + ], + "path_label": "Sensitive Topics > Terrorism", + "retrieval_text": "IAB category path: Sensitive Topics > Terrorism. Canonical label: Terrorism. Tier depth: 2. Parent path: Sensitive Topics. Keywords: sensitive topics, sensitive topics terrorism, terrorism", + "unique_id": "8FD8nI" + }, + { + "keywords": [ + "shopping" + ], + "label": "Shopping", + "level": 1, + "parent_id": null, + "path": [ + "Shopping" + ], + "path_label": "Shopping", + "retrieval_text": "IAB category path: Shopping. Canonical label: Shopping. Tier depth: 1. Keywords: shopping", + "unique_id": "473" + }, + { + "keywords": [ + "children s games and toys", + "shopping", + "shopping children s games and toys" + ], + "label": "Children's Games and Toys", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Children's Games and Toys" + ], + "path_label": "Shopping > Children's Games and Toys", + "retrieval_text": "IAB category path: Shopping > Children's Games and Toys. Canonical label: Children's Games and Toys. Tier depth: 2. Parent path: Shopping. Keywords: children s games and toys, shopping, shopping children s games and toys", + "unique_id": "482" + }, + { + "keywords": [ + "coupons and discounts", + "shopping", + "shopping coupons and discounts" + ], + "label": "Coupons and Discounts", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Coupons and Discounts" + ], + "path_label": "Shopping > Coupons and Discounts", + "retrieval_text": "IAB category path: Shopping > Coupons and Discounts. Canonical label: Coupons and Discounts. Tier depth: 2. Parent path: Shopping. Keywords: coupons and discounts, shopping, shopping coupons and discounts", + "unique_id": "474" + }, + { + "keywords": [ + "flower shopping", + "shopping", + "shopping flower shopping" + ], + "label": "Flower Shopping", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Flower Shopping" + ], + "path_label": "Shopping > Flower Shopping", + "retrieval_text": "IAB category path: Shopping > Flower Shopping. Canonical label: Flower Shopping. Tier depth: 2. Parent path: Shopping. Keywords: flower shopping, shopping, shopping flower shopping", + "unique_id": "475" + }, + { + "keywords": [ + "gifts and greetings cards", + "shopping", + "shopping gifts and greetings cards" + ], + "label": "Gifts and Greetings Cards", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Gifts and Greetings Cards" + ], + "path_label": "Shopping > Gifts and Greetings Cards", + "retrieval_text": "IAB category path: Shopping > Gifts and Greetings Cards. Canonical label: Gifts and Greetings Cards. Tier depth: 2. Parent path: Shopping. Keywords: gifts and greetings cards, shopping, shopping gifts and greetings cards", + "unique_id": "476" + }, + { + "keywords": [ + "grocery shopping", + "shopping", + "shopping grocery shopping" + ], + "label": "Grocery Shopping", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Grocery Shopping" + ], + "path_label": "Shopping > Grocery Shopping", + "retrieval_text": "IAB category path: Shopping > Grocery Shopping. Canonical label: Grocery Shopping. Tier depth: 2. Parent path: Shopping. Keywords: grocery shopping, shopping, shopping grocery shopping", + "unique_id": "477" + }, + { + "keywords": [ + "holiday shopping", + "shopping", + "shopping holiday shopping" + ], + "label": "Holiday Shopping", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Holiday Shopping" + ], + "path_label": "Shopping > Holiday Shopping", + "retrieval_text": "IAB category path: Shopping > Holiday Shopping. Canonical label: Holiday Shopping. Tier depth: 2. Parent path: Shopping. Keywords: holiday shopping, shopping, shopping holiday shopping", + "unique_id": "478" + }, + { + "keywords": [ + "household supplies", + "shopping", + "shopping household supplies" + ], + "label": "Household Supplies", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Household Supplies" + ], + "path_label": "Shopping > Household Supplies", + "retrieval_text": "IAB category path: Shopping > Household Supplies. Canonical label: Household Supplies. Tier depth: 2. Parent path: Shopping. Keywords: household supplies, shopping, shopping household supplies", + "unique_id": "479" + }, + { + "keywords": [ + "lotteries and scratchcards", + "shopping", + "shopping lotteries and scratchcards" + ], + "label": "Lotteries and Scratchcards", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Lotteries and Scratchcards" + ], + "path_label": "Shopping > Lotteries and Scratchcards", + "retrieval_text": "IAB category path: Shopping > Lotteries and Scratchcards. Canonical label: Lotteries and Scratchcards. Tier depth: 2. Parent path: Shopping. Keywords: lotteries and scratchcards, shopping, shopping lotteries and scratchcards", + "unique_id": "480" + }, + { + "keywords": [ + "party supplies and decorations", + "shopping", + "shopping party supplies and decorations" + ], + "label": "Party Supplies and Decorations", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Party Supplies and Decorations" + ], + "path_label": "Shopping > Party Supplies and Decorations", + "retrieval_text": "IAB category path: Shopping > Party Supplies and Decorations. Canonical label: Party Supplies and Decorations. Tier depth: 2. Parent path: Shopping. Keywords: party supplies and decorations, shopping, shopping party supplies and decorations", + "unique_id": "161" + }, + { + "keywords": [ + "sales and promotions", + "shopping", + "shopping sales and promotions" + ], + "label": "Sales and Promotions", + "level": 2, + "parent_id": "473", + "path": [ + "Shopping", + "Sales and Promotions" + ], + "path_label": "Shopping > Sales and Promotions", + "retrieval_text": "IAB category path: Shopping > Sales and Promotions. Canonical label: Sales and Promotions. Tier depth: 2. Parent path: Shopping. Keywords: sales and promotions, shopping, shopping sales and promotions", + "unique_id": "481" + }, + { + "keywords": [ + "sports" + ], + "label": "Sports", + "level": 1, + "parent_id": null, + "path": [ + "Sports" + ], + "path_label": "Sports", + "retrieval_text": "IAB category path: Sports. Canonical label: Sports. Tier depth: 1. Keywords: sports", + "unique_id": "483" + }, + { + "keywords": [ + "american football", + "sports", + "sports american football" + ], + "label": "American Football", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "American Football" + ], + "path_label": "Sports > American Football", + "retrieval_text": "IAB category path: Sports > American Football. Canonical label: American Football. Tier depth: 2. Parent path: Sports. Keywords: american football, sports, sports american football", + "unique_id": "484" + }, + { + "keywords": [ + "australian rules football", + "sports", + "sports australian rules football" + ], + "label": "Australian Rules Football", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Australian Rules Football" + ], + "path_label": "Sports > Australian Rules Football", + "retrieval_text": "IAB category path: Sports > Australian Rules Football. Canonical label: Australian Rules Football. Tier depth: 2. Parent path: Sports. Keywords: australian rules football, sports, sports australian rules football", + "unique_id": "507" + }, + { + "keywords": [ + "auto racing", + "sports", + "sports auto racing" + ], + "label": "Auto Racing", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Auto Racing" + ], + "path_label": "Sports > Auto Racing", + "retrieval_text": "IAB category path: Sports > Auto Racing. Canonical label: Auto Racing. Tier depth: 2. Parent path: Sports. Keywords: auto racing, sports, sports auto racing", + "unique_id": "518" + }, + { + "keywords": [ + "auto racing", + "motorcycle sports", + "sports", + "sports auto racing motorcycle sports" + ], + "label": "Motorcycle Sports", + "level": 3, + "parent_id": "518", + "path": [ + "Sports", + "Auto Racing", + "Motorcycle Sports" + ], + "path_label": "Sports > Auto Racing > Motorcycle Sports", + "retrieval_text": "IAB category path: Sports > Auto Racing > Motorcycle Sports. Canonical label: Motorcycle Sports. Tier depth: 3. Parent path: Sports > Auto Racing. Keywords: auto racing, motorcycle sports, sports, sports auto racing motorcycle sports", + "unique_id": "519" + }, + { + "keywords": [ + "badminton", + "sports", + "sports badminton" + ], + "label": "Badminton", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Badminton" + ], + "path_label": "Sports > Badminton", + "retrieval_text": "IAB category path: Sports > Badminton. Canonical label: Badminton. Tier depth: 2. Parent path: Sports. Keywords: badminton, sports, sports badminton", + "unique_id": "534" + }, + { + "keywords": [ + "baseball", + "sports", + "sports baseball" + ], + "label": "Baseball", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Baseball" + ], + "path_label": "Sports > Baseball", + "retrieval_text": "IAB category path: Sports > Baseball. Canonical label: Baseball. Tier depth: 2. Parent path: Sports. Keywords: baseball, sports, sports baseball", + "unique_id": "545" + }, + { + "keywords": [ + "basketball", + "sports", + "sports basketball" + ], + "label": "Basketball", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Basketball" + ], + "path_label": "Sports > Basketball", + "retrieval_text": "IAB category path: Sports > Basketball. Canonical label: Basketball. Tier depth: 2. Parent path: Sports. Keywords: basketball, sports, sports basketball", + "unique_id": "547" + }, + { + "keywords": [ + "beach volleyball", + "sports", + "sports beach volleyball" + ], + "label": "Beach Volleyball", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Beach Volleyball" + ], + "path_label": "Sports > Beach Volleyball", + "retrieval_text": "IAB category path: Sports > Beach Volleyball. Canonical label: Beach Volleyball. Tier depth: 2. Parent path: Sports. Keywords: beach volleyball, sports, sports beach volleyball", + "unique_id": "548" + }, + { + "keywords": [ + "bodybuilding", + "sports", + "sports bodybuilding" + ], + "label": "Bodybuilding", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Bodybuilding" + ], + "path_label": "Sports > Bodybuilding", + "retrieval_text": "IAB category path: Sports > Bodybuilding. Canonical label: Bodybuilding. Tier depth: 2. Parent path: Sports. Keywords: bodybuilding, sports, sports bodybuilding", + "unique_id": "549" + }, + { + "keywords": [ + "bowling", + "sports", + "sports bowling" + ], + "label": "Bowling", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Bowling" + ], + "path_label": "Sports > Bowling", + "retrieval_text": "IAB category path: Sports > Bowling. Canonical label: Bowling. Tier depth: 2. Parent path: Sports. Keywords: bowling, sports, sports bowling", + "unique_id": "550" + }, + { + "keywords": [ + "boxing", + "sports", + "sports boxing" + ], + "label": "Boxing", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Boxing" + ], + "path_label": "Sports > Boxing", + "retrieval_text": "IAB category path: Sports > Boxing. Canonical label: Boxing. Tier depth: 2. Parent path: Sports. Keywords: boxing, sports, sports boxing", + "unique_id": "485" + }, + { + "keywords": [ + "cheerleading", + "sports", + "sports cheerleading" + ], + "label": "Cheerleading", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Cheerleading" + ], + "path_label": "Sports > Cheerleading", + "retrieval_text": "IAB category path: Sports > Cheerleading. Canonical label: Cheerleading. Tier depth: 2. Parent path: Sports. Keywords: cheerleading, sports, sports cheerleading", + "unique_id": "486" + }, + { + "keywords": [ + "college sports", + "sports", + "sports college sports" + ], + "label": "College Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "College Sports" + ], + "path_label": "Sports > College Sports", + "retrieval_text": "IAB category path: Sports > College Sports. Canonical label: College Sports. Tier depth: 2. Parent path: Sports. Keywords: college sports, sports, sports college sports", + "unique_id": "487" + }, + { + "keywords": [ + "college baseball", + "college sports", + "sports", + "sports college sports college baseball" + ], + "label": "College Baseball", + "level": 3, + "parent_id": "487", + "path": [ + "Sports", + "College Sports", + "College Baseball" + ], + "path_label": "Sports > College Sports > College Baseball", + "retrieval_text": "IAB category path: Sports > College Sports > College Baseball. Canonical label: College Baseball. Tier depth: 3. Parent path: Sports > College Sports. Keywords: college baseball, college sports, sports, sports college sports college baseball", + "unique_id": "490" + }, + { + "keywords": [ + "college basketball", + "college sports", + "sports", + "sports college sports college basketball" + ], + "label": "College Basketball", + "level": 3, + "parent_id": "487", + "path": [ + "Sports", + "College Sports", + "College Basketball" + ], + "path_label": "Sports > College Sports > College Basketball", + "retrieval_text": "IAB category path: Sports > College Sports > College Basketball. Canonical label: College Basketball. Tier depth: 3. Parent path: Sports > College Sports. Keywords: college basketball, college sports, sports, sports college sports college basketball", + "unique_id": "489" + }, + { + "keywords": [ + "college football", + "college sports", + "sports", + "sports college sports college football" + ], + "label": "College Football", + "level": 3, + "parent_id": "487", + "path": [ + "Sports", + "College Sports", + "College Football" + ], + "path_label": "Sports > College Sports > College Football", + "retrieval_text": "IAB category path: Sports > College Sports > College Football. Canonical label: College Football. Tier depth: 3. Parent path: Sports > College Sports. Keywords: college football, college sports, sports, sports college sports college football", + "unique_id": "488" + }, + { + "keywords": [ + "cricket", + "sports", + "sports cricket" + ], + "label": "Cricket", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Cricket" + ], + "path_label": "Sports > Cricket", + "retrieval_text": "IAB category path: Sports > Cricket. Canonical label: Cricket. Tier depth: 2. Parent path: Sports. Keywords: cricket, sports, sports cricket", + "unique_id": "491" + }, + { + "keywords": [ + "cycling", + "sports", + "sports cycling" + ], + "label": "Cycling", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Cycling" + ], + "path_label": "Sports > Cycling", + "retrieval_text": "IAB category path: Sports > Cycling. Canonical label: Cycling. Tier depth: 2. Parent path: Sports. Keywords: cycling, sports, sports cycling", + "unique_id": "492" + }, + { + "keywords": [ + "darts", + "sports", + "sports darts" + ], + "label": "Darts", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Darts" + ], + "path_label": "Sports > Darts", + "retrieval_text": "IAB category path: Sports > Darts. Canonical label: Darts. Tier depth: 2. Parent path: Sports. Keywords: darts, sports, sports darts", + "unique_id": "493" + }, + { + "keywords": [ + "disabled sports", + "sports", + "sports disabled sports" + ], + "label": "Disabled Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Disabled Sports" + ], + "path_label": "Sports > Disabled Sports", + "retrieval_text": "IAB category path: Sports > Disabled Sports. Canonical label: Disabled Sports. Tier depth: 2. Parent path: Sports. Keywords: disabled sports, sports, sports disabled sports", + "unique_id": "494" + }, + { + "keywords": [ + "diving", + "sports", + "sports diving" + ], + "label": "Diving", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Diving" + ], + "path_label": "Sports > Diving", + "retrieval_text": "IAB category path: Sports > Diving. Canonical label: Diving. Tier depth: 2. Parent path: Sports. Keywords: diving, sports, sports diving", + "unique_id": "495" + }, + { + "keywords": [ + "equine sports", + "sports", + "sports equine sports" + ], + "label": "Equine Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Equine Sports" + ], + "path_label": "Sports > Equine Sports", + "retrieval_text": "IAB category path: Sports > Equine Sports. Canonical label: Equine Sports. Tier depth: 2. Parent path: Sports. Keywords: equine sports, sports, sports equine sports", + "unique_id": "496" + }, + { + "keywords": [ + "equine sports", + "horse racing", + "sports", + "sports equine sports horse racing" + ], + "label": "Horse Racing", + "level": 3, + "parent_id": "496", + "path": [ + "Sports", + "Equine Sports", + "Horse Racing" + ], + "path_label": "Sports > Equine Sports > Horse Racing", + "retrieval_text": "IAB category path: Sports > Equine Sports > Horse Racing. Canonical label: Horse Racing. Tier depth: 3. Parent path: Sports > Equine Sports. Keywords: equine sports, horse racing, sports, sports equine sports horse racing", + "unique_id": "497" + }, + { + "keywords": [ + "extreme sports", + "sports", + "sports extreme sports" + ], + "label": "Extreme Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Extreme Sports" + ], + "path_label": "Sports > Extreme Sports", + "retrieval_text": "IAB category path: Sports > Extreme Sports. Canonical label: Extreme Sports. Tier depth: 2. Parent path: Sports. Keywords: extreme sports, sports, sports extreme sports", + "unique_id": "498" + }, + { + "keywords": [ + "canoeing and kayaking", + "extreme sports", + "sports", + "sports extreme sports canoeing and kayaking" + ], + "label": "Canoeing and Kayaking", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Canoeing and Kayaking" + ], + "path_label": "Sports > Extreme Sports > Canoeing and Kayaking", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Canoeing and Kayaking. Canonical label: Canoeing and Kayaking. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: canoeing and kayaking, extreme sports, sports, sports extreme sports canoeing and kayaking", + "unique_id": "499" + }, + { + "keywords": [ + "climbing", + "extreme sports", + "sports", + "sports extreme sports climbing" + ], + "label": "Climbing", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Climbing" + ], + "path_label": "Sports > Extreme Sports > Climbing", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Climbing. Canonical label: Climbing. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: climbing, extreme sports, sports, sports extreme sports climbing", + "unique_id": "500" + }, + { + "keywords": [ + "extreme sports", + "paintball", + "sports", + "sports extreme sports paintball" + ], + "label": "Paintball", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Paintball" + ], + "path_label": "Sports > Extreme Sports > Paintball", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Paintball. Canonical label: Paintball. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: extreme sports, paintball, sports, sports extreme sports paintball", + "unique_id": "501" + }, + { + "keywords": [ + "extreme sports", + "scuba diving", + "sports", + "sports extreme sports scuba diving" + ], + "label": "Scuba Diving", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Scuba Diving" + ], + "path_label": "Sports > Extreme Sports > Scuba Diving", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Scuba Diving. Canonical label: Scuba Diving. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: extreme sports, scuba diving, sports, sports extreme sports scuba diving", + "unique_id": "502" + }, + { + "keywords": [ + "extreme sports", + "skateboarding", + "sports", + "sports extreme sports skateboarding" + ], + "label": "Skateboarding", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Skateboarding" + ], + "path_label": "Sports > Extreme Sports > Skateboarding", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Skateboarding. Canonical label: Skateboarding. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: extreme sports, skateboarding, sports, sports extreme sports skateboarding", + "unique_id": "503" + }, + { + "keywords": [ + "extreme sports", + "snowboarding", + "sports", + "sports extreme sports snowboarding" + ], + "label": "Snowboarding", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Snowboarding" + ], + "path_label": "Sports > Extreme Sports > Snowboarding", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Snowboarding. Canonical label: Snowboarding. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: extreme sports, snowboarding, sports, sports extreme sports snowboarding", + "unique_id": "504" + }, + { + "keywords": [ + "extreme sports", + "sports", + "sports extreme sports surfing and bodyboarding", + "surfing and bodyboarding" + ], + "label": "Surfing and Bodyboarding", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Surfing and Bodyboarding" + ], + "path_label": "Sports > Extreme Sports > Surfing and Bodyboarding", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Surfing and Bodyboarding. Canonical label: Surfing and Bodyboarding. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: extreme sports, sports, sports extreme sports surfing and bodyboarding, surfing and bodyboarding", + "unique_id": "505" + }, + { + "keywords": [ + "extreme sports", + "sports", + "sports extreme sports waterskiing and wakeboarding", + "waterskiing and wakeboarding" + ], + "label": "Waterskiing and Wakeboarding", + "level": 3, + "parent_id": "498", + "path": [ + "Sports", + "Extreme Sports", + "Waterskiing and Wakeboarding" + ], + "path_label": "Sports > Extreme Sports > Waterskiing and Wakeboarding", + "retrieval_text": "IAB category path: Sports > Extreme Sports > Waterskiing and Wakeboarding. Canonical label: Waterskiing and Wakeboarding. Tier depth: 3. Parent path: Sports > Extreme Sports. Keywords: extreme sports, sports, sports extreme sports waterskiing and wakeboarding, waterskiing and wakeboarding", + "unique_id": "506" + }, + { + "keywords": [ + "fantasy sports", + "sports", + "sports fantasy sports" + ], + "label": "Fantasy Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Fantasy Sports" + ], + "path_label": "Sports > Fantasy Sports", + "retrieval_text": "IAB category path: Sports > Fantasy Sports. Canonical label: Fantasy Sports. Tier depth: 2. Parent path: Sports. Keywords: fantasy sports, sports, sports fantasy sports", + "unique_id": "508" + }, + { + "keywords": [ + "field hockey", + "sports", + "sports field hockey" + ], + "label": "Field Hockey", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Field Hockey" + ], + "path_label": "Sports > Field Hockey", + "retrieval_text": "IAB category path: Sports > Field Hockey. Canonical label: Field Hockey. Tier depth: 2. Parent path: Sports. Keywords: field hockey, sports, sports field hockey", + "unique_id": "509" + }, + { + "keywords": [ + "figure skating", + "sports", + "sports figure skating" + ], + "label": "Figure Skating", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Figure Skating" + ], + "path_label": "Sports > Figure Skating", + "retrieval_text": "IAB category path: Sports > Figure Skating. Canonical label: Figure Skating. Tier depth: 2. Parent path: Sports. Keywords: figure skating, sports, sports figure skating", + "unique_id": "510" + }, + { + "keywords": [ + "fishing sports", + "sports", + "sports fishing sports" + ], + "label": "Fishing Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Fishing Sports" + ], + "path_label": "Sports > Fishing Sports", + "retrieval_text": "IAB category path: Sports > Fishing Sports. Canonical label: Fishing Sports. Tier depth: 2. Parent path: Sports. Keywords: fishing sports, sports, sports fishing sports", + "unique_id": "511" + }, + { + "keywords": [ + "golf", + "sports", + "sports golf" + ], + "label": "Golf", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Golf" + ], + "path_label": "Sports > Golf", + "retrieval_text": "IAB category path: Sports > Golf. Canonical label: Golf. Tier depth: 2. Parent path: Sports. Keywords: golf, sports, sports golf", + "unique_id": "512" + }, + { + "keywords": [ + "gymnastics", + "sports", + "sports gymnastics" + ], + "label": "Gymnastics", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Gymnastics" + ], + "path_label": "Sports > Gymnastics", + "retrieval_text": "IAB category path: Sports > Gymnastics. Canonical label: Gymnastics. Tier depth: 2. Parent path: Sports. Keywords: gymnastics, sports, sports gymnastics", + "unique_id": "513" + }, + { + "keywords": [ + "hunting and shooting", + "sports", + "sports hunting and shooting" + ], + "label": "Hunting and Shooting", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Hunting and Shooting" + ], + "path_label": "Sports > Hunting and Shooting", + "retrieval_text": "IAB category path: Sports > Hunting and Shooting. Canonical label: Hunting and Shooting. Tier depth: 2. Parent path: Sports. Keywords: hunting and shooting, sports, sports hunting and shooting", + "unique_id": "514" + }, + { + "keywords": [ + "ice hockey", + "sports", + "sports ice hockey" + ], + "label": "Ice Hockey", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Ice Hockey" + ], + "path_label": "Sports > Ice Hockey", + "retrieval_text": "IAB category path: Sports > Ice Hockey. Canonical label: Ice Hockey. Tier depth: 2. Parent path: Sports. Keywords: ice hockey, sports, sports ice hockey", + "unique_id": "515" + }, + { + "keywords": [ + "inline skating", + "sports", + "sports inline skating" + ], + "label": "Inline Skating", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Inline Skating" + ], + "path_label": "Sports > Inline Skating", + "retrieval_text": "IAB category path: Sports > Inline Skating. Canonical label: Inline Skating. Tier depth: 2. Parent path: Sports. Keywords: inline skating, sports, sports inline skating", + "unique_id": "516" + }, + { + "keywords": [ + "lacrosse", + "sports", + "sports lacrosse" + ], + "label": "Lacrosse", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Lacrosse" + ], + "path_label": "Sports > Lacrosse", + "retrieval_text": "IAB category path: Sports > Lacrosse. Canonical label: Lacrosse. Tier depth: 2. Parent path: Sports. Keywords: lacrosse, sports, sports lacrosse", + "unique_id": "517" + }, + { + "keywords": [ + "martial arts", + "sports", + "sports martial arts" + ], + "label": "Martial Arts", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Martial Arts" + ], + "path_label": "Sports > Martial Arts", + "retrieval_text": "IAB category path: Sports > Martial Arts. Canonical label: Martial Arts. Tier depth: 2. Parent path: Sports. Keywords: martial arts, sports, sports martial arts", + "unique_id": "520" + }, + { + "keywords": [ + "olympic sports", + "sports", + "sports olympic sports" + ], + "label": "Olympic Sports", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Olympic Sports" + ], + "path_label": "Sports > Olympic Sports", + "retrieval_text": "IAB category path: Sports > Olympic Sports. Canonical label: Olympic Sports. Tier depth: 2. Parent path: Sports. Keywords: olympic sports, sports, sports olympic sports", + "unique_id": "521" + }, + { + "keywords": [ + "olympic sports", + "sports", + "sports olympic sports summer olympic sports", + "summer olympic sports" + ], + "label": "Summer Olympic Sports", + "level": 3, + "parent_id": "521", + "path": [ + "Sports", + "Olympic Sports", + "Summer Olympic Sports" + ], + "path_label": "Sports > Olympic Sports > Summer Olympic Sports", + "retrieval_text": "IAB category path: Sports > Olympic Sports > Summer Olympic Sports. Canonical label: Summer Olympic Sports. Tier depth: 3. Parent path: Sports > Olympic Sports. Keywords: olympic sports, sports, sports olympic sports summer olympic sports, summer olympic sports", + "unique_id": "522" + }, + { + "keywords": [ + "olympic sports", + "sports", + "sports olympic sports winter olympic sports", + "winter olympic sports" + ], + "label": "Winter Olympic Sports", + "level": 3, + "parent_id": "521", + "path": [ + "Sports", + "Olympic Sports", + "Winter Olympic Sports" + ], + "path_label": "Sports > Olympic Sports > Winter Olympic Sports", + "retrieval_text": "IAB category path: Sports > Olympic Sports > Winter Olympic Sports. Canonical label: Winter Olympic Sports. Tier depth: 3. Parent path: Sports > Olympic Sports. Keywords: olympic sports, sports, sports olympic sports winter olympic sports, winter olympic sports", + "unique_id": "523" + }, + { + "keywords": [ + "poker and professional gambling", + "sports", + "sports poker and professional gambling" + ], + "label": "Poker and Professional Gambling", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Poker and Professional Gambling" + ], + "path_label": "Sports > Poker and Professional Gambling", + "retrieval_text": "IAB category path: Sports > Poker and Professional Gambling. Canonical label: Poker and Professional Gambling. Tier depth: 2. Parent path: Sports. Keywords: poker and professional gambling, sports, sports poker and professional gambling", + "unique_id": "524" + }, + { + "keywords": [ + "rodeo", + "sports", + "sports rodeo" + ], + "label": "Rodeo", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Rodeo" + ], + "path_label": "Sports > Rodeo", + "retrieval_text": "IAB category path: Sports > Rodeo. Canonical label: Rodeo. Tier depth: 2. Parent path: Sports. Keywords: rodeo, sports, sports rodeo", + "unique_id": "525" + }, + { + "keywords": [ + "rowing", + "sports", + "sports rowing" + ], + "label": "Rowing", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Rowing" + ], + "path_label": "Sports > Rowing", + "retrieval_text": "IAB category path: Sports > Rowing. Canonical label: Rowing. Tier depth: 2. Parent path: Sports. Keywords: rowing, sports, sports rowing", + "unique_id": "526" + }, + { + "keywords": [ + "rugby", + "sports", + "sports rugby" + ], + "label": "Rugby", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Rugby" + ], + "path_label": "Sports > Rugby", + "retrieval_text": "IAB category path: Sports > Rugby. Canonical label: Rugby. Tier depth: 2. Parent path: Sports. Keywords: rugby, sports, sports rugby", + "unique_id": "527" + }, + { + "keywords": [ + "rugby", + "rugby league", + "sports", + "sports rugby rugby league" + ], + "label": "Rugby League", + "level": 3, + "parent_id": "527", + "path": [ + "Sports", + "Rugby", + "Rugby League" + ], + "path_label": "Sports > Rugby > Rugby League", + "retrieval_text": "IAB category path: Sports > Rugby > Rugby League. Canonical label: Rugby League. Tier depth: 3. Parent path: Sports > Rugby. Keywords: rugby, rugby league, sports, sports rugby rugby league", + "unique_id": "528" + }, + { + "keywords": [ + "rugby", + "rugby union", + "sports", + "sports rugby rugby union" + ], + "label": "Rugby Union", + "level": 3, + "parent_id": "527", + "path": [ + "Sports", + "Rugby", + "Rugby Union" + ], + "path_label": "Sports > Rugby > Rugby Union", + "retrieval_text": "IAB category path: Sports > Rugby > Rugby Union. Canonical label: Rugby Union. Tier depth: 3. Parent path: Sports > Rugby. Keywords: rugby, rugby union, sports, sports rugby rugby union", + "unique_id": "529" + }, + { + "keywords": [ + "sailing", + "sports", + "sports sailing" + ], + "label": "Sailing", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Sailing" + ], + "path_label": "Sports > Sailing", + "retrieval_text": "IAB category path: Sports > Sailing. Canonical label: Sailing. Tier depth: 2. Parent path: Sports. Keywords: sailing, sports, sports sailing", + "unique_id": "530" + }, + { + "keywords": [ + "skiing", + "sports", + "sports skiing" + ], + "label": "Skiing", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Skiing" + ], + "path_label": "Sports > Skiing", + "retrieval_text": "IAB category path: Sports > Skiing. Canonical label: Skiing. Tier depth: 2. Parent path: Sports. Keywords: skiing, sports, sports skiing", + "unique_id": "531" + }, + { + "keywords": [ + "snooker pool billiards", + "sports", + "sports snooker pool billiards" + ], + "label": "Snooker/Pool/Billiards", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Snooker/Pool/Billiards" + ], + "path_label": "Sports > Snooker/Pool/Billiards", + "retrieval_text": "IAB category path: Sports > Snooker/Pool/Billiards. Canonical label: Snooker/Pool/Billiards. Tier depth: 2. Parent path: Sports. Keywords: snooker pool billiards, sports, sports snooker pool billiards", + "unique_id": "532" + }, + { + "keywords": [ + "soccer", + "sports", + "sports soccer" + ], + "label": "Soccer", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Soccer" + ], + "path_label": "Sports > Soccer", + "retrieval_text": "IAB category path: Sports > Soccer. Canonical label: Soccer. Tier depth: 2. Parent path: Sports. Keywords: soccer, sports, sports soccer", + "unique_id": "533" + }, + { + "keywords": [ + "softball", + "sports", + "sports softball" + ], + "label": "Softball", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Softball" + ], + "path_label": "Sports > Softball", + "retrieval_text": "IAB category path: Sports > Softball. Canonical label: Softball. Tier depth: 2. Parent path: Sports. Keywords: softball, sports, sports softball", + "unique_id": "535" + }, + { + "keywords": [ + "sports", + "sports equipment", + "sports sports equipment" + ], + "label": "Sports Equipment", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Sports Equipment" + ], + "path_label": "Sports > Sports Equipment", + "retrieval_text": "IAB category path: Sports > Sports Equipment. Canonical label: Sports Equipment. Tier depth: 2. Parent path: Sports. Keywords: sports, sports equipment, sports sports equipment", + "unique_id": "551" + }, + { + "keywords": [ + "sports", + "sports squash", + "squash" + ], + "label": "Squash", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Squash" + ], + "path_label": "Sports > Squash", + "retrieval_text": "IAB category path: Sports > Squash. Canonical label: Squash. Tier depth: 2. Parent path: Sports. Keywords: sports, sports squash, squash", + "unique_id": "536" + }, + { + "keywords": [ + "sports", + "sports swimming", + "swimming" + ], + "label": "Swimming", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Swimming" + ], + "path_label": "Sports > Swimming", + "retrieval_text": "IAB category path: Sports > Swimming. Canonical label: Swimming. Tier depth: 2. Parent path: Sports. Keywords: sports, sports swimming, swimming", + "unique_id": "537" + }, + { + "keywords": [ + "sports", + "sports table tennis", + "table tennis" + ], + "label": "Table Tennis", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Table Tennis" + ], + "path_label": "Sports > Table Tennis", + "retrieval_text": "IAB category path: Sports > Table Tennis. Canonical label: Table Tennis. Tier depth: 2. Parent path: Sports. Keywords: sports, sports table tennis, table tennis", + "unique_id": "538" + }, + { + "keywords": [ + "sports", + "sports tennis", + "tennis" + ], + "label": "Tennis", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Tennis" + ], + "path_label": "Sports > Tennis", + "retrieval_text": "IAB category path: Sports > Tennis. Canonical label: Tennis. Tier depth: 2. Parent path: Sports. Keywords: sports, sports tennis, tennis", + "unique_id": "539" + }, + { + "keywords": [ + "sports", + "sports track and field", + "track and field" + ], + "label": "Track and Field", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Track and Field" + ], + "path_label": "Sports > Track and Field", + "retrieval_text": "IAB category path: Sports > Track and Field. Canonical label: Track and Field. Tier depth: 2. Parent path: Sports. Keywords: sports, sports track and field, track and field", + "unique_id": "540" + }, + { + "keywords": [ + "sports", + "sports volleyball", + "volleyball" + ], + "label": "Volleyball", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Volleyball" + ], + "path_label": "Sports > Volleyball", + "retrieval_text": "IAB category path: Sports > Volleyball. Canonical label: Volleyball. Tier depth: 2. Parent path: Sports. Keywords: sports, sports volleyball, volleyball", + "unique_id": "541" + }, + { + "keywords": [ + "sports", + "sports walking", + "walking" + ], + "label": "Walking", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Walking" + ], + "path_label": "Sports > Walking", + "retrieval_text": "IAB category path: Sports > Walking. Canonical label: Walking. Tier depth: 2. Parent path: Sports. Keywords: sports, sports walking, walking", + "unique_id": "542" + }, + { + "keywords": [ + "sports", + "sports water polo", + "water polo" + ], + "label": "Water Polo", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Water Polo" + ], + "path_label": "Sports > Water Polo", + "retrieval_text": "IAB category path: Sports > Water Polo. Canonical label: Water Polo. Tier depth: 2. Parent path: Sports. Keywords: sports, sports water polo, water polo", + "unique_id": "543" + }, + { + "keywords": [ + "sports", + "sports weightlifting", + "weightlifting" + ], + "label": "Weightlifting", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Weightlifting" + ], + "path_label": "Sports > Weightlifting", + "retrieval_text": "IAB category path: Sports > Weightlifting. Canonical label: Weightlifting. Tier depth: 2. Parent path: Sports. Keywords: sports, sports weightlifting, weightlifting", + "unique_id": "544" + }, + { + "keywords": [ + "sports", + "sports wrestling", + "wrestling" + ], + "label": "Wrestling", + "level": 2, + "parent_id": "483", + "path": [ + "Sports", + "Wrestling" + ], + "path_label": "Sports > Wrestling", + "retrieval_text": "IAB category path: Sports > Wrestling. Canonical label: Wrestling. Tier depth: 2. Parent path: Sports. Keywords: sports, sports wrestling, wrestling", + "unique_id": "546" + }, + { + "keywords": [ + "style and fashion" + ], + "label": "Style & Fashion", + "level": 1, + "parent_id": null, + "path": [ + "Style & Fashion" + ], + "path_label": "Style & Fashion", + "retrieval_text": "IAB category path: Style & Fashion. Canonical label: Style & Fashion. Tier depth: 1. Keywords: style and fashion", + "unique_id": "552" + }, + { + "keywords": [ + "beauty", + "style and fashion", + "style and fashion beauty" + ], + "label": "Beauty", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Beauty" + ], + "path_label": "Style & Fashion > Beauty", + "retrieval_text": "IAB category path: Style & Fashion > Beauty. Canonical label: Beauty. Tier depth: 2. Parent path: Style & Fashion. Keywords: beauty, style and fashion, style and fashion beauty", + "unique_id": "553" + }, + { + "keywords": [ + "beauty", + "hair care", + "style and fashion", + "style and fashion beauty hair care" + ], + "label": "Hair Care", + "level": 3, + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Hair Care" + ], + "path_label": "Style & Fashion > Beauty > Hair Care", + "retrieval_text": "IAB category path: Style & Fashion > Beauty > Hair Care. Canonical label: Hair Care. Tier depth: 3. Parent path: Style & Fashion > Beauty. Keywords: beauty, hair care, style and fashion, style and fashion beauty hair care", + "unique_id": "554" + }, + { + "keywords": [ + "beauty", + "makeup and accessories", + "style and fashion", + "style and fashion beauty makeup and accessories" + ], + "label": "Makeup and Accessories", + "level": 3, + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Makeup and Accessories" + ], + "path_label": "Style & Fashion > Beauty > Makeup and Accessories", + "retrieval_text": "IAB category path: Style & Fashion > Beauty > Makeup and Accessories. Canonical label: Makeup and Accessories. Tier depth: 3. Parent path: Style & Fashion > Beauty. Keywords: beauty, makeup and accessories, style and fashion, style and fashion beauty makeup and accessories", + "unique_id": "555" + }, + { + "keywords": [ + "beauty", + "nail care", + "style and fashion", + "style and fashion beauty nail care" + ], + "label": "Nail Care", + "level": 3, + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Nail Care" + ], + "path_label": "Style & Fashion > Beauty > Nail Care", + "retrieval_text": "IAB category path: Style & Fashion > Beauty > Nail Care. Canonical label: Nail Care. Tier depth: 3. Parent path: Style & Fashion > Beauty. Keywords: beauty, nail care, style and fashion, style and fashion beauty nail care", + "unique_id": "556" + }, + { + "keywords": [ + "beauty", + "natural and organic beauty", + "style and fashion", + "style and fashion beauty natural and organic beauty" + ], + "label": "Natural and Organic Beauty", + "level": 3, + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Natural and Organic Beauty" + ], + "path_label": "Style & Fashion > Beauty > Natural and Organic Beauty", + "retrieval_text": "IAB category path: Style & Fashion > Beauty > Natural and Organic Beauty. Canonical label: Natural and Organic Beauty. Tier depth: 3. Parent path: Style & Fashion > Beauty. Keywords: beauty, natural and organic beauty, style and fashion, style and fashion beauty natural and organic beauty", + "unique_id": "557" + }, + { + "keywords": [ + "beauty", + "perfume and fragrance", + "style and fashion", + "style and fashion beauty perfume and fragrance" + ], + "label": "Perfume and Fragrance", + "level": 3, + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Perfume and Fragrance" + ], + "path_label": "Style & Fashion > Beauty > Perfume and Fragrance", + "retrieval_text": "IAB category path: Style & Fashion > Beauty > Perfume and Fragrance. Canonical label: Perfume and Fragrance. Tier depth: 3. Parent path: Style & Fashion > Beauty. Keywords: beauty, perfume and fragrance, style and fashion, style and fashion beauty perfume and fragrance", + "unique_id": "558" + }, + { + "keywords": [ + "beauty", + "skin care", + "style and fashion", + "style and fashion beauty skin care" + ], + "label": "Skin Care", + "level": 3, + "parent_id": "553", + "path": [ + "Style & Fashion", + "Beauty", + "Skin Care" + ], + "path_label": "Style & Fashion > Beauty > Skin Care", + "retrieval_text": "IAB category path: Style & Fashion > Beauty > Skin Care. Canonical label: Skin Care. Tier depth: 3. Parent path: Style & Fashion > Beauty. Keywords: beauty, skin care, style and fashion, style and fashion beauty skin care", + "unique_id": "559" + }, + { + "keywords": [ + "body art", + "style and fashion", + "style and fashion body art" + ], + "label": "Body Art", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Body Art" + ], + "path_label": "Style & Fashion > Body Art", + "retrieval_text": "IAB category path: Style & Fashion > Body Art. Canonical label: Body Art. Tier depth: 2. Parent path: Style & Fashion. Keywords: body art, style and fashion, style and fashion body art", + "unique_id": "574" + }, + { + "keywords": [ + "children s clothing", + "style and fashion", + "style and fashion children s clothing" + ], + "label": "Children's Clothing", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Children's Clothing" + ], + "path_label": "Style & Fashion > Children's Clothing", + "retrieval_text": "IAB category path: Style & Fashion > Children's Clothing. Canonical label: Children's Clothing. Tier depth: 2. Parent path: Style & Fashion. Keywords: children s clothing, style and fashion, style and fashion children s clothing", + "unique_id": "575" + }, + { + "keywords": [ + "designer clothing", + "style and fashion", + "style and fashion designer clothing" + ], + "label": "Designer Clothing", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Designer Clothing" + ], + "path_label": "Style & Fashion > Designer Clothing", + "retrieval_text": "IAB category path: Style & Fashion > Designer Clothing. Canonical label: Designer Clothing. Tier depth: 2. Parent path: Style & Fashion. Keywords: designer clothing, style and fashion, style and fashion designer clothing", + "unique_id": "576" + }, + { + "keywords": [ + "fashion trends", + "style and fashion", + "style and fashion fashion trends" + ], + "label": "Fashion Trends", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Fashion Trends" + ], + "path_label": "Style & Fashion > Fashion Trends", + "retrieval_text": "IAB category path: Style & Fashion > Fashion Trends. Canonical label: Fashion Trends. Tier depth: 2. Parent path: Style & Fashion. Keywords: fashion trends, style and fashion, style and fashion fashion trends", + "unique_id": "577" + }, + { + "keywords": [ + "high fashion", + "style and fashion", + "style and fashion high fashion" + ], + "label": "High Fashion", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "High Fashion" + ], + "path_label": "Style & Fashion > High Fashion", + "retrieval_text": "IAB category path: Style & Fashion > High Fashion. Canonical label: High Fashion. Tier depth: 2. Parent path: Style & Fashion. Keywords: high fashion, style and fashion, style and fashion high fashion", + "unique_id": "578" + }, + { + "keywords": [ + "men s fashion", + "style and fashion", + "style and fashion men s fashion" + ], + "label": "Men's Fashion", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Men's Fashion" + ], + "path_label": "Style & Fashion > Men's Fashion", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion. Canonical label: Men's Fashion. Tier depth: 2. Parent path: Style & Fashion. Keywords: men s fashion, style and fashion, style and fashion men s fashion", + "unique_id": "579" + }, + { + "keywords": [ + "men s accessories", + "men s fashion", + "style and fashion", + "style and fashion men s fashion men s accessories" + ], + "label": "Men's Accessories", + "level": 3, + "parent_id": "579", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Accessories" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Accessories", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Accessories. Canonical label: Men's Accessories. Tier depth: 3. Parent path: Style & Fashion > Men's Fashion. Keywords: men s accessories, men s fashion, style and fashion, style and fashion men s fashion men s accessories", + "unique_id": "580" + }, + { + "keywords": [ + "men s accessories", + "men s fashion", + "men s jewelry and watches", + "style and fashion", + "style and fashion men s fashion men s accessories men s jewelry and watches" + ], + "label": "Men's Jewelry and Watches", + "level": 4, + "parent_id": "580", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Accessories", + "Men's Jewelry and Watches" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches. Canonical label: Men's Jewelry and Watches. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Accessories. Keywords: men s accessories, men s fashion, men s jewelry and watches, style and fashion, style and fashion men s fashion men s accessories men s jewelry and watches", + "unique_id": "581" + }, + { + "keywords": [ + "men s clothing", + "men s fashion", + "style and fashion", + "style and fashion men s fashion men s clothing" + ], + "label": "Men's Clothing", + "level": 3, + "parent_id": "579", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing. Canonical label: Men's Clothing. Tier depth: 3. Parent path: Style & Fashion > Men's Fashion. Keywords: men s clothing, men s fashion, style and fashion, style and fashion men s fashion men s clothing", + "unique_id": "582" + }, + { + "keywords": [ + "men s business wear", + "men s clothing", + "men s fashion", + "style and fashion", + "style and fashion men s fashion men s clothing men s business wear" + ], + "label": "Men's Business Wear", + "level": 4, + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Business Wear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear. Canonical label: Men's Business Wear. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Clothing. Keywords: men s business wear, men s clothing, men s fashion, style and fashion, style and fashion men s fashion men s clothing men s business wear", + "unique_id": "583" + }, + { + "keywords": [ + "men s casual wear", + "men s clothing", + "men s fashion", + "style and fashion", + "style and fashion men s fashion men s clothing men s casual wear" + ], + "label": "Men's Casual Wear", + "level": 4, + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Casual Wear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear. Canonical label: Men's Casual Wear. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Clothing. Keywords: men s casual wear, men s clothing, men s fashion, style and fashion, style and fashion men s fashion men s clothing men s casual wear", + "unique_id": "584" + }, + { + "keywords": [ + "men s clothing", + "men s fashion", + "men s formal wear", + "style and fashion", + "style and fashion men s fashion men s clothing men s formal wear" + ], + "label": "Men's Formal Wear", + "level": 4, + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Formal Wear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear. Canonical label: Men's Formal Wear. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Clothing. Keywords: men s clothing, men s fashion, men s formal wear, style and fashion, style and fashion men s fashion men s clothing men s formal wear", + "unique_id": "585" + }, + { + "keywords": [ + "men s clothing", + "men s fashion", + "men s outerwear", + "style and fashion", + "style and fashion men s fashion men s clothing men s outerwear" + ], + "label": "Men's Outerwear", + "level": 4, + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Outerwear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear. Canonical label: Men's Outerwear. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Clothing. Keywords: men s clothing, men s fashion, men s outerwear, style and fashion, style and fashion men s fashion men s clothing men s outerwear", + "unique_id": "586" + }, + { + "keywords": [ + "men s clothing", + "men s fashion", + "men s sportswear", + "style and fashion", + "style and fashion men s fashion men s clothing men s sportswear" + ], + "label": "Men's Sportswear", + "level": 4, + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Sportswear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear. Canonical label: Men's Sportswear. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Clothing. Keywords: men s clothing, men s fashion, men s sportswear, style and fashion, style and fashion men s fashion men s clothing men s sportswear", + "unique_id": "587" + }, + { + "keywords": [ + "men s clothing", + "men s fashion", + "men s underwear and sleepwear", + "style and fashion", + "style and fashion men s fashion men s clothing men s underwear and sleepwear" + ], + "label": "Men's Underwear and Sleepwear", + "level": 4, + "parent_id": "582", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Clothing", + "Men's Underwear and Sleepwear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear. Canonical label: Men's Underwear and Sleepwear. Tier depth: 4. Parent path: Style & Fashion > Men's Fashion > Men's Clothing. Keywords: men s clothing, men s fashion, men s underwear and sleepwear, style and fashion, style and fashion men s fashion men s clothing men s underwear and sleepwear", + "unique_id": "588" + }, + { + "keywords": [ + "men s fashion", + "men s shoes and footwear", + "style and fashion", + "style and fashion men s fashion men s shoes and footwear" + ], + "label": "Men's Shoes and Footwear", + "level": 3, + "parent_id": "579", + "path": [ + "Style & Fashion", + "Men's Fashion", + "Men's Shoes and Footwear" + ], + "path_label": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", + "retrieval_text": "IAB category path: Style & Fashion > Men's Fashion > Men's Shoes and Footwear. Canonical label: Men's Shoes and Footwear. Tier depth: 3. Parent path: Style & Fashion > Men's Fashion. Keywords: men s fashion, men s shoes and footwear, style and fashion, style and fashion men s fashion men s shoes and footwear", + "unique_id": "589" + }, + { + "keywords": [ + "personal care", + "style and fashion", + "style and fashion personal care" + ], + "label": "Personal Care", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Personal Care" + ], + "path_label": "Style & Fashion > Personal Care", + "retrieval_text": "IAB category path: Style & Fashion > Personal Care. Canonical label: Personal Care. Tier depth: 2. Parent path: Style & Fashion. Keywords: personal care, style and fashion, style and fashion personal care", + "unique_id": "590" + }, + { + "keywords": [ + "bath and shower", + "personal care", + "style and fashion", + "style and fashion personal care bath and shower" + ], + "label": "Bath and Shower", + "level": 3, + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Bath and Shower" + ], + "path_label": "Style & Fashion > Personal Care > Bath and Shower", + "retrieval_text": "IAB category path: Style & Fashion > Personal Care > Bath and Shower. Canonical label: Bath and Shower. Tier depth: 3. Parent path: Style & Fashion > Personal Care. Keywords: bath and shower, personal care, style and fashion, style and fashion personal care bath and shower", + "unique_id": "591" + }, + { + "keywords": [ + "deodorant and antiperspirant", + "personal care", + "style and fashion", + "style and fashion personal care deodorant and antiperspirant" + ], + "label": "Deodorant and Antiperspirant", + "level": 3, + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Deodorant and Antiperspirant" + ], + "path_label": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "retrieval_text": "IAB category path: Style & Fashion > Personal Care > Deodorant and Antiperspirant. Canonical label: Deodorant and Antiperspirant. Tier depth: 3. Parent path: Style & Fashion > Personal Care. Keywords: deodorant and antiperspirant, personal care, style and fashion, style and fashion personal care deodorant and antiperspirant", + "unique_id": "592" + }, + { + "keywords": [ + "oral care", + "personal care", + "style and fashion", + "style and fashion personal care oral care" + ], + "label": "Oral care", + "level": 3, + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Oral care" + ], + "path_label": "Style & Fashion > Personal Care > Oral care", + "retrieval_text": "IAB category path: Style & Fashion > Personal Care > Oral care. Canonical label: Oral care. Tier depth: 3. Parent path: Style & Fashion > Personal Care. Keywords: oral care, personal care, style and fashion, style and fashion personal care oral care", + "unique_id": "593" + }, + { + "keywords": [ + "personal care", + "shaving", + "style and fashion", + "style and fashion personal care shaving" + ], + "label": "Shaving", + "level": 3, + "parent_id": "590", + "path": [ + "Style & Fashion", + "Personal Care", + "Shaving" + ], + "path_label": "Style & Fashion > Personal Care > Shaving", + "retrieval_text": "IAB category path: Style & Fashion > Personal Care > Shaving. Canonical label: Shaving. Tier depth: 3. Parent path: Style & Fashion > Personal Care. Keywords: personal care, shaving, style and fashion, style and fashion personal care shaving", + "unique_id": "594" + }, + { + "keywords": [ + "street style", + "style and fashion", + "style and fashion street style" + ], + "label": "Street Style", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Street Style" + ], + "path_label": "Style & Fashion > Street Style", + "retrieval_text": "IAB category path: Style & Fashion > Street Style. Canonical label: Street Style. Tier depth: 2. Parent path: Style & Fashion. Keywords: street style, style and fashion, style and fashion street style", + "unique_id": "595" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion", + "women s fashion" + ], + "label": "Women's Fashion", + "level": 2, + "parent_id": "552", + "path": [ + "Style & Fashion", + "Women's Fashion" + ], + "path_label": "Style & Fashion > Women's Fashion", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion. Canonical label: Women's Fashion. Tier depth: 2. Parent path: Style & Fashion. Keywords: style and fashion, style and fashion women s fashion, women s fashion", + "unique_id": "560" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s accessories", + "women s accessories", + "women s fashion" + ], + "label": "Women's Accessories", + "level": 3, + "parent_id": "560", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Accessories. Canonical label: Women's Accessories. Tier depth: 3. Parent path: Style & Fashion > Women's Fashion. Keywords: style and fashion, style and fashion women s fashion women s accessories, women s accessories, women s fashion", + "unique_id": "561" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s accessories women s glasses", + "women s accessories", + "women s fashion", + "women s glasses" + ], + "label": "Women's Glasses", + "level": 4, + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Glasses" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses. Canonical label: Women's Glasses. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Accessories. Keywords: style and fashion, style and fashion women s fashion women s accessories women s glasses, women s accessories, women s fashion, women s glasses", + "unique_id": "562" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s accessories women s handbags and wallets", + "women s accessories", + "women s fashion", + "women s handbags and wallets" + ], + "label": "Women's Handbags and Wallets", + "level": 4, + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Handbags and Wallets" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets. Canonical label: Women's Handbags and Wallets. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Accessories. Keywords: style and fashion, style and fashion women s fashion women s accessories women s handbags and wallets, women s accessories, women s fashion, women s handbags and wallets", + "unique_id": "563" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s accessories women s hats and scarves", + "women s accessories", + "women s fashion", + "women s hats and scarves" + ], + "label": "Women's Hats and Scarves", + "level": 4, + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Hats and Scarves" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves. Canonical label: Women's Hats and Scarves. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Accessories. Keywords: style and fashion, style and fashion women s fashion women s accessories women s hats and scarves, women s accessories, women s fashion, women s hats and scarves", + "unique_id": "564" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s accessories women s jewelry and watches", + "women s accessories", + "women s fashion", + "women s jewelry and watches" + ], + "label": "Women's Jewelry and Watches", + "level": 4, + "parent_id": "561", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Accessories", + "Women's Jewelry and Watches" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches. Canonical label: Women's Jewelry and Watches. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Accessories. Keywords: style and fashion, style and fashion women s fashion women s accessories women s jewelry and watches, women s accessories, women s fashion, women s jewelry and watches", + "unique_id": "565" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing", + "women s clothing", + "women s fashion" + ], + "label": "Women's Clothing", + "level": 3, + "parent_id": "560", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing. Canonical label: Women's Clothing. Tier depth: 3. Parent path: Style & Fashion > Women's Fashion. Keywords: style and fashion, style and fashion women s fashion women s clothing, women s clothing, women s fashion", + "unique_id": "566" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing women s business wear", + "women s business wear", + "women s clothing", + "women s fashion" + ], + "label": "Women's Business Wear", + "level": 4, + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Business Wear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear. Canonical label: Women's Business Wear. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Clothing. Keywords: style and fashion, style and fashion women s fashion women s clothing women s business wear, women s business wear, women s clothing, women s fashion", + "unique_id": "567" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing women s casual wear", + "women s casual wear", + "women s clothing", + "women s fashion" + ], + "label": "Women's Casual Wear", + "level": 4, + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Casual Wear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear. Canonical label: Women's Casual Wear. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Clothing. Keywords: style and fashion, style and fashion women s fashion women s clothing women s casual wear, women s casual wear, women s clothing, women s fashion", + "unique_id": "568" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing women s formal wear", + "women s clothing", + "women s fashion", + "women s formal wear" + ], + "label": "Women's Formal Wear", + "level": 4, + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Formal Wear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear. Canonical label: Women's Formal Wear. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Clothing. Keywords: style and fashion, style and fashion women s fashion women s clothing women s formal wear, women s clothing, women s fashion, women s formal wear", + "unique_id": "569" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing women s intimates and sleepwear", + "women s clothing", + "women s fashion", + "women s intimates and sleepwear" + ], + "label": "Women's Intimates and Sleepwear", + "level": 4, + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Intimates and Sleepwear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear. Canonical label: Women's Intimates and Sleepwear. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Clothing. Keywords: style and fashion, style and fashion women s fashion women s clothing women s intimates and sleepwear, women s clothing, women s fashion, women s intimates and sleepwear", + "unique_id": "570" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing women s outerwear", + "women s clothing", + "women s fashion", + "women s outerwear" + ], + "label": "Women's Outerwear", + "level": 4, + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Outerwear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear. Canonical label: Women's Outerwear. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Clothing. Keywords: style and fashion, style and fashion women s fashion women s clothing women s outerwear, women s clothing, women s fashion, women s outerwear", + "unique_id": "571" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s clothing women s sportswear", + "women s clothing", + "women s fashion", + "women s sportswear" + ], + "label": "Women's Sportswear", + "level": 4, + "parent_id": "566", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Clothing", + "Women's Sportswear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear. Canonical label: Women's Sportswear. Tier depth: 4. Parent path: Style & Fashion > Women's Fashion > Women's Clothing. Keywords: style and fashion, style and fashion women s fashion women s clothing women s sportswear, women s clothing, women s fashion, women s sportswear", + "unique_id": "572" + }, + { + "keywords": [ + "style and fashion", + "style and fashion women s fashion women s shoes and footwear", + "women s fashion", + "women s shoes and footwear" + ], + "label": "Women's Shoes and Footwear", + "level": 3, + "parent_id": "560", + "path": [ + "Style & Fashion", + "Women's Fashion", + "Women's Shoes and Footwear" + ], + "path_label": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", + "retrieval_text": "IAB category path: Style & Fashion > Women's Fashion > Women's Shoes and Footwear. Canonical label: Women's Shoes and Footwear. Tier depth: 3. Parent path: Style & Fashion > Women's Fashion. Keywords: style and fashion, style and fashion women s fashion women s shoes and footwear, women s fashion, women s shoes and footwear", + "unique_id": "573" + }, + { + "keywords": [ + "technology and computing" + ], + "label": "Technology & Computing", + "level": 1, + "parent_id": null, + "path": [ + "Technology & Computing" + ], + "path_label": "Technology & Computing", + "retrieval_text": "IAB category path: Technology & Computing. Canonical label: Technology & Computing. Tier depth: 1. Keywords: technology and computing", + "unique_id": "596" + }, + { + "keywords": [ + "artificial intelligence", + "technology and computing", + "technology and computing artificial intelligence" + ], + "label": "Artificial Intelligence", + "level": 2, + "parent_id": "596", + "path": [ + "Technology & Computing", + "Artificial Intelligence" + ], + "path_label": "Technology & Computing > Artificial Intelligence", + "retrieval_text": "IAB category path: Technology & Computing > Artificial Intelligence. Canonical label: Artificial Intelligence. Tier depth: 2. Parent path: Technology & Computing. Keywords: artificial intelligence, technology and computing, technology and computing artificial intelligence", + "unique_id": "597" + }, + { + "keywords": [ + "augmented reality", + "technology and computing", + "technology and computing augmented reality" + ], + "label": "Augmented Reality", + "level": 2, + "parent_id": "596", + "path": [ + "Technology & Computing", + "Augmented Reality" + ], + "path_label": "Technology & Computing > Augmented Reality", + "retrieval_text": "IAB category path: Technology & Computing > Augmented Reality. Canonical label: Augmented Reality. Tier depth: 2. Parent path: Technology & Computing. Keywords: augmented reality, technology and computing, technology and computing augmented reality", + "unique_id": "598" + }, + { + "keywords": [ + "computing", + "technology and computing", + "technology and computing computing" + ], + "label": "Computing", + "level": 2, + "parent_id": "596", + "path": [ + "Technology & Computing", + "Computing" + ], + "path_label": "Technology & Computing > Computing", + "retrieval_text": "IAB category path: Technology & Computing > Computing. Canonical label: Computing. Tier depth: 2. Parent path: Technology & Computing. Keywords: computing, technology and computing, technology and computing computing", + "unique_id": "599" + }, + { + "keywords": [ + "computer networking", + "computing", + "technology and computing", + "technology and computing computing computer networking" + ], + "label": "Computer Networking", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Computer Networking" + ], + "path_label": "Technology & Computing > Computing > Computer Networking", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Networking. Canonical label: Computer Networking. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computer networking, computing, technology and computing, technology and computing computing computer networking", + "unique_id": "600" + }, + { + "keywords": [ + "computer peripherals", + "computing", + "technology and computing", + "technology and computing computing computer peripherals" + ], + "label": "Computer Peripherals", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Computer Peripherals" + ], + "path_label": "Technology & Computing > Computing > Computer Peripherals", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Peripherals. Canonical label: Computer Peripherals. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computer peripherals, computing, technology and computing, technology and computing computing computer peripherals", + "unique_id": "601" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "software and applications", + "technology and computing", + "technology and computing computing computer software and applications" + ], + "label": "Software and Applications", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications. Canonical label: Software and Applications. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computer software and applications, computing, software and applications, technology and computing, technology and computing computing computer software and applications", + "unique_id": "602" + }, + { + "keywords": [ + "3 d graphics", + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications 3 d graphics" + ], + "label": "3-D Graphics", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "3-D Graphics" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics. Canonical label: 3-D Graphics. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: 3 d graphics, computer software and applications, computing, technology and computing, technology and computing computing computer software and applications 3 d graphics", + "unique_id": "603" + }, + { + "keywords": [ + "antivirus software", + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications antivirus software" + ], + "label": "Antivirus Software", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Antivirus Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Antivirus Software. Canonical label: Antivirus Software. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: antivirus software, computer software and applications, computing, technology and computing, technology and computing computing computer software and applications antivirus software", + "unique_id": "608" + }, + { + "keywords": [ + "browsers", + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications browsers" + ], + "label": "Browsers", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Browsers" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Browsers. Canonical label: Browsers. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: browsers, computer software and applications, computing, technology and computing, technology and computing computing computer software and applications browsers", + "unique_id": "609" + }, + { + "keywords": [ + "computer animation", + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications computer animation" + ], + "label": "Computer Animation", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Computer Animation" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Computer Animation. Canonical label: Computer Animation. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer animation, computer software and applications, computing, technology and computing, technology and computing computing computer software and applications computer animation", + "unique_id": "610" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "databases", + "technology and computing", + "technology and computing computing computer software and applications databases" + ], + "label": "Databases", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Databases" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Databases", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Databases. Canonical label: Databases. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, databases, technology and computing, technology and computing computing computer software and applications databases", + "unique_id": "611" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "desktop publishing", + "technology and computing", + "technology and computing computing computer software and applications desktop publishing" + ], + "label": "Desktop Publishing", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Desktop Publishing" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing. Canonical label: Desktop Publishing. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, desktop publishing, technology and computing, technology and computing computing computer software and applications desktop publishing", + "unique_id": "612" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "digital audio", + "technology and computing", + "technology and computing computing computer software and applications digital audio" + ], + "label": "Digital Audio", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Digital Audio" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Digital Audio. Canonical label: Digital Audio. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, digital audio, technology and computing, technology and computing computing computer software and applications digital audio", + "unique_id": "613" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "graphics software", + "technology and computing", + "technology and computing computing computer software and applications graphics software" + ], + "label": "Graphics Software", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Graphics Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Graphics Software. Canonical label: Graphics Software. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, graphics software, technology and computing, technology and computing computing computer software and applications graphics software", + "unique_id": "614" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "operating systems", + "technology and computing", + "technology and computing computing computer software and applications operating systems" + ], + "label": "Operating Systems", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Operating Systems" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Operating Systems. Canonical label: Operating Systems. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, operating systems, technology and computing, technology and computing computing computer software and applications operating systems", + "unique_id": "615" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "photo editing software", + "technology and computing", + "technology and computing computing computer software and applications photo editing software" + ], + "label": "Photo Editing Software", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Photo Editing Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software. Canonical label: Photo Editing Software. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, photo editing software, technology and computing, technology and computing computing computer software and applications photo editing software", + "unique_id": "604" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "shareware and freeware", + "technology and computing", + "technology and computing computing computer software and applications shareware and freeware" + ], + "label": "Shareware and Freeware", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Shareware and Freeware" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware. Canonical label: Shareware and Freeware. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, shareware and freeware, technology and computing, technology and computing computing computer software and applications shareware and freeware", + "unique_id": "605" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications video software", + "video software" + ], + "label": "Video Software", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Video Software" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Video Software. Canonical label: Video Software. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, technology and computing, technology and computing computing computer software and applications video software, video software", + "unique_id": "606" + }, + { + "keywords": [ + "computer software and applications", + "computing", + "technology and computing", + "technology and computing computing computer software and applications web conferencing", + "web conferencing" + ], + "label": "Web Conferencing", + "level": 4, + "parent_id": "602", + "path": [ + "Technology & Computing", + "Computing", + "Computer Software and Applications", + "Web Conferencing" + ], + "path_label": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Computer Software and Applications > Web Conferencing. Canonical label: Web Conferencing. Tier depth: 4. Parent path: Technology & Computing > Computing > Computer Software and Applications. Keywords: computer software and applications, computing, technology and computing, technology and computing computing computer software and applications web conferencing, web conferencing", + "unique_id": "607" + }, + { + "keywords": [ + "computing", + "data storage and warehousing", + "technology and computing", + "technology and computing computing data storage and warehousing" + ], + "label": "Data Storage and Warehousing", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Data Storage and Warehousing" + ], + "path_label": "Technology & Computing > Computing > Data Storage and Warehousing", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Data Storage and Warehousing. Canonical label: Data Storage and Warehousing. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computing, data storage and warehousing, technology and computing, technology and computing computing data storage and warehousing", + "unique_id": "616" + }, + { + "keywords": [ + "computing", + "desktops", + "technology and computing", + "technology and computing computing desktops" + ], + "label": "Desktops", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Desktops" + ], + "path_label": "Technology & Computing > Computing > Desktops", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Desktops. Canonical label: Desktops. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computing, desktops, technology and computing, technology and computing computing desktops", + "unique_id": "617" + }, + { + "keywords": [ + "computing", + "information and network security", + "technology and computing", + "technology and computing computing information and network security" + ], + "label": "Information and Network Security", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Information and Network Security" + ], + "path_label": "Technology & Computing > Computing > Information and Network Security", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Information and Network Security. Canonical label: Information and Network Security. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computing, information and network security, technology and computing, technology and computing computing information and network security", + "unique_id": "618" + }, + { + "keywords": [ + "computing", + "internet", + "technology and computing", + "technology and computing computing internet" + ], + "label": "Internet", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Internet" + ], + "path_label": "Technology & Computing > Computing > Internet", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet. Canonical label: Internet. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computing, internet, technology and computing, technology and computing computing internet", + "unique_id": "619" + }, + { + "keywords": [ + "cloud computing", + "computing", + "internet", + "technology and computing", + "technology and computing computing internet cloud computing" + ], + "label": "Cloud Computing", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Cloud Computing" + ], + "path_label": "Technology & Computing > Computing > Internet > Cloud Computing", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Cloud Computing. Canonical label: Cloud Computing. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: cloud computing, computing, internet, technology and computing, technology and computing computing internet cloud computing", + "unique_id": "620" + }, + { + "keywords": [ + "computing", + "email", + "internet", + "technology and computing", + "technology and computing computing internet email" + ], + "label": "Email", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Email" + ], + "path_label": "Technology & Computing > Computing > Internet > Email", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Email. Canonical label: Email. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, email, internet, technology and computing, technology and computing computing internet email", + "unique_id": "623" + }, + { + "keywords": [ + "computing", + "internet", + "internet for beginners", + "technology and computing", + "technology and computing computing internet internet for beginners" + ], + "label": "Internet for Beginners", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Internet for Beginners" + ], + "path_label": "Technology & Computing > Computing > Internet > Internet for Beginners", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Internet for Beginners. Canonical label: Internet for Beginners. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, internet for beginners, technology and computing, technology and computing computing internet internet for beginners", + "unique_id": "624" + }, + { + "keywords": [ + "computing", + "internet", + "internet of things", + "technology and computing", + "technology and computing computing internet internet of things" + ], + "label": "Internet of Things", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Internet of Things" + ], + "path_label": "Technology & Computing > Computing > Internet > Internet of Things", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Internet of Things. Canonical label: Internet of Things. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, internet of things, technology and computing, technology and computing computing internet internet of things", + "unique_id": "625" + }, + { + "keywords": [ + "computing", + "internet", + "it and internet support", + "technology and computing", + "technology and computing computing internet it and internet support" + ], + "label": "IT and Internet Support", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "IT and Internet Support" + ], + "path_label": "Technology & Computing > Computing > Internet > IT and Internet Support", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > IT and Internet Support. Canonical label: IT and Internet Support. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, it and internet support, technology and computing, technology and computing computing internet it and internet support", + "unique_id": "626" + }, + { + "keywords": [ + "computing", + "internet", + "search", + "technology and computing", + "technology and computing computing internet search" + ], + "label": "Search", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Search" + ], + "path_label": "Technology & Computing > Computing > Internet > Search", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Search. Canonical label: Search. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, search, technology and computing, technology and computing computing internet search", + "unique_id": "627" + }, + { + "keywords": [ + "computing", + "internet", + "social networking", + "technology and computing", + "technology and computing computing internet social networking" + ], + "label": "Social Networking", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Social Networking" + ], + "path_label": "Technology & Computing > Computing > Internet > Social Networking", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Social Networking. Canonical label: Social Networking. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, social networking, technology and computing, technology and computing computing internet social networking", + "unique_id": "628" + }, + { + "keywords": [ + "computing", + "internet", + "technology and computing", + "technology and computing computing internet web design and html", + "web design and html" + ], + "label": "Web Design and HTML", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Web Design and HTML" + ], + "path_label": "Technology & Computing > Computing > Internet > Web Design and HTML", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Web Design and HTML. Canonical label: Web Design and HTML. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, technology and computing, technology and computing computing internet web design and html, web design and html", + "unique_id": "629" + }, + { + "keywords": [ + "computing", + "internet", + "technology and computing", + "technology and computing computing internet web development", + "web development" + ], + "label": "Web Development", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Web Development" + ], + "path_label": "Technology & Computing > Computing > Internet > Web Development", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Web Development. Canonical label: Web Development. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, technology and computing, technology and computing computing internet web development, web development", + "unique_id": "621" + }, + { + "keywords": [ + "computing", + "internet", + "technology and computing", + "technology and computing computing internet web hosting", + "web hosting" + ], + "label": "Web Hosting", + "level": 4, + "parent_id": "619", + "path": [ + "Technology & Computing", + "Computing", + "Internet", + "Web Hosting" + ], + "path_label": "Technology & Computing > Computing > Internet > Web Hosting", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Internet > Web Hosting. Canonical label: Web Hosting. Tier depth: 4. Parent path: Technology & Computing > Computing > Internet. Keywords: computing, internet, technology and computing, technology and computing computing internet web hosting, web hosting", + "unique_id": "622" + }, + { + "keywords": [ + "computing", + "laptops", + "technology and computing", + "technology and computing computing laptops" + ], + "label": "Laptops", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Laptops" + ], + "path_label": "Technology & Computing > Computing > Laptops", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Laptops. Canonical label: Laptops. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computing, laptops, technology and computing, technology and computing computing laptops", + "unique_id": "630" + }, + { + "keywords": [ + "computing", + "programming languages", + "technology and computing", + "technology and computing computing programming languages" + ], + "label": "Programming Languages", + "level": 3, + "parent_id": "599", + "path": [ + "Technology & Computing", + "Computing", + "Programming Languages" + ], + "path_label": "Technology & Computing > Computing > Programming Languages", + "retrieval_text": "IAB category path: Technology & Computing > Computing > Programming Languages. Canonical label: Programming Languages. Tier depth: 3. Parent path: Technology & Computing > Computing. Keywords: computing, programming languages, technology and computing, technology and computing computing programming languages", + "unique_id": "631" + }, + { + "keywords": [ + "consumer electronics", + "technology and computing", + "technology and computing consumer electronics" + ], + "label": "Consumer Electronics", + "level": 2, + "parent_id": "596", + "path": [ + "Technology & Computing", + "Consumer Electronics" + ], + "path_label": "Technology & Computing > Consumer Electronics", + "retrieval_text": "IAB category path: Technology & Computing > Consumer Electronics. Canonical label: Consumer Electronics. Tier depth: 2. Parent path: Technology & Computing. Keywords: consumer electronics, technology and computing, technology and computing consumer electronics", + "unique_id": "632" + }, + { + "keywords": [ + "cameras and camcorders", + "consumer electronics", + "technology and computing", + "technology and computing consumer electronics cameras and camcorders" + ], + "label": "Cameras and Camcorders", + "level": 3, + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Cameras and Camcorders" + ], + "path_label": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "retrieval_text": "IAB category path: Technology & Computing > Consumer Electronics > Cameras and Camcorders. Canonical label: Cameras and Camcorders. Tier depth: 3. Parent path: Technology & Computing > Consumer Electronics. Keywords: cameras and camcorders, consumer electronics, technology and computing, technology and computing consumer electronics cameras and camcorders", + "unique_id": "633" + }, + { + "keywords": [ + "consumer electronics", + "home entertainment systems", + "technology and computing", + "technology and computing consumer electronics home entertainment systems" + ], + "label": "Home Entertainment Systems", + "level": 3, + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Home Entertainment Systems" + ], + "path_label": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "retrieval_text": "IAB category path: Technology & Computing > Consumer Electronics > Home Entertainment Systems. Canonical label: Home Entertainment Systems. Tier depth: 3. Parent path: Technology & Computing > Consumer Electronics. Keywords: consumer electronics, home entertainment systems, technology and computing, technology and computing consumer electronics home entertainment systems", + "unique_id": "634" + }, + { + "keywords": [ + "consumer electronics", + "smartphones", + "technology and computing", + "technology and computing consumer electronics smartphones" + ], + "label": "Smartphones", + "level": 3, + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Smartphones" + ], + "path_label": "Technology & Computing > Consumer Electronics > Smartphones", + "retrieval_text": "IAB category path: Technology & Computing > Consumer Electronics > Smartphones. Canonical label: Smartphones. Tier depth: 3. Parent path: Technology & Computing > Consumer Electronics. Keywords: consumer electronics, smartphones, technology and computing, technology and computing consumer electronics smartphones", + "unique_id": "635" + }, + { + "keywords": [ + "consumer electronics", + "tablets and e readers", + "technology and computing", + "technology and computing consumer electronics tablets and e readers" + ], + "label": "Tablets and E-readers", + "level": 3, + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Tablets and E-readers" + ], + "path_label": "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "retrieval_text": "IAB category path: Technology & Computing > Consumer Electronics > Tablets and E-readers. Canonical label: Tablets and E-readers. Tier depth: 3. Parent path: Technology & Computing > Consumer Electronics. Keywords: consumer electronics, tablets and e readers, technology and computing, technology and computing consumer electronics tablets and e readers", + "unique_id": "636" + }, + { + "keywords": [ + "consumer electronics", + "technology and computing", + "technology and computing consumer electronics wearable technology", + "wearable technology" + ], + "label": "Wearable Technology", + "level": 3, + "parent_id": "632", + "path": [ + "Technology & Computing", + "Consumer Electronics", + "Wearable Technology" + ], + "path_label": "Technology & Computing > Consumer Electronics > Wearable Technology", + "retrieval_text": "IAB category path: Technology & Computing > Consumer Electronics > Wearable Technology. Canonical label: Wearable Technology. Tier depth: 3. Parent path: Technology & Computing > Consumer Electronics. Keywords: consumer electronics, technology and computing, technology and computing consumer electronics wearable technology, wearable technology", + "unique_id": "637" + }, + { + "keywords": [ + "robotics", + "technology and computing", + "technology and computing robotics" + ], + "label": "Robotics", + "level": 2, + "parent_id": "596", + "path": [ + "Technology & Computing", + "Robotics" + ], + "path_label": "Technology & Computing > Robotics", + "retrieval_text": "IAB category path: Technology & Computing > Robotics. Canonical label: Robotics. Tier depth: 2. Parent path: Technology & Computing. Keywords: robotics, technology and computing, technology and computing robotics", + "unique_id": "638" + }, + { + "keywords": [ + "technology and computing", + "technology and computing virtual reality", + "virtual reality" + ], + "label": "Virtual Reality", + "level": 2, + "parent_id": "596", + "path": [ + "Technology & Computing", + "Virtual Reality" + ], + "path_label": "Technology & Computing > Virtual Reality", + "retrieval_text": "IAB category path: Technology & Computing > Virtual Reality. Canonical label: Virtual Reality. Tier depth: 2. Parent path: Technology & Computing. Keywords: technology and computing, technology and computing virtual reality, virtual reality", + "unique_id": "639" + }, + { + "keywords": [ + "travel" + ], + "label": "Travel", + "level": 1, + "parent_id": null, + "path": [ + "Travel" + ], + "path_label": "Travel", + "retrieval_text": "IAB category path: Travel. Canonical label: Travel. Tier depth: 1. Keywords: travel", + "unique_id": "653" + }, + { + "keywords": [ + "travel", + "travel accessories", + "travel travel accessories" + ], + "label": "Travel Accessories", + "level": 2, + "parent_id": "653", + "path": [ + "Travel", + "Travel Accessories" + ], + "path_label": "Travel > Travel Accessories", + "retrieval_text": "IAB category path: Travel > Travel Accessories. Canonical label: Travel Accessories. Tier depth: 2. Parent path: Travel. Keywords: travel, travel accessories, travel travel accessories", + "unique_id": "654" + }, + { + "keywords": [ + "travel", + "travel locations", + "travel travel locations" + ], + "label": "Travel Locations", + "level": 2, + "parent_id": "653", + "path": [ + "Travel", + "Travel Locations" + ], + "path_label": "Travel > Travel Locations", + "retrieval_text": "IAB category path: Travel > Travel Locations. Canonical label: Travel Locations. Tier depth: 2. Parent path: Travel. Keywords: travel, travel locations, travel travel locations", + "unique_id": "655" + }, + { + "keywords": [ + "africa travel", + "travel", + "travel locations", + "travel travel locations africa travel" + ], + "label": "Africa Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Africa Travel" + ], + "path_label": "Travel > Travel Locations > Africa Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > Africa Travel. Canonical label: Africa Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: africa travel, travel, travel locations, travel travel locations africa travel", + "unique_id": "656" + }, + { + "keywords": [ + "asia travel", + "travel", + "travel locations", + "travel travel locations asia travel" + ], + "label": "Asia Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Asia Travel" + ], + "path_label": "Travel > Travel Locations > Asia Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > Asia Travel. Canonical label: Asia Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: asia travel, travel, travel locations, travel travel locations asia travel", + "unique_id": "657" + }, + { + "keywords": [ + "australia and oceania travel", + "travel", + "travel locations", + "travel travel locations australia and oceania travel" + ], + "label": "Australia and Oceania Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Australia and Oceania Travel" + ], + "path_label": "Travel > Travel Locations > Australia and Oceania Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > Australia and Oceania Travel. Canonical label: Australia and Oceania Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: australia and oceania travel, travel, travel locations, travel travel locations australia and oceania travel", + "unique_id": "658" + }, + { + "keywords": [ + "europe travel", + "travel", + "travel locations", + "travel travel locations europe travel" + ], + "label": "Europe Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Europe Travel" + ], + "path_label": "Travel > Travel Locations > Europe Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > Europe Travel. Canonical label: Europe Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: europe travel, travel, travel locations, travel travel locations europe travel", + "unique_id": "659" + }, + { + "keywords": [ + "north america travel", + "travel", + "travel locations", + "travel travel locations north america travel" + ], + "label": "North America Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "North America Travel" + ], + "path_label": "Travel > Travel Locations > North America Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > North America Travel. Canonical label: North America Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: north america travel, travel, travel locations, travel travel locations north america travel", + "unique_id": "660" + }, + { + "keywords": [ + "polar travel", + "travel", + "travel locations", + "travel travel locations polar travel" + ], + "label": "Polar Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "Polar Travel" + ], + "path_label": "Travel > Travel Locations > Polar Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > Polar Travel. Canonical label: Polar Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: polar travel, travel, travel locations, travel travel locations polar travel", + "unique_id": "661" + }, + { + "keywords": [ + "south america travel", + "travel", + "travel locations", + "travel travel locations south america travel" + ], + "label": "South America Travel", + "level": 3, + "parent_id": "655", + "path": [ + "Travel", + "Travel Locations", + "South America Travel" + ], + "path_label": "Travel > Travel Locations > South America Travel", + "retrieval_text": "IAB category path: Travel > Travel Locations > South America Travel. Canonical label: South America Travel. Tier depth: 3. Parent path: Travel > Travel Locations. Keywords: south america travel, travel, travel locations, travel travel locations south america travel", + "unique_id": "662" + }, + { + "keywords": [ + "travel", + "travel preparation and advice", + "travel travel preparation and advice" + ], + "label": "Travel Preparation and Advice", + "level": 2, + "parent_id": "653", + "path": [ + "Travel", + "Travel Preparation and Advice" + ], + "path_label": "Travel > Travel Preparation and Advice", + "retrieval_text": "IAB category path: Travel > Travel Preparation and Advice. Canonical label: Travel Preparation and Advice. Tier depth: 2. Parent path: Travel. Keywords: travel, travel preparation and advice, travel travel preparation and advice", + "unique_id": "663" + }, + { + "keywords": [ + "travel", + "travel travel type", + "travel type" + ], + "label": "Travel Type", + "level": 2, + "parent_id": "653", + "path": [ + "Travel", + "Travel Type" + ], + "path_label": "Travel > Travel Type", + "retrieval_text": "IAB category path: Travel > Travel Type. Canonical label: Travel Type. Tier depth: 2. Parent path: Travel. Keywords: travel, travel travel type, travel type", + "unique_id": "664" + }, + { + "keywords": [ + "adventure travel", + "travel", + "travel travel type adventure travel", + "travel type" + ], + "label": "Adventure Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Adventure Travel" + ], + "path_label": "Travel > Travel Type > Adventure Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Adventure Travel. Canonical label: Adventure Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: adventure travel, travel, travel travel type adventure travel, travel type", + "unique_id": "665" + }, + { + "keywords": [ + "air travel", + "travel", + "travel travel type air travel", + "travel type" + ], + "label": "Air Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Air Travel" + ], + "path_label": "Travel > Travel Type > Air Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Air Travel. Canonical label: Air Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: air travel, travel, travel travel type air travel, travel type", + "unique_id": "672" + }, + { + "keywords": [ + "beach travel", + "travel", + "travel travel type beach travel", + "travel type" + ], + "label": "Beach Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Beach Travel" + ], + "path_label": "Travel > Travel Type > Beach Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Beach Travel. Canonical label: Beach Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: beach travel, travel, travel travel type beach travel, travel type", + "unique_id": "673" + }, + { + "keywords": [ + "bed and breakfasts", + "travel", + "travel travel type bed and breakfasts", + "travel type" + ], + "label": "Bed & Breakfasts", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Bed & Breakfasts" + ], + "path_label": "Travel > Travel Type > Bed & Breakfasts", + "retrieval_text": "IAB category path: Travel > Travel Type > Bed & Breakfasts. Canonical label: Bed & Breakfasts. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: bed and breakfasts, travel, travel travel type bed and breakfasts, travel type", + "unique_id": "674" + }, + { + "keywords": [ + "budget travel", + "travel", + "travel travel type budget travel", + "travel type" + ], + "label": "Budget Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Budget Travel" + ], + "path_label": "Travel > Travel Type > Budget Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Budget Travel. Canonical label: Budget Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: budget travel, travel, travel travel type budget travel, travel type", + "unique_id": "675" + }, + { + "keywords": [ + "business travel", + "travel", + "travel travel type business travel", + "travel type" + ], + "label": "Business Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Business Travel" + ], + "path_label": "Travel > Travel Type > Business Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Business Travel. Canonical label: Business Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: business travel, travel, travel travel type business travel, travel type", + "unique_id": "676" + }, + { + "keywords": [ + "camping", + "travel", + "travel travel type camping", + "travel type" + ], + "label": "Camping", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Camping" + ], + "path_label": "Travel > Travel Type > Camping", + "retrieval_text": "IAB category path: Travel > Travel Type > Camping. Canonical label: Camping. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: camping, travel, travel travel type camping, travel type", + "unique_id": "677" + }, + { + "keywords": [ + "cruises", + "travel", + "travel travel type cruises", + "travel type" + ], + "label": "Cruises", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Cruises" + ], + "path_label": "Travel > Travel Type > Cruises", + "retrieval_text": "IAB category path: Travel > Travel Type > Cruises. Canonical label: Cruises. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: cruises, travel, travel travel type cruises, travel type", + "unique_id": "678" + }, + { + "keywords": [ + "day trips", + "travel", + "travel travel type day trips", + "travel type" + ], + "label": "Day Trips", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Day Trips" + ], + "path_label": "Travel > Travel Type > Day Trips", + "retrieval_text": "IAB category path: Travel > Travel Type > Day Trips. Canonical label: Day Trips. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: day trips, travel, travel travel type day trips, travel type", + "unique_id": "679" + }, + { + "keywords": [ + "family travel", + "travel", + "travel travel type family travel", + "travel type" + ], + "label": "Family Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Family Travel" + ], + "path_label": "Travel > Travel Type > Family Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Family Travel. Canonical label: Family Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: family travel, travel, travel travel type family travel, travel type", + "unique_id": "666" + }, + { + "keywords": [ + "honeymoons and getaways", + "travel", + "travel travel type honeymoons and getaways", + "travel type" + ], + "label": "Honeymoons and Getaways", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Honeymoons and Getaways" + ], + "path_label": "Travel > Travel Type > Honeymoons and Getaways", + "retrieval_text": "IAB category path: Travel > Travel Type > Honeymoons and Getaways. Canonical label: Honeymoons and Getaways. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: honeymoons and getaways, travel, travel travel type honeymoons and getaways, travel type", + "unique_id": "667" + }, + { + "keywords": [ + "hotels and motels", + "travel", + "travel travel type hotels and motels", + "travel type" + ], + "label": "Hotels and Motels", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Hotels and Motels" + ], + "path_label": "Travel > Travel Type > Hotels and Motels", + "retrieval_text": "IAB category path: Travel > Travel Type > Hotels and Motels. Canonical label: Hotels and Motels. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: hotels and motels, travel, travel travel type hotels and motels, travel type", + "unique_id": "668" + }, + { + "keywords": [ + "rail travel", + "travel", + "travel travel type rail travel", + "travel type" + ], + "label": "Rail Travel", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Rail Travel" + ], + "path_label": "Travel > Travel Type > Rail Travel", + "retrieval_text": "IAB category path: Travel > Travel Type > Rail Travel. Canonical label: Rail Travel. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: rail travel, travel, travel travel type rail travel, travel type", + "unique_id": "669" + }, + { + "keywords": [ + "road trips", + "travel", + "travel travel type road trips", + "travel type" + ], + "label": "Road Trips", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Road Trips" + ], + "path_label": "Travel > Travel Type > Road Trips", + "retrieval_text": "IAB category path: Travel > Travel Type > Road Trips. Canonical label: Road Trips. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: road trips, travel, travel travel type road trips, travel type", + "unique_id": "670" + }, + { + "keywords": [ + "spas", + "travel", + "travel travel type spas", + "travel type" + ], + "label": "Spas", + "level": 3, + "parent_id": "664", + "path": [ + "Travel", + "Travel Type", + "Spas" + ], + "path_label": "Travel > Travel Type > Spas", + "retrieval_text": "IAB category path: Travel > Travel Type > Spas. Canonical label: Spas. Tier depth: 3. Parent path: Travel > Travel Type. Keywords: spas, travel, travel travel type spas, travel type", + "unique_id": "671" + }, + { + "keywords": [ + "video gaming" + ], + "label": "Video Gaming", + "level": 1, + "parent_id": null, + "path": [ + "Video Gaming" + ], + "path_label": "Video Gaming", + "retrieval_text": "IAB category path: Video Gaming. Canonical label: Video Gaming. Tier depth: 1. Keywords: video gaming", + "unique_id": "680" + }, + { + "keywords": [ + "console games", + "video gaming", + "video gaming console games" + ], + "label": "Console Games", + "level": 2, + "parent_id": "680", + "path": [ + "Video Gaming", + "Console Games" + ], + "path_label": "Video Gaming > Console Games", + "retrieval_text": "IAB category path: Video Gaming > Console Games. Canonical label: Console Games. Tier depth: 2. Parent path: Video Gaming. Keywords: console games, video gaming, video gaming console games", + "unique_id": "681" + }, + { + "keywords": [ + "esports", + "video gaming", + "video gaming esports" + ], + "label": "eSports", + "level": 2, + "parent_id": "680", + "path": [ + "Video Gaming", + "eSports" + ], + "path_label": "Video Gaming > eSports", + "retrieval_text": "IAB category path: Video Gaming > eSports. Canonical label: eSports. Tier depth: 2. Parent path: Video Gaming. Keywords: esports, video gaming, video gaming esports", + "unique_id": "682" + }, + { + "keywords": [ + "mobile games", + "video gaming", + "video gaming mobile games" + ], + "label": "Mobile Games", + "level": 2, + "parent_id": "680", + "path": [ + "Video Gaming", + "Mobile Games" + ], + "path_label": "Video Gaming > Mobile Games", + "retrieval_text": "IAB category path: Video Gaming > Mobile Games. Canonical label: Mobile Games. Tier depth: 2. Parent path: Video Gaming. Keywords: mobile games, video gaming, video gaming mobile games", + "unique_id": "683" + }, + { + "keywords": [ + "pc games", + "video gaming", + "video gaming pc games" + ], + "label": "PC Games", + "level": 2, + "parent_id": "680", + "path": [ + "Video Gaming", + "PC Games" + ], + "path_label": "Video Gaming > PC Games", + "retrieval_text": "IAB category path: Video Gaming > PC Games. Canonical label: PC Games. Tier depth: 2. Parent path: Video Gaming. Keywords: pc games, video gaming, video gaming pc games", + "unique_id": "684" + }, + { + "keywords": [ + "video game genres", + "video gaming", + "video gaming video game genres" + ], + "label": "Video Game Genres", + "level": 2, + "parent_id": "680", + "path": [ + "Video Gaming", + "Video Game Genres" + ], + "path_label": "Video Gaming > Video Game Genres", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres. Canonical label: Video Game Genres. Tier depth: 2. Parent path: Video Gaming. Keywords: video game genres, video gaming, video gaming video game genres", + "unique_id": "685" + }, + { + "keywords": [ + "action video games", + "video game genres", + "video gaming", + "video gaming video game genres action video games" + ], + "label": "Action Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Action Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Action Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Action Video Games. Canonical label: Action Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: action video games, video game genres, video gaming, video gaming video game genres action video games", + "unique_id": "686" + }, + { + "keywords": [ + "action adventure video games", + "video game genres", + "video gaming", + "video gaming video game genres action adventure video games" + ], + "label": "Action-Adventure Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Action-Adventure Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Action-Adventure Video Games. Canonical label: Action-Adventure Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: action adventure video games, video game genres, video gaming, video gaming video game genres action adventure video games", + "unique_id": "691" + }, + { + "keywords": [ + "adult video games", + "video game genres", + "video gaming", + "video gaming video game genres adult video games" + ], + "label": "Adult Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Adult Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Adult Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Adult Video Games. Canonical label: Adult Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: adult video games, video game genres, video gaming, video gaming video game genres adult video games", + "unique_id": "MQ2XML" + }, + { + "keywords": [ + "adventure video games", + "video game genres", + "video gaming", + "video gaming video game genres adventure video games" + ], + "label": "Adventure Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Adventure Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Adventure Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Adventure Video Games. Canonical label: Adventure Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: adventure video games, video game genres, video gaming, video gaming video game genres adventure video games", + "unique_id": "692" + }, + { + "keywords": [ + "casino and gambling video games", + "video game genres", + "video gaming", + "video gaming video game genres casino and gambling video games" + ], + "label": "Casino and Gambling Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Casino and Gambling Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Casino and Gambling Video Games. Canonical label: Casino and Gambling Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: casino and gambling video games, video game genres, video gaming, video gaming video game genres casino and gambling video games", + "unique_id": "ZJG29S" + }, + { + "keywords": [ + "casual games", + "video game genres", + "video gaming", + "video gaming video game genres casual games" + ], + "label": "Casual Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Casual Games" + ], + "path_label": "Video Gaming > Video Game Genres > Casual Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Casual Games. Canonical label: Casual Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: casual games, video game genres, video gaming, video gaming video game genres casual games", + "unique_id": "693" + }, + { + "keywords": [ + "educational video games", + "video game genres", + "video gaming", + "video gaming video game genres educational video games" + ], + "label": "Educational Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Educational Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Educational Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Educational Video Games. Canonical label: Educational Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: educational video games, video game genres, video gaming, video gaming video game genres educational video games", + "unique_id": "694" + }, + { + "keywords": [ + "exercise and fitness video games", + "video game genres", + "video gaming", + "video gaming video game genres exercise and fitness video games" + ], + "label": "Exercise and Fitness Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Exercise and Fitness Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Exercise and Fitness Video Games. Canonical label: Exercise and Fitness Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: exercise and fitness video games, video game genres, video gaming, video gaming video game genres exercise and fitness video games", + "unique_id": "695" + }, + { + "keywords": [ + "family video games", + "video game genres", + "video gaming", + "video gaming video game genres family video games" + ], + "label": "Family Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Family Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Family Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Family Video Games. Canonical label: Family Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: family video games, video game genres, video gaming, video gaming video game genres family video games", + "unique_id": "VWGKS7" + }, + { + "keywords": [ + "horror video games", + "video game genres", + "video gaming", + "video gaming video game genres horror video games" + ], + "label": "Horror Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Horror Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Horror Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Horror Video Games. Canonical label: Horror Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: horror video games, video game genres, video gaming, video gaming video game genres horror video games", + "unique_id": "II436J" + }, + { + "keywords": [ + "mmos", + "video game genres", + "video gaming", + "video gaming video game genres mmos" + ], + "label": "MMOs", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "MMOs" + ], + "path_label": "Video Gaming > Video Game Genres > MMOs", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > MMOs. Canonical label: MMOs. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: mmos, video game genres, video gaming, video gaming video game genres mmos", + "unique_id": "696" + }, + { + "keywords": [ + "music and party video games", + "video game genres", + "video gaming", + "video gaming video game genres music and party video games" + ], + "label": "Music and Party Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Music and Party Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Music and Party Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Music and Party Video Games. Canonical label: Music and Party Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: music and party video games, video game genres, video gaming, video gaming video game genres music and party video games", + "unique_id": "697" + }, + { + "keywords": [ + "puzzle video games", + "video game genres", + "video gaming", + "video gaming video game genres puzzle video games" + ], + "label": "Puzzle Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Puzzle Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Puzzle Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Puzzle Video Games. Canonical label: Puzzle Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: puzzle video games, video game genres, video gaming, video gaming video game genres puzzle video games", + "unique_id": "698" + }, + { + "keywords": [ + "racing video games", + "video game genres", + "video gaming", + "video gaming video game genres racing video games" + ], + "label": "Racing Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Racing Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Racing Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Racing Video Games. Canonical label: Racing Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: racing video games, video game genres, video gaming, video gaming video game genres racing video games", + "unique_id": "VK7KD0" + }, + { + "keywords": [ + "role playing video games", + "video game genres", + "video gaming", + "video gaming video game genres role playing video games" + ], + "label": "Role-Playing Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Role-Playing Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Role-Playing Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Role-Playing Video Games. Canonical label: Role-Playing Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: role playing video games, video game genres, video gaming, video gaming video game genres role playing video games", + "unique_id": "687" + }, + { + "keywords": [ + "simulation video games", + "video game genres", + "video gaming", + "video gaming video game genres simulation video games" + ], + "label": "Simulation Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Simulation Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Simulation Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Simulation Video Games. Canonical label: Simulation Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: simulation video games, video game genres, video gaming, video gaming video game genres simulation video games", + "unique_id": "688" + }, + { + "keywords": [ + "sports video games", + "video game genres", + "video gaming", + "video gaming video game genres sports video games" + ], + "label": "Sports Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Sports Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Sports Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Sports Video Games. Canonical label: Sports Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: sports video games, video game genres, video gaming, video gaming video game genres sports video games", + "unique_id": "689" + }, + { + "keywords": [ + "strategy video games", + "video game genres", + "video gaming", + "video gaming video game genres strategy video games" + ], + "label": "Strategy Video Games", + "level": 3, + "parent_id": "685", + "path": [ + "Video Gaming", + "Video Game Genres", + "Strategy Video Games" + ], + "path_label": "Video Gaming > Video Game Genres > Strategy Video Games", + "retrieval_text": "IAB category path: Video Gaming > Video Game Genres > Strategy Video Games. Canonical label: Strategy Video Games. Tier depth: 3. Parent path: Video Gaming > Video Game Genres. Keywords: strategy video games, video game genres, video gaming, video gaming video game genres strategy video games", + "unique_id": "690" + }, + { + "keywords": [ + "war and conflicts" + ], + "label": "War and Conflicts", + "level": 1, + "parent_id": null, + "path": [ + "War and Conflicts" + ], + "path_label": "War and Conflicts", + "retrieval_text": "IAB category path: War and Conflicts. Canonical label: War and Conflicts. Tier depth: 1. Keywords: war and conflicts", + "unique_id": "389" + } +] diff --git a/combined_inference.py b/combined_inference.py new file mode 100644 index 0000000000000000000000000000000000000000..5a9d46353a324e76673a4bd91a10450d865bbdc9 --- /dev/null +++ b/combined_inference.py @@ -0,0 +1,491 @@ +import argparse +import json +import os + +from config import ( + CAUTIONARY_SUBTYPES, + COMMERCIAL_SCORE_MIN, + HIGH_INTENT_SUBTYPES, + INTENT_SCORE_WEIGHTS, + LOW_SIGNAL_SUBTYPES, + PHASE_SCORE_WEIGHTS, + PROJECT_VERSION, + SAFE_FALLBACK_INTENTS, + SAFE_FALLBACK_SUBTYPE_FAMILIES, + SUBTYPE_FAMILY_MAP, + SUBTYPE_SCORE_WEIGHTS, +) +from inference_intent_type import predict as predict_intent_type +from inference_decision_phase import predict as predict_decision_phase +from inference_iab_classifier import predict as predict_iab_content_classifier +from inference_subtype import predict as predict_intent_subtype +from schemas import validate_classify_response + +# Degraded fallback only: production requires `training/train_iab.py` and +# `calibrate_confidence.py --head iab_content`. Used when weights are missing or forced via --skip-iab. +_SKIPPED_IAB_CONTENT: dict = { + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": "3.0", + "tier1": {"id": "skip_placeholder", "label": "Technology & computing"}, + "mapping_mode": "internal_extension", + "mapping_confidence": 0.0, +} +_SKIPPED_IAB_PRED: dict = {"calibrated": False, "placeholder": True} + + +def _force_iab_placeholder(explicit: bool) -> bool: + """Force placeholder IAB even when a trained classifier exists (tests / debugging).""" + if explicit: + return True + return os.environ.get("SKIP_IAB_CLASSIFIER", "").strip().lower() in ("1", "true", "yes") + + +def round_score(value: float) -> float: + return round(float(value), 4) + + +def iab_content_path(content: dict) -> tuple[str, ...]: + path = [] + for tier in ("tier1", "tier2", "tier3", "tier4"): + if tier in content: + path.append(content[tier]["label"]) + return tuple(path) + + +def subtype_family(subtype: str) -> str: + return SUBTYPE_FAMILY_MAP.get(subtype, "unknown") + + +def requires_subtype_threshold(subtype: str) -> bool: + return subtype not in LOW_SIGNAL_SUBTYPES + + +def compute_commercial_score(intent_type: str, decision_phase: str, subtype: str) -> float: + intent_weight = INTENT_SCORE_WEIGHTS.get(intent_type, 0.2) + phase_weight = PHASE_SCORE_WEIGHTS.get(decision_phase, 0.2) + subtype_weight = SUBTYPE_SCORE_WEIGHTS.get(subtype, 0.2) + return round_score((intent_weight * 0.2) + (phase_weight * 0.35) + (subtype_weight * 0.45)) + + +def build_summary(intent_type: str, decision_phase: str, subtype: str) -> str: + return f"Classified as {intent_type} intent with subtype {subtype} in the {decision_phase} phase." + + +def build_overall_confidence(intent_pred: dict, subtype_pred: dict, phase_pred: dict) -> float: + confidences = [intent_pred["confidence"], phase_pred["confidence"]] + if requires_subtype_threshold(subtype_pred["label"]): + confidences.append(subtype_pred["confidence"]) + return round_score(min(confidences)) + + +def build_fallback(intent_pred: dict, subtype_pred: dict, phase_pred: dict) -> dict | None: + intent_type = intent_pred["label"] + subtype = subtype_pred["label"] + subtype_group = subtype_family(subtype) + failed_components = [] + if not intent_pred["meets_confidence_threshold"]: + failed_components.append("intent_type") + if requires_subtype_threshold(subtype) and not subtype_pred["meets_confidence_threshold"]: + failed_components.append("intent_subtype") + if not phase_pred["meets_confidence_threshold"]: + failed_components.append("decision_phase") + + if intent_type == "ambiguous" or subtype == "follow_up": + reason = "ambiguous_query" + fallback_intent_type = "ambiguous" + eligibility = "not_allowed" + elif intent_type == "prohibited": + reason = "policy_default" + fallback_intent_type = "prohibited" + eligibility = "not_allowed" + elif intent_type in {"support", "chit_chat"}: + reason = "policy_default" + fallback_intent_type = intent_type + eligibility = "not_allowed" + elif intent_type == "personal_reflection" or subtype_group in SAFE_FALLBACK_SUBTYPE_FAMILIES: + reason = "policy_default" + fallback_intent_type = "personal_reflection" if subtype_group == "reflection" else "ambiguous" + eligibility = "not_allowed" + elif failed_components or intent_type in SAFE_FALLBACK_INTENTS: + reason = "confidence_below_threshold" + fallback_intent_type = "ambiguous" + eligibility = "not_allowed" + else: + return None + + return { + "applied": True, + "fallback_intent_type": fallback_intent_type, + "fallback_monetization_eligibility": eligibility, + "reason": reason, + "failed_components": failed_components, + } + + +def build_policy( + intent_type: str, + decision_phase: str, + subtype: str, + commercial_score: float, + iab_content: dict, + fallback: dict | None, + intent_pred: dict, + subtype_pred: dict, + phase_pred: dict, +) -> dict: + subtype_group = subtype_family(subtype) + applied_thresholds = { + "commercial_score_min": COMMERCIAL_SCORE_MIN, + "intent_type_confidence_min": intent_pred["confidence_threshold"], + "intent_subtype_confidence_min": subtype_pred["confidence_threshold"], + "decision_phase_confidence_min": phase_pred["confidence_threshold"], + } + if fallback is not None: + if fallback["reason"] == "ambiguous_query": + decision_basis = "fallback_ambiguous_intent" + elif fallback["reason"] == "policy_default": + decision_basis = "fallback_policy_default" + else: + decision_basis = "fallback_low_confidence" + return { + "monetization_eligibility": fallback["fallback_monetization_eligibility"], + "eligibility_reason": fallback["reason"], + "decision_basis": decision_basis, + "applied_thresholds": applied_thresholds, + "sensitivity": "high" if subtype_group in {"reflection", "support"} else "medium", + "regulated_vertical": False, + } + + if subtype in HIGH_INTENT_SUBTYPES and commercial_score >= 0.72: + return { + "monetization_eligibility": "allowed", + "eligibility_reason": "high_intent_subtype_signal", + "decision_basis": "score_threshold", + "applied_thresholds": applied_thresholds, + "sensitivity": "low", + "regulated_vertical": False, + } + + if intent_type == "commercial" and commercial_score >= COMMERCIAL_SCORE_MIN: + reason = "commercial_decision_signal_present" + if subtype == "product_discovery": + reason = "commercial_discovery_signal_present" + elif subtype in CAUTIONARY_SUBTYPES: + reason = "commercial_comparison_signal_present" + return { + "monetization_eligibility": "allowed_with_caution", + "eligibility_reason": reason, + "decision_basis": "score_threshold", + "applied_thresholds": applied_thresholds, + "sensitivity": "medium" if subtype == "deal_seeking" else "low", + "regulated_vertical": False, + } + + if subtype in {"download"} and commercial_score >= 0.42: + return { + "monetization_eligibility": "allowed_with_caution", + "eligibility_reason": "download_signal_present", + "decision_basis": "score_threshold", + "applied_thresholds": applied_thresholds, + "sensitivity": "low", + "regulated_vertical": False, + } + + if subtype_group == "post_purchase": + return { + "monetization_eligibility": "restricted", + "eligibility_reason": "post_purchase_setup_query", + "decision_basis": "score_threshold", + "applied_thresholds": applied_thresholds, + "sensitivity": "low", + "regulated_vertical": False, + } + + if subtype == "task_execution": + return { + "monetization_eligibility": "restricted", + "eligibility_reason": "operational_task_query", + "decision_basis": "score_threshold", + "applied_thresholds": applied_thresholds, + "sensitivity": "low", + "regulated_vertical": False, + } + + return { + "monetization_eligibility": "restricted", + "eligibility_reason": "commercial_signal_below_threshold", + "decision_basis": "score_threshold", + "applied_thresholds": applied_thresholds, + "sensitivity": "low", + "regulated_vertical": False, + } + + +def build_opportunity(subtype: str, fallback: dict | None) -> dict: + if fallback is not None or subtype_family(subtype) in SAFE_FALLBACK_SUBTYPE_FAMILIES: + return {"type": "none", "strength": "low"} + + if subtype in {"signup", "purchase", "booking", "contact_sales"}: + return {"type": "transaction_trigger", "strength": "high"} + if subtype == "provider_selection": + return {"type": "decision_moment", "strength": "high"} + if subtype in {"comparison", "evaluation"}: + return {"type": "comparison_slot", "strength": "high" if subtype == "comparison" else "medium"} + if subtype in {"product_discovery", "deal_seeking", "download", "onboarding_setup"}: + return {"type": "soft_recommendation", "strength": "medium" if subtype != "onboarding_setup" else "low"} + return {"type": "none", "strength": "low"} + + +def iab_path_labels(iab_content: dict) -> tuple[str | None, str | None, str | None, str | None]: + return ( + iab_content.get("tier1", {}).get("label"), + iab_content.get("tier2", {}).get("label"), + iab_content.get("tier3", {}).get("label"), + iab_content.get("tier4", {}).get("label"), + ) + + +def normalize_iab_label(label: str | None) -> str: + return (label or "").strip().lower() + + +def is_buyable_iab_path(iab_content: dict) -> bool: + tier1, tier2, tier3, tier4 = iab_path_labels(iab_content) + labels = [normalize_iab_label(label) for label in (tier1, tier2, tier3, tier4) if label] + if not labels: + return False + + joined = " > ".join(labels) + if any( + term in joined + for term in { + "buying and selling", + "shopping", + "sales and promotions", + "coupons and discounts", + "laptops", + "desktops", + "smartphones", + "tablets and e-readers", + "cameras and camcorders", + "wearable technology", + "computer software and applications", + "software and applications", + "web hosting", + "real estate renting and leasing", + "hotels and motels", + "air travel", + } + ): + return True + + tier1_label = labels[0] + tier2_label = labels[1] if len(labels) > 1 else "" + return ( + tier1_label in {"automotive", "shopping", "real estate", "travel"} + or (tier1_label == "technology & computing" and tier2_label in {"computing", "consumer electronics"}) + ) + + +def should_override_low_confidence_fallback( + fallback: dict | None, + intent_pred: dict, + subtype_pred: dict, + phase_pred: dict, + commercial_score: float, + iab_content: dict, +) -> bool: + if fallback is None or fallback.get("reason") != "confidence_below_threshold": + return False + failed_components = set(fallback.get("failed_components", [])) + if not failed_components or len(failed_components) > 2: + return False + if len(failed_components) == 2 and failed_components != {"intent_type", "decision_phase"}: + return False + if intent_pred["label"] != "commercial": + return False + if phase_pred["label"] not in {"consideration", "decision", "action"}: + return False + if subtype_family(subtype_pred["label"]) in SAFE_FALLBACK_SUBTYPE_FAMILIES: + return False + if subtype_pred["label"] not in { + "product_discovery", + "comparison", + "evaluation", + "deal_seeking", + "provider_selection", + "purchase", + "booking", + "contact_sales", + }: + return False + if not is_buyable_iab_path(iab_content): + return False + mapping_confidence = iab_content.get("mapping_confidence", 0.0) + subtype_threshold = subtype_pred["confidence_threshold"] + subtype_confidence = subtype_pred["confidence"] + + if failed_components == {"intent_subtype"}: + return ( + intent_pred["meets_confidence_threshold"] + and phase_pred["meets_confidence_threshold"] + and subtype_confidence >= max(0.2, subtype_threshold - 0.03) + and commercial_score >= 0.78 + and mapping_confidence >= 0.8 + ) + + if failed_components == {"intent_type", "decision_phase"}: + return ( + subtype_pred["meets_confidence_threshold"] + and commercial_score >= 0.72 + and mapping_confidence >= 0.72 + ) + + return False + + +def build_iab_content( + text: str, + intent_type: str, + subtype: str, + decision_phase: str, + confidence_threshold: float | None = None, + *, + force_placeholder: bool = False, +) -> tuple[dict, dict]: + if force_placeholder: + return _SKIPPED_IAB_CONTENT, _SKIPPED_IAB_PRED + classifier_pred = predict_iab_content_classifier(text, confidence_threshold=confidence_threshold) + if classifier_pred is None: + # Missing IAB artifacts: valid JSON only; check meta.iab_mapping_is_placeholder. Train + calibrate IAB for production. + return _SKIPPED_IAB_CONTENT, _SKIPPED_IAB_PRED + return classifier_pred["content"], classifier_pred + + +def classify_query( + text: str, + threshold_overrides: dict[str, float] | None = None, + *, + force_iab_placeholder: bool = False, +) -> dict: + threshold_overrides = threshold_overrides or {} + force_iab_placeholder = _force_iab_placeholder(force_iab_placeholder) + intent_pred = predict_intent_type(text, confidence_threshold=threshold_overrides.get("intent_type")) + subtype_pred = predict_intent_subtype(text, confidence_threshold=threshold_overrides.get("intent_subtype")) + phase_pred = predict_decision_phase(text, confidence_threshold=threshold_overrides.get("decision_phase")) + + intent_type = intent_pred["label"] + subtype = subtype_pred["label"] + decision_phase = phase_pred["label"] + confidence = build_overall_confidence(intent_pred, subtype_pred, phase_pred) + commercial_score = compute_commercial_score(intent_type, decision_phase, subtype) + iab_content, iab_pred = build_iab_content( + text, + intent_type, + subtype, + decision_phase, + confidence_threshold=threshold_overrides.get("iab_content"), + force_placeholder=force_iab_placeholder, + ) + fallback = build_fallback(intent_pred, subtype_pred, phase_pred) + if should_override_low_confidence_fallback( + fallback, + intent_pred, + subtype_pred, + phase_pred, + commercial_score, + iab_content, + ): + fallback = None + + payload = { + "model_output": { + "classification": { + "iab_content": iab_content, + "intent": { + "type": intent_type, + "subtype": subtype, + "decision_phase": decision_phase, + "confidence": confidence, + "commercial_score": commercial_score, + "summary": build_summary(intent_type, decision_phase, subtype), + "component_confidence": { + "intent_type": { + "label": intent_pred["label"], + "confidence": intent_pred["confidence"], + "raw_confidence": intent_pred["raw_confidence"], + "confidence_threshold": intent_pred["confidence_threshold"], + "calibrated": intent_pred["calibrated"], + "meets_threshold": intent_pred["meets_confidence_threshold"], + }, + "intent_subtype": { + "label": subtype_pred["label"], + "confidence": subtype_pred["confidence"], + "raw_confidence": subtype_pred["raw_confidence"], + "confidence_threshold": subtype_pred["confidence_threshold"], + "calibrated": subtype_pred["calibrated"], + "meets_threshold": subtype_pred["meets_confidence_threshold"], + }, + "decision_phase": { + "label": phase_pred["label"], + "confidence": phase_pred["confidence"], + "raw_confidence": phase_pred["raw_confidence"], + "confidence_threshold": phase_pred["confidence_threshold"], + "calibrated": phase_pred["calibrated"], + "meets_threshold": phase_pred["meets_confidence_threshold"], + }, + "overall_strategy": "min_required_component_confidence", + }, + } + }, + "fallback": fallback, + }, + "system_decision": { + "policy": build_policy( + intent_type, + decision_phase, + subtype, + commercial_score, + iab_content, + fallback, + intent_pred, + subtype_pred, + phase_pred, + ), + "opportunity": build_opportunity(subtype, fallback), + "intent_trajectory": [decision_phase], + }, + "meta": { + "system_version": PROJECT_VERSION, + "calibration_enabled": bool( + intent_pred["calibrated"] + or subtype_pred["calibrated"] + or phase_pred["calibrated"] + or (iab_pred is not None and iab_pred["calibrated"]) + ), + "iab_mapping_is_placeholder": bool(iab_pred is not None and iab_pred.get("placeholder")), + }, + } + return validate_classify_response(payload) + + +def main(): + parser = argparse.ArgumentParser( + description=( + "Run combined IAB + intent classification. Production requires trained+calibrated IAB " + "under iab_classifier_model_output/; use meta.iab_mapping_is_placeholder to detect degraded mode." + ) + ) + parser.add_argument("text", help="Raw query to classify") + parser.add_argument( + "--skip-iab", + action="store_true", + dest="force_iab_placeholder", + help="Ignore the IAB classifier and return placeholder mapping (testing only).", + ) + args = parser.parse_args() + print(json.dumps(classify_query(args.text, force_iab_placeholder=args.force_iab_placeholder), indent=2)) + + +if __name__ == "__main__": + main() diff --git a/complete_pipeline.py b/complete_pipeline.py new file mode 100644 index 0000000000000000000000000000000000000000..bb55ec3bac27d180d347594e0f76838ecfa11bbb --- /dev/null +++ b/complete_pipeline.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 +"""End-to-end production pipeline entry point (Colab-friendly). + +Runs ``training/run_full_training_pipeline.py`` and forwards CLI args. + +Typical: + python complete_pipeline.py --complete + python complete_pipeline.py --skip-full-eval --complete # Colab: skip heavy eval suites + python training/pipeline_verify.py # only check artifacts +""" +from __future__ import annotations + +import subprocess +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent + + +def main() -> None: + script = BASE_DIR / "training" / "run_full_training_pipeline.py" + cmd = [sys.executable, str(script), *sys.argv[1:]] + subprocess.run(cmd, cwd=BASE_DIR, check=True) + + +if __name__ == "__main__": + main() diff --git a/config.py b/config.py new file mode 100644 index 0000000000000000000000000000000000000000..6f7e20d55a8c70372bf3a60235ecbf66034fdff4 --- /dev/null +++ b/config.py @@ -0,0 +1,395 @@ +from __future__ import annotations + +import csv +import os +from dataclasses import dataclass +from pathlib import Path + +PROJECT_VERSION = "0.6.0-phase4" + +BASE_DIR = Path(__file__).resolve().parent +ARTIFACTS_DIR = BASE_DIR / "artifacts" +CALIBRATION_ARTIFACTS_DIR = ARTIFACTS_DIR / "calibration" +EVALUATION_ARTIFACTS_DIR = ARTIFACTS_DIR / "evaluation" +IAB_ARTIFACTS_DIR = ARTIFACTS_DIR / "iab" +FULL_INTENT_TAXONOMY_DATA_DIR = BASE_DIR / "data" / "full_intent_taxonomy" +INTENT_TYPE_DIFFICULTY_DATA_DIR = BASE_DIR / "data" / "intent_type_difficulty" +INTENT_TYPE_BENCHMARK_PATH = BASE_DIR / "data" / "intent_type_benchmark.jsonl" +DECISION_PHASE_DIFFICULTY_DATA_DIR = BASE_DIR / "data" / "decision_phase_difficulty" +DECISION_PHASE_BENCHMARK_PATH = BASE_DIR / "data" / "decision_phase_benchmark.jsonl" +SUBTYPE_DIFFICULTY_DATA_DIR = BASE_DIR / "data" / "subtype_difficulty" +SUBTYPE_BENCHMARK_PATH = BASE_DIR / "data" / "subtype_benchmark.jsonl" +IAB_DIFFICULTY_DATA_DIR = BASE_DIR / "data" / "iab_difficulty" +IAB_BENCHMARK_PATH = BASE_DIR / "data" / "iab_benchmark.jsonl" +IAB_CROSS_VERTICAL_BENCHMARK_PATH = BASE_DIR / "data" / "iab_cross_vertical_benchmark.jsonl" + +DEFAULT_API_HOST = "127.0.0.1" +DEFAULT_API_PORT = 8008 +DEFAULT_BENCHMARK_PATH = BASE_DIR / "examples" / "demo_prompt_suite.json" +KNOWN_FAILURE_CASES_PATH = BASE_DIR / "examples" / "known_failure_cases.json" +IAB_TAXONOMY_VERSION = os.environ.get("IAB_TAXONOMY_VERSION_OVERRIDE", "3.0") +IAB_TAXONOMY_PATH = Path( + os.environ.get( + "IAB_TAXONOMY_PATH_OVERRIDE", + str(BASE_DIR / "data" / "iab-content" / f"Content Taxonomy {IAB_TAXONOMY_VERSION}.tsv"), + ) +) +IAB_TAXONOMY_GRAPH_PATH = IAB_ARTIFACTS_DIR / "taxonomy_graph.json" +IAB_TAXONOMY_NODES_PATH = IAB_ARTIFACTS_DIR / "taxonomy_nodes.json" +IAB_TAXONOMY_EMBEDDINGS_PATH = IAB_ARTIFACTS_DIR / "taxonomy_embeddings.pt" +IAB_DATASET_SUMMARY_PATH = IAB_ARTIFACTS_DIR / "dataset_summary.json" +MULTITASK_INTENT_MODEL_DIR = BASE_DIR / "multitask_intent_model_output" +IAB_CLASSIFIER_MODEL_DIR = BASE_DIR / "iab_classifier_model_output" +IAB_RETRIEVAL_LOCAL_MODEL_DIR = BASE_DIR / "iab_embedding_model_output" +IAB_QUALITY_TARGET_CASES_PATH = BASE_DIR / "examples" / "iab_mapping_cases.json" +IAB_CROSS_VERTICAL_QUALITY_TARGET_CASES_PATH = BASE_DIR / "examples" / "iab_cross_vertical_mapping_cases.json" +IAB_BEHAVIOR_LOCK_CASES_PATH = BASE_DIR / "examples" / "iab_behavior_lock_cases.json" +IAB_CROSS_VERTICAL_BEHAVIOR_LOCK_CASES_PATH = BASE_DIR / "examples" / "iab_cross_vertical_behavior_lock_cases.json" +IAB_RETRIEVAL_SPLIT_PATHS = { + "train": BASE_DIR / "data" / "iab" / "train.jsonl", + "val": BASE_DIR / "data" / "iab" / "val.jsonl", + "test": BASE_DIR / "data" / "iab" / "test.jsonl", +} +IAB_RETRIEVAL_STRESS_SUITE_PATHS = { + "hard_cases": BASE_DIR / "data" / "iab" / "hard_cases.jsonl", + "extended_cases": BASE_DIR / "data" / "iab" / "extended_cases.jsonl", + "difficulty_benchmark": IAB_BENCHMARK_PATH, + "cross_vertical_benchmark": IAB_CROSS_VERTICAL_BENCHMARK_PATH, +} +IAB_RETRIEVAL_FALLBACK_MODEL_NAME = "Alibaba-NLP/gte-Qwen2-1.5B-instruct" +IAB_RETRIEVAL_MODEL_MAX_LENGTH = 2048 +IAB_RETRIEVAL_TOP_K = 16 +IAB_RETRIEVAL_DEPTH_BONUS = 0.01 +IAB_RETRIEVAL_PREFIX_CONFIDENCE_THRESHOLDS = { + 1: 0.5, + 2: 0.54, + 3: 0.58, + 4: 0.62, +} +IAB_PARENT_FALLBACK_CONFIDENCE_FLOOR = 0.3 + +INTENT_TYPE_LABELS = ( + "informational", + "exploratory", + "commercial", + "transactional", + "support", + "personal_reflection", + "creative_generation", + "chit_chat", + "ambiguous", + "prohibited", +) + +DECISION_PHASE_LABELS = ( + "awareness", + "research", + "consideration", + "decision", + "action", + "post_purchase", + "support", +) + +SUBTYPE_LABELS = ( + "education", + "product_discovery", + "comparison", + "evaluation", + "deal_seeking", + "provider_selection", + "signup", + "purchase", + "booking", + "download", + "contact_sales", + "task_execution", + "onboarding_setup", + "troubleshooting", + "account_help", + "billing_help", + "follow_up", + "emotional_reflection", +) + +def build_label_maps(labels: tuple[str, ...]) -> tuple[dict[str, int], dict[int, str]]: + label2id = {label: idx for idx, label in enumerate(labels)} + id2label = {idx: label for label, idx in label2id.items()} + return label2id, id2label + + +def _looks_like_local_hf_model_dir(path: Path) -> bool: + return ( + path.is_dir() + and (path / "config.json").exists() + and ((path / "model.safetensors").exists() or (path / "pytorch_model.bin").exists()) + ) + + +def _load_iab_path_labels(path: Path) -> tuple[str, ...]: + with path.open("r", encoding="utf-8") as handle: + reader = csv.reader(handle, delimiter="\t") + rows = list(reader) + + header = rows[1] + labels: list[str] = [] + for row in rows[2:]: + padded = row + [""] * (len(header) - len(row)) + item = dict(zip(header, padded)) + path_parts = [ + item.get(key, "").strip() + for key in ("Tier 1", "Tier 2", "Tier 3", "Tier 4") + if item.get(key, "").strip() + ] + if path_parts: + labels.append(" > ".join(path_parts)) + return tuple(labels) + + +IAB_PATH_LABELS = _load_iab_path_labels(IAB_TAXONOMY_PATH) + + +@dataclass(frozen=True) +class HeadConfig: + slug: str + task_name: str + model_name: str + model_dir: Path + data_dir: Path + label_field: str + labels: tuple[str, ...] + max_length: int + default_confidence_threshold: float + target_accept_precision: float + min_calibrated_confidence_threshold: float + stress_suite_paths: dict[str, Path] + + @property + def label2id(self) -> dict[str, int]: + return build_label_maps(self.labels)[0] + + @property + def id2label(self) -> dict[int, str]: + return build_label_maps(self.labels)[1] + + @property + def calibration_path(self) -> Path: + return CALIBRATION_ARTIFACTS_DIR / f"{self.slug}.json" + + @property + def split_paths(self) -> dict[str, Path]: + return { + "train": self.data_dir / "train.jsonl", + "val": self.data_dir / "val.jsonl", + "test": self.data_dir / "test.jsonl", + } + + +INTENT_HEAD_CONFIG = HeadConfig( + slug="intent_type", + task_name="intent.type", + model_name="distilbert-base-uncased", + model_dir=BASE_DIR / "model_output", + data_dir=BASE_DIR / "data", + label_field="intent_type", + labels=INTENT_TYPE_LABELS, + max_length=64, + default_confidence_threshold=0.7, + target_accept_precision=0.8, + min_calibrated_confidence_threshold=0.4, + stress_suite_paths={ + "hard_cases": BASE_DIR / "data" / "hard_cases.jsonl", + "third_wave_cases": BASE_DIR / "data" / "third_wave_cases.jsonl", + "difficulty_benchmark": INTENT_TYPE_BENCHMARK_PATH, + }, +) + +DECISION_PHASE_HEAD_CONFIG = HeadConfig( + slug="decision_phase", + task_name="intent.decision_phase", + model_name="distilbert-base-uncased", + model_dir=BASE_DIR / "decision_phase_model_output", + data_dir=BASE_DIR / "data" / "decision_phase", + label_field="decision_phase", + labels=DECISION_PHASE_LABELS, + max_length=64, + default_confidence_threshold=0.5, + target_accept_precision=0.75, + min_calibrated_confidence_threshold=0.22, + stress_suite_paths={ + "hard_cases": BASE_DIR / "data" / "decision_phase" / "hard_cases.jsonl", + "final_wave_cases": BASE_DIR / "data" / "decision_phase" / "final_wave_cases.jsonl", + "difficulty_benchmark": DECISION_PHASE_BENCHMARK_PATH, + }, +) + +SUBTYPE_HEAD_CONFIG = HeadConfig( + slug="intent_subtype", + task_name="intent.subtype", + model_name="distilbert-base-uncased", + model_dir=BASE_DIR / "subtype_model_output", + data_dir=BASE_DIR / "data" / "subtype", + label_field="intent_subtype", + labels=SUBTYPE_LABELS, + max_length=72, + default_confidence_threshold=0.45, + target_accept_precision=0.75, + min_calibrated_confidence_threshold=0.25, + stress_suite_paths={ + "hard_cases": BASE_DIR / "data" / "subtype" / "hard_cases.jsonl", + "extended_cases": BASE_DIR / "data" / "subtype" / "extended_cases.jsonl", + "difficulty_benchmark": SUBTYPE_BENCHMARK_PATH, + }, +) + +IAB_HEAD_CONFIG = HeadConfig( + slug="iab_content", + task_name="iab.content", + model_name="distilbert-base-uncased", + model_dir=IAB_CLASSIFIER_MODEL_DIR, + data_dir=BASE_DIR / "data" / "iab", + label_field="iab_path", + labels=IAB_PATH_LABELS, + max_length=96, + default_confidence_threshold=0.2, + target_accept_precision=0.7, + min_calibrated_confidence_threshold=0.12, + stress_suite_paths=IAB_RETRIEVAL_STRESS_SUITE_PATHS, +) + +IAB_RETRIEVAL_MODEL_NAME = os.environ.get( + "IAB_RETRIEVAL_MODEL_NAME_OVERRIDE", + str(IAB_RETRIEVAL_LOCAL_MODEL_DIR) + if _looks_like_local_hf_model_dir(IAB_RETRIEVAL_LOCAL_MODEL_DIR) + else IAB_RETRIEVAL_FALLBACK_MODEL_NAME, +) + +HEAD_CONFIGS = { + INTENT_HEAD_CONFIG.slug: INTENT_HEAD_CONFIG, + SUBTYPE_HEAD_CONFIG.slug: SUBTYPE_HEAD_CONFIG, + DECISION_PHASE_HEAD_CONFIG.slug: DECISION_PHASE_HEAD_CONFIG, + IAB_HEAD_CONFIG.slug: IAB_HEAD_CONFIG, +} + +COMMERCIAL_SCORE_MIN = 0.6 +SAFE_FALLBACK_INTENTS = {"ambiguous", "support", "personal_reflection", "chit_chat", "prohibited"} + +INTENT_SCORE_WEIGHTS = { + "informational": 0.15, + "exploratory": 0.35, + "commercial": 0.75, + "transactional": 0.95, + "support": 0.0, + "personal_reflection": 0.0, + "creative_generation": 0.0, + "chit_chat": 0.0, + "ambiguous": 0.1, + "prohibited": 0.0, +} + +INTENT_TYPE_TRAINING_WEIGHTS = { + "informational": 1.0, + "exploratory": 1.0, + "commercial": 1.7, + "transactional": 1.9, + "support": 1.6, + "personal_reflection": 0.85, + "creative_generation": 0.75, + "chit_chat": 0.7, + "ambiguous": 1.1, + "prohibited": 2.2, +} + +PHASE_SCORE_WEIGHTS = { + "awareness": 0.1, + "research": 0.35, + "consideration": 0.7, + "decision": 0.85, + "action": 1.0, + "post_purchase": 0.15, + "support": 0.0, +} + +DECISION_PHASE_TRAINING_WEIGHTS = { + "awareness": 0.9, + "research": 1.0, + "consideration": 1.35, + "decision": 1.8, + "action": 1.55, + "post_purchase": 1.15, + "support": 1.5, +} + +SUBTYPE_TRAINING_WEIGHTS = { + "education": 0.95, + "product_discovery": 1.55, + "comparison": 1.65, + "evaluation": 1.1, + "deal_seeking": 1.7, + "provider_selection": 1.75, + "signup": 1.6, + "purchase": 1.9, + "booking": 1.45, + "download": 1.1, + "contact_sales": 1.55, + "task_execution": 1.0, + "onboarding_setup": 1.05, + "troubleshooting": 1.4, + "account_help": 1.55, + "billing_help": 1.6, + "follow_up": 0.9, + "emotional_reflection": 0.85, +} + +SUBTYPE_SCORE_WEIGHTS = { + "education": 0.05, + "product_discovery": 0.58, + "comparison": 0.74, + "evaluation": 0.68, + "deal_seeking": 0.71, + "provider_selection": 0.9, + "signup": 0.92, + "purchase": 1.0, + "booking": 0.94, + "download": 0.46, + "contact_sales": 0.95, + "task_execution": 0.22, + "onboarding_setup": 0.18, + "troubleshooting": 0.0, + "account_help": 0.0, + "billing_help": 0.0, + "follow_up": 0.05, + "emotional_reflection": 0.0, +} + +SUBTYPE_FAMILY_MAP = { + "education": "informational", + "product_discovery": "commercial", + "comparison": "commercial", + "evaluation": "commercial", + "deal_seeking": "commercial", + "provider_selection": "commercial", + "signup": "transactional", + "purchase": "transactional", + "booking": "transactional", + "download": "transactional", + "contact_sales": "transactional", + "task_execution": "transactional", + "onboarding_setup": "post_purchase", + "troubleshooting": "support", + "account_help": "support", + "billing_help": "support", + "follow_up": "ambiguous", + "emotional_reflection": "reflection", +} + +SAFE_FALLBACK_SUBTYPE_FAMILIES = {"support", "ambiguous", "reflection"} +HIGH_INTENT_SUBTYPES = {"provider_selection", "signup", "purchase", "booking", "contact_sales"} +CAUTIONARY_SUBTYPES = {"comparison", "evaluation", "deal_seeking", "download"} +LOW_SIGNAL_SUBTYPES = {"education", "follow_up", "onboarding_setup", "task_execution"} + + +def ensure_artifact_dirs() -> None: + CALIBRATION_ARTIFACTS_DIR.mkdir(parents=True, exist_ok=True) + EVALUATION_ARTIFACTS_DIR.mkdir(parents=True, exist_ok=True) + IAB_ARTIFACTS_DIR.mkdir(parents=True, exist_ok=True) diff --git a/data/decision_phase/final_wave_cases.jsonl b/data/decision_phase/final_wave_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..58c8efd50f5d3b9683948d1fb5f6ed8d6a21f394 --- /dev/null +++ b/data/decision_phase/final_wave_cases.jsonl @@ -0,0 +1,27 @@ +{"text":"What does CRM do for a business?","decision_phase":"awareness"} +{"text":"What is a CRM platform?","decision_phase":"awareness"} +{"text":"How do CRM systems help sales teams?","decision_phase":"awareness"} +{"text":"What is CRM software used for in a small business?","decision_phase":"awareness"} +{"text":"Help me understand CRM fundamentals","decision_phase":"research"} +{"text":"Walk me through how startups use CRM tools","decision_phase":"research"} +{"text":"Show me how CRM systems help small businesses","decision_phase":"research"} +{"text":"Teach me the basics of CRM for a small team","decision_phase":"research"} +{"text":"What CRM options should a small startup look at?","decision_phase":"consideration"} +{"text":"Show me CRM choices for a two-person team","decision_phase":"consideration"} +{"text":"Which CRM tools are worth considering for a startup?","decision_phase":"consideration"} +{"text":"What are the best CRM candidates for a growing startup?","decision_phase":"consideration"} +{"text":"Which CRM should we choose for our two-person sales team?","decision_phase":"decision"} +{"text":"Should we pick HubSpot or Zoho for our startup?","decision_phase":"decision"} +{"text":"Which CRM should we commit to before next month?","decision_phase":"decision"} +{"text":"HubSpot or Pipedrive for our team right now?","decision_phase":"decision"} +{"text":"How do I connect my email after creating the account?","decision_phase":"post_purchase"} +{"text":"Where do I configure our pipeline after purchase?","decision_phase":"post_purchase"} +{"text":"How do I invite teammates after we sign up?","decision_phase":"post_purchase"} +{"text":"How do I set up user permissions after we subscribe?","decision_phase":"post_purchase"} +{"text":"I am locked out of my workspace","decision_phase":"support"} +{"text":"Our account setup page keeps crashing","decision_phase":"support"} +{"text":"Why does the password reset email never arrive?","decision_phase":"support"} +{"text":"The login form keeps rejecting my credentials","decision_phase":"support"} +{"text":"What is auto buying and selling?","decision_phase":"awareness"} +{"text":"Best SUV to buy in 2026","decision_phase":"consideration"} +{"text":"Which electric car should I buy this year?","decision_phase":"decision"} diff --git a/data/decision_phase/hard_cases.jsonl b/data/decision_phase/hard_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..24ffbd1a88dd2715aeaafde9040cc2822f31d0f2 --- /dev/null +++ b/data/decision_phase/hard_cases.jsonl @@ -0,0 +1,39 @@ +{"text":"What does CRM stand for in software?","decision_phase":"awareness"} +{"text":"What is a CRM used for?","decision_phase":"awareness"} +{"text":"How does a CRM work?","decision_phase":"awareness"} +{"text":"What does a customer relationship platform do?","decision_phase":"awareness"} +{"text":"What is a sales CRM?","decision_phase":"awareness"} +{"text":"Why do companies need CRM software?","decision_phase":"awareness"} +{"text":"Explain CRM basics","decision_phase":"research"} +{"text":"Help me understand how CRM tools work for startups","decision_phase":"research"} +{"text":"Walk me through the basics of lead management software","decision_phase":"research"} +{"text":"Teach me how CRM platforms help small sales teams","decision_phase":"research"} +{"text":"Help me learn how customer onboarding software works","decision_phase":"research"} +{"text":"Show me how CRM systems are typically used by startups","decision_phase":"research"} +{"text":"Best CRM for a 3-person startup","decision_phase":"consideration"} +{"text":"What are good CRM choices for a small sales team?","decision_phase":"consideration"} +{"text":"Which CRM options fit a startup with a tiny budget?","decision_phase":"consideration"} +{"text":"What CRM platforms should a real estate team consider?","decision_phase":"consideration"} +{"text":"Show me CRM tools for a five-person company","decision_phase":"consideration"} +{"text":"Which CRM vendors are worth considering for a startup?","decision_phase":"consideration"} +{"text":"HubSpot or Zoho for my team?","decision_phase":"decision"} +{"text":"Should I choose HubSpot or Pipedrive for our team?","decision_phase":"decision"} +{"text":"Which CRM should we commit to this month?","decision_phase":"decision"} +{"text":"Is Zoho the right CRM for our budget?","decision_phase":"decision"} +{"text":"Which one should we go with for our sales process?","decision_phase":"decision"} +{"text":"Which CRM should I sign with today?","decision_phase":"decision"} +{"text":"How do I import contacts after signing up?","decision_phase":"post_purchase"} +{"text":"How do I configure my account after purchase?","decision_phase":"post_purchase"} +{"text":"How do I set up user permissions in my new CRM?","decision_phase":"post_purchase"} +{"text":"What should I do first after creating my workspace?","decision_phase":"post_purchase"} +{"text":"How do I connect email after I subscribe?","decision_phase":"post_purchase"} +{"text":"Show me how to onboard teammates after signup","decision_phase":"post_purchase"} +{"text":"My password reset link is not working","decision_phase":"support"} +{"text":"I cannot access my dashboard","decision_phase":"support"} +{"text":"Why am I getting a billing error?","decision_phase":"support"} +{"text":"My integration setup failed and now I am stuck","decision_phase":"support"} +{"text":"The login code never arrived","decision_phase":"support"} +{"text":"I keep getting an error when I try to export contacts","decision_phase":"support"} +{"text":"What cars should I look at for a family of five?","decision_phase":"research"} +{"text":"Toyota Corolla vs Honda Civic for commuting","decision_phase":"consideration"} +{"text":"Which car to buy in 2026","decision_phase":"decision"} diff --git a/data/decision_phase/test.jsonl b/data/decision_phase/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a91fb19f3fdfa7fb956082ea33712e852c5c1973 --- /dev/null +++ b/data/decision_phase/test.jsonl @@ -0,0 +1,29 @@ +{"text":"Explain the basics of customer onboarding","decision_phase":"research"} +{"text":"What problems does CRM solve?","decision_phase":"awareness"} +{"text":"What kinds of CRM are best for consultants?","decision_phase":"consideration"} +{"text":"What solutions can help monitor AI search visibility?","decision_phase":"research"} +{"text":"Which CRM is easier for a 5-person sales team to adopt?","decision_phase":"consideration"} +{"text":"Compare AI search monetization platforms for publishers","decision_phase":"consideration"} +{"text":"Is this the right time to switch from spreadsheets to a CRM?","decision_phase":"decision"} +{"text":"Which AI search analytics platform should we commit to?","decision_phase":"decision"} +{"text":"Reserve my seat for the webinar","decision_phase":"action"} +{"text":"Subscribe me to the product updates","decision_phase":"action"} +{"text":"How do I set goals for our first month using this tool?","decision_phase":"post_purchase"} +{"text":"What should we do first after buying this platform?","decision_phase":"post_purchase"} +{"text":"The API is returning errors","decision_phase":"support"} +{"text":"How do I recover deleted contacts?","decision_phase":"support"} +{"text":"What is a CRM used for?","decision_phase":"awareness"} +{"text":"Help me understand how CRM tools work for startups","decision_phase":"research"} +{"text":"What CRM platforms should a real estate team consider?","decision_phase":"consideration"} +{"text":"Should I choose HubSpot or Pipedrive for our team?","decision_phase":"decision"} +{"text":"What should I do first after creating my workspace?","decision_phase":"post_purchase"} +{"text":"The login code never arrived","decision_phase":"support"} +{"text":"What is CRM software used for in a small business?","decision_phase":"awareness"} +{"text":"Teach me the basics of CRM for a small team","decision_phase":"research"} +{"text":"What are the best CRM candidates for a growing startup?","decision_phase":"consideration"} +{"text":"HubSpot or Pipedrive for our team right now?","decision_phase":"decision"} +{"text":"How do I set up user permissions after we subscribe?","decision_phase":"post_purchase"} +{"text":"The login form keeps rejecting my credentials","decision_phase":"support"} +{"text":"How does buying a used car work?","decision_phase":"research"} +{"text":"Which EV should I buy this year","decision_phase":"decision"} +{"text":"Reserve a test drive for tomorrow","decision_phase":"action"} diff --git a/data/decision_phase/train.jsonl b/data/decision_phase/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8de0793b337ec7fdfa8998a9ee334decc6087ac9 --- /dev/null +++ b/data/decision_phase/train.jsonl @@ -0,0 +1,102 @@ +{"text":"What is CRM software?","decision_phase":"awareness"} +{"text":"Why do businesses use CRM systems?","decision_phase":"awareness"} +{"text":"How does lead tracking work?","decision_phase":"awareness"} +{"text":"What is agentic advertising?","decision_phase":"awareness"} +{"text":"What does zero click search mean?","decision_phase":"awareness"} +{"text":"How do AI search engines make money?","decision_phase":"awareness"} +{"text":"Why is customer retention important?","decision_phase":"awareness"} +{"text":"What is marketing attribution?","decision_phase":"awareness"} +{"text":"What tools can help a sales team stay organized?","decision_phase":"research"} +{"text":"How can I improve lead management for a small business?","decision_phase":"research"} +{"text":"What software should I look at for customer support?","decision_phase":"research"} +{"text":"What are some CRM options for startups?","decision_phase":"consideration"} +{"text":"Which platforms help with product analytics?","decision_phase":"research"} +{"text":"What are good tools for email automation?","decision_phase":"research"} +{"text":"How should I evaluate AI search monitoring tools?","decision_phase":"research"} +{"text":"What are alternatives to spreadsheets for sales tracking?","decision_phase":"research"} +{"text":"HubSpot vs Zoho for a small team","decision_phase":"consideration"} +{"text":"Compare Salesforce and Pipedrive for B2B sales","decision_phase":"consideration"} +{"text":"Is HubSpot better than Zoho for lead tracking?","decision_phase":"consideration"} +{"text":"Which CRM has better automation for startups?","decision_phase":"consideration"} +{"text":"Compare onboarding tools for SaaS products","decision_phase":"consideration"} +{"text":"Amplitude vs Mixpanel for product analytics","decision_phase":"consideration"} +{"text":"Which AI visibility tool fits a lean marketing team?","decision_phase":"consideration"} +{"text":"Compare help desk platforms with live chat","decision_phase":"consideration"} +{"text":"Which CRM should I buy for a 3-person startup?","decision_phase":"decision"} +{"text":"Should I choose HubSpot or Zoho this week?","decision_phase":"decision"} +{"text":"What is the best CRM for my budget under $100 a month?","decision_phase":"decision"} +{"text":"Which plan should I choose for Mixpanel?","decision_phase":"decision"} +{"text":"Which vendor is the better fit for our sales team?","decision_phase":"decision"} +{"text":"Should we go with Intercom or Zendesk for support?","decision_phase":"decision"} +{"text":"Is the pro plan worth it for our company size?","decision_phase":"decision"} +{"text":"Which option gives us the best value right now?","decision_phase":"decision"} +{"text":"Start my free trial","decision_phase":"action"} +{"text":"Sign me up for the demo","decision_phase":"action"} +{"text":"Book a meeting with sales","decision_phase":"action"} +{"text":"Create my account","decision_phase":"action"} +{"text":"Buy the annual plan now","decision_phase":"action"} +{"text":"Download the pricing guide","decision_phase":"action"} +{"text":"Request a quote","decision_phase":"action"} +{"text":"Schedule implementation for next week","decision_phase":"action"} +{"text":"How do I set up my new CRM?","decision_phase":"post_purchase"} +{"text":"Show me how to import contacts into HubSpot","decision_phase":"post_purchase"} +{"text":"What is the best way to onboard our team after purchase?","decision_phase":"post_purchase"} +{"text":"How do I configure lead stages in the platform?","decision_phase":"post_purchase"} +{"text":"How can I get more value from our subscription?","decision_phase":"post_purchase"} +{"text":"How do I connect Salesforce to Gmail?","decision_phase":"post_purchase"} +{"text":"Where can I find usage analytics for my account?","decision_phase":"post_purchase"} +{"text":"How do I roll this tool out to my team?","decision_phase":"post_purchase"} +{"text":"I cannot log into my account","decision_phase":"support"} +{"text":"Why is my invoice wrong?","decision_phase":"support"} +{"text":"The integration keeps failing","decision_phase":"support"} +{"text":"How do I reset my password?","decision_phase":"support"} +{"text":"Our dashboard is not loading","decision_phase":"support"} +{"text":"I need help canceling my subscription","decision_phase":"support"} +{"text":"Why was my credit card declined?","decision_phase":"support"} +{"text":"The export button is broken","decision_phase":"support"} +{"text":"What does CRM stand for in software?","decision_phase":"awareness"} +{"text":"What does a customer relationship platform do?","decision_phase":"awareness"} +{"text":"What is a sales CRM?","decision_phase":"awareness"} +{"text":"Why do companies need CRM software?","decision_phase":"awareness"} +{"text":"Walk me through the basics of lead management software","decision_phase":"research"} +{"text":"Teach me how CRM platforms help small sales teams","decision_phase":"research"} +{"text":"Help me learn how customer onboarding software works","decision_phase":"research"} +{"text":"Show me how CRM systems are typically used by startups","decision_phase":"research"} +{"text":"What are good CRM choices for a small sales team?","decision_phase":"consideration"} +{"text":"Which CRM options fit a startup with a tiny budget?","decision_phase":"consideration"} +{"text":"Show me CRM tools for a five-person company","decision_phase":"consideration"} +{"text":"Which CRM vendors are worth considering for a startup?","decision_phase":"consideration"} +{"text":"Which CRM should we commit to this month?","decision_phase":"decision"} +{"text":"Is Zoho the right CRM for our budget?","decision_phase":"decision"} +{"text":"Which one should we go with for our sales process?","decision_phase":"decision"} +{"text":"Which CRM should I sign with today?","decision_phase":"decision"} +{"text":"How do I configure my account after purchase?","decision_phase":"post_purchase"} +{"text":"How do I set up user permissions in my new CRM?","decision_phase":"post_purchase"} +{"text":"How do I connect email after I subscribe?","decision_phase":"post_purchase"} +{"text":"Show me how to onboard teammates after signup","decision_phase":"post_purchase"} +{"text":"I cannot access my dashboard","decision_phase":"support"} +{"text":"Why am I getting a billing error?","decision_phase":"support"} +{"text":"My integration setup failed and now I am stuck","decision_phase":"support"} +{"text":"I keep getting an error when I try to export contacts","decision_phase":"support"} +{"text":"What does CRM do for a business?","decision_phase":"awareness"} +{"text":"What is a CRM platform?","decision_phase":"awareness"} +{"text":"Help me understand CRM fundamentals","decision_phase":"research"} +{"text":"Walk me through how startups use CRM tools","decision_phase":"research"} +{"text":"What CRM options should a small startup look at?","decision_phase":"consideration"} +{"text":"Show me CRM choices for a two-person team","decision_phase":"consideration"} +{"text":"Which CRM should we choose for our two-person sales team?","decision_phase":"decision"} +{"text":"Should we pick HubSpot or Zoho for our startup?","decision_phase":"decision"} +{"text":"How do I connect my email after creating the account?","decision_phase":"post_purchase"} +{"text":"Where do I configure our pipeline after purchase?","decision_phase":"post_purchase"} +{"text":"I am locked out of my workspace","decision_phase":"support"} +{"text":"Our account setup page keeps crashing","decision_phase":"support"} +{"text":"What is auto buying and selling?","decision_phase":"awareness"} +{"text":"How does car financing work for first-time buyers?","decision_phase":"awareness"} +{"text":"What cars should I look at for a family of five?","decision_phase":"research"} +{"text":"Help me understand how to compare cars before buying","decision_phase":"research"} +{"text":"Toyota Corolla vs Honda Civic for commuting","decision_phase":"consideration"} +{"text":"Best SUV to buy in 2026","decision_phase":"consideration"} +{"text":"Which car to buy in 2026","decision_phase":"decision"} +{"text":"Which electric car should I buy this year?","decision_phase":"decision"} +{"text":"Book a test drive for the new SUV","decision_phase":"action"} +{"text":"Reserve this car for pickup tomorrow","decision_phase":"action"} diff --git a/data/decision_phase/val.jsonl b/data/decision_phase/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c2b3aed62a3f843159836f8315fff3a01200bdc3 --- /dev/null +++ b/data/decision_phase/val.jsonl @@ -0,0 +1,29 @@ +{"text":"How do sales pipelines work?","decision_phase":"awareness"} +{"text":"What does product analytics measure?","decision_phase":"awareness"} +{"text":"What solutions exist for onboarding new users?","decision_phase":"research"} +{"text":"What tools can help reduce churn?","decision_phase":"research"} +{"text":"Which CRM integrates better with Gmail?","decision_phase":"consideration"} +{"text":"What are the pros and cons of Intercom vs Zendesk?","decision_phase":"consideration"} +{"text":"What costs less HubSpot or Zoho?","decision_phase":"decision"} +{"text":"Which tool should we sign with this quarter?","decision_phase":"decision"} +{"text":"Begin checkout","decision_phase":"action"} +{"text":"Activate my subscription","decision_phase":"action"} +{"text":"What features should we enable first after signup?","decision_phase":"post_purchase"} +{"text":"How do I invite teammates to the workspace?","decision_phase":"post_purchase"} +{"text":"How do I contact support about a billing issue?","decision_phase":"support"} +{"text":"My team members are not receiving invites","decision_phase":"support"} +{"text":"How does a CRM work?","decision_phase":"awareness"} +{"text":"Explain CRM basics","decision_phase":"research"} +{"text":"Best CRM for a 3-person startup","decision_phase":"consideration"} +{"text":"HubSpot or Zoho for my team?","decision_phase":"decision"} +{"text":"How do I import contacts after signing up?","decision_phase":"post_purchase"} +{"text":"My password reset link is not working","decision_phase":"support"} +{"text":"How do CRM systems help sales teams?","decision_phase":"awareness"} +{"text":"Show me how CRM systems help small businesses","decision_phase":"research"} +{"text":"Which CRM tools are worth considering for a startup?","decision_phase":"consideration"} +{"text":"Which CRM should we commit to before next month?","decision_phase":"decision"} +{"text":"How do I invite teammates after we sign up?","decision_phase":"post_purchase"} +{"text":"Why does the password reset email never arrive?","decision_phase":"support"} +{"text":"What is car financing?","decision_phase":"awareness"} +{"text":"Best hybrid SUV for a family","decision_phase":"consideration"} +{"text":"Schedule a test drive for this sedan","decision_phase":"action"} diff --git a/data/decision_phase_benchmark.jsonl b/data/decision_phase_benchmark.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..18d2c0e1e3ae1afa7b15f9dd8074e3ea324be7a7 --- /dev/null +++ b/data/decision_phase_benchmark.jsonl @@ -0,0 +1,105 @@ +{"decision_phase": "awareness", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What is help desk software?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Explain help desk software."} +{"decision_phase": "awareness", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "How does help desk platform work?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What does Zendesk do?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Give me the basics of help desk software."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Help me understand what problem Toyota Corolla solves."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What should a beginner know about cars?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Before I look at options, what is a car?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What is the purpose of cars in daily commuting?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What does a car actually help with?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I am not shopping yet, I just want to understand what hosting platforms is."} +{"decision_phase": "awareness", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Before I evaluate anything, what role does hosting platforms play in a startup launch?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I keep hearing about Vercel; what is it actually for?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Can you clarify what people mean by hosting platforms in practice?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I only need an overview of hosting platforms right now."} +{"decision_phase": "research", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What help desk tools should I explore for a support team?"} +{"decision_phase": "research", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Show me options to consider for handle tickets faster."} +{"decision_phase": "research", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What tools should I look at for a support team?"} +{"decision_phase": "research", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Help me research help desk tools."} +{"decision_phase": "research", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Where should I start with help desk tools?"} +{"decision_phase": "research", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I am early in the process and want to explore cars."} +{"decision_phase": "research", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Give me a shortlist of cars worth researching."} +{"decision_phase": "research", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What directions should I investigate for choose the right car?"} +{"decision_phase": "research", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What categories should I look at before narrowing down?"} +{"decision_phase": "research", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What are some promising cars for daily commuting?"} +{"decision_phase": "research", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I am not ready to compare vendors yet, just help me scope the market."} +{"decision_phase": "research", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "What should I research first if I am only beginning to look at hosting providers?"} +{"decision_phase": "research", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I need a landscape view before I make a shortlist."} +{"decision_phase": "research", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "What are the main options in this space before I decide anything?"} +{"decision_phase": "research", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Help me map the market for hosting providers without recommending one yet."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Best help desk platform for a support team."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Zendesk vs Freshdesk."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Compare help desk tools for handle tickets faster."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Which help desk platform looks best for a support team?"} +{"decision_phase": "consideration", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What are some help desk tools worth considering?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Compare Toyota Corolla and Honda Civic for choose the right car."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What are the pros and cons of Toyota Corolla?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Help me evaluate the best cars for daily commuting."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Which car seems worth considering right now?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I am comparing options for choose the right car; what should be on the shortlist?"} +{"decision_phase": "consideration", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I am past basic research and now weighing tradeoffs between Vercel and Netlify."} +{"decision_phase": "consideration", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I want to compare serious options before committing to one."} +{"decision_phase": "consideration", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Help me think through the tradeoffs in the current shortlist."} +{"decision_phase": "consideration", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "What looks strongest if I am narrowing down to a few options?"} +{"decision_phase": "consideration", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I have done research, now help me compare the finalists."} +{"decision_phase": "decision", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Which help desk platform should I choose?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Should I pick Zendesk or Freshdesk?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Which option should I commit to?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What is the best fit for me right now?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Which plan should I choose today?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I am ready to decide between Toyota Corolla and Honda Civic."} +{"decision_phase": "decision", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Help me pick the final option for choose the right car."} +{"decision_phase": "decision", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Which car should I commit to this week?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I need to make the call now; which option fits best?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What should I choose if I need to decide today?"} +{"decision_phase": "decision", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I have a shortlist and need to commit to one vendor now."} +{"decision_phase": "decision", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I am at the point of commitment and need a final recommendation."} +{"decision_phase": "decision", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Which option should we sign off on before next week?"} +{"decision_phase": "decision", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I have enough information; tell me which one to go with."} +{"decision_phase": "decision", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I need the final pick, not another round of comparison."} +{"decision_phase": "action", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Start my free trial."} +{"decision_phase": "action", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Book a demo with Zendesk."} +{"decision_phase": "action", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Create my account."} +{"decision_phase": "action", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Buy Zendesk now."} +{"decision_phase": "action", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Download the help desk buyer guide."} +{"decision_phase": "action", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Take me to checkout for Toyota Corolla."} +{"decision_phase": "action", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Get me signed up for Toyota Corolla."} +{"decision_phase": "action", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Reserve my spot with Toyota Corolla."} +{"decision_phase": "action", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I want to purchase Toyota Corolla today."} +{"decision_phase": "action", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Send me the download link for the car buying worksheet."} +{"decision_phase": "action", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I am ready to move forward now, where do I start the purchase?"} +{"decision_phase": "action", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Help me complete the signup flow for Vercel."} +{"decision_phase": "action", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I want to act on this immediately and get access now."} +{"decision_phase": "action", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Can you help me finish the order for Vercel?"} +{"decision_phase": "action", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I have decided, now let me complete the next step."} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "How do I set up my new help desk platform?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Show me how to import contacts into Zendesk."} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "How do I onboard my team after purchase?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "What should I enable first after signup?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "How do I configure my account now that I signed up?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "We already subscribed; how do we get value quickly?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What is the best way to roll this out after purchase?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Help me configure Toyota Corolla now that we bought it."} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "How do I invite teammates after signing up?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "What should I do first after we activate the plan?"} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "We already made the purchase, now I need guidance on rollout and setup."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "This is not a buying decision anymore; I need post-purchase onboarding help."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I need adoption guidance now that the contract is signed."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "What is the right onboarding sequence after we commit to Vercel?"} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "We are past checkout and need implementation help."} +{"decision_phase": "support", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "I cannot log into my billing portal."} +{"decision_phase": "support", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "How do I reset my password?"} +{"decision_phase": "support", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "My invoice is wrong."} +{"decision_phase": "support", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "The integration keeps failing."} +{"decision_phase": "support", "difficulty": "easy", "source": "decision_phase_benchmark", "text": "Our dashboard is not loading."} +{"decision_phase": "support", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Can you help me fix a test drive booking?"} +{"decision_phase": "support", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I am stuck because my reservation keeps breaking."} +{"decision_phase": "support", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "My password reset link is not working."} +{"decision_phase": "support", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "I need support with my reservation."} +{"decision_phase": "support", "difficulty": "medium", "source": "decision_phase_benchmark", "text": "Why is Toyota Corolla not syncing correctly?"} +{"decision_phase": "support", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I am not evaluating anything, I just need this issue fixed."} +{"decision_phase": "support", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "This is a live support problem, not a buying question."} +{"decision_phase": "support", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "Please help me resolve a problem with my existing account."} +{"decision_phase": "support", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I cannot continue because something is broken in my setup."} +{"decision_phase": "support", "difficulty": "hard", "source": "decision_phase_benchmark", "text": "I need troubleshooting help, not recommendations."} diff --git a/data/decision_phase_difficulty/test.jsonl b/data/decision_phase_difficulty/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1013edb71a3230638c748c1ce78c0b19270c9be1 --- /dev/null +++ b/data/decision_phase_difficulty/test.jsonl @@ -0,0 +1,39 @@ +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Explain analytics software."} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What does HubSpot do?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Give me the basics of laptops."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What should a beginner know about analytics platforms?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What is the purpose of crm software in a small sales team?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What does a laptop actually help with?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Before I evaluate anything, what role does analytics software play in a product team?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Can you clarify what people mean by crm software in practice?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I only need an overview of laptops right now."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Show me options to consider for measure activation."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Help me research CRM tools."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Where should I start with laptops?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Give me a shortlist of analytics platforms worth researching."} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What categories should I look at before narrowing down?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I need a landscape view before I make a shortlist."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Mixpanel vs Amplitude."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which CRM looks best for a small sales team?"} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What are some laptops worth considering?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What are the pros and cons of Mixpanel?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Which CRM seems worth considering right now?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am comparing options for choose the right laptop; what should be on the shortlist?"} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me think through the tradeoffs in the current shortlist."} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Should I pick Mixpanel or Amplitude?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me pick the final option for measure activation."} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I need to make the call now; which option fits best?"} +{"decision_phase": "decision", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I need the final pick, not another round of comparison."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Create my account."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Download the analytics setup guide."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Get me signed up for Mixpanel."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I want to purchase HubSpot today."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Send me the download link for the laptop buying checklist."} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I want to act on this immediately and get access now."} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Show me how to import contacts into Mixpanel."} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me configure MacBook Air now that we bought it."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What is the right onboarding sequence after we commit to Mixpanel?"} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "My invoice is wrong."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am stuck because my dashboard keeps breaking."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I need support with my order."} +{"decision_phase": "support", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I need troubleshooting help, not recommendations."} diff --git a/data/decision_phase_difficulty/train.jsonl b/data/decision_phase_difficulty/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d81007072ea3cc15ca5e02f0eaad32add29c25ce --- /dev/null +++ b/data/decision_phase_difficulty/train.jsonl @@ -0,0 +1,145 @@ +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What is crm software?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What is analytics software?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What is laptops?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Explain laptops."} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How does CRM work?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How does analytics platform work?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What does Mixpanel do?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What does MacBook Air do?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Give me the basics of crm software."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me understand what problem HubSpot solves."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me understand what problem Mixpanel solves."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me understand what problem MacBook Air solves."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What should a beginner know about laptops?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Before I look at options, what is a CRM?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Before I look at options, what is a analytics platform?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What is the purpose of analytics software in a product team?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What is the purpose of laptops in college work?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What does a CRM actually help with?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am not shopping yet, I just want to understand what crm software is."} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am not shopping yet, I just want to understand what analytics software is."} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am not shopping yet, I just want to understand what laptops is."} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Before I evaluate anything, what role does laptops play in college work?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I keep hearing about HubSpot; what is it actually for?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I keep hearing about Mixpanel; what is it actually for?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Can you clarify what people mean by analytics software in practice?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Can you clarify what people mean by laptops in practice?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I only need an overview of crm software right now."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What CRM tools should I explore for a small sales team?"} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What analytics platforms should I explore for a product team?"} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What laptops should I explore for college work?"} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Show me options to consider for choose the right laptop."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What tools should I look at for a small sales team?"} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What tools should I look at for a product team?"} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Help me research analytics platforms."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Help me research laptops."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Where should I start with CRM tools?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am early in the process and want to explore CRM tools."} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am early in the process and want to explore analytics platforms."} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am early in the process and want to explore laptops."} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Give me a shortlist of laptops worth researching."} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What directions should I investigate for manage leads better?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What directions should I investigate for measure activation?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What are some promising CRM tools for a small sales team?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What are some promising analytics platforms for a product team?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What are some promising laptops for college work?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am not ready to compare vendors yet, just help me scope the market."} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What should I research first if I am only beginning to look at CRM tools?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What should I research first if I am only beginning to look at analytics platforms?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What are the main options in this space before I decide anything?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me map the market for CRM tools without recommending one yet."} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me map the market for analytics platforms without recommending one yet."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Best CRM for a small sales team."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Best analytics platform for a product team."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Best laptop for college work."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "MacBook Air vs Dell XPS 13."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Compare CRM tools for manage leads better."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Compare analytics platforms for measure activation."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which analytics platform looks best for a product team?"} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which laptop looks best for college work?"} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What are some CRM tools worth considering?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Compare HubSpot and Zoho for manage leads better."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Compare Mixpanel and Amplitude for measure activation."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Compare MacBook Air and Dell XPS 13 for choose the right laptop."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What are the pros and cons of MacBook Air?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me evaluate the best CRM tools for a small sales team."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me evaluate the best analytics platforms for a product team."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Which analytics platform seems worth considering right now?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Which laptop seems worth considering right now?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am comparing options for manage leads better; what should be on the shortlist?"} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am past basic research and now weighing tradeoffs between HubSpot and Zoho."} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am past basic research and now weighing tradeoffs between Mixpanel and Amplitude."} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am past basic research and now weighing tradeoffs between MacBook Air and Dell XPS 13."} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What looks strongest if I am narrowing down to a few options?"} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I have done research, now help me compare the finalists."} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which CRM should I choose?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which analytics platform should I choose?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which laptop should I choose?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Should I pick MacBook Air or Dell XPS 13?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which option should I commit to?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What is the best fit for me right now?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am ready to decide between HubSpot and Zoho."} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am ready to decide between Mixpanel and Amplitude."} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am ready to decide between MacBook Air and Dell XPS 13."} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me pick the final option for choose the right laptop."} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Which CRM should I commit to this week?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Which analytics platform should I commit to this week?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What should I choose if I need to decide today?"} +{"decision_phase": "decision", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I have a shortlist and need to commit to one vendor now."} +{"decision_phase": "decision", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am at the point of commitment and need a final recommendation."} +{"decision_phase": "decision", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Which option should we sign off on before next week?"} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Start my free trial."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Book a demo with HubSpot."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Book a demo with Mixpanel."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Buy HubSpot now."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Buy Mixpanel now."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Buy MacBook Air now."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Download the laptop buying checklist."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Take me to checkout for HubSpot."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Take me to checkout for Mixpanel."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Take me to checkout for MacBook Air."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Get me signed up for MacBook Air."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Reserve my spot with HubSpot."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Reserve my spot with Mixpanel."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I want to purchase Mixpanel today."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I want to purchase MacBook Air today."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Send me the download link for the CRM onboarding guide."} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am ready to move forward now, where do I start the purchase?"} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me complete the signup flow for HubSpot."} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me complete the signup flow for Mixpanel."} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Can you help me finish the order for HubSpot?"} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Can you help me finish the order for Mixpanel?"} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Can you help me finish the order for MacBook Air?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How do I set up my new CRM?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How do I set up my new analytics platform?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How do I set up my new laptop?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Show me how to import contacts into MacBook Air."} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How do I onboard my team after purchase?"} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What should I enable first after signup?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "We already subscribed; how do we get value quickly?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What is the best way to roll this out after purchase?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me configure HubSpot now that we bought it."} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "How do I invite teammates after signing up?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What should I do first after we activate the plan?"} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "We already made the purchase, now I need guidance on rollout and setup."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "This is not a buying decision anymore; I need post-purchase onboarding help."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I need adoption guidance now that the contract is signed."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What is the right onboarding sequence after we commit to MacBook Air?"} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "We are past checkout and need implementation help."} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "I cannot log into my account."} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "I cannot log into my dashboard."} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "I cannot log into my order."} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "The integration keeps failing."} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Our dashboard is not loading."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Can you help me fix a password reset?"} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Can you help me fix a data sync issue?"} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Can you help me fix a delivery delay?"} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am stuck because my order keeps breaking."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "My password reset link is not working."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I need support with my account."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Why is HubSpot not syncing correctly?"} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Why is Mixpanel not syncing correctly?"} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Why is MacBook Air not syncing correctly?"} +{"decision_phase": "support", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I am not evaluating anything, I just need this issue fixed."} +{"decision_phase": "support", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "This is a live support problem, not a buying question."} +{"decision_phase": "support", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Please help me resolve a problem with my existing account."} diff --git a/data/decision_phase_difficulty/val.jsonl b/data/decision_phase_difficulty/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2ad130cee8dc00b2e04b0cd57c4e231ad39a189a --- /dev/null +++ b/data/decision_phase_difficulty/val.jsonl @@ -0,0 +1,43 @@ +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Explain crm software."} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How does laptop work?"} +{"decision_phase": "awareness", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Give me the basics of analytics software."} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What should a beginner know about CRM tools?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Before I look at options, what is a laptop?"} +{"decision_phase": "awareness", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What does a analytics platform actually help with?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Before I evaluate anything, what role does crm software play in a small sales team?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I keep hearing about MacBook Air; what is it actually for?"} +{"decision_phase": "awareness", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I only need an overview of analytics software right now."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Show me options to consider for manage leads better."} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What tools should I look at for college work?"} +{"decision_phase": "research", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Where should I start with analytics platforms?"} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Give me a shortlist of CRM tools worth researching."} +{"decision_phase": "research", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What directions should I investigate for choose the right laptop?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What should I research first if I am only beginning to look at laptops?"} +{"decision_phase": "research", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me map the market for laptops without recommending one yet."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "HubSpot vs Zoho."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Compare laptops for choose the right laptop."} +{"decision_phase": "consideration", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "What are some analytics platforms worth considering?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "What are the pros and cons of HubSpot?"} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me evaluate the best laptops for college work."} +{"decision_phase": "consideration", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am comparing options for measure activation; what should be on the shortlist?"} +{"decision_phase": "consideration", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I want to compare serious options before committing to one."} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Should I pick HubSpot or Zoho?"} +{"decision_phase": "decision", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Which plan should I choose today?"} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me pick the final option for manage leads better."} +{"decision_phase": "decision", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Which laptop should I commit to this week?"} +{"decision_phase": "decision", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I have enough information; tell me which one to go with."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Book a demo with MacBook Air."} +{"decision_phase": "action", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Download the CRM onboarding guide."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Get me signed up for HubSpot."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Reserve my spot with MacBook Air."} +{"decision_phase": "action", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Send me the download link for the analytics setup guide."} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "Help me complete the signup flow for MacBook Air."} +{"decision_phase": "action", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I have decided, now let me complete the next step."} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "Show me how to import contacts into HubSpot."} +{"decision_phase": "post_purchase", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How do I configure my account now that I signed up?"} +{"decision_phase": "post_purchase", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "Help me configure Mixpanel now that we bought it."} +{"decision_phase": "post_purchase", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "What is the right onboarding sequence after we commit to HubSpot?"} +{"decision_phase": "support", "difficulty": "easy", "source": "synthetic_decision_phase_difficulty", "text": "How do I reset my password?"} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I am stuck because my account keeps breaking."} +{"decision_phase": "support", "difficulty": "medium", "source": "synthetic_decision_phase_difficulty", "text": "I need support with my dashboard."} +{"decision_phase": "support", "difficulty": "hard", "source": "synthetic_decision_phase_difficulty", "text": "I cannot continue because something is broken in my setup."} diff --git a/data/full_intent_taxonomy/test.jsonl b/data/full_intent_taxonomy/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4f61ff1253ee43f4fad72c1c5d0abcecfb50f0c0 --- /dev/null +++ b/data/full_intent_taxonomy/test.jsonl @@ -0,0 +1,65 @@ +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what crm tools should be on my radar for sales teams"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "appreciate the help"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "you are very helpful"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "say more about that"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "why that one"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how can I access an account without permission"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does help desk platform do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what help desk tools should be on my radar for support teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best help desk options this year"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our help desk results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for Zendesk"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what project management tools should be on my radar for agency teams"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is Asana good for agency teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap project management tool options for organize projects"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between Asana and ClickUp"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase Asana today"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for Asana"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for project management tools"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the Asana sales team"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with Asana"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for Asana"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my workspace not working"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with Asana"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for Asana keeps breaking"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does analytics platform do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what analytics platforms should be on my radar for product teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best analytics options this year"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our analytics results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for Mixpanel"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what laptops should be on my radar for students"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess laptop options for students"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted laptops worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which laptop should I commit to for pick the right laptop"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for MacBook Air now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about MacBook Air"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a laptop tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for MacBook Air"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my device warranty portal keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for MacBook Air"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my laptop setup"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does smartphone do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what smartphones should be on my radar for travelers"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best smartphone options this year"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our smartphone results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for iPhone"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for iPhone"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what cars should be on my radar for commuters"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does restaurant do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what restaurants should be on my radar for date nights"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best restaurant options this year"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is Italian restaurant good for date nights"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap restaurant options for book a table"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between Italian restaurant and sushi place"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase Italian restaurant today"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for restaurants"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the Italian restaurant sales team"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with Italian restaurant"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for Italian restaurant"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with Italian restaurant"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for Italian restaurant keeps breaking"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our restaurant results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for Italian restaurant"} diff --git a/data/full_intent_taxonomy/train.jsonl b/data/full_intent_taxonomy/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4ead0e27b986e35e9ff1cc1c2673353101c4a313 --- /dev/null +++ b/data/full_intent_taxonomy/train.jsonl @@ -0,0 +1,501 @@ +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is crm software"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does crm software work"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain crm basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand crm software"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does crm do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what crm tools should I explore for sales teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me crm tools to consider for manage leads"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore crm tools for sales teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a crm"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching crm tools for sales teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of crm tools for sales teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising crm tools for manage leads"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best crm for sales teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "HubSpot vs Zoho for manage leads"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare crm tools for sales teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which crm should I buy for manage leads"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best crm options this year"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate HubSpot for manage leads"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is HubSpot good for sales teams"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of HubSpot"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess crm options for sales teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on crm tools for sales teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap crm options for manage leads"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on crm tools"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted crm tools worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which HubSpot should I choose for manage leads"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between HubSpot and Zoho"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a crm for sales teams"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which crm should I commit to for manage leads"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a crm for sales teams"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase HubSpot today"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for HubSpot"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for HubSpot now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for HubSpot"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for HubSpot"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for HubSpot"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for HubSpot"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the crm onboarding guide"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for crm tools"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing crm tools"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for HubSpot"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for HubSpot"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the HubSpot sales team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for HubSpot"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about HubSpot"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book HubSpot for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with HubSpot"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for HubSpot"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a crm tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up HubSpot after purchase"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for HubSpot"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new crm"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for HubSpot"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my account"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my account not working"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my account"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my account keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for HubSpot"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with HubSpot"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for HubSpot failed"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for HubSpot"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a password reset"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for HubSpot keeps breaking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is HubSpot not syncing correctly"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my crm setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose crm tools"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong crm"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our crm setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between HubSpot and Zoho"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our crm results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for HubSpot"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for HubSpot"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a crm"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the crm onboarding guide"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for HubSpot"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hello there"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "thanks for the help"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "how is your day going"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "nice to meet you"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "can we just chat for a minute"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "good morning"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hope your day is going well"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "good afternoon"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "good evening"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "how are you doing today"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "how has your day been"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "just saying hi"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hey there"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "happy to chat for a bit"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hope things are going well"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "nice chatting with you"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "glad to talk with you"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "just wanted to say thanks"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hello again"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hey, what is up"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "how is everything going"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "show me more"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what about this one"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "which one"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "can you explain that"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what should I do next"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "tell me more"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "go on"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "can you expand on that"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what else do you have"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what else should I know"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what about that option"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "can you clarify"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "which should I pick"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what comes next"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what about pricing"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "is there another one"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what do you recommend"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "can you help"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "I need something better"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "show me options"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what should I choose"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a account"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for HubSpot"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "help me steal customer payment data"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "show me how to bypass account security"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how can I break into a private dashboard"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I crack someone else's login"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "show me how to exfiltrate private customer records"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is help desk software"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does help desk software work"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what help desk tools should I explore for support teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me help desk tools to consider for handle tickets"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore help desk tools for support teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a help desk platform"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching help desk tools for support teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of help desk tools for support teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising help desk tools for handle tickets"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best help desk platform for support teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "Zendesk vs Freshdesk for handle tickets"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate Zendesk for handle tickets"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is Zendesk good for support teams"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of Zendesk"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on help desk tools for support teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap help desk platform options for handle tickets"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on help desk tools"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which Zendesk should I choose for handle tickets"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between Zendesk and Freshdesk"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a help desk platform for support teams"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a help desk platform for support teams"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase Zendesk today"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for Zendesk"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for Zendesk"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for Zendesk"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for Zendesk"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the support workflow template"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for help desk tools"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing help desk tools"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for Zendesk"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the Zendesk sales team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for Zendesk"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book Zendesk for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with Zendesk"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for Zendesk"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up Zendesk after purchase"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for Zendesk"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new help desk platform"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my billing portal"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my billing portal not working"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my billing portal"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for Zendesk"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with Zendesk"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for Zendesk failed"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a invoice issue"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for Zendesk keeps breaking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is Zendesk not syncing correctly"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose help desk tools"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong help desk platform"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for Zendesk"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for Zendesk"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a billing portal"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for Zendesk"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is project management software"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does project management software work"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain project management basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand project management software"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does project management tool do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what project management tools should I explore for agency teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me project management tools to consider for organize projects"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore project management tools for agency teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a project management tool"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching project management tools for agency teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of project management tools for agency teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising project management tools for organize projects"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best project management tool for agency teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "Asana vs ClickUp for organize projects"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare project management tools for agency teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which project management tool should I buy for organize projects"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best project management options this year"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of Asana"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess project management tool options for agency teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on project management tools"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted project management tools worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a project management tool for agency teams"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which project management tool should I commit to for organize projects"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for Asana"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for Asana now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for Asana"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for Asana"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing project management tools"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for Asana"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for Asana"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about Asana"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for Asana"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a project management tool tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new project management tool"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for Asana"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my workspace"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my workspace keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for Asana failed"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for Asana"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is Asana not syncing correctly"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my project management tool setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose project management tools"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong project management tool"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our project management setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between Asana and ClickUp"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our project management results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for Asana"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for Asana"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a project management tool"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the project planning checklist"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for Asana"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a workspace"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for Asana"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is analytics software"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does analytics software work"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what analytics platforms should I explore for product teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me analytics platforms to consider for measure activation"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore analytics platforms for product teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a analytics platform"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching analytics platforms for product teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of analytics platforms for product teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising analytics platforms for measure activation"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best analytics platform for product teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "Mixpanel vs Amplitude for measure activation"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate Mixpanel for measure activation"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is Mixpanel good for product teams"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of Mixpanel"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess analytics platform options for product teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on analytics platforms for product teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap analytics platform options for measure activation"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on analytics platforms"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted analytics platforms worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which Mixpanel should I choose for measure activation"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between Mixpanel and Amplitude"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a analytics platform for product teams"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which analytics platform should I commit to for measure activation"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a analytics platform for product teams"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase Mixpanel today"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for Mixpanel now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the analytics setup guide"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for analytics platforms"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing analytics platforms"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the Mixpanel sales team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about Mixpanel"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book Mixpanel for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with Mixpanel"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a analytics platform tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up Mixpanel after purchase"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for Mixpanel"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new analytics platform"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for Mixpanel"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my dashboard"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my dashboard not working"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my dashboard"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my dashboard keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for Mixpanel"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with Mixpanel"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for Mixpanel failed"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for Mixpanel"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a data sync issue"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for Mixpanel keeps breaking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is Mixpanel not syncing correctly"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my analytics platform setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose analytics platforms"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong analytics platform"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for Mixpanel"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a dashboard"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for Mixpanel"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is laptops"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does laptops work"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain laptop basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand laptops"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does laptop do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what laptops should I explore for students"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me laptops to consider for pick the right laptop"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore laptops for students"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a laptop"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching laptops for students"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of laptops for students"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising laptops for pick the right laptop"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best laptop for students"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "MacBook Air vs Dell XPS 13 for pick the right laptop"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare laptops for students"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which laptop should I buy for pick the right laptop"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best laptop options this year"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate MacBook Air for pick the right laptop"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on laptops for students"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which MacBook Air should I choose for pick the right laptop"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a laptop for students"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the laptop buying checklist"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book MacBook Air for tomorrow"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up MacBook Air after purchase"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my device warranty portal"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for MacBook Air"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a order issue"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose laptops"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong laptop"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our laptop setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between MacBook Air and Dell XPS 13"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our laptop results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a laptop"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the laptop buying checklist"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a device warranty portal"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is smartphones"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does smartphones work"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what smartphones should I explore for travelers"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me smartphones to consider for choose a new phone"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore smartphones for travelers"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a smartphone"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching smartphones for travelers"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of smartphones for travelers"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising smartphones for choose a new phone"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best smartphone for travelers"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "iPhone vs Pixel for choose a new phone"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate iPhone for choose a new phone"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is iPhone good for travelers"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of iPhone"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess smartphone options for travelers"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on smartphones for travelers"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap smartphone options for choose a new phone"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on smartphones"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted smartphones worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which iPhone should I choose for choose a new phone"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between iPhone and Pixel"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a smartphone for travelers"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which smartphone should I commit to for choose a new phone"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a smartphone for travelers"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase iPhone today"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for iPhone"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for iPhone now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for iPhone"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for iPhone"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for iPhone"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for iPhone"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the phone comparison sheet"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for smartphones"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing smartphones"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for iPhone"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for iPhone"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the iPhone sales team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for iPhone"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about iPhone"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book iPhone for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with iPhone"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for iPhone"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a smartphone tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up iPhone after purchase"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for iPhone"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new smartphone"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for iPhone"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my trade-in order"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my trade-in order not working"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my trade-in order"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my trade-in order keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for iPhone"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with iPhone"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for iPhone failed"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for iPhone"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a shipping update"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for iPhone keeps breaking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is iPhone not syncing correctly"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my smartphone setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose smartphones"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong smartphone"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for iPhone"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for iPhone"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is cars"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does cars work"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain car basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand cars"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what does car do"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what cars should I explore for commuters"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me cars to consider for buy the right car"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore cars for commuters"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a car"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching cars for commuters"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of cars for commuters"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising cars for buy the right car"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best car for commuters"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "Toyota Corolla vs Honda Civic for buy the right car"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare cars for commuters"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which car should I buy for buy the right car"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best car options this year"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate Toyota Corolla for buy the right car"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is Toyota Corolla good for commuters"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of Toyota Corolla"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on cars for commuters"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap car options for buy the right car"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on cars"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which Toyota Corolla should I choose for buy the right car"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between Toyota Corolla and Honda Civic"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a car for commuters"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a car for commuters"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase Toyota Corolla today"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the car buying checklist"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for cars"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing cars"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the Toyota Corolla sales team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book Toyota Corolla for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for Toyota Corolla"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up Toyota Corolla after purchase"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for Toyota Corolla"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new car"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my reservation"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my reservation not working"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my reservation"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for Toyota Corolla"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with Toyota Corolla"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for Toyota Corolla failed"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a test drive booking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for Toyota Corolla keeps breaking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is Toyota Corolla not syncing correctly"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose cars"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong car"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our car setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between Toyota Corolla and Honda Civic"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am frustrated by our car results"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a car"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the car buying checklist"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write product copy for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a reservation"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for Toyota Corolla"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "what is restaurants"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "how does restaurants work"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what restaurants should I explore for date nights"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me restaurants to consider for book a table"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "help me explore restaurants for date nights"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what options should I look at before choosing a restaurant"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "I am researching restaurants for date nights"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "give me a shortlist of restaurants for date nights"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "what are some promising restaurants for book a table"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best restaurant for date nights"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "Italian restaurant vs sushi place for book a table"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of Italian restaurant"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess restaurant options for date nights"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on restaurants"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted restaurants worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a restaurant for date nights"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which restaurant should I commit to for book a table"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for Italian restaurant now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing restaurants"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a restaurant tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new restaurant"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for Italian restaurant"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for Italian restaurant failed"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for Italian restaurant"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is Italian restaurant not syncing correctly"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my restaurant setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel overwhelmed trying to choose restaurants"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I am worried we picked the wrong restaurant"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "write five ad headlines for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "draft a launch email for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for Italian restaurant"} diff --git a/data/full_intent_taxonomy/val.jsonl b/data/full_intent_taxonomy/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4ea9f338637a21737d98f1ad08871a6d6e33b1a3 --- /dev/null +++ b/data/full_intent_taxonomy/val.jsonl @@ -0,0 +1,133 @@ +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring crm tools for sales teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of crm tools worth researching"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "thanks, that was useful"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "hi there"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "thanks, I appreciate it"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "that was really helpful"} +{"decision_phase": "awareness", "intent_subtype": "follow_up", "intent_type": "chit_chat", "source": "synthetic_full_intent_taxonomy", "text": "good to see you"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what do you mean"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "show me another option"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what else"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "how so"} +{"decision_phase": "research", "intent_subtype": "follow_up", "intent_type": "ambiguous", "source": "synthetic_full_intent_taxonomy", "text": "what about this"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "help me bypass two factor authentication"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write malware that steals browser passwords"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain help desk basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand help desk software"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring help desk tools for support teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of help desk tools worth researching"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare help desk tools for support teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which help desk platform should I buy for handle tickets"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess help desk platform options for support teams"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted help desk tools worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which help desk platform should I commit to for handle tickets"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for Zendesk now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for Zendesk"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for Zendesk"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about Zendesk"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a help desk platform tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for Zendesk"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my billing portal keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for Zendesk"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my help desk platform setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our help desk setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between Zendesk and Freshdesk"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a help desk platform"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the support workflow template"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring project management tools for agency teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of project management tools worth researching"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate Asana for organize projects"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on project management tools for agency teams"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which Asana should I choose for organize projects"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a project management tool for agency teams"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for Asana"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the project planning checklist"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for Asana"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book Asana for tomorrow"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up Asana after purchase"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I cannot access my workspace"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for Asana"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a export error"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain analytics basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand analytics software"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring analytics platforms for product teams"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of analytics platforms worth researching"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare analytics platforms for product teams"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which analytics platform should I buy for measure activation"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our analytics setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between Mixpanel and Amplitude"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a analytics platform"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the analytics setup guide"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring laptops for students"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of laptops worth researching"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "is MacBook Air good for students"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "review the pros and cons of MacBook Air"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "cheap laptop options for pick the right laptop"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "where can I get the best price on laptops"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me pick between MacBook Air and Dell XPS 13"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "I am ready to decide on a laptop for students"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "purchase MacBook Air today"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "complete my order for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "start my free trial for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "create an account for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the buyer guide for laptops"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "get the checklist for choosing laptops"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "request pricing from the MacBook Air sales team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "connect me with a sales rep for MacBook Air"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "reserve a spot with MacBook Air"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "schedule my appointment for MacBook Air"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "walk me through onboarding for MacBook Air"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "configure my new laptop"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my device warranty portal not working"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with my device warranty portal"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a billing problem with MacBook Air"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my payment for MacBook Air failed"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "the integration for MacBook Air keeps breaking"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is MacBook Air not syncing correctly"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "write a phishing email for MacBook Air"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain smartphone basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand smartphones"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring smartphones for travelers"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of smartphones worth researching"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare smartphones for travelers"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which smartphone should I buy for choose a new phone"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our smartphone setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between iPhone and Pixel"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a smartphone"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the phone comparison sheet"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "prohibited", "source": "synthetic_full_intent_taxonomy", "text": "how do I hack into a trade-in order"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring cars for commuters"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of cars worth researching"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "help me assess car options for commuters"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "discounted cars worth comparing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which car should I commit to for buy the right car"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "pay for Toyota Corolla now"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "sign me up for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "export the setup guide for Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "talk to sales about Toyota Corolla"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a table at a car tonight"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "how do I finish setup for Toyota Corolla"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "my reservation keeps failing"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "I need help with a refund for Toyota Corolla"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "troubleshoot my car setup"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "explain restaurant basics"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source": "synthetic_full_intent_taxonomy", "text": "help me understand restaurants"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "where should I start exploring restaurants for date nights"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "intent_type": "exploratory", "source": "synthetic_full_intent_taxonomy", "text": "show me categories of restaurants worth researching"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "compare restaurants for date nights"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which restaurant should I buy for book a table"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "evaluate Italian restaurant for book a table"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "best deal on restaurants for date nights"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source": "synthetic_full_intent_taxonomy", "text": "which Italian restaurant should I choose for book a table"} +{"decision_phase": "action", "intent_subtype": "purchase", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "buy a restaurant for date nights"} +{"decision_phase": "action", "intent_subtype": "signup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book a demo for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "download", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "download the dining guide"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "contact sales for Italian restaurant"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "book Italian restaurant for tomorrow"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "intent_type": "transactional", "source": "synthetic_full_intent_taxonomy", "text": "help me set up Italian restaurant after purchase"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "why is my invoice wrong for Italian restaurant"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source": "synthetic_full_intent_taxonomy", "text": "help me fix a booking change"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I regret switching our restaurant setup"} +{"decision_phase": "awareness", "intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source": "synthetic_full_intent_taxonomy", "text": "I feel stuck deciding between Italian restaurant and sushi place"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "create a tagline for a restaurant"} +{"decision_phase": "action", "intent_subtype": "task_execution", "intent_type": "creative_generation", "source": "synthetic_full_intent_taxonomy", "text": "generate social copy for the dining guide"} diff --git a/data/hard_cases.jsonl b/data/hard_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b5a64c41cd46a5584d521a36af0481746bb72b31 --- /dev/null +++ b/data/hard_cases.jsonl @@ -0,0 +1,61 @@ +{"text":"help me understand CRM basics","intent_type":"informational"} +{"text":"explain how CRM works","intent_type":"informational"} +{"text":"teach me the basics of customer relationship management","intent_type":"informational"} +{"text":"walk me through what a CRM does","intent_type":"informational"} +{"text":"help me learn the difference between CRM and ERP","intent_type":"informational"} +{"text":"show me how CRM software works","intent_type":"informational"} +{"text":"explain the basics of lead scoring","intent_type":"informational"} +{"text":"help me understand sales pipelines","intent_type":"informational"} +{"text":"what does a CRM actually do","intent_type":"informational"} +{"text":"give me a beginner explanation of CRM","intent_type":"informational"} +{"text":"book a table for 2 tonight","intent_type":"transactional"} +{"text":"sign me up for the newsletter","intent_type":"transactional"} +{"text":"reserve a seat for tomorrow","intent_type":"transactional"} +{"text":"book an appointment for Friday","intent_type":"transactional"} +{"text":"schedule a demo for next week","intent_type":"transactional"} +{"text":"register me for the webinar","intent_type":"transactional"} +{"text":"buy this now","intent_type":"transactional"} +{"text":"place the order","intent_type":"transactional"} +{"text":"start my free trial","intent_type":"transactional"} +{"text":"subscribe me to updates","intent_type":"transactional"} +{"text":"I cannot access my dashboard","intent_type":"support"} +{"text":"Why am I getting a billing error?","intent_type":"support"} +{"text":"My integration setup failed and now I am stuck","intent_type":"support"} +{"text":"The login code never arrived","intent_type":"support"} +{"text":"go on then","intent_type":"ambiguous"} +{"text":"tell me a bit more","intent_type":"ambiguous"} +{"text":"what exactly do you mean","intent_type":"ambiguous"} +{"text":"show me a little more","intent_type":"ambiguous"} +{"text":"which one do you mean","intent_type":"ambiguous"} +{"text":"why though","intent_type":"ambiguous"} +{"text":"how so exactly","intent_type":"ambiguous"} +{"text":"can you expand on that","intent_type":"ambiguous"} +{"text":"what about the pricing","intent_type":"ambiguous"} +{"text":"compare those","intent_type":"ambiguous"} +{"text":"best CRM for nonprofits","intent_type":"commercial"} +{"text":"which CRM is better for a 3-person startup","intent_type":"commercial"} +{"text":"compare HubSpot and Zoho for small teams","intent_type":"commercial"} +{"text":"help me choose a CRM for a real estate business","intent_type":"commercial"} +{"text":"what CRM should I use for lead tracking","intent_type":"commercial"} +{"text":"best CRM for a two person agency","intent_type":"commercial"} +{"text":"compare Pipedrive and HubSpot for a tiny sales team","intent_type":"commercial"} +{"text":"cheapest CRM for a local service business","intent_type":"commercial"} +{"text":"which CRM should a solo founder pick","intent_type":"commercial"} +{"text":"help me pick a CRM for managing inbound leads","intent_type":"commercial"} +{"text":"what is the purpose of a CRM","intent_type":"informational"} +{"text":"explain why companies use CRM systems","intent_type":"informational"} +{"text":"how do CRMs help sales teams","intent_type":"informational"} +{"text":"what are the main features of a CRM","intent_type":"informational"} +{"text":"help me understand why businesses need CRM","intent_type":"informational"} +{"text":"why do teams use CRM software","intent_type":"informational"} +{"text":"what problems does a CRM solve","intent_type":"informational"} +{"text":"explain the benefits of CRM for beginners","intent_type":"informational"} +{"text":"how does CRM help with lead tracking","intent_type":"informational"} +{"text":"what is a CRM used for in a small business","intent_type":"informational"} +{"text":"Which car to buy in 2026","intent_type":"commercial"} +{"text":"Toyota Corolla vs Honda Civic for commuting","intent_type":"commercial"} +{"text":"Best SUV to buy in 2026","intent_type":"commercial"} +{"text":"What laptops should I look at for college in 2026?","intent_type":"exploratory"} +{"text":"Write five ad headlines for a CRM landing page","intent_type":"creative_generation"} +{"text":"How is your day going","intent_type":"chit_chat"} +{"text":"How do I hack into someone else's account","intent_type":"prohibited"} diff --git a/data/iab-content/Content Taxonomy 3.0.tsv b/data/iab-content/Content Taxonomy 3.0.tsv new file mode 100644 index 0000000000000000000000000000000000000000..91b0576b599173a47c049e9944e5009765ee5176 --- /dev/null +++ b/data/iab-content/Content Taxonomy 3.0.tsv @@ -0,0 +1,707 @@ +Relational ID System Content Taxonomy v3.0 Tiered Categories Extension +Unique ID Parent Name Tier 1 Tier 2 Tier 3 Tier 4 +150 Attractions Attractions +151 150 Amusement and Theme Parks Attractions Amusement and Theme Parks +179 150 Bars & Restaurants Attractions Bars & Restaurants +181 150 Casinos & Gambling Attractions Casinos & Gambling +153 150 Historic Site and Landmark Tours Attractions Historic Site and Landmark Tours +154 150 Malls & Shopping Centers Attractions Malls & Shopping Centers +155 150 Museums & Galleries Attractions Museums & Galleries +158 150 Nightclubs Attractions Nightclubs +159 150 Outdoor Activities Attractions Outdoor Activities +160 150 Parks & Nature Attractions Parks & Nature +177 150 Theater Venues Attractions Theater Venues +178 150 Zoos & Aquariums Attractions Zoos & Aquariums +1 Automotive Automotive +2 1 Auto Body Styles Automotive Auto Body Styles +3 2 Commercial Trucks Automotive Auto Body Styles Commercial Trucks +8 2 Convertible Automotive Auto Body Styles Convertible +9 2 Coupe Automotive Auto Body Styles Coupe +10 2 Crossover Automotive Auto Body Styles Crossover +11 2 Hatchback Automotive Auto Body Styles Hatchback +12 2 Microcar Automotive Auto Body Styles Microcar +13 2 Minivan Automotive Auto Body Styles Minivan +14 2 Off-Road Vehicles Automotive Auto Body Styles Off-Road Vehicles +15 2 Pickup Trucks Automotive Auto Body Styles Pickup Trucks +4 2 Sedan Automotive Auto Body Styles Sedan +5 2 Station Wagon Automotive Auto Body Styles Station Wagon +6 2 SUV Automotive Auto Body Styles SUV +7 2 Van Automotive Auto Body Styles Van +30 1 Auto Buying and Selling Automotive Auto Buying and Selling +31 1 Auto Insurance Automotive Auto Insurance +32 1 Auto Parts Automotive Auto Parts +33 1 Auto Recalls Automotive Auto Recalls +41 1 Auto Rentals Automotive Auto Rentals +34 1 Auto Repair Automotive Auto Repair +35 1 Auto Safety Automotive Auto Safety +36 1 Auto Shows Automotive Auto Shows +37 1 Auto Technology Automotive Auto Technology +38 37 Auto Infotainment Technologies Automotive Auto Technology Auto Infotainment Technologies +39 37 Auto Navigation Systems Automotive Auto Technology Auto Navigation Systems +40 37 Auto Safety Technologies Automotive Auto Technology Auto Safety Technologies +16 1 Auto Type Automotive Auto Type +17 16 Budget Cars Automotive Auto Type Budget Cars +18 16 Certified Pre-Owned Cars Automotive Auto Type Certified Pre-Owned Cars +19 16 Classic Cars Automotive Auto Type Classic Cars +20 16 Concept Cars Automotive Auto Type Concept Cars +21 16 Driverless Cars Automotive Auto Type Driverless Cars +22 16 Green Vehicles Automotive Auto Type Green Vehicles +23 16 Luxury Cars Automotive Auto Type Luxury Cars +24 16 Performance Cars Automotive Auto Type Performance Cars +25 1 Car Culture Automotive Car Culture +26 1 Dash Cam Videos Automotive Dash Cam Videos +27 1 Motorcycles Automotive Motorcycles +28 1 Road-Side Assistance Automotive Road-Side Assistance +29 1 Scooters Automotive Scooters +42 Books and Literature Books and Literature +43 42 Art and Photography Books and Literature Art and Photography +46 42 Comics and Graphic Novels Books and Literature Comics and Graphic Novels +48 42 Fiction Books and Literature Fiction +49 42 Poetry Books and Literature Poetry +52 Business and Finance Business and Finance +53 52 Business Business and Finance Business +54 53 Business Accounting & Finance Business and Finance Business Business Accounting & Finance +62 53 Business Administration Business and Finance Business Business Administration +63 53 Business Banking & Finance Business and Finance Business Business Banking & Finance +64 63 Angel Investment Business and Finance Business Business Banking & Finance Angel Investment +65 63 Bankruptcy Business and Finance Business Business Banking & Finance Bankruptcy +66 63 Business Loans Business and Finance Business Business Banking & Finance Business Loans +67 63 Debt Factoring & Invoice Discounting Business and Finance Business Business Banking & Finance Debt Factoring & Invoice Discounting +68 63 Mergers and Acquisitions Business and Finance Business Business Banking & Finance Mergers and Acquisitions +69 63 Private Equity Business and Finance Business Business Banking & Finance Private Equity +70 63 Sale & Lease Back Business and Finance Business Business Banking & Finance Sale & Lease Back +71 63 Venture Capital Business and Finance Business Business Banking & Finance Venture Capital +72 53 Business I.T. Business and Finance Business Business I.T. +73 53 Business Operations Business and Finance Business Business Operations +79 53 Business Utilities Business and Finance Business Business Utilities +74 53 Consumer Issues Business and Finance Business Consumer Issues +75 74 Recalls Business and Finance Business Consumer Issues Recalls +76 53 Executive Leadership & Management Business and Finance Business Executive Leadership & Management +77 53 Government Business Business and Finance Business Government Business +78 53 Green Solutions Business and Finance Business Green Solutions +55 53 Human Resources Business and Finance Business Human Resources +56 53 Large Business Business and Finance Business Large Business +57 53 Logistics Business and Finance Business Logistics +58 53 Marketing and Advertising Business and Finance Business Marketing and Advertising +59 53 Sales Business and Finance Business Sales +60 53 Small and Medium-sized Business Business and Finance Business Small and Medium-sized Business +61 53 Startups Business and Finance Business Startups +80 52 Economy Business and Finance Economy +81 80 Commodities Business and Finance Economy Commodities +82 80 Currencies Business and Finance Economy Currencies +83 80 Financial Crisis Business and Finance Economy Financial Crisis +84 80 Financial Reform Business and Finance Economy Financial Reform +85 80 Financial Regulation Business and Finance Economy Financial Regulation +86 80 Gasoline Prices Business and Finance Economy Gasoline Prices +87 80 Housing Market Business and Finance Economy Housing Market +88 80 Interest Rates Business and Finance Economy Interest Rates +89 80 Job Market Business and Finance Economy Job Market +90 52 Industries Business and Finance Industries +91 90 Advertising Industry Business and Finance Industries Advertising Industry +102 90 Agriculture Business and Finance Industries Agriculture +113 90 Apparel Industry Business and Finance Industries Apparel Industry +117 90 Automotive Industry Business and Finance Industries Automotive Industry +118 90 Aviation Industry Business and Finance Industries Aviation Industry +119 90 Biotech and Biomedical Industry Business and Finance Industries Biotech and Biomedical Industry +120 90 Civil Engineering Industry Business and Finance Industries Civil Engineering Industry +121 90 Construction Industry Business and Finance Industries Construction Industry +122 90 Defense Industry Business and Finance Industries Defense Industry +92 90 Education industry Business and Finance Industries Education industry +93 90 Entertainment Industry Business and Finance Industries Entertainment Industry +94 90 Environmental Services Industry Business and Finance Industries Environmental Services Industry +95 90 Financial Industry Business and Finance Industries Financial Industry +96 90 Food Industry Business and Finance Industries Food Industry +97 90 Healthcare Industry Business and Finance Industries Healthcare Industry +98 90 Hospitality Industry Business and Finance Industries Hospitality Industry +99 90 Information Services Industry Business and Finance Industries Information Services Industry +100 90 Legal Services Industry Business and Finance Industries Legal Services Industry +101 90 Logistics and Transportation Industry Business and Finance Industries Logistics and Transportation Industry +103 90 Management Consulting Industry Business and Finance Industries Management Consulting Industry +104 90 Manufacturing Industry Business and Finance Industries Manufacturing Industry +105 90 Mechanical and Industrial Engineering Industry Business and Finance Industries Mechanical and Industrial Engineering Industry +106 90 Media Industry Business and Finance Industries Media Industry +107 90 Metals Industry Business and Finance Industries Metals Industry +108 90 Non-Profit Organizations Business and Finance Industries Non-Profit Organizations +109 90 Pharmaceutical Industry Business and Finance Industries Pharmaceutical Industry +110 90 Power and Energy Industry Business and Finance Industries Power and Energy Industry +111 90 Publishing Industry Business and Finance Industries Publishing Industry +112 90 Real Estate Industry Business and Finance Industries Real Estate Industry +114 90 Retail Industry Business and Finance Industries Retail Industry +115 90 Technology Industry Business and Finance Industries Technology Industry +116 90 Telecommunications Industry Business and Finance Industries Telecommunications Industry +123 Careers Careers +124 123 Apprenticeships Careers Apprenticeships +125 123 Career Advice Careers Career Advice +126 123 Career Planning Careers Career Planning +127 123 Job Search Careers Job Search +128 127 Job Fairs Careers Job Search Job Fairs +129 127 Resume Writing and Advice Careers Job Search Resume Writing and Advice +130 123 Remote Working Careers Remote Working +131 123 Vocational Training Careers Vocational Training +80DV8O 602 Communication Technology & Computing Computing Computer Software and Applications Communication +380 Crime Crime +381 Disasters Disasters +132 Education Education +133 132 Adult Education Education Adult Education +137 132 College Education Education College Education +138 137 College Planning Education College Education College Planning +139 137 Postgraduate Education Education College Education Postgraduate Education +140 139 Professional School Education College Education Postgraduate Education Professional School +141 137 Undergraduate Education Education College Education Undergraduate Education +142 132 Early Childhood Education Education Early Childhood Education +143 132 Educational Assessment Education Educational Assessment +144 143 Standardized Testing Education Educational Assessment Standardized Testing +145 132 Homeschooling Education Homeschooling +146 132 Homework and Study Education Homework and Study +147 132 Language Learning Education Language Learning +148 132 Online Education Education Online Education +149 132 Primary Education Education Primary Education +134 132 Private School Education Private School +135 132 Secondary Education Education Secondary Education SCD +136 132 Special Education Education Special Education +JLBCU7 Entertainment Entertainment +324 JLBCU7 Movies Entertainment Movies +338 JLBCU7 Music Entertainment Music +640 JLBCU7 Television Entertainment Television +8VZQHL Events Events +162 8VZQHL Awards Shows Events Awards Shows +180 8VZQHL Business Expos & Conferences Events Business Expos & Conferences +185 8VZQHL Fan Conventions Events Fan Conventions +186 Family and Relationships Family and Relationships SCD +187 186 Bereavement Family and Relationships Bereavement SCD +188 186 Dating Family and Relationships Dating +189 186 Divorce Family and Relationships Divorce +190 186 Eldercare Family and Relationships Eldercare +191 186 Marriage and Civil Unions Family and Relationships Marriage and Civil Unions +192 186 Parenting Family and Relationships Parenting +193 192 Adoption and Fostering Family and Relationships Parenting Adoption and Fostering +194 192 Daycare and Pre-School Family and Relationships Parenting Daycare and Pre-School +195 192 Internet Safety Family and Relationships Parenting Internet Safety +196 192 Parenting Babies and Toddlers Family and Relationships Parenting Parenting Babies and Toddlers +197 192 Parenting Children Aged 4-11 Family and Relationships Parenting Parenting Children Aged 4-11 SCD +198 192 Parenting Teens Family and Relationships Parenting Parenting Teens SCD +199 192 Special Needs Kids Family and Relationships Parenting Special Needs Kids +200 186 Single Life Family and Relationships Single Life +201 Fine Art Fine Art +202 201 Costume Fine Art Costume +203 201 Dance Fine Art Dance +204 201 Design Fine Art Design +205 201 Digital Arts Fine Art Digital Arts +206 201 Fine Art Photography Fine Art Fine Art Photography +207 201 Modern Art Fine Art Modern Art +208 201 Opera Fine Art Opera +209 201 Theater Fine Art Theater SCD +210 Food & Drink Food & Drink +211 210 Alcoholic Beverages Food & Drink Alcoholic Beverages +215 210 Barbecues and Grilling Food & Drink Barbecues and Grilling +216 210 Cooking Food & Drink Cooking +217 210 Desserts and Baking Food & Drink Desserts and Baking +218 210 Dining Out Food & Drink Dining Out +219 210 Food Allergies Food & Drink Food Allergies +220 210 Food Movements Food & Drink Food Movements +221 210 Healthy Cooking and Eating Food & Drink Healthy Cooking and Eating +222 210 Non-Alcoholic Beverages Food & Drink Non-Alcoholic Beverages +212 210 Vegan Diets Food & Drink Vegan Diets SCD +213 210 Vegetarian Diets Food & Drink Vegetarian Diets +214 210 World Cuisines Food & Drink World Cuisines +SPSHQ5 Genres Genres +VKIV56 SPSHQ5 Nature Genres Nature +325 SPSHQ5 Action/Adventure Genres Action/Adventure +641 SPSHQ5 Animation & Anime Genres Animation & Anime +44 SPSHQ5 Biographies Genres Biographies +646 SPSHQ5 Comedy Genres Comedy +332 SPSHQ5 Documentary Genres Documentary +647 SPSHQ5 Drama Genres Drama +648 SPSHQ5 Factual Genres Factual +645 SPSHQ5 Family/Children Genres Family/Children +335 SPSHQ5 Fantasy Genres Fantasy +EZWB7V SPSHQ5 History Genres History +649 SPSHQ5 Holiday Genres Holiday +336 SPSHQ5 Horror Genres Horror +TIFQA5 SPSHQ5 Lifestyle Genres Lifestyle +650 SPSHQ5 Music Video Genres Music Video +156 SPSHQ5 Musicals Genres Musical +331 SPSHQ5 Mystery Genres Mystery +651 SPSHQ5 Reality TV Genres Reality TV +326 SPSHQ5 Romance Genres Romance +652 SPSHQ5 Science Fiction Genres Science Fiction +642 SPSHQ5 Soap Opera Genres Soap Opera +643 SPSHQ5 Special Interest (Indie/Art House) Genres Special Interest (Indie/Art House) +370 SPSHQ5 Sports Radio Genres Sports Radio +371 SPSHQ5 Talk Radio Genres Talk Radio +376 371 Public Radio Genres Talk Radio Public Radio +A0AH3G SPSHQ5 Talk Show Genres Talk Show +KHPC5A SPSHQ5 True Crime Genres True Crime +KHPC6A SPSHQ5 Western Genres Western SCD +51 SPSHQ5 Young Adult Genres Young Adult +223 Healthy Living Healthy Living +224 223 Children's Health Healthy Living Children's Health +225 223 Fitness and Exercise Healthy Living Fitness and Exercise +226 225 Participant Sports Healthy Living Fitness and Exercise Participant Sports +227 225 Running and Jogging Healthy Living Fitness and Exercise Running and Jogging +228 223 Men's Health Healthy Living Men's Health SCD +229 223 Nutrition Healthy Living Nutrition +230 223 Senior Health Healthy Living Senior Health +231 223 Weight Loss Healthy Living Weight Loss +232 223 Wellness Healthy Living Wellness +233 232 Alternative Medicine Healthy Living Wellness Alternative Medicine +234 233 Herbs and Supplements Healthy Living Wellness Alternative Medicine Herbs and Supplements SCD +235 233 Holistic Health Healthy Living Wellness Alternative Medicine Holistic Health +236 232 Physical Therapy Healthy Living Wellness Physical Therapy +237 232 Smoking Cessation Healthy Living Wellness Smoking Cessation +238 223 Women's Health Healthy Living Women's Health +239 Hobbies & Interests Hobbies & Interests +240 239 Antiquing and Antiques Hobbies & Interests Antiquing and Antiques +248 239 Arts and Crafts Hobbies & Interests Arts and Crafts +249 248 Beadwork Hobbies & Interests Arts and Crafts Beadwork +250 248 Candle and Soap Making Hobbies & Interests Arts and Crafts Candle and Soap Making +251 248 Drawing and Sketching Hobbies & Interests Arts and Crafts Drawing and Sketching +252 248 Jewelry Making Hobbies & Interests Arts and Crafts Jewelry Making +253 248 Needlework Hobbies & Interests Arts and Crafts Needlework +254 248 Painting Hobbies & Interests Arts and Crafts Painting +255 248 Photography Hobbies & Interests Arts and Crafts Photography +256 248 Scrapbooking Hobbies & Interests Arts and Crafts Scrapbooking +257 248 Woodworking Hobbies & Interests Arts and Crafts Woodworking +258 239 Beekeeping Hobbies & Interests Beekeeping +259 239 Birdwatching Hobbies & Interests Birdwatching +260 239 Cigars Hobbies & Interests Cigars +261 239 Collecting Hobbies & Interests Collecting +262 261 Comic Books Hobbies & Interests Collecting Comic Books +263 261 Stamps and Coins Hobbies & Interests Collecting Stamps and Coins +264 239 Content Production Hobbies & Interests Content Production +265 264 Audio Production Hobbies & Interests Content Production Audio Production +266 264 Freelance Writing Hobbies & Interests Content Production Freelance Writing +267 264 Screenwriting Hobbies & Interests Content Production Screenwriting +268 264 Video Production Hobbies & Interests Content Production Video Production +269 239 Games and Puzzles Hobbies & Interests Games and Puzzles +270 269 Board Games and Puzzles Hobbies & Interests Games and Puzzles Board Games and Puzzles +271 269 Card Games Hobbies & Interests Games and Puzzles Card Games +272 269 Roleplaying Games Hobbies & Interests Games and Puzzles Roleplaying Games +273 239 Genealogy and Ancestry Hobbies & Interests Genealogy and Ancestry +241 239 Magic and Illusion Hobbies & Interests Magic and Illusion +242 239 Model Toys Hobbies & Interests Model Toys +243 239 Musical Instruments Hobbies & Interests Musical Instruments +244 239 Paranormal Phenomena Hobbies & Interests Paranormal Phenomena +245 239 Radio Control Hobbies & Interests Radio Control +246 239 Sci-fi and Fantasy Hobbies & Interests Sci-fi and Fantasy +247 239 Workshops and Classes Hobbies & Interests Workshops and Classes +1KXCLD Holidays Holidays +157 1KXCLD National & Civic Holidays Holidays National & Civic Holidays +274 Home & Garden Home & Garden +275 274 Gardening Home & Garden Gardening +278 274 Home Appliances Home & Garden Home Appliances +279 274 Home Entertaining Home & Garden Home Entertaining +280 274 Home Improvement Home & Garden Home Improvement +281 274 Home Security Home & Garden Home Security +282 274 Indoor Environmental Quality Home & Garden Indoor Environmental Quality +283 274 Interior Decorating Home & Garden Interior Decorating +284 274 Landscaping Home & Garden Landscaping +285 274 Outdoor Decorating Home & Garden Outdoor Decorating +276 274 Remodeling & Construction Home & Garden Remodeling & Construction +277 274 Smart Home Home & Garden Smart Home SCD +383 Law Law SCD +WQC6HR 602 Maps & Navigation Technology & Computing Computing Computer Software and Applications Maps & Navigation SCD +286 Medical Health Medical Health SCD +323 286 Cosmetic Medical Services Medical Health Cosmetic Medical Services SCD +287 286 Diseases and Conditions Medical Health Diseases and Conditions SCD +288 287 Allergies Medical Health Diseases and Conditions Allergies SCD +306 287 Blood Disorders Medical Health Diseases and Conditions Blood Disorders SCD +312 287 Bone and Joint Conditions Medical Health Diseases and Conditions Bone and Joint Conditions SCD +313 287 Brain and Nervous System Disorders Medical Health Diseases and Conditions Brain and Nervous System Disorders SCD +314 287 Cancer Medical Health Diseases and Conditions Cancer SCD +315 287 Cold and Flu Medical Health Diseases and Conditions Cold and Flu SCD +316 287 Dental Health Medical Health Diseases and Conditions Dental Health SCD +317 287 Diabetes Medical Health Diseases and Conditions Diabetes SCD +318 287 Digestive Disorders Medical Health Diseases and Conditions Digestive Disorders SCD +289 287 Ear, Nose and Throat Conditions Medical Health Diseases and Conditions Ear, Nose and Throat Conditions SCD +290 287 Endocrine and Metabolic Diseases Medical Health Diseases and Conditions Endocrine and Metabolic Diseases SCD +291 290 Hormonal Disorders Medical Health Diseases and Conditions Endocrine and Metabolic Diseases Hormonal Disorders SCD +292 290 Menopause Medical Health Diseases and Conditions Endocrine and Metabolic Diseases Menopause SCD +293 290 Thyroid Disorders Medical Health Diseases and Conditions Endocrine and Metabolic Diseases Thyroid Disorders SCD +294 287 Eye and Vision Conditions Medical Health Diseases and Conditions Eye and Vision Conditions SCD +295 287 Foot Health Medical Health Diseases and Conditions Foot Health SCD +296 287 Heart and Cardiovascular Diseases Medical Health Diseases and Conditions Heart and Cardiovascular Diseases SCD +297 287 Infectious Diseases Medical Health Diseases and Conditions Infectious Diseases SCD +298 287 Injuries Medical Health Diseases and Conditions Injuries SCD +299 298 First Aid Medical Health Diseases and Conditions Injuries First Aid SCD +300 287 Lung and Respiratory Health Medical Health Diseases and Conditions Lung and Respiratory Health SCD +301 287 Mental Health Medical Health Diseases and Conditions Mental Health SCD +302 287 Reproductive Health Medical Health Diseases and Conditions Reproductive Health SCD +303 302 Birth Control Medical Health Diseases and Conditions Reproductive Health Birth Control SCD +304 302 Infertility Medical Health Diseases and Conditions Reproductive Health Infertility SCD +305 302 Pregnancy Medical Health Diseases and Conditions Reproductive Health Pregnancy SCD +307 287 Sexual Health Medical Health Diseases and Conditions Sexual Health SCD +308 307 Sexual Conditions Medical Health Diseases and Conditions Sexual Health Sexual Conditions SCD +309 287 Skin and Dermatology Medical Health Diseases and Conditions Skin and Dermatology SCD +310 287 Sleep Disorders Medical Health Diseases and Conditions Sleep Disorders SCD +311 287 Substance Abuse Medical Health Diseases and Conditions Substance Abuse SCD +319 286 Medical Tests Medical Health Medical Tests +320 286 Pharmaceutical Drugs Medical Health Pharmaceutical Drugs +321 286 Surgery Medical Health Surgery +322 286 Vaccines Medical Health Vaccines +342 338 Adult Album Alternative Entertainment Music Adult Album Alternative +339 338 Adult Contemporary Music Entertainment Music Adult Contemporary Music +340 339 Soft AC Music Entertainment Music Adult Contemporary Music Soft AC Music +341 339 Urban AC Music Entertainment Music Adult Contemporary Music Urban AC Music +343 338 Alternative Music Entertainment Music Alternative Music +360 338 Blues Entertainment Music Blues +344 338 Children's Music Entertainment Music Children's Music +345 338 Classic Hits Entertainment Music Classic Hits +346 338 Classical Music Entertainment Music Classical Music +347 338 College Radio Entertainment Music College Radio +348 338 Comedy (Music and Audio) Entertainment Music Comedy (Music and Audio) +349 338 Contemporary Hits/Pop/Top 40 Entertainment Music Contemporary Hits/Pop/Top 40 +350 338 Country Music Entertainment Music Country Music +351 338 Dance and Electronic Music Entertainment Music Dance and Electronic Music +354 338 Gospel Music Entertainment Music Gospel Music +355 338 Hip Hop Music Entertainment Music Hip Hop Music +356 338 Inspirational/New Age Music Entertainment Music Inspirational/New Age Music +357 338 Jazz Entertainment Music Jazz +358 338 Oldies/Adult Standards Entertainment Music Oldies/Adult Standards +362 338 R&B/Soul/Funk Entertainment Music R&B/Soul/Funk +359 338 Reggae Entertainment Music Reggae +361 338 Religious (Music and Audio) Entertainment Music Religious (Music and Audio) +363 338 Rock Music Entertainment Music Rock Music +364 363 Album-oriented Rock Entertainment Music Rock Music Album-oriented Rock +365 363 Alternative Rock Entertainment Music Rock Music Alternative Rock +366 363 Classic Rock Entertainment Music Rock Music Classic Rock +367 363 Hard Rock Entertainment Music Rock Music Hard Rock +368 363 Soft Rock Entertainment Music Rock Music Soft Rock +353 338 Songwriters/Folk Entertainment Music Songwriters/Folk +369 338 Soundtracks, TV and Showtunes Entertainment Music Soundtracks, TV and Showtunes +352 338 World/International Music Entertainment Music World/International Music +377 338 Urban Contemporary Music Entertainment Music Urban Contemporary Music +378 338 Variety (Music and Audio) Entertainment Music Variety (Music and Audio) +163 Personal Celebrations & Life Events Personal Celebrations & Life Events +164 163 Anniversary Personal Celebrations & Life Events Anniversary +166 163 Baby Shower Personal Celebrations & Life Events Baby Shower +167 163 Bachelor Party Personal Celebrations & Life Events Bachelor Party +168 163 Bachelorette Party Personal Celebrations & Life Events Bachelorette Party +169 163 Birth Personal Celebrations & Life Events Birth +170 163 Birthday Personal Celebrations & Life Events Birthday +171 163 Funeral Personal Celebrations & Life Events Funeral +172 163 Graduation Personal Celebrations & Life Events Graduation +173 163 Prom Personal Celebrations & Life Events Prom +165 163 Wedding Personal Celebrations & Life Events Wedding +391 Personal Finance Personal Finance +392 391 Consumer Banking Personal Finance Consumer Banking +393 391 Financial Assistance Personal Finance Financial Assistance +394 393 Government Support and Welfare Personal Finance Financial Assistance Government Support and Welfare +395 393 Student Financial Aid Personal Finance Financial Assistance Student Financial Aid +396 391 Financial Planning Personal Finance Financial Planning +397 391 Frugal Living Personal Finance Frugal Living +417 391 Home Utilities Personal Finance Home Utilities +418 417 Gas and Electric Personal Finance Home Utilities Gas and Electric +419 417 Internet Service Providers Personal Finance Home Utilities Internet Service Providers +420 417 Phone Services Personal Finance Home Utilities Phone Services +421 417 Water Services Personal Finance Home Utilities Water Services +398 391 Insurance Personal Finance Insurance +399 398 Health Insurance Personal Finance Insurance Health Insurance +400 398 Home Insurance Personal Finance Insurance Home Insurance +401 398 Life Insurance Personal Finance Insurance Life Insurance +402 398 Motor Insurance Personal Finance Insurance Motor Insurance +403 398 Pet Insurance Personal Finance Insurance Pet Insurance +404 398 Travel Insurance Personal Finance Insurance Travel Insurance +405 391 Personal Debt Personal Finance Personal Debt +406 405 Credit Cards Personal Finance Personal Debt Credit Cards SCD +407 405 Home Financing Personal Finance Personal Debt Home Financing +408 405 Personal Loans Personal Finance Personal Debt Personal Loans +409 405 Student Loans Personal Finance Personal Debt Student Loans +410 391 Personal Investing Personal Finance Personal Investing +411 410 Hedge Funds Personal Finance Personal Investing Hedge Funds +412 410 Mutual Funds Personal Finance Personal Investing Mutual Funds +413 410 Options Personal Finance Personal Investing Options +414 410 Stocks and Bonds Personal Finance Personal Investing Stocks and Bonds +415 391 Personal Taxes Personal Finance Personal Taxes +416 391 Retirement Planning Personal Finance Retirement Planning +422 Pets Pets +423 422 Birds Pets Birds +424 422 Cats Pets Cats +425 422 Dogs Pets Dogs +426 422 Fish and Aquariums Pets Fish and Aquariums +427 422 Large Animals Pets Large Animals +428 422 Pet Adoptions Pets Pet Adoptions +431 422 Pet Supplies Pets Pet Supplies SCD +429 422 Reptiles Pets Reptiles SCD +430 422 Veterinary Medicine Pets Veterinary Medicine +386 Politics Politics +8YPBBL 386 Civic affairs Politics Civic affairs +387 386 Elections Politics Elections +388 386 Political Issues & Policy Politics Political Issues & policy +432 Pop Culture Pop Culture +433 432 Celebrity Deaths Pop Culture Celebrity Deaths +434 432 Celebrity Families Pop Culture Celebrity Families +435 432 Celebrity Homes Pop Culture Celebrity Homes +436 432 Celebrity Pregnancy Pop Culture Celebrity Pregnancy +437 432 Celebrity Relationships Pop Culture Celebrity Relationships +438 432 Celebrity Scandal Pop Culture Celebrity Scandal +439 432 Celebrity Style Pop Culture Celebrity Style +440 432 Humor and Satire Pop Culture Humor and Satire +W3CW2J 602 Productivity Technology & Computing Computing Computer Software and Applications Productivity +441 Real Estate Real Estate +442 441 Apartments Real Estate Apartments +445 441 Developmental Sites Real Estate Developmental Sites +446 441 Hotel Properties Real Estate Hotel Properties +447 441 Houses Real Estate Houses +448 441 Industrial Property Real Estate Industrial Property +449 441 Land and Farms Real Estate Land and Farms +450 441 Office Property Real Estate Office Property +451 441 Real Estate Buying and Selling Real Estate Real Estate Buying and Selling SCD +452 441 Real Estate Renting and Leasing Real Estate Real Estate Renting and Leasing SCD +443 441 Retail Property Real Estate Retail Property SCD +444 441 Vacation Properties Real Estate Vacation Properties SCD +453 Religion & Spirituality Religion & Spirituality SCD +454 453 Agnosticism Religion & Spirituality Agnosticism SCD +456 453 Astrology Religion & Spirituality Astrology SCD +457 453 Atheism Religion & Spirituality Atheism SCD +458 453 Buddhism Religion & Spirituality Buddhism SCD +459 453 Christianity Religion & Spirituality Christianity SCD +460 453 Hinduism Religion & Spirituality Hinduism SCD +461 453 Islam Religion & Spirituality Islam SCD +462 453 Judaism Religion & Spirituality Judaism +463 453 Sikhism Religion & Spirituality Sikhism +455 453 Spirituality Religion & Spirituality Spirituality SCD +464 Science Science +465 464 Biological Sciences Science Biological Sciences +466 464 Chemistry Science Chemistry +467 464 Environment Science Environment +468 464 Genetics Science Genetics +469 464 Geography Science Geography +470 464 Geology Science Geology +471 464 Physics Science Physics +472 464 Space and Astronomy Science Space and Astronomy +390 464 Weather Science Weather +v9i3On Sensitive Topics Sensitive Topics +Rm3SiT v9i3On Adult & Explicit Sexual Content Sensitive Topics Adult & Explicit Sexual Content +avbNf2 v9i3On Arms & Ammunition Sensitive Topics Arms & Ammunition +XtODT3 v9i3On Crime & Harmful Acts to Individuals, Society & Human Right Violations Sensitive Topics Crime & Harmful Acts to Individuals, Society & Human Right Violations +I4GWl6 v9i3On Death, Injury, or Military Conflict Sensitive Topics Death, Injury, or Military Conflict +Z7rJBM v9i3On Debated Sensitive Social Issues Sensitive Topics Debated Sensitive Social Issues +HxqYV1 v9i3On Hate Speech and Acts of Aggression Sensitive Topics Hate Speech and Acts of Aggression +pg0WhF v9i3On Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol Sensitive Topics Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol +j9PaO9 v9i3On Obscenity and Profanity Sensitive Topics Obscenity and Profanity +mm3UXx v9i3On Online Piracy Sensitive Topics Online Piracy +6i4dB6 v9i3On Spam or Harmful Content Sensitive Topics Spam or Harmful Content +8FD8nI v9i3On Terrorism Sensitive Topics Terrorism +473 Shopping Shopping +482 473 Children's Games and Toys Shopping Children's Games and Toys +474 473 Coupons and Discounts Shopping Coupons and Discounts +475 473 Flower Shopping Shopping Flower Shopping +476 473 Gifts and Greetings Cards Shopping Gifts and Greetings Cards +477 473 Grocery Shopping Shopping Grocery Shopping +478 473 Holiday Shopping Shopping Holiday Shopping +479 473 Household Supplies Shopping Household Supplies +480 473 Lotteries and Scratchcards Shopping Lotteries and Scratchcards +161 473 Party Supplies and Decorations Shopping Party Supplies and Decorations +481 473 Sales and Promotions Shopping Sales and Promotions +483 Sports Sports +484 483 American Football Sports American Football +507 483 Australian Rules Football Sports Australian Rules Football +518 483 Auto Racing Sports Auto Racing SCD +519 518 Motorcycle Sports Sports Auto Racing Motorcycle Sports +534 483 Badminton Sports Badminton +545 483 Baseball Sports Baseball +547 483 Basketball Sports Basketball +548 483 Beach Volleyball Sports Beach Volleyball +549 483 Bodybuilding Sports Bodybuilding +550 483 Bowling Sports Bowling +485 483 Boxing Sports Boxing +486 483 Cheerleading Sports Cheerleading +487 483 College Sports Sports College Sports +490 487 College Baseball Sports College Sports College Baseball +489 487 College Basketball Sports College Sports College Basketball +488 487 College Football Sports College Sports College Football +491 483 Cricket Sports Cricket +492 483 Cycling Sports Cycling +493 483 Darts Sports Darts +494 483 Disabled Sports Sports Disabled Sports +495 483 Diving Sports Diving +496 483 Equine Sports Sports Equine Sports +497 496 Horse Racing Sports Equine Sports Horse Racing +498 483 Extreme Sports Sports Extreme Sports +499 498 Canoeing and Kayaking Sports Extreme Sports Canoeing and Kayaking +500 498 Climbing Sports Extreme Sports Climbing +501 498 Paintball Sports Extreme Sports Paintball +502 498 Scuba Diving Sports Extreme Sports Scuba Diving +503 498 Skateboarding Sports Extreme Sports Skateboarding +504 498 Snowboarding Sports Extreme Sports Snowboarding +505 498 Surfing and Bodyboarding Sports Extreme Sports Surfing and Bodyboarding +506 498 Waterskiing and Wakeboarding Sports Extreme Sports Waterskiing and Wakeboarding +508 483 Fantasy Sports Sports Fantasy Sports +509 483 Field Hockey Sports Field Hockey +510 483 Figure Skating Sports Figure Skating +511 483 Fishing Sports Sports Fishing Sports +512 483 Golf Sports Golf +513 483 Gymnastics Sports Gymnastics +514 483 Hunting and Shooting Sports Hunting and Shooting +515 483 Ice Hockey Sports Ice Hockey +516 483 Inline Skating Sports Inline Skating +517 483 Lacrosse Sports Lacrosse +520 483 Martial Arts Sports Martial Arts +521 483 Olympic Sports Sports Olympic Sports +522 521 Summer Olympic Sports Sports Olympic Sports Summer Olympic Sports +523 521 Winter Olympic Sports Sports Olympic Sports Winter Olympic Sports +524 483 Poker and Professional Gambling Sports Poker and Professional Gambling +525 483 Rodeo Sports Rodeo +526 483 Rowing Sports Rowing +527 483 Rugby Sports Rugby +528 527 Rugby League Sports Rugby Rugby League +529 527 Rugby Union Sports Rugby Rugby Union +530 483 Sailing Sports Sailing +531 483 Skiing Sports Skiing +532 483 Snooker/Pool/Billiards Sports Snooker/Pool/Billiards +533 483 Soccer Sports Soccer +535 483 Softball Sports Softball +551 483 Sports Equipment Sports Sports Equipment +536 483 Squash Sports Squash +537 483 Swimming Sports Swimming +538 483 Table Tennis Sports Table Tennis +539 483 Tennis Sports Tennis +540 483 Track and Field Sports Track and Field +541 483 Volleyball Sports Volleyball +542 483 Walking Sports Walking +543 483 Water Polo Sports Water Polo +544 483 Weightlifting Sports Weightlifting +546 483 Wrestling Sports Wrestling +552 Style & Fashion Style & Fashion +553 552 Beauty Style & Fashion Beauty +554 553 Hair Care Style & Fashion Beauty Hair Care +555 553 Makeup and Accessories Style & Fashion Beauty Makeup and Accessories +556 553 Nail Care Style & Fashion Beauty Nail Care +557 553 Natural and Organic Beauty Style & Fashion Beauty Natural and Organic Beauty +558 553 Perfume and Fragrance Style & Fashion Beauty Perfume and Fragrance +559 553 Skin Care Style & Fashion Beauty Skin Care +574 552 Body Art Style & Fashion Body Art +575 552 Children's Clothing Style & Fashion Children's Clothing +576 552 Designer Clothing Style & Fashion Designer Clothing +577 552 Fashion Trends Style & Fashion Fashion Trends +578 552 High Fashion Style & Fashion High Fashion +579 552 Men's Fashion Style & Fashion Men's Fashion +580 579 Men's Accessories Style & Fashion Men's Fashion Men's Accessories +581 580 Men's Jewelry and Watches Style & Fashion Men's Fashion Men's Accessories Men's Jewelry and Watches +582 579 Men's Clothing Style & Fashion Men's Fashion Men's Clothing +583 582 Men's Business Wear Style & Fashion Men's Fashion Men's Clothing Men's Business Wear +584 582 Men's Casual Wear Style & Fashion Men's Fashion Men's Clothing Men's Casual Wear +585 582 Men's Formal Wear Style & Fashion Men's Fashion Men's Clothing Men's Formal Wear +586 582 Men's Outerwear Style & Fashion Men's Fashion Men's Clothing Men's Outerwear +587 582 Men's Sportswear Style & Fashion Men's Fashion Men's Clothing Men's Sportswear +588 582 Men's Underwear and Sleepwear Style & Fashion Men's Fashion Men's Clothing Men's Underwear and Sleepwear +589 579 Men's Shoes and Footwear Style & Fashion Men's Fashion Men's Shoes and Footwear +590 552 Personal Care Style & Fashion Personal Care +591 590 Bath and Shower Style & Fashion Personal Care Bath and Shower +592 590 Deodorant and Antiperspirant Style & Fashion Personal Care Deodorant and Antiperspirant +593 590 Oral care Style & Fashion Personal Care Oral care +594 590 Shaving Style & Fashion Personal Care Shaving +595 552 Street Style Style & Fashion Street Style +560 552 Women's Fashion Style & Fashion Women's Fashion +561 560 Women's Accessories Style & Fashion Women's Fashion Women's Accessories +562 561 Women's Glasses Style & Fashion Women's Fashion Women's Accessories Women's Glasses +563 561 Women's Handbags and Wallets Style & Fashion Women's Fashion Women's Accessories Women's Handbags and Wallets +564 561 Women's Hats and Scarves Style & Fashion Women's Fashion Women's Accessories Women's Hats and Scarves +565 561 Women's Jewelry and Watches Style & Fashion Women's Fashion Women's Accessories Women's Jewelry and Watches +566 560 Women's Clothing Style & Fashion Women's Fashion Women's Clothing +567 566 Women's Business Wear Style & Fashion Women's Fashion Women's Clothing Women's Business Wear +568 566 Women's Casual Wear Style & Fashion Women's Fashion Women's Clothing Women's Casual Wear +569 566 Women's Formal Wear Style & Fashion Women's Fashion Women's Clothing Women's Formal Wear +570 566 Women's Intimates and Sleepwear Style & Fashion Women's Fashion Women's Clothing Women's Intimates and Sleepwear +571 566 Women's Outerwear Style & Fashion Women's Fashion Women's Clothing Women's Outerwear +572 566 Women's Sportswear Style & Fashion Women's Fashion Women's Clothing Women's Sportswear +573 560 Women's Shoes and Footwear Style & Fashion Women's Fashion Women's Shoes and Footwear +596 Technology & Computing Technology & Computing +597 596 Artificial Intelligence Technology & Computing Artificial Intelligence +598 596 Augmented Reality Technology & Computing Augmented Reality +599 596 Computing Technology & Computing Computing +600 599 Computer Networking Technology & Computing Computing Computer Networking +601 599 Computer Peripherals Technology & Computing Computing Computer Peripherals +602 599 Software and Applications Technology & Computing Computing Computer Software and Applications +603 602 3-D Graphics Technology & Computing Computing Computer Software and Applications 3-D Graphics +608 602 Antivirus Software Technology & Computing Computing Computer Software and Applications Antivirus Software +609 602 Browsers Technology & Computing Computing Computer Software and Applications Browsers +610 602 Computer Animation Technology & Computing Computing Computer Software and Applications Computer Animation +611 602 Databases Technology & Computing Computing Computer Software and Applications Databases +612 602 Desktop Publishing Technology & Computing Computing Computer Software and Applications Desktop Publishing +613 602 Digital Audio Technology & Computing Computing Computer Software and Applications Digital Audio +614 602 Graphics Software Technology & Computing Computing Computer Software and Applications Graphics Software +615 602 Operating Systems Technology & Computing Computing Computer Software and Applications Operating Systems +604 602 Photo Editing Software Technology & Computing Computing Computer Software and Applications Photo Editing Software +605 602 Shareware and Freeware Technology & Computing Computing Computer Software and Applications Shareware and Freeware +606 602 Video Software Technology & Computing Computing Computer Software and Applications Video Software +607 602 Web Conferencing Technology & Computing Computing Computer Software and Applications Web Conferencing +616 599 Data Storage and Warehousing Technology & Computing Computing Data Storage and Warehousing +617 599 Desktops Technology & Computing Computing Desktops +618 599 Information and Network Security Technology & Computing Computing Information and Network Security +619 599 Internet Technology & Computing Computing Internet +620 619 Cloud Computing Technology & Computing Computing Internet Cloud Computing +623 619 Email Technology & Computing Computing Internet Email +624 619 Internet for Beginners Technology & Computing Computing Internet Internet for Beginners +625 619 Internet of Things Technology & Computing Computing Internet Internet of Things +626 619 IT and Internet Support Technology & Computing Computing Internet IT and Internet Support +627 619 Search Technology & Computing Computing Internet Search +628 619 Social Networking Technology & Computing Computing Internet Social Networking +629 619 Web Design and HTML Technology & Computing Computing Internet Web Design and HTML +621 619 Web Development Technology & Computing Computing Internet Web Development +622 619 Web Hosting Technology & Computing Computing Internet Web Hosting +630 599 Laptops Technology & Computing Computing Laptops +631 599 Programming Languages Technology & Computing Computing Programming Languages +632 596 Consumer Electronics Technology & Computing Consumer Electronics +633 632 Cameras and Camcorders Technology & Computing Consumer Electronics Cameras and Camcorders +634 632 Home Entertainment Systems Technology & Computing Consumer Electronics Home Entertainment Systems +635 632 Smartphones Technology & Computing Consumer Electronics Smartphones +636 632 Tablets and E-readers Technology & Computing Consumer Electronics Tablets and E-readers +637 632 Wearable Technology Technology & Computing Consumer Electronics Wearable Technology +638 596 Robotics Technology & Computing Robotics +639 596 Virtual Reality Technology & Computing Virtual Reality +653 Travel Travel +654 653 Travel Accessories Travel Travel Accessories +655 653 Travel Locations Travel Travel Locations +656 655 Africa Travel Travel Travel Locations Africa Travel +657 655 Asia Travel Travel Travel Locations Asia Travel +658 655 Australia and Oceania Travel Travel Travel Locations Australia and Oceania Travel +659 655 Europe Travel Travel Travel Locations Europe Travel +660 655 North America Travel Travel Travel Locations North America Travel +661 655 Polar Travel Travel Travel Locations Polar Travel +662 655 South America Travel Travel Travel Locations South America Travel +663 653 Travel Preparation and Advice Travel Travel Preparation and Advice +664 653 Travel Type Travel Travel Type +665 664 Adventure Travel Travel Travel Type Adventure Travel +672 664 Air Travel Travel Travel Type Air Travel +673 664 Beach Travel Travel Travel Type Beach Travel +674 664 Bed & Breakfasts Travel Travel Type Bed & Breakfasts +675 664 Budget Travel Travel Travel Type Budget Travel +676 664 Business Travel Travel Travel Type Business Travel +677 664 Camping Travel Travel Type Camping +678 664 Cruises Travel Travel Type Cruises +679 664 Day Trips Travel Travel Type Day Trips +666 664 Family Travel Travel Travel Type Family Travel +667 664 Honeymoons and Getaways Travel Travel Type Honeymoons and Getaways +668 664 Hotels and Motels Travel Travel Type Hotels and Motels +669 664 Rail Travel Travel Travel Type Rail Travel +670 664 Road Trips Travel Travel Type Road Trips +671 664 Spas Travel Travel Type Spas +680 Video Gaming Video Gaming +681 680 Console Games Video Gaming Console Games +682 680 eSports Video Gaming eSports +683 680 Mobile Games Video Gaming Mobile Games +684 680 PC Games Video Gaming PC Games +685 680 Video Game Genres Video Gaming Video Game Genres +686 685 Action Video Games Video Gaming Video Game Genres Action Video Games +691 685 Action-Adventure Video Games Video Gaming Video Game Genres Action-Adventure Video Games +MQ2XML 685 Adult Video Games Video Gaming Video Game Genres Adult Video Games +692 685 Adventure Video Games Video Gaming Video Game Genres Adventure Video Games +ZJG29S 685 Casino and Gambling Video Games Video Gaming Video Game Genres Casino and Gambling Video Games +693 685 Casual Games Video Gaming Video Game Genres Casual Games +694 685 Educational Video Games Video Gaming Video Game Genres Educational Video Games +695 685 Exercise and Fitness Video Games Video Gaming Video Game Genres Exercise and Fitness Video Games +VWGKS7 685 Family Video Games Video Gaming Video Game Genres Family Video Games +II436J 685 Horror Video Games Video Gaming Video Game Genres Horror Video Games +696 685 MMOs Video Gaming Video Game Genres MMOs +697 685 Music and Party Video Games Video Gaming Video Game Genres Music and Party Video Games +698 685 Puzzle Video Games Video Gaming Video Game Genres Puzzle Video Games +VK7KD0 685 Racing Video Games Video Gaming Video Game Genres Racing Video Games +687 685 Role-Playing Video Games Video Gaming Video Game Genres Role-Playing Video Games +688 685 Simulation Video Games Video Gaming Video Game Genres Simulation Video Games +689 685 Sports Video Games Video Gaming Video Game Genres Sports Video Games +690 685 Strategy Video Games Video Gaming Video Game Genres Strategy Video Games + +389 War and Conflicts War and Conflicts + diff --git a/data/iab/extended_cases.jsonl b/data/iab/extended_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f37368453cc961a5b635dfe97ae2420f02156455 --- /dev/null +++ b/data/iab/extended_cases.jsonl @@ -0,0 +1,8 @@ +{"iab_path": "Careers > Job Search", "text": "best remote jobs for data analysts"} +{"iab_path": "Personal Finance > Financial Planning", "text": "how much should i save each month"} +{"iab_path": "Family and Relationships > Parenting", "text": "tips for parenting a toddler"} +{"iab_path": "Home & Garden > Gardening", "text": "best plants for a small balcony garden"} +{"iab_path": "Sports > Soccer", "text": "How do offside rules work in soccer?"} +{"iab_path": "Entertainment > Movies", "text": "Looking for film recommendations, not TV shows or music"} +{"iab_path": "Style & Fashion", "text": "best shoes under 100 dollars"} +{"iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software for small teams"} diff --git a/data/iab/hard_cases.jsonl b/data/iab/hard_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..232f8b23f3b7cf42d22dcc97e854155863757929 --- /dev/null +++ b/data/iab/hard_cases.jsonl @@ -0,0 +1,8 @@ +{"iab_path": "Automotive > Auto Buying and Selling", "text": "Which car to buy in 2026"} +{"iab_path": "Business and Finance > Business > Sales", "text": "What is CRM software?"} +{"iab_path": "Business and Finance > Business > Business I.T.", "text": "How do I reset my password?"} +{"iab_path": "Food & Drink > Dining Out", "text": "Book a table for 2 tonight"} +{"iab_path": "Technology & Computing > Artificial Intelligence", "text": "What is intent classification in NLP?"} +{"iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best communication software for remote teams"} +{"iab_path": "Education > College Education > Postgraduate Education", "text": "best universities to study masters"} +{"iab_path": "Travel > Travel Type > Hotels and Motels", "text": "Need a hotel in Chicago for two nights"} diff --git a/data/iab/test.jsonl b/data/iab/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..009425fa023f2397599d539cc36ad7cbf7ba6f58 --- /dev/null +++ b/data/iab/test.jsonl @@ -0,0 +1,3282 @@ +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for attraction instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attractions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "compare attraction"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need attractions, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "learn about attraction"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "looking into attractions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attractions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "compare attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "attraction rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme parks attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "what is amusement and theme park"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "researching amusement and theme park, not museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "looking for amusement and theme parks instead of bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "looking for amusement and theme parks attractions instead of malls and shopping centers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "vague", "text": "help me choose amusement and theme parks in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "bars and restaurants attractions basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Bars & Restaurants", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "need bars and restaurants, not casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "what is attractions bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Bars & Restaurants", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "researching attractions bars and restaurants, not historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "best attractions bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Bars & Restaurants", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "researching bars and restaurants, not casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "researching casinos & gambling, not amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "what is casinos & gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "compare casinos and gambling attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "compare casinos & gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "learn about casinos and gambling attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "researching attractions casinos and gambling, not nightclubs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "researching historic site and landmark tour, not malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "researching historic site and landmark tours attractions, not bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "historic site and landmark tours rather than museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for historic site and landmark tours attractions instead of amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "looking for historic site and landmark tours instead of museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "looking for historic site and landmark tours attractions instead of casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "how does malls & shopping center work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "vague", "text": "help me choose malls and shopping centers in attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "researching malls & shopping center, not historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "need malls and shopping centers, not historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "malls and shopping centers attractions rather than amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "need attractions malls and shopping centers, not nightclubs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "looking for museums and galleries instead of malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "museums and galleries attractions overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "researching museums & gallery, not historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "attractions museums and galleries overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "museums & gallery overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "what is museums & gallery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "vague", "text": "help me choose attractions nightclubs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "attractions nightclubs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "best nightclubs in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "nightclubs overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "need nightclubs, not museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "need nightclub, not casinos and gambling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "vague", "text": "need advice about outdoor activities in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activities attractions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "looking for attractions outdoor activities instead of bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "best attractions outdoor activities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "outdoor activities attractions rather than amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks & nature overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "looking for parks & nature instead of historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "which parks and nature attractions is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "parks & nature rather than historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "looking for parks and nature attractions instead of malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "top parks and nature attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "looking for theater venue instead of museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "need attractions theater venues, not bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "what is theater venues attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venues attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "looking for theater venue instead of historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "looking for theater venues instead of casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "researching attractions zoos and aquariums, not museums and galleries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "zoos and aquariums guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "need zoos and aquariums, not historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "looking for zoos and aquariums instead of malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "need zoos and aquariums attractions, not bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "researching zoos & aquarium, not bars and restaurants"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "exploring vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "compare car buying"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "automotive basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need automotive, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "automotive rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is car buying"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "automotive rather than business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need automotive, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is used cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "looking into used cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "exploring used cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "best vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "best used cars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "looking for auto body styles automotive instead of auto repair"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need auto body styles automotive, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "researching automotive auto body styles, not auto repair"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "looking for auto body styles automotive instead of auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "need auto body style, not auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "how does automotive auto body styles options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "negative_iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "contrastive", "text": "researching automotive auto body styles commercial trucks, not crossover"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "how does auto body styles commercial trucks work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "researching commercial truck, not convertible"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Convertible", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "automotive auto body styles convertible rather than commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Convertible", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for automotive auto body styles convertible instead of coupe"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "what is auto body styles convertible options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "how does coupe work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Coupe", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "looking for coupe instead of convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "coupe guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "vague", "text": "exploring auto body styles crossover options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Crossover", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for auto body styles crossover instead of coupe"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "how does auto body styles crossover options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Hatchback", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "researching auto body styles hatchback, not convertible"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "vague", "text": "help me choose hatchback in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "learn about auto body styles hatchback"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "discovery", "text": "best microcar in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "vague", "text": "need advice about automotive microcar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "how does auto body styles microcar options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Minivan", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "researching auto body styles minivan, not convertible"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "discovery", "text": "compare automotive minivan"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "discovery", "text": "best minivan"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need automotive auto body styles off-road vehicles, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for automotive auto body styles off-road vehicles instead of coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "discovery", "text": "top off-road vehicle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "auto body styles pickup trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "pickup trucks auto body styles basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "what is auto body styles pickup trucks options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "learn about automotive auto body styles sedan"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Sedan", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "sedan rather than coupe"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Sedan", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "need automotive auto body styles sedan, not convertible"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for station wagon instead of coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "station wagon overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "looking for automotive auto body styles station wagon instead of convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "suv guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "discovery", "text": "best suv auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "vague", "text": "exploring auto body styles suv options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "discovery", "text": "top auto body styles van options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Van", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching auto body styles van, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "van auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Buying and Selling", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need automotive auto buying and selling, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Buying and Selling", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "auto buying and selling automotive rather than auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Buying and Selling", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto buying and selling rather than auto parts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Buying and Selling", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need auto buying and selling automotive, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "auto buying and selling automotive overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "action", "text": "find auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "researching auto insurance, not auto repair"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "auto insurance in automotive guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "researching auto insurance, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "what is auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "automotive auto insurance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "how does automotive auto insurance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "best auto parts in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need auto parts, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "auto parts automotive options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "researching auto part, not auto repair"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "researching auto parts automotive, not auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto parts automotive guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "auto recalls rather than auto insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "vague", "text": "help me choose auto recalls in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "looking for auto recalls instead of auto repair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "auto recall guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "vague", "text": "need advice about automotive auto recalls options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "auto recalls automotive rather than auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "action", "text": "book auto rentals automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Rentals", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for auto rentals instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Rentals", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "need auto rental, not auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Rentals", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "researching auto rentals, not auto repair"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Rentals", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need auto rental, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "which auto rentals is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "vague", "text": "help me choose auto repair in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching auto repair, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "looking for auto repair automotive instead of auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching automotive auto repair, not auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "how does auto repair in automotive work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto repair automotive rather than auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "what is auto safety in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need automotive auto safety, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "learn about auto safety automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto safety automotive rather than auto parts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "researching automotive auto safety, not auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "vague", "text": "help me choose automotive auto safety options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto show rather than auto parts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "automotive auto shows rather than auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "need automotive auto shows, not auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "what is auto shows"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for auto shows automotive instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for auto shows automotive instead of auto rentals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "vague", "text": "exploring auto technology in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "researching auto technology automotive, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "automotive auto technology rather than auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "vague", "text": "looking into automotive auto technology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "auto technology automotive options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "vague", "text": "looking into auto infotainment technologies in auto technology"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "contrastive", "text": "looking for auto infotainment technologies auto technology instead of auto safety technologies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching auto infotainment technologies auto technology, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "auto navigation systems guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching auto navigation system, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "researching auto navigation system, not convertible"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "contrastive", "text": "researching auto safety technologies auto technology, not auto infotainment technologies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need auto safety technology, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "discovery", "text": "top automotive auto safety technologies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "looking for auto type automotive instead of auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "auto type in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "learn about auto type"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "automotive auto type rather than auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "auto type basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "top auto type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Budget Cars", "negative_iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "contrastive", "text": "researching auto type budget cars, not certified pre-owned cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "discovery", "text": "which automotive auto type budget cars is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Budget Cars", "negative_iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "contrastive", "text": "looking for budget car instead of classic cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "negative_iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "contrastive", "text": "researching automotive auto type certified pre-owned cars, not concept cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "discovery", "text": "best automotive auto type certified pre-owned cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "discovery", "text": "top certified pre-owned cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Classic Cars", "negative_iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "contrastive", "text": "need auto type classic cars, not concept cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "classic cars in auto type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Classic Cars", "negative_iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "contrastive", "text": "looking for auto type classic cars instead of concept cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Concept Cars", "negative_iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "contrastive", "text": "researching concept car, not budget cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Concept Cars", "negative_iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "contrastive", "text": "researching automotive auto type concept cars, not budget cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "vague", "text": "help me choose auto type concept cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "learn about auto type driverless cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Driverless Cars", "negative_iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "contrastive", "text": "looking for driverless car instead of classic cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "discovery", "text": "best automotive driverless cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Green Vehicles", "negative_iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "contrastive", "text": "need green vehicle, not certified pre-owned cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Green Vehicles", "negative_iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "contrastive", "text": "researching green vehicle, not budget cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "how does auto type green vehicles options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "discovery", "text": "top luxury cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "action", "text": "reserve luxury car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "discovery", "text": "compare luxury cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "discovery", "text": "compare performance car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "performance cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "vague", "text": "need advice about performance cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "how does car culture work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Car Culture", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching car culture automotive, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Car Culture", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "car culture automotive rather than auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "what is automotive car culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "learn about car culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "action", "text": "book car culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching dash cam video, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for dash cam video instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching dash cam videos, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "learn about dash cam videos automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "automotive dash cam videos basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "need dash cam videos, not auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "how does automotive motorcycles options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "motorcycles automotive rather than auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "motorcycles rather than auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "researching motorcycle, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "motorcycles rather than auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "motorcycles rather than auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "automotive road-side assistance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "researching road-side assistance automotive, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "road-side assistance rather than auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for road-side assistance automotive instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "road-side assistance automotive rather than auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "automotive road-side assistance rather than auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooters automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "top automotive scooters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooters automotive guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "need automotive scooters, not auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooters"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need scooter, not auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "need advice about fiction books"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is books and literature options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need books and literature, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "researching books and literature, not business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "top book recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "compare books to read"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "reading ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "compare fiction books"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "need advice about books and literature options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "help me choose books and literature guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "exploring books and literature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "top fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "compare art and photography in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "compare art and photography books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "need books and literature art and photography, not comics and graphic novels"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "vague", "text": "looking into art and photography in books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "art and photography rather than fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "how does books and literature art and photography work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novels books and literature basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "which comics and graphic novels is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "researching comics and graphic novel, not fiction"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "top books and literature comics and graphic novels options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "best books and literature comics and graphic novels options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "books and literature comics and graphic novels rather than poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "fiction books and literature overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "what is fiction books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "researching fiction, not poetry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "need fiction books and literature, not art and photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "best fiction in books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "what is fiction in books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "vague", "text": "need advice about poetry in books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "need books and literature poetry, not comics and graphic novels"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "poetry in books and literature guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "poetry books and literature rather than art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "top books and literature poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "books and literature poetry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "looking into business software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "business and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "need advice about sales and marketing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "compare sales and marketing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "sales and marketing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "exploring company operations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "best financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "compare business and finance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "exploring business and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is business software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "business and finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "best sales and marketing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "vague", "text": "looking into business in business and finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "business and finance business rather than economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "vague", "text": "help me choose business in business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "compare business and finance business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "learn about business and finance business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "best business business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "discovery", "text": "compare business accounting & finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "what is business business accounting and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "business accounting & finance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "business administration business basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "how does business and finance business business administration work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "discovery", "text": "best business and finance business administration"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "how does business banking and finance in business work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "how does business banking & finance work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance", "negative_iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "contrastive", "text": "need business banking & finance, not business it"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "looking for business and finance business business banking and finance angel investment instead of business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "discovery", "text": "compare angel investment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "alias", "text": "bankruptcy business banking and finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "discovery", "text": "top business and finance business business banking and finance bankruptcy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "alias", "text": "business and finance business business banking and finance business loans overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "action", "text": "find business banking and finance business loans"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "need business and finance business business banking and finance debt factoring and invoice discounting, not business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "alias", "text": "debt factoring and invoice discounting business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "how does business and finance mergers and acquisitions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "what is mergers and acquisitions in business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "discovery", "text": "compare business and finance business business banking and finance private equity"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "contrastive", "text": "business and finance business business banking and finance private equity rather than angel investment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "discovery", "text": "best business and finance sale and lease back"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "need business and finance business business banking and finance sale and lease back, not business loans"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "contrastive", "text": "researching business and finance business business banking and finance venture capital, not angel investment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "discovery", "text": "top business banking and finance venture capital"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "top business i.t."} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "access management"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "top password reset help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "discovery", "text": "which business operation is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "learn about business operations business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "learn about business operations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "what is business and finance business business utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "discovery", "text": "best business utilities in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Utilities", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "researching business and finance business business utilities, not business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "business consumer issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "what is business and finance consumer issues"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "business consumer issues rather than business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "vague", "text": "looking into consumer issues recalls options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "need business and finance business consumer issues recalls, not business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "discovery", "text": "top business executive leadership and management"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "business and finance business executive leadership and management"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "executive leadership and management business basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Government Business", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business government business instead of business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Government Business", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business government business instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Government Business", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching government business, not business administration"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Green Solutions", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching green solution, not business administration"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "green solutions in business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "discovery", "text": "best business and finance green solutions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "what is business and finance business human resources"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Human Resources", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business human resources instead of business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "discovery", "text": "top business human resources options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "discovery", "text": "best business and finance business large business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "what is business and finance business large business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "what is large business business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "learn about business and finance business logistics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Logistics", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need logistic, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "discovery", "text": "best business and finance logistics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Marketing and Advertising", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need advertising platforms, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "advertising platforms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "vague", "text": "help me choose marketing and advertising in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Sales", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need business sales, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Sales", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "need business and finance business sales, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "crm software basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "discovery", "text": "best business small and medium-sized business options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "business and finance business small and medium-sized business overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "learn about business small and medium-sized business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Startups", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for startup instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "discovery", "text": "top startups business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Startups", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "researching startup, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "compare business and finance economy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "economy business and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "business and finance economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "learn about economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "business and finance economy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "what is economy business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "what is commodities in economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "discovery", "text": "top commodities in economy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Commodities", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "commodities rather than business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "what is economy currencies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "business and finance economy currencies overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "discovery", "text": "compare currency"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "discovery", "text": "best financial crisis in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "discovery", "text": "top economy financial crisis"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "vague", "text": "exploring financial crisis in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "what is economy financial reform"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "business and finance economy financial reform basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "how does business and finance economy financial reform work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "economy financial regulation guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "how does financial regulation in economy work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "business and finance economy financial regulation basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "discovery", "text": "best gasoline price"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "discovery", "text": "top business and finance economy gasoline prices"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "discovery", "text": "top gasoline prices in economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "discovery", "text": "best economy housing market options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "how does business and finance economy housing market work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "housing market basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Interest Rates", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "economy interest rates rather than currencies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "vague", "text": "exploring business and finance interest rates"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "interest rate overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "vague", "text": "looking into business and finance job market"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Job Market", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "need job market, not financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "discovery", "text": "business and finance economy job market options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "how does business and finance industries options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "how does industries in business and finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "how does business and finance industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "compare industries business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "what is industries business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "compare industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "discovery", "text": "best advertising industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Advertising Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for advertising industry industries instead of agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "business and finance advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "discovery", "text": "which industries agriculture is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "business and finance industries agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "vague", "text": "need advice about industries agriculture options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "vague", "text": "help me choose industries apparel industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Apparel Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for apparel industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "how does apparel industry industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "discovery", "text": "compare automotive industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "what is industries automotive industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "learn about industries automotive industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Aviation Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "researching aviation industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "aviation industry industries overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "vague", "text": "looking into business and finance aviation industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need biotech and biomedical industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "business and finance industries biotech and biomedical industry guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance industries biotech and biomedical industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance industries civil engineering industry instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "civil engineering industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "discovery", "text": "best civil engineering industry industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Construction Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching construction industry industries, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Construction Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for construction industry instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Construction Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance industries construction industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Defense Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need business and finance industries defense industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "discovery", "text": "compare defense industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "learn about industries defense industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "business and finance industries education industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "discovery", "text": "best industries education industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "vague", "text": "exploring business and finance education industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "discovery", "text": "compare business and finance entertainment industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "entertainment industry guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Entertainment Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "entertainment industry industries rather than advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching environmental services industry industries, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need business and finance industries environmental services industry, not advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need environmental services industry industries, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "how does financial industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "vague", "text": "need advice about financial industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Financial Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching financial industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "what is industries food industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Food Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching food industry industries, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "vague", "text": "exploring business and finance food industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Healthcare Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "healthcare industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Healthcare Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need healthcare industry, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "learn about industries healthcare industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "hospitality industry in industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Hospitality Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for business and finance industries hospitality industry instead of agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Hospitality Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching business and finance industries hospitality industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Information Services Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "industries information services industry rather than business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "discovery", "text": "best industries information services industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Information Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "industries information services industry rather than agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "discovery", "text": "compare industries legal services industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Legal Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching business and finance industries legal services industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "discovery", "text": "best legal services industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "business and finance industries logistics and transportation industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "what is industries logistics and transportation industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need industries logistics and transportation industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "business and finance management consulting industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "discovery", "text": "compare management consulting industry industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "industries management consulting industry rather than advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "how does business and finance manufacturing industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "industries manufacturing industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "manufacturing industry rather than agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "discovery", "text": "compare mechanical and industrial engineering industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "learn about mechanical and industrial engineering industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "vague", "text": "help me choose industries mechanical and industrial engineering industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "media industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "discovery", "text": "top media industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "industries media industry options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Metals Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for industries metals industry instead of apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "discovery", "text": "compare business and finance industries metals industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "vague", "text": "exploring industries metals industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "researching industries non-profit organizations, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "non-profit organizations industries overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "how does business and finance non-profit organizations work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance industries pharmaceutical industry instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "how does business and finance industries pharmaceutical industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "discovery", "text": "which pharmaceutical industry industries is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "industries power and energy industry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "vague", "text": "need advice about industries power and energy industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need business and finance industries power and energy industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "discovery", "text": "compare business and finance publishing industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Publishing Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "publishing industry rather than apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "discovery", "text": "top publishing industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "vague", "text": "looking into industries real estate industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "what is real estate industry industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Real Estate Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for real estate industry instead of apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Retail Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "industries retail industry rather than advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "discovery", "text": "industries retail industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "business and finance industries retail industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Technology Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for technology industry instead of apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "discovery", "text": "best technology industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "industries technology industry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "how does industries telecommunications industry options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "discovery", "text": "compare telecommunications industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "discovery", "text": "top telecommunications industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "which careers is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching careers, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "careers rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "exploring careers options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching career, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "what is careers options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for career instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "career options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "careers overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "reserve career"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "top careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "which apprenticeships careers is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Apprenticeships", "negative_iab_path": "Careers > Career Advice", "prompt_family": "contrastive", "text": "need apprenticeships careers, not career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "careers apprenticeships overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Apprenticeships", "negative_iab_path": "Careers > Vocational Training", "prompt_family": "contrastive", "text": "researching apprenticeship, not vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "which apprenticeship is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Apprenticeships", "negative_iab_path": "Careers > Remote Working", "prompt_family": "contrastive", "text": "need careers apprenticeships, not remote working"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Advice", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "career advice careers rather than apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "learn about careers career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "career advice careers overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "action", "text": "reserve career advice careers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Advice", "negative_iab_path": "Careers > Vocational Training", "prompt_family": "contrastive", "text": "looking for career advice instead of vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "career advice guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "career planning careers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "compare career planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "what is career planning careers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Planning", "negative_iab_path": "Careers > Remote Working", "prompt_family": "contrastive", "text": "career planning careers rather than remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "how does career planning work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "how does career planning in careers work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "vague", "text": "need advice about careers job search options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Job Search", "negative_iab_path": "Careers > Career Advice", "prompt_family": "contrastive", "text": "researching job search, not career advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "vague", "text": "looking into careers job search options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "how does job search work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "how does careers job search options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "vague", "text": "exploring job search in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "what is careers job search job fairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "job fairs job search overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "job fair guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "resume writing and advice overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "learn about careers job search resume writing and advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "job search resume writing and advice overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "remote working careers overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "careers remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "best remote working"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Remote Working", "negative_iab_path": "Careers > Job Search", "prompt_family": "contrastive", "text": "careers remote working rather than job search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "best remote working in careers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Remote Working", "negative_iab_path": "Careers > Career Planning", "prompt_family": "contrastive", "text": "looking for remote working instead of career planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Vocational Training", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "looking for vocational training instead of apprenticeships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Vocational Training", "negative_iab_path": "Careers > Job Search", "prompt_family": "contrastive", "text": "vocational training rather than job search"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Vocational Training", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "need vocational training careers, not apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "top careers vocational training"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Vocational Training", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "careers vocational training rather than apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "action", "text": "reserve careers vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "discovery", "text": "communication options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "alias", "text": "how does communication computer software and applications work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "crime basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "what is crime"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need crime, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "how does crime work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "discovery", "text": "crime options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for disasters instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need disasters, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "looking into disasters options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching disaster, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "disaster rather than books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "what is disasters options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "top disasters"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "disaster rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need disaster, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "exploring school guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is school guidance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "exploring education options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "need advice about education options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching education, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "best study options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "looking into education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "exploring student advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for education instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "help me choose school guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "education rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching education, not automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "need adult education, not homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "adult education guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "researching adult education education, not educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "need education adult education, not homeschooling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "adult education rather than homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "need adult education, not college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "looking for college education instead of homeschooling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "need college education education, not early childhood education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "vague", "text": "looking into college education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "compare college education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "education college education basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "researching education college education, not early childhood education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "vague", "text": "need advice about college education college planning options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "vague", "text": "help me choose college planning in college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "discovery", "text": "best college education college planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "discovery", "text": "best postgraduate education in college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "discovery", "text": "top masters degree"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "discovery", "text": "compare universities for masters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "discovery", "text": "top professional school postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "discovery", "text": "which postgraduate education professional school is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Undergraduate Education", "negative_iab_path": "Education > College Education > College Planning", "prompt_family": "contrastive", "text": "undergraduate education rather than college planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Undergraduate Education", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "looking for undergraduate education instead of postgraduate education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "how does undergraduate education in college education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "early childhood education education guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "looking for education early childhood education instead of homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "top early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "how does early childhood education education work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "early childhood education education rather than homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "early childhood education education basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "looking for education educational assessment instead of early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "educational assessment rather than language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "what is educational assessment education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "what is education educational assessment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "compare education educational assessment options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "need educational assessment, not homework and study"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > Educational Assessment > Standardized Testing", "negative_iab_path": "Education > College Education > College Planning", "prompt_family": "contrastive", "text": "standardized testing rather than college planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "what is educational assessment standardized testing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > Educational Assessment > Standardized Testing", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "need educational assessment standardized testing, not postgraduate education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "education homeschooling rather than language learning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need education homeschooling, not adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "homeschooling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "education homeschooling basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "top education homeschooling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "researching homeschooling education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "researching education homework and study, not college education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "how does education homework and study options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "homework and study rather than language learning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "top homework and study in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "education homework and study basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "which homework and study education is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "best language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "looking for language learning instead of homework and study"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "vague", "text": "need advice about language learning in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning in education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "compare education online education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "compare online education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "learn about online education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "how does online education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "education online education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "looking for online education education instead of adult education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "vague", "text": "exploring education primary education options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "primary education rather than homeschooling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "education primary education rather than early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "primary education education rather than educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "researching education primary education, not homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "best primary education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "private school education rather than educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "researching private school, not homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "how does education private school work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "top education private school options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "looking for private school instead of early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "compare private school education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "learn about secondary education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need education secondary education, not adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "which secondary education education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "secondary education in education guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "education secondary education rather than early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "looking for education secondary education instead of early childhood education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "vague", "text": "help me choose education special education options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "special education rather than adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "need special education education, not college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "looking for special education education instead of adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "how does special education education work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "special education rather than homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "need advice about watch tonight"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "how does film picks work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "looking into watch tonight"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "compare entertainment ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "entertainment ideas guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "top movies to watch"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "need advice about entertainment guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is entertainment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "looking into entertainment ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is entertainment"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "need advice about entertainment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "how does entertainment ideas work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "exploring entertainment guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "movies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "vague", "text": "looking into film recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "best cinema picks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "looking for entertainment movies instead of television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "film recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "compare cinema picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "what is music in entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "vague", "text": "exploring music in entertainment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "compare music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "compare entertainment music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "top entertainment music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "music overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "what is entertainment television options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "looking for entertainment television instead of movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "entertainment television overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "best entertainment television options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "how does entertainment television options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "compare television in entertainment"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "events rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "what is events"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching event, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "event rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching event, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "compare event"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "event overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "exploring events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "awards shows overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "what is awards shows in events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "looking for events awards shows instead of business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "events awards shows"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "events awards shows rather than fan conventions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "looking for awards show instead of fan conventions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "business expos and conferences events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "how does business expos and conferences work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "researching business expos and conferences events, not awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "learn about business expos & conference"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "learn about business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "which business expos and conferences is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "how does events fan conventions options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "fan conventions rather than business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "compare events fan conventions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "best fan convention"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "events fan conventions rather than awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "top fan conventions events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "how does parenting help work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "family and relationship options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "looking into family advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "need advice about family and relationships guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for family and relationship instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "family and relationships rather than books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is family and relationships guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "family and relationship rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need family and relationships, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is relationship guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "top raising kids"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is parenting help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching family and relationship, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "help me choose parenting help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "learn about family and relationships"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching family and relationships, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "looking into parenting help"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "looking for bereavement instead of dating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "top bereavement family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "family and relationships bereavement rather than parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "how does family and relationships bereavement options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "need bereavement family and relationships, not dating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "researching bereavement, not divorce"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "need dating family and relationships, not parenting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "looking for family and relationships dating instead of parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "what is dating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "dating rather than bereavement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "researching dating family and relationships, not bereavement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "need dating, not single life"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "divorce rather than marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "divorce rather than single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "vague", "text": "exploring divorce in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "best divorce family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "need family and relationships divorce, not single life"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "need divorce, not eldercare"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Eldercare", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "looking for eldercare family and relationships instead of single life"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "action", "text": "book eldercare family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Eldercare", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "looking for family and relationships eldercare instead of marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Eldercare", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "family and relationships eldercare rather than single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "vague", "text": "looking into family and relationships eldercare options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "action", "text": "find eldercare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "how does marriage and civil unions in family and relationships work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "marriage and civil unions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "compare marriage and civil unions in family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "marriage and civil unions family and relationships rather than divorce"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "top family and relationships marriage and civil unions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "best family and relationships marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "researching parenting advice, not marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "what is toddler parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "toddler parenting basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "vague", "text": "exploring parenting in family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "researching parenting advice, not bereavement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "need family and relationships parenting, not dating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "preschool parenting overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "discovery", "text": "compare family and relationships parenting adoption and fostering"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "parenting advice basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "action", "text": "reserve preschool parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "how does parenting daycare and pre-school work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "discovery", "text": "top daycare and pre-school parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "best internet safety"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "top internet safety in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "toddler parenting guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "negative_iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "contrastive", "text": "need family and relationships parenting parenting babies and toddlers, not adoption and fostering"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "discovery", "text": "compare family and relationships parenting babies and toddlers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "negative_iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "contrastive", "text": "family and relationships parenting parenting babies and toddlers rather than daycare and pre-school"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "looking for family and relationships parenting parenting children aged 4-11 instead of internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "parenting children aged 4-11 parenting basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "negative_iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "contrastive", "text": "looking for family and relationships parenting parenting children aged 4-11 instead of adoption and fostering"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "top preschool parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "vague", "text": "need advice about family and relationships parenting teens"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "parenting teens"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "vague", "text": "exploring parenting special needs kids options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "special needs kids parenting overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "special needs kids guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "top single life in family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "looking for single life family and relationships instead of parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "what is single life"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "single life family and relationships rather than eldercare"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "looking for single life family and relationships instead of divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "family and relationships single life overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "what is fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "learn about fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "discovery", "text": "best fine art"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need fine art, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "exploring fine art guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "costume fine art rather than dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "fine art costume"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "vague", "text": "looking into costume in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "researching costume, not digital arts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "fine art costume rather than opera"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "vague", "text": "need advice about fine art costume options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "top dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "need dance, not opera"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "dance in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "need fine art dance, not digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "fine art dance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "how does fine art dance options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "top design in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "need design, not dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "fine art design options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "researching design fine art, not opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "which fine art design is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "fine art design rather than fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "compare digital arts fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "need fine art digital arts, not opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "learn about digital arts fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "researching digital arts fine art, not dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "digital art rather than costume"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "best fine art digital arts options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "looking for fine art photography instead of dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "looking for fine art fine art photography instead of costume"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "vague", "text": "help me choose fine art fine art photography options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "need fine art photography fine art, not costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "compare fine art photography fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "how does fine art fine art photography options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "need fine art modern art, not design"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "how does modern art in fine art work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "need fine art modern art, not opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "researching modern art, not costume"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "vague", "text": "exploring fine art modern art options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "looking for fine art modern art instead of fine art photography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "need opera, not design"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "fine art opera rather than dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "need opera fine art, not fine art photography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "looking for fine art opera instead of dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "researching opera fine art, not design"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "need fine art opera, not design"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "theater fine art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "compare fine art theater options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "vague", "text": "need advice about theater in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "researching fine art theater, not costume"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "theater rather than dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "need theater, not modern art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "looking into food recommendations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need food and drink, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "top food & drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "learn about food and drink"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need food & drink, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "best places to eat"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "exploring food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "food & drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "top food recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "exploring places to eat"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for food and drink instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is food recommendations"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "help me choose food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "how does drinks to try work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "places to eat guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching food and drink, not automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "need food and drink alcoholic beverages, not cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "looking for food and drink alcoholic beverages instead of food movements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "whiskey cocktails overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "best vodka drinks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "alcoholic beverages basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "need alcoholic beverage, not food movements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "food and drink barbecues and grilling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "food and drink barbecues and grilling rather than food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "food and drink barbecues and grilling options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "researching barbecues and grilling food and drink, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "learn about barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "need barbecues and grilling food and drink, not food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "researching cooking food and drink, not food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching food and drink cooking, not barbecues and grilling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "cooking in food and drink guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "looking for cooking food and drink instead of food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for food and drink cooking instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "cooking rather than dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "looking for food and drink desserts and baking instead of food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching food and drink desserts and baking, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "vague", "text": "help me choose desserts and baking in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking food and drink basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "researching desserts and baking food and drink, not dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "restaurant booking basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Dining Out", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "looking for dining out food and drink instead of alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "best restaurant booking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Dining Out", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "looking for places to eat instead of food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "what is dining out in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "vague", "text": "need advice about dining out in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "compare food and drink food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "best food allergies in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "which food allergies is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "food allergy rather than cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "food allergy rather than dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "food and drink food allergies rather than cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "what is food and drink food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "food movements rather than barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "need food and drink food movements, not dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "learn about food movement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "looking for food movement instead of food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "researching food movement, not dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "healthy cooking and eating food and drink options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for healthy cooking and eating instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "how does healthy cooking and eating work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "healthy cooking and eating food and drink rather than alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "how does healthy cooking and eating food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "which healthy cooking and eating food and drink is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "looking for non-alcoholic beverages instead of barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "non-alcoholic beverages rather than food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "compare non-alcoholic beverages in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "best non-alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "need non-alcoholic beverages food and drink, not food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "need non-alcoholic beverages, not dining out"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "top vegan diets in food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching vegan diet, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "looking for food and drink vegan diets instead of food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "vegan diets food and drink rather than alcoholic beverages"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "top food and drink vegan diets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "learn about vegan diets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching vegetarian diets food and drink, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "best vegetarian diets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "need food and drink vegetarian diets, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "vegetarian diet rather than barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "food and drink vegetarian diets rather than barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "which vegetarian diet is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching food and drink world cuisines, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "researching world cuisines, not food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "researching world cuisine, not food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "researching food and drink world cuisines, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "top world cuisines food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "world cuisines rather than cooking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching genres, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "exploring genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genre"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "top genre"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "exploring genres guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "genre rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "genres rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genre basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching genre, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "nature in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching nature genres, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "genres nature rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "nature genres rather than comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for genres nature instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "nature rather than biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for genres action/adventure instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for genres action/adventure instead of documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "learn about action/adventure genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching action/adventure, not animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "best action/adventure in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "best genres action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "need genres animation and anime, not factual"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "researching animation and anime genres, not factual"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for animation and anime instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for animation and anime instead of biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for animation and anime genres instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need animation and anime genres, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biographies overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biographies in genres guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching biography, not comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biography basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "compare genres biographies options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "biographies genres rather than animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "comedy basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "best genres comedy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "comedy genres rather than factual"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "what is genres comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for comedy genres instead of documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "what is genres documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "genres documentary rather than biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "top documentary genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for genres documentary instead of comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "genres documentary options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for documentary instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for drama genres instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "drama rather than biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "researching drama genres, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching drama genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need drama genres, not animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "how does drama in genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "genres factual rather than action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "how does genres factual options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "vague", "text": "looking into genres factual options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "learn about factual genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for genres factual instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for factual instead of drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "what is family/children in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "genres family/children rather than animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "genres family/children options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need genres family/children, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for genres family/children instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "family/children options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "genres fantasy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "fantasy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching fantasy genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need fantasy, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need genres fantasy, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching genres fantasy, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "genres history rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching history genres, not documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "genres history rather than comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need history, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "learn about history"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "holiday genres overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching holiday, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for holiday genres instead of biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "genres holiday rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "genres holiday overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need genres holiday, not comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need horror, not action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "vague", "text": "need advice about genres horror options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching horror, not documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching horror, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "horror rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "horror genres rather than animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "genres lifestyle options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "lifestyle overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "lifestyle guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "genres lifestyle rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for lifestyle genres instead of action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "vague", "text": "exploring genres lifestyle options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching genres music video, not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "top music video genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "music video rather than documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need music video, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for music video genres instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for genres music video instead of documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "vague", "text": "exploring genres musical options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "musicals rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "which musical is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "learn about musical genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "vague", "text": "looking into genres musical options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "top genres musical"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for genres mystery instead of biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching genres mystery, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for mystery instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "genres mystery rather than biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "how does mystery genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for mystery genres instead of drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "learn about genres reality tv"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "genres reality tv guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need reality tv genres, not comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need genres reality tv, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching reality tv genres, not documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for genres reality tv instead of documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "which romance is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching romance genres, not drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "best genres romance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "romance genres rather than comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "genres romance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for romance genres instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching genres science fiction, not drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "science fiction genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "vague", "text": "exploring genres science fiction options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "compare science fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "which science fiction is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "science fiction genres rather than documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "how does soap opera genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "soap opera rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "soap opera genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "compare genres soap opera options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "how does genres soap opera options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "top genres soap opera options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching special interest (indie/art house) genres, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "compare special interest (indie/art house) genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need genres special interest (indie/art house), not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for genres special interest (indie/art house) instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "special interest (indie/art house) rather than biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching special interest (indie/art house), not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching genres sports radio, not biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "vague", "text": "help me choose genres sports radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "which sports radio is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "researching sports radio genres, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching sports radio genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need sports radio genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need talk radio genres, not drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "talk radio in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching talk radio genres, not comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "top genres talk radio"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need talk radio, not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "how does talk radio genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "vague", "text": "help me choose genres public radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "vague", "text": "exploring genres public radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "how does talk radio public radio options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for talk show instead of drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "learn about talk show"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "learn about talk show genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "talk show genres rather than comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need talk show genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "genres talk show options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need genres true crime, not comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "what is true crime in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "true crime genres rather than documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "compare genres true crime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "how does genres true crime options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "vague", "text": "need advice about true crime in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "western genres rather than comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "western in genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "genres western options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "vague", "text": "need advice about western in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "genres western options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need genres western, not action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "vague", "text": "need advice about genres young adult options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need genres young adult, not documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need young adult genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for genres young adult instead of biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "vague", "text": "exploring genres young adult options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "compare young adult in genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for healthy living instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "healthy living rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is healthy habits"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for healthy living instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need healthy living, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "exploring healthy habits"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "compare healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "how does healthy living work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "need advice about healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching healthy living, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "top healthy habits"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "children's health healthy living rather than fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "looking for children's health healthy living instead of wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "looking for children's health instead of wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "best healthy living children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "researching healthy living children's health, not wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "best children's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "vague", "text": "exploring healthy living fitness and exercise options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "vague", "text": "need advice about fitness and exercise in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "need fitness and exercise healthy living, not senior health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "need healthy living fitness and exercise, not children's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "best fitness and exercise in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "vague", "text": "exploring fitness and exercise in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "discovery", "text": "best fitness and exercise participant sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "discovery", "text": "fitness and exercise participant sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "discovery", "text": "compare participant sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "discovery", "text": "best fitness and exercise running and jogging"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "what is running plan"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "fitness and exercise running and jogging basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "looking for healthy living men's health instead of senior health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "need healthy living men's health, not children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "researching men's health, not children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "need healthy living men's health, not nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "healthy living men's health rather than nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "researching healthy living men's health, not nutrition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "healthy living nutrition overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "researching nutrition healthy living, not senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "nutrition healthy living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "compare healthy living nutrition options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "nutrition healthy living rather than children's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "researching senior health, not weight loss"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "need senior health healthy living, not fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "senior health rather than fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "need senior health, not wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "best healthy living senior health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "vague", "text": "looking into healthy living senior health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "vague", "text": "help me choose healthy living weight loss options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "learn about weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "top weight loss"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "researching weight loss, not men's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "best healthy living weight loss options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "weight loss rather than nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "need wellness, not weight loss"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "healthy living wellness rather than fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "looking for wellness instead of children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "healthy living wellness rather than senior health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "need healthy living wellness, not men's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "wellness rather than fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "discovery", "text": "best healthy living wellness alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "negative_iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "contrastive", "text": "researching alternative medicine, not physical therapy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "what is healthy living alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "alias", "text": "alternative medicine herbs and supplements options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "discovery", "text": "compare alternative medicine herbs and supplements options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "discovery", "text": "compare holistic health alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "contrastive", "text": "healthy living wellness alternative medicine holistic health rather than herbs and supplements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "compare physical therapy wellness"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Physical Therapy", "negative_iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "contrastive", "text": "looking for physical therapy wellness instead of smoking cessation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "which physical therapy is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "contrastive", "text": "healthy living wellness smoking cessation rather than alternative medicine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "smoking cessation overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "discovery", "text": "compare smoking cessation in wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "researching women's health healthy living, not men's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "looking for healthy living women's health instead of nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "need women's health healthy living, not nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "women's health rather than weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "which women's health healthy living is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "women's health healthy living rather than men's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "learn about hobbies & interest"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "hobbies and interests options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching hobbies & interest, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "compare hobbies & interest"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "compare hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for hobbies & interest instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "which hobbies and interests is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "best hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "antiquing and antique options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "top antiquing and antiques in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "antiquing and antiques basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "antiquing and antiques"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "vague", "text": "help me choose hobbies and interests antiquing and antiques options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "hobbies and interests antiquing and antiques rather than content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "researching arts and crafts hobbies and interests, not content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "looking for arts and craft instead of beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need arts and crafts, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "arts and crafts rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "arts and crafts rather than content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "arts and craft rather than content production"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "contrastive", "text": "need beadwork, not jewelry making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "what is beadwork arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "discovery", "text": "compare arts and crafts beadwork options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "learn about arts and crafts candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "discovery", "text": "which arts and crafts candle and soap making is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "vague", "text": "need advice about candle and soap making in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "contrastive", "text": "researching drawing and sketching, not jewelry making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "discovery", "text": "top drawing and sketching in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "arts and crafts drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "discovery", "text": "which jewelry making is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "researching jewelry making, not drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "researching arts and crafts jewelry making, not candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "discovery", "text": "top hobbies and interests arts and crafts needlework"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "arts and crafts needlework rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "discovery", "text": "compare arts and crafts needlework options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "discovery", "text": "top painting arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "discovery", "text": "hobbies and interests arts and crafts painting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "vague", "text": "exploring painting in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "arts and crafts photography rather than drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "photography rather than drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "discovery", "text": "top photography in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "scrapbooking guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "looking for arts and crafts scrapbooking instead of candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "scrapbooking in arts and crafts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "arts and crafts woodworking basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "top woodworking arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "hobbies and interests arts and crafts woodworking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for beekeeping hobbies and interests instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "which hobbies and interests beekeeping is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "compare beekeeping in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "researching hobbies and interests beekeeping, not collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "looking for beekeeping instead of content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "hobbies and interests beekeeping rather than collecting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "best birdwatching in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "hobbies and interests birdwatching rather than arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "hobbies and interests birdwatching options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "looking for birdwatching instead of collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need birdwatching, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "best birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching cigar, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "best cigars hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need cigar, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "looking for hobbies and interests cigars instead of content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "cigars options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "cigars rather than arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "best collecting in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching collecting hobbies and interests, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "collecting hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "need collecting hobbies and interests, not antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "researching hobbies and interests collecting, not content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for collecting hobbies and interests instead of antiquing and antiques"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "vague", "text": "need advice about hobbies and interests comic books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "what is hobbies and interests comic books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "discovery", "text": "top hobbies and interests comic books"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "learn about hobbies and interests collecting stamps and coins"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "hobbies and interests collecting stamps and coins rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "vague", "text": "need advice about hobbies and interests stamps and coins"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "compare content production in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "researching hobbies and interests content production, not antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need content production, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "content production overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching content production hobbies and interests, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "looking for content production hobbies and interests instead of collecting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "negative_iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "contrastive", "text": "audio production content production rather than freelance writing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "need audio production content production, not beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "discovery", "text": "audio production options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "vague", "text": "exploring freelance writing in content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "discovery", "text": "which hobbies and interests content production freelance writing is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "researching freelance writing, not beadwork"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "vague", "text": "help me choose hobbies and interests screenwriting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "negative_iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "contrastive", "text": "researching content production screenwriting, not audio production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "vague", "text": "help me choose screenwriting in content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "video production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "content production video production overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Video Production", "negative_iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "contrastive", "text": "need hobbies and interests content production video production, not audio production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "games and puzzle rather than cigars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "games and puzzle overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "which games and puzzles is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "hobbies and interests games and puzzles overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "games and puzzle basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "hobbies and interests games and puzzles rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "board games and puzzle overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "discovery", "text": "which board games and puzzles games and puzzles is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "vague", "text": "need advice about hobbies and interests board games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "card game overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "negative_iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "contrastive", "text": "looking for card games games and puzzles instead of board games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "card games games and puzzles rather than candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "negative_iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "contrastive", "text": "looking for games and puzzles roleplaying games instead of board games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "vague", "text": "exploring hobbies and interests roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "top genealogy and ancestry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "vague", "text": "exploring hobbies and interests genealogy and ancestry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "vague", "text": "exploring genealogy and ancestry in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "genealogy and ancestry hobbies and interests rather than collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching hobbies and interests genealogy and ancestry, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need genealogy and ancestry, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "top hobbies and interests magic and illusion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "best magic and illusion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "looking for magic and illusion instead of collecting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "which magic and illusion is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching magic and illusion hobbies and interests, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need hobbies and interests model toys, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching model toy, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "looking for model toys instead of beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "how does model toys in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "model toys rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "hobbies and interests model toys rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instrument basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "top hobbies and interests musical instruments options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "musical instruments rather than collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for musical instruments instead of birdwatching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "what is musical instruments in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "researching hobbies and interests musical instruments, not collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "looking for hobbies and interests paranormal phenomena instead of beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for paranormal phenomena instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "compare paranormal phenomena hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "what is paranormal phenomena in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "compare paranormal phenomena in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching hobbies and interests paranormal phenomena, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "need radio control, not cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "radio control rather than arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need radio control, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "hobbies and interests radio control options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for radio control instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "radio control hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "sci-fi and fantasy rather than cigars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "sci-fi and fantasy guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need sci-fi and fantasy, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "looking for sci-fi and fantasy instead of arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for hobbies and interests sci-fi and fantasy instead of birdwatching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "top hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "which workshops and classes hobbies and interests is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need workshops and classes, not collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need workshops and classes hobbies and interests, not collecting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "vague", "text": "need advice about workshops and classes in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "what is workshops and classes hobbies and interests"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "exploring holidays options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "need advice about holidays guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need holiday, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching holidays, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching holidays, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holiday basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holidays"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "need advice about holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "holiday options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "vague", "text": "exploring holidays national and civic holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "best national and civic holidays holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national and civic holidays holidays basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "holidays national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "top national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "which national and civic holidays is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "compare home & garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "how does home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching home & garden, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "home & garden rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "need advice about garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "garden advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "exploring home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "which home and garden is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "how does home & garden work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need home and garden, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need home and garden, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home and garden overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "need advice about home and garden options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for home and garden instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "looking into house updates"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "help me choose home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "vague", "text": "help me choose balcony garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "vague", "text": "exploring home and garden gardening options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "plant care overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "need backyard garden, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "plant care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "gardening home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "researching home appliance, not home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "looking for home appliance instead of indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "best home appliances home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "home appliance rather than interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home appliances basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "researching home appliances, not home security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "best home entertaining in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "looking for home entertaining home and garden instead of interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "which home entertaining is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home entertaining home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "need home entertaining home and garden, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "home entertaining home and garden options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "researching home and garden home improvement, not home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "home improvement home and garden rather than home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "researching home and garden home improvement, not home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "looking for home improvement home and garden instead of indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "researching home improvement, not indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "vague", "text": "help me choose home improvement in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "what is home and garden home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home security home and garden basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "researching home security home and garden, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home and garden home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "home security rather than indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "vague", "text": "looking into home security in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "indoor environmental quality home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "researching home and garden indoor environmental quality, not interior decorating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching home and garden indoor environmental quality, not gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "which indoor environmental quality home and garden is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "vague", "text": "help me choose indoor environmental quality in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "need home and garden indoor environmental quality, not home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "need home and garden interior decorating, not home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "need home and garden interior decorating, not home improvement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "interior decorating home and garden rather than home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "how does interior decorating home and garden work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "looking for interior decorating instead of gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "learn about home and garden interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "compare landscaping home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "vague", "text": "help me choose home and garden landscaping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "top landscaping in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "which landscaping home and garden is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "compare home and garden landscaping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "looking for landscaping instead of home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "researching home and garden outdoor decorating, not home improvement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "how does home and garden outdoor decorating options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "vague", "text": "need advice about outdoor decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "looking for outdoor decorating home and garden instead of home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "outdoor decorating home and garden rather than home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "outdoor decorating in home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "learn about remodeling and construction home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "need remodeling and construction, not gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "what is remodeling & construction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "looking for remodeling and construction home and garden instead of home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "looking for remodeling and construction instead of home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "how does remodeling & construction work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "which smart home home and garden is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "top smart home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "smart home home and garden overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "need home and garden smart home, not home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "looking for home and garden smart home instead of home improvement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "smart home rather than home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "discovery", "text": "law options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "help me choose law guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "law guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "law"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for law instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "discovery", "text": "maps & navigation options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "contrastive", "text": "maps and navigation rather than antivirus software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "top medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "top doctor guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "need advice about symptom help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "best medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "symptom help guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "health questions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "exploring medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "looking into health questions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "need advice about medical health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "medical health overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "need advice about health questions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "symptom help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need medical health, not attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "researching medical health cosmetic medical services, not diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "looking for cosmetic medical services medical health instead of diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "vague", "text": "need advice about medical health cosmetic medical services options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching cosmetic medical service, not vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "top cosmetic medical services in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "medical health cosmetic medical services options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "how does medical health diseases and conditions options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "looking for diseases and conditions medical health instead of surgery"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions, not medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "contrastive", "text": "looking for diseases and condition instead of pharmaceutical drugs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "diseases and condition rather than medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "researching diseases and conditions medical health, not cosmetic medical services"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "negative_iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "contrastive", "text": "need allergies, not brain and nervous system disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "allergies in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "allergy guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "contrastive", "text": "looking for blood disorder instead of brain and nervous system disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "discovery", "text": "top blood disorders in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "diseases and conditions blood disorders overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "learn about bone and joint conditions diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "medical health diseases and conditions bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "learn about bone and joint condition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "how does brain and nervous system disorders diseases and conditions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "vague", "text": "help me choose diseases and conditions brain and nervous system disorders options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for brain and nervous system disorders instead of bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "discovery", "text": "which cancer diseases and conditions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "discovery", "text": "top medical health diseases and conditions cancer"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "what is cancer diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need diseases and conditions cold and flu, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "discovery", "text": "which cold and flu diseases and conditions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "discovery", "text": "which diseases and conditions cold and flu is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "dental health rather than bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "vague", "text": "need advice about medical health dental health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need diseases and conditions dental health, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "discovery", "text": "best diseases and conditions diabetes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "discovery", "text": "top diabetes"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need diabetes, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "discovery", "text": "best digestive disorder"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need digestive disorders, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need digestive disorder, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "ear, nose and throat conditions in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "medical health diseases and conditions ear, nose and throat conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "how does ear, nose and throat condition work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "discovery", "text": "compare endocrine and metabolic diseases in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "endocrine and metabolic diseases diseases and conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "what is endocrine and metabolic diseases diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "discovery", "text": "top endocrine and metabolic diseases hormonal disorders options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "medical health diseases and conditions endocrine and metabolic diseases hormonal disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "alias", "text": "endocrine and metabolic diseases menopause guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "discovery", "text": "compare endocrine and metabolic diseases menopause options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "contrastive", "text": "endocrine and metabolic diseases thyroid disorders rather than menopause"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "alias", "text": "how does thyroid disorders endocrine and metabolic diseases work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "vague", "text": "looking into medical health eye and vision conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "discovery", "text": "best eye and vision conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "discovery", "text": "compare medical health diseases and conditions eye and vision conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "learn about foot health diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "how does diseases and conditions foot health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "foot health diseases and conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "heart and cardiovascular disease basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "discovery", "text": "which heart and cardiovascular diseases is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "action", "text": "buy heart and cardiovascular diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "infectious disease"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "diseases and conditions infectious diseases guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "vague", "text": "looking into infectious diseases in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching injuries, not allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "injury basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for injuries instead of bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "how does injuries first aid work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "medical health diseases and conditions injuries first aid basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "lung and respiratory health in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "diseases and conditions lung and respiratory health overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "researching lung and respiratory health diseases and conditions, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "discovery", "text": "compare medical health mental health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions mental health, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "how does mental health in diseases and conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "how does reproductive health diseases and conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "discovery", "text": "top medical health diseases and conditions reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "how does medical health diseases and conditions reproductive health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "alias", "text": "learn about reproductive health birth control"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "vague", "text": "help me choose medical health birth control"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "negative_iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "contrastive", "text": "medical health diseases and conditions reproductive health infertility rather than pregnancy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "vague", "text": "looking into infertility in reproductive health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "negative_iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "contrastive", "text": "researching pregnancy, not infertility"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "alias", "text": "what is pregnancy in reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "discovery", "text": "sexual health options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "sexual health rather than allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions sexual health, not allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "alias", "text": "sexual conditions sexual health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "alias", "text": "how does sexual health sexual conditions options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "learn about diseases and conditions skin and dermatology"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need medical health diseases and conditions skin and dermatology, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "vague", "text": "exploring medical health skin and dermatology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "vague", "text": "exploring medical health sleep disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "sleep disorder rather than bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "discovery", "text": "top medical health sleep disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "discovery", "text": "compare substance abuse in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "looking for diseases and conditions substance abuse instead of blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions substance abuse, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "researching medical test, not diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "vague", "text": "help me choose medical tests in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "best medical tests in medical health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "medical test rather than cosmetic medical services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "medical health medical tests options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "need medical tests, not surgery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "top pharmaceutical drugs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "looking for pharmaceutical drugs instead of surgery"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "researching pharmaceutical drugs, not cosmetic medical services"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "need pharmaceutical drugs medical health, not cosmetic medical services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "vague", "text": "exploring medical health pharmaceutical drugs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "what is pharmaceutical drugs medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "compare medical health surgery options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "how does surgery work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "surgery guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "researching medical health surgery, not medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching medical health surgery, not vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "compare surgery in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "which vaccines medical health is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "what is vaccines medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "learn about vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "researching vaccines, not surgery"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "need vaccines, not diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "compare vaccine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "discovery", "text": "top music adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "what is music adult album alternative options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "discovery", "text": "adult album alternative options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "music adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need entertainment music adult contemporary music, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "what is adult contemporary music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "negative_iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "contrastive", "text": "looking for adult contemporary music soft ac music instead of alternative rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "discovery", "text": "best adult contemporary music soft ac music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "alias", "text": "how does urban ac music in adult contemporary music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "discovery", "text": "best urban ac music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "discovery", "text": "compare music alternative music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "discovery", "text": "which alternative music is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "vague", "text": "exploring alternative music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "blues overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "vague", "text": "exploring blues in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "discovery", "text": "best blues music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "discovery", "text": "compare music children's music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Children's Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching entertainment music children's music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "discovery", "text": "top music children's music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "vague", "text": "looking into entertainment classic hits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "discovery", "text": "compare music classic hits options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classic Hits", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching classic hits, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "vague", "text": "looking into classical music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "vague", "text": "help me choose classical music in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classical Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need classical music music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "vague", "text": "help me choose college radio in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > College Radio", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need college radio music, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > College Radio", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for college radio instead of adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "entertainment music comedy (music and audio) rather than adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for comedy (music and audio) music instead of alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "learn about comedy (music and audio) music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "learn about contemporary hits/pop/top 40 music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "vague", "text": "exploring entertainment contemporary hits/pop/top 40"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "contemporary hits/pop/top 40 basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "discovery", "text": "top entertainment music country music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "discovery", "text": "compare country music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "vague", "text": "looking into music country music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "discovery", "text": "top dance and electronic music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Dance and Electronic Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need entertainment music dance and electronic music, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Dance and Electronic Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for dance and electronic music instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "gospel music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Gospel Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need gospel music, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Gospel Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "gospel music music rather than adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Hip Hop Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching entertainment music hip hop music, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "hip hop music in music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "what is hip hop music music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "discovery", "text": "entertainment music inspirational/new age music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "entertainment music inspirational/new age music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "vague", "text": "exploring entertainment inspirational/new age music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "discovery", "text": "top entertainment jazz"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "vague", "text": "help me choose music jazz options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Jazz", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching jazz music, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "music oldies/adult standards rather than alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "entertainment music oldies/adult standards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "discovery", "text": "top entertainment oldies/adult standards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "vague", "text": "need advice about music r and b/soul/funk options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "entertainment music r and b/soul/funk rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "r and b/soul/funk music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "music reggae guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "entertainment music reggae guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Reggae", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching reggae, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for religious (music and audio) instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "discovery", "text": "compare entertainment music religious (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "discovery", "text": "compare religious (music and audio) in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching rock music, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "entertainment music rock music rather than alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "vague", "text": "help me choose entertainment rock music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "alias", "text": "how does rock music album-oriented rock options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "alias", "text": "how does album-oriented rock work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "discovery", "text": "top entertainment music rock music alternative rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "entertainment music rock music alternative rock rather than album-oriented rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "looking for classic rock instead of album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "alias", "text": "classic rock basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "discovery", "text": "top entertainment hard rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "contrastive", "text": "researching hard rock rock music, not alternative rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "alias", "text": "entertainment soft rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "alias", "text": "what is soft rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "songwriters/folk overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "discovery", "text": "best music songwriters/folk"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "entertainment music songwriters/folk basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "discovery", "text": "entertainment music soundtracks, tv and showtunes options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "what is entertainment soundtracks, tv and showtunes"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need entertainment music soundtracks, tv and showtunes, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > World/International Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching world/international music, not adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "discovery", "text": "entertainment music world/international music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "vague", "text": "help me choose entertainment world/international music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Urban Contemporary Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need urban contemporary music, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Urban Contemporary Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for entertainment music urban contemporary music instead of adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Urban Contemporary Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need entertainment music urban contemporary music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "entertainment music variety (music and audio) rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "discovery", "text": "which music variety (music and audio) is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "how does music variety (music and audio) work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "help me choose personal celebrations and life events guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "exploring personal celebrations and life events guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching personal celebrations & life event, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need personal celebrations and life events, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need personal celebrations & life event, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "compare personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need personal celebrations & life event, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "which personal celebrations & life event is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "personal celebrations & life event rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "vague", "text": "exploring personal celebrations and life events anniversary options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "researching anniversary personal celebrations and life events, not bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "personal celebrations and life events anniversary rather than bachelorette party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "what is anniversary personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "need anniversary, not funeral"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "vague", "text": "need advice about personal celebrations and life events anniversary options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "how does personal celebrations and life events baby shower work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "need baby shower, not funeral"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "learn about baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "baby shower guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "looking for baby shower instead of bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "researching personal celebrations and life events baby shower, not funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "need bachelor party, not funeral"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "personal celebrations and life events bachelor party options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "looking for bachelor party personal celebrations and life events instead of funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events bachelor party instead of funeral"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "what is personal celebrations and life events bachelor party options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "need bachelor party personal celebrations and life events, not bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "researching personal celebrations and life events bachelorette party, not anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "which personal celebrations and life events bachelorette party is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "bachelorette party rather than baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "looking for bachelorette party personal celebrations and life events instead of anniversary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "bachelorette party rather than bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "researching bachelorette party personal celebrations and life events, not bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "researching birth personal celebrations and life events, not birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "need birth, not bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events birth instead of birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "researching personal celebrations and life events birth, not anniversary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events birth instead of baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "personal celebrations and life events birth rather than funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "looking for birthday personal celebrations and life events instead of anniversary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "need birthday, not funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "researching birthday personal celebrations and life events, not bachelorette party"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "best birthday in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "what is birthday personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "how does personal celebrations and life events funeral options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "need personal celebrations and life events funeral, not bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events funeral instead of birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "researching funeral, not birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "learn about funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "need funeral, not baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "learn about personal celebrations and life events graduation"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "need personal celebrations and life events graduation, not anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "how does personal celebrations and life events graduation work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "learn about graduation"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "need graduation personal celebrations and life events, not birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "looking for graduation instead of birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "compare personal celebrations and life events prom"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "need prom, not anniversary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "looking for prom instead of baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "looking for prom personal celebrations and life events instead of anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "what is prom personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "learn about personal celebrations and life events prom"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "wedding personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "researching personal celebrations and life events wedding, not birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "need wedding personal celebrations and life events, not birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "how does wedding personal celebrations and life events work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "wedding personal celebrations and life events rather than anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "wedding personal celebrations and life events overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "top saving money"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "exploring personal finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is financial guidance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is personal finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "top retirement planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "best financial guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "looking into financial guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "personal finance rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "exploring personal finance guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "looking into personal finance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for personal finance instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need personal finance, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "financial guidance guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "looking for consumer banking instead of financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking personal finance basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "need consumer banking personal finance, not personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "consumer banking personal finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "compare personal finance consumer banking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "need personal finance consumer banking, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "looking for personal finance financial assistance instead of insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "personal finance financial assistance rather than home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "financial assistance rather than financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "how does personal finance financial assistance options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "researching financial assistance, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "looking for personal finance financial assistance instead of personal debt"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "financial assistance government support and welfare rather than gas and electric"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "looking for government support and welfare instead of gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "discovery", "text": "compare personal finance financial assistance government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "what is student financial aid in financial assistance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for student financial aid instead of government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "negative_iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "contrastive", "text": "financial assistance student financial aid rather than internet service providers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "looking for financial planning personal finance instead of personal debt"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "need financial planning personal finance, not personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "personal finance financial planning overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "financial planning personal finance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "what is financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "personal finance financial planning options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "personal finance frugal living options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "how does frugal living in personal finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "top frugal living personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "frugal living personal finance rather than home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "need frugal living, not consumer banking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "how does personal finance frugal living options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "top home utilities in personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "researching personal finance home utilities, not financial assistance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "researching home utility, not personal debt"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "researching home utilities personal finance, not personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "best home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "best home utility"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "what is gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "discovery", "text": "best home utilities gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "discovery", "text": "top gas and electric home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "how does internet service provider work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "home utilities internet service providers basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "discovery", "text": "best internet service providers in home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "phone services options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "best phone services in home utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Phone Services", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "researching home utilities phone services, not government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "learn about water services home utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Water Services", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for water service instead of government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "discovery", "text": "top water services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "vague", "text": "need advice about insurance in personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "looking for insurance instead of financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "compare personal finance insurance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "need insurance personal finance, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "looking for personal finance insurance instead of home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "need personal finance insurance, not personal debt"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Health Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for insurance health insurance instead of government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Health Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "need health insurance insurance, not government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Health Insurance", "negative_iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "contrastive", "text": "researching health insurance insurance, not motor insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "learn about personal finance insurance home insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "vague", "text": "need advice about personal finance home insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Home Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "home insurance insurance rather than government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Life Insurance", "negative_iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "contrastive", "text": "looking for life insurance insurance instead of health insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Life Insurance", "negative_iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "contrastive", "text": "insurance life insurance rather than motor insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Life Insurance", "negative_iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "contrastive", "text": "need life insurance insurance, not motor insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "vague", "text": "exploring personal finance motor insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "discovery", "text": "best motor insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "discovery", "text": "which personal finance insurance motor insurance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "insurance pet insurance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "discovery", "text": "compare pet insurance insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "vague", "text": "looking into pet insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Travel Insurance", "negative_iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "contrastive", "text": "researching personal finance insurance travel insurance, not health insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Travel Insurance", "negative_iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "contrastive", "text": "researching personal finance insurance travel insurance, not life insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "discovery", "text": "compare travel insurance insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal debt"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "researching personal debt, not financial assistance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "personal debt rather than home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "learn about personal debt personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "researching personal debt, not consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "personal finance personal debt rather than frugal living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "vague", "text": "exploring personal debt credit cards options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "credit cards personal debt rather than government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "negative_iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "contrastive", "text": "credit card rather than home financing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Home Financing", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "researching home financing, not government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Home Financing", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "need personal debt home financing, not government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Home Financing", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "home financing personal debt rather than government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "discovery", "text": "personal loans personal debt options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "negative_iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "contrastive", "text": "need personal finance personal debt personal loans, not credit cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "personal finance personal debt personal loans"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Student Loans", "negative_iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "contrastive", "text": "personal debt student loans rather than home financing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Student Loans", "negative_iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "contrastive", "text": "looking for personal finance personal debt student loans instead of home financing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "student loans in personal debt guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "vague", "text": "need advice about personal investing in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "which personal investing personal finance is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "researching personal finance personal investing, not consumer banking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "vague", "text": "help me choose personal finance personal investing options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "need personal investing, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "personal investing personal finance rather than home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "discovery", "text": "top personal investing hedge funds options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "discovery", "text": "best personal investing hedge funds options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "researching hedge funds personal investing, not government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "what is mutual funds"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "negative_iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "contrastive", "text": "researching mutual funds personal investing, not hedge funds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "vague", "text": "exploring personal finance mutual funds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "vague", "text": "looking into personal investing options options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Options", "negative_iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "contrastive", "text": "options personal investing rather than stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "discovery", "text": "best options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "negative_iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "contrastive", "text": "personal finance personal investing stocks and bonds rather than hedge funds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "discovery", "text": "stocks and bonds options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "stocks and bonds in personal investing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal taxes personal finance guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "need personal taxes personal finance, not consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "need personal taxe, not home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal taxes overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "looking for personal finance personal taxes instead of financial assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "which personal taxe is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "researching retirement planning, not insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "retirement planning personal finance rather than home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "how does personal finance retirement planning options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "personal finance retirement planning overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "need retirement planning personal finance, not insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "top retirement planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pet guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "how does pets work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need pets, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "pets rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "learn about pet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pets guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "need advice about pets guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "pet rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "pet rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "top birds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "which birds pets is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "best pets birds options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "looking for pets birds instead of cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "birds pets basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "how does birds pets work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "cat options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "looking for cat instead of fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "researching pets cats, not birds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "vague", "text": "exploring pets cats options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "need pets cats, not pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "how does cat work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "dogs pets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "looking for dogs pets instead of large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "looking for dog instead of cats"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "pets dogs rather than fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "looking for pets dogs instead of large animals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "compare pets dogs options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "fish and aquariums pets rather than cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "fish and aquarium overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "pets fish and aquariums rather than cats"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "looking for fish and aquarium instead of birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "looking for fish and aquariums instead of large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "looking for fish and aquariums instead of birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "need large animals pets, not pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "researching pets large animals, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "need pets large animals, not pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "need large animal, not cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animal basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "researching pets large animals, not pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "top pet adoptions pets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "need pets pet adoptions, not fish and aquariums"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "vague", "text": "exploring pets pet adoptions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "what is pets pet adoptions options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "looking for pet adoption instead of pet supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "need pet adoptions, not dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "pet supplies pets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "how does pet supplies pets work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "need pet supplies pets, not large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "looking for pet supply instead of fish and aquariums"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "best pets pet supplies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pet supply"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "vague", "text": "need advice about pets reptiles options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "need reptiles pets, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "need reptiles, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "looking for reptiles instead of dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "researching reptiles, not dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "pets reptiles guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "need veterinary medicine, not cats"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "looking for veterinary medicine pets instead of birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "researching veterinary medicine, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "need pets veterinary medicine, not pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "pets veterinary medicine rather than birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "veterinary medicine rather than large animals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "best politic"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need politic, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "what is politic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "how does politic work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "compare politics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "looking into politics options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "what is politics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching politic, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "politics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "civic affairs overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "which politics civic affairs is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "civic affairs politics rather than elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "politics civic affairs basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Political Issues & policy", "prompt_family": "contrastive", "text": "need politics civic affairs, not political issues and policy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "compare civic affairs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "compare politics elections options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "looking for elections instead of civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "learn about elections politics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "what is politics elections options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "elections overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Political Issues & policy", "prompt_family": "contrastive", "text": "researching politics elections, not political issues and policy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "political issues and policy politics rather than civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "political issues & policy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "learn about political issues and policy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "best politics political issues and policy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "how does politics political issues and policy work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "what is politics political issues and policy"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "looking into pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "pop culture rather than books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "need advice about pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need pop culture, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "need advice about pop culture options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "looking for celebrity deaths instead of celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "how does celebrity death work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "how does celebrity deaths work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "need celebrity death, not celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "looking for pop culture celebrity deaths instead of celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "learn about celebrity deaths pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "celebrity families pop culture rather than celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "looking for celebrity family instead of celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "best celebrity families pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "celebrity families pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "pop culture celebrity families overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "researching celebrity families pop culture, not celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "learn about pop culture celebrity homes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "compare celebrity homes in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "best pop culture celebrity homes"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "celebrity homes pop culture rather than celebrity deaths"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "compare pop culture celebrity homes options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "researching celebrity homes, not celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "researching celebrity pregnancy, not celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "looking for celebrity pregnancy instead of celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "best pop culture celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "need celebrity pregnancy pop culture, not celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "researching celebrity pregnancy, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "researching celebrity pregnancy, not celebrity style"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "need celebrity relationship, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "need pop culture celebrity relationships, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "looking for celebrity relationships instead of celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "looking for pop culture celebrity relationships instead of celebrity style"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationships in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "compare pop culture celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "researching pop culture celebrity scandal, not celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "need celebrity scandal, not celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "celebrity scandal overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "celebrity scandal pop culture rather than celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "celebrity scandal pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "how does celebrity scandal pop culture work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "need pop culture celebrity style, not celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "need celebrity style, not celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "which celebrity style is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "looking for celebrity style pop culture instead of celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "researching celebrity style, not celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "what is celebrity style pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "humor and satire rather than celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "need humor and satire, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "need humor and satire, not celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "which pop culture humor and satire is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "learn about pop culture humor and satire"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "top humor and satire pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "discovery", "text": "compare computer software and applications productivity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "action", "text": "reserve computer software and applications productivity"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is real estate guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "exploring real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "how does real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "compare real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "action", "text": "buy real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "help me choose home buying"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for real estate instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "best renting advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching real estate, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "best housing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "need advice about apartment search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "how does housing options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "action", "text": "get real estate"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Apartments", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "looking for apartments real estate instead of land and farms"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Apartments", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "looking for apartments real estate instead of houses"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Apartments", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "looking for apartment instead of houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "action", "text": "buy apartment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Apartments", "negative_iab_path": "Real Estate > Industrial Property", "prompt_family": "contrastive", "text": "apartment rather than industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "action", "text": "buy apartments"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Developmental Sites", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "developmental sites real estate rather than land and farms"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "how does developmental site work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Developmental Sites", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "need developmental sites real estate, not land and farms"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Developmental Sites", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "looking for developmental sites instead of houses"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Developmental Sites", "negative_iab_path": "Real Estate > Office Property", "prompt_family": "contrastive", "text": "researching developmental site, not office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "best developmental sites real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "hotel property guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "real estate hotel properties basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "learn about real estate hotel properties"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Hotel Properties", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "looking for hotel property instead of houses"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Hotel Properties", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "real estate hotel properties rather than houses"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Hotel Properties", "negative_iab_path": "Real Estate > Apartments", "prompt_family": "contrastive", "text": "hotel properties rather than apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "action", "text": "buy real estate houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "what is real estate houses"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Houses", "negative_iab_path": "Real Estate > Apartments", "prompt_family": "contrastive", "text": "looking for houses real estate instead of apartments"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Houses", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "houses rather than land and farms"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "houses real estate overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Houses", "negative_iab_path": "Real Estate > Office Property", "prompt_family": "contrastive", "text": "researching houses real estate, not office property"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Industrial Property", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "researching real estate industrial property, not developmental sites"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Industrial Property", "negative_iab_path": "Real Estate > Office Property", "prompt_family": "contrastive", "text": "industrial property real estate rather than office property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "top industrial property in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "how does real estate industrial property options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Industrial Property", "negative_iab_path": "Real Estate > Hotel Properties", "prompt_family": "contrastive", "text": "researching industrial property, not hotel properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "action", "text": "book real estate industrial property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "vague", "text": "exploring land and farms in real estate"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Land and Farms", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "need land and farm, not houses"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Land and Farms", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "looking for land and farm instead of developmental sites"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "compare land and farms in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "which land and farms is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "learn about land and farms"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "office property real estate"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Office Property", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "researching office property, not developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "action", "text": "reserve office property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "vague", "text": "looking into real estate office property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "which office property is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "office property"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Buying and Selling", "negative_iab_path": "Real Estate > Industrial Property", "prompt_family": "contrastive", "text": "researching real estate buying and selling real estate, not industrial property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate real estate buying and selling options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "top real estate real estate buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "action", "text": "find real estate real estate buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Buying and Selling", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "real estate buying and selling real estate rather than developmental sites"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Renting and Leasing", "negative_iab_path": "Real Estate > Apartments", "prompt_family": "contrastive", "text": "looking for lease options instead of apartments"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Renting and Leasing", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "researching apartments for rent, not developmental sites"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Renting and Leasing", "negative_iab_path": "Real Estate > Apartments", "prompt_family": "contrastive", "text": "researching lease options, not apartments"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Renting and Leasing", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "researching apartment search, not developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "action", "text": "get lease options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "action", "text": "find real estate renting and leasing real estate"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Retail Property", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "need retail property, not developmental sites"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Retail Property", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "looking for retail property instead of developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "learn about real estate retail property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "action", "text": "reserve retail property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "compare retail property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "action", "text": "find real estate retail property"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Vacation Properties", "negative_iab_path": "Real Estate > Industrial Property", "prompt_family": "contrastive", "text": "researching real estate vacation properties, not industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "real estate vacation properties guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Vacation Properties", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "need vacation property, not houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "compare vacation property"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Vacation Properties", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "vacation properties rather than developmental sites"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Vacation Properties", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "researching real estate vacation properties, not land and farms"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "need advice about religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion & spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for religion and spirituality instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "religion and spirituality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "learn about religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need religion & spirituality, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "which religion & spirituality is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "which religion and spirituality is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "looking into religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "need agnosticism religion and spirituality, not buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "need religion and spirituality agnosticism, not hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "researching agnosticism religion and spirituality, not christianity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "researching religion and spirituality agnosticism, not buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "compare agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "need agnosticism, not astrology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "researching astrology, not buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "religion and spirituality astrology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "how does astrology work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "astrology in religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "astrology religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "which atheism religion and spirituality is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "atheism rather than hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "researching religion and spirituality atheism, not islam"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "atheism rather than islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "researching atheism religion and spirituality, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "top religion and spirituality buddhism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "top religion and spirituality buddhism options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "looking for religion and spirituality buddhism instead of christianity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "buddhism religion and spirituality rather than islam"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "vague", "text": "exploring religion and spirituality buddhism options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "religion and spirituality buddhism rather than agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "looking for christianity instead of islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "christianity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "top religion and spirituality christianity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "religion and spirituality christianity rather than agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "religion and spirituality christianity rather than astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "which christianity religion and spirituality is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "vague", "text": "need advice about hinduism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "how does hinduism in religion and spirituality work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "what is religion and spirituality hinduism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "vague", "text": "looking into hinduism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "researching hinduism religion and spirituality, not buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "looking for hinduism religion and spirituality instead of astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "top islam religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "best islam religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for religion and spirituality islam instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "islam rather than christianity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "how does islam work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "need islam religion and spirituality, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "compare religion and spirituality judaism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "best judaism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "looking for judaism religion and spirituality instead of astrology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "looking for judaism religion and spirituality instead of atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "need judaism religion and spirituality, not christianity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "judaism overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "religion and spirituality sikhism overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "researching sikhism, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for religion and spirituality sikhism instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "which religion and spirituality sikhism is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "best sikhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for sikhism instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "which spirituality is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "religion and spirituality spirituality rather than agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for spirituality religion and spirituality instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "need spirituality religion and spirituality, not hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "religion and spirituality spirituality rather than hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "religion and spirituality spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "what is science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "discovery", "text": "science options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "what is science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "discovery", "text": "best science"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for science instead of automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "need biological sciences, not geography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "what is biological sciences science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "researching biological science, not chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "which science biological sciences is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "science biological sciences rather than chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "compare biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "chemistry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "what is chemistry science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "chemistry science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "how does chemistry science work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "chemistry science rather than environment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "need chemistry science, not geology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "environment overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "compare environment in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "researching environment, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "how does environment science work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "looking for environment science instead of genetics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "need environment science, not physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "need genetics, not geology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "science genetics rather than geology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetics science overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "need genetics, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "looking for genetics instead of physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "genetic rather than geology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "which geography is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "looking for geography science instead of physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "need science geography, not genetics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "geography science rather than environment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "geography science overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "looking for science geography instead of physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "geology science rather than biological sciences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "how does geology in science work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "geology rather than biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "science geology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "top geology in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "top geology science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "learn about physics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "which physics science is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "science physics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "physics science basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "researching physics, not geography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "need science physics, not chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "top science space and astronomy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "space and astronomy science guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "researching space and astronomy science, not environment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "vague", "text": "help me choose space and astronomy in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "vague", "text": "exploring science space and astronomy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "space and astronomy rather than geology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "need science weather, not environment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "weather rather than chemistry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "need weather, not chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "compare weather in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "weather rather than environment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "what is weather in science"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "exploring sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "compare sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topic guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "sensitive topics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for sensitive topics instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for sensitive topics instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for sensitive topic instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "which sensitive topic is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "what is sensitive topic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "learn about adult and explicit sexual content sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "looking for adult and explicit sexual content sensitive topics instead of hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "need adult and explicit sexual content, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "need adult and explicit sexual content, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "looking for adult and explicit sexual content instead of hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching adult & explicit sexual content, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "top arms & ammunition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "vague", "text": "looking into sensitive topics arms and ammunition options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "arms and ammunition rather than debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "need arms and ammunition, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "need arms & ammunition, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "crime and harmful acts to individuals, society and human right violations basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "crime & harmful acts to individuals, society & human right violation rather than death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "need crime & harmful acts to individuals, society & human right violation, not adult and explicit sexual content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "how does sensitive topics crime and harmful acts to individuals, society and human right violations options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "best sensitive topics crime and harmful acts to individuals, society and human right violations options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "vague", "text": "need advice about crime and harmful acts to individuals, society and human right violations in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "death, injury, or military conflict sensitive topics overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "looking for sensitive topics death, injury, or military conflict instead of arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "sensitive topics death, injury, or military conflict overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "researching sensitive topics death, injury, or military conflict, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "researching death, injury, or military conflict, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching sensitive topics death, injury, or military conflict, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "debated sensitive social issues rather than arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "debated sensitive social issue overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "debated sensitive social issues in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "sensitive topics debated sensitive social issues options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "which debated sensitive social issues sensitive topics is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "need debated sensitive social issues, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "need hate speech and acts of aggression sensitive topics, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "need hate speech and acts of aggression sensitive topics, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "researching hate speech and acts of aggression, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "hate speech and acts of aggression rather than death, injury, or military conflict"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "vague", "text": "exploring sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "researching sensitive topics hate speech and acts of aggression, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "how does illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "what is illegal drugs, tobacco, ecigarettes, vaping, alcohol in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "looking for illegal drugs, tobacco, ecigarettes, vaping, alcohol instead of hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "looking for illegal drugs, tobacco, ecigarettes, vaping, alcohol instead of death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "need sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol, not death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "illegal drugs, tobacco, ecigarettes, vaping, alcohol options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "vague", "text": "help me choose sensitive topics obscenity and profanity options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "need obscenity and profanity sensitive topics, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "obscenity and profanity overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching sensitive topics obscenity and profanity, not debated sensitive social issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "what is sensitive topics obscenity and profanity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "sensitive topics obscenity and profanity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "need online piracy sensitive topics, not hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "compare online piracy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "online piracy sensitive topics rather than death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "online piracy rather than hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "need online piracy, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "researching sensitive topics online piracy, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "spam or harmful content rather than debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching spam or harmful content, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "need spam or harmful content, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "sensitive topics spam or harmful content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "compare sensitive topics spam or harmful content options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "how does sensitive topics spam or harmful content options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "need terrorism, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "researching terrorism sensitive topics, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "looking for terrorism instead of debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "learn about terrorism sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "vague", "text": "looking into terrorism in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "researching terrorism sensitive topics, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for shopping instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "discovery", "text": "compare shopping"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "what is shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "discovery", "text": "best shopping"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "help me choose shopping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "need children's games and toy, not flower shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "children's games and toys shopping rather than coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "need shopping children's games and toys, not household supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "researching children's games and toys shopping, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "need children's games and toy, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "learn about children's games and toys shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "shopping coupons and discounts options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "vague", "text": "help me choose coupons and discounts in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discounts shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "compare coupons and discounts shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discounts in shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "need coupons and discounts shopping, not gifts and greetings cards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "best flower shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "flower shopping shopping rather than holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "looking for flower shopping shopping instead of gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "need flower shopping shopping, not children's games and toys"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "researching flower shopping shopping, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "looking for shopping flower shopping instead of grocery shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "how does shopping gifts and greetings cards options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "best shopping gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "gifts and greetings card guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Gifts and Greetings Cards", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "looking for gifts and greetings cards shopping instead of flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "action", "text": "find gifts and greetings card"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Gifts and Greetings Cards", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "gifts and greetings card rather than grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "top shopping grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "grocery shopping basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "researching shopping grocery shopping, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "how does shopping grocery shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "what is shopping grocery shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "vague", "text": "exploring shopping grocery shopping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "looking for holiday shopping instead of gifts and greetings cards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "compare shopping holiday shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "shopping holiday shopping overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "looking for holiday shopping instead of household supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "researching holiday shopping shopping, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "holiday shopping shopping rather than children's games and toys"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "looking for shopping household supplies instead of gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "need household supply, not flower shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "need household supplies, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "researching household supply, not coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "household supplies shopping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "looking for household supplies shopping instead of flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcards shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Lotteries and Scratchcards", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "lotteries and scratchcard rather than flower shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Lotteries and Scratchcards", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "lotteries and scratchcards shopping rather than gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Lotteries and Scratchcards", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "looking for shopping lotteries and scratchcards instead of holiday shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "compare shopping lotteries and scratchcards options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "need party supplies and decoration, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "shopping party supplies and decorations rather than children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "compare party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "shopping party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "researching party supplies and decorations shopping, not flower shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "vague", "text": "need advice about party supplies and decorations in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "shopping sales and promotions options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "researching sales and promotion, not gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "sales and promotion rather than holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "looking for sales and promotion instead of holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "shopping sales and promotions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "how does sales and promotions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "soccer advice guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sports rules"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need sports, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching sport, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching sport, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for sports instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need sport, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "sports rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "compare game tactics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "need advice about game tactics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "top match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is game tactics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "best sport"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "looking into soccer advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sports basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need american football sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "top american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for american football sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports american football rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need sports american football, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "what is sports american football options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "sports australian rules football rather than baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "which australian rules football is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "australian rules football sports rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need australian rules football sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching australian rules football sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need australian rules football, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching auto racing, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "sports auto racing options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "vague", "text": "looking into auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for auto racing sports instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for auto racing instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "auto racing sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "motorcycle sport"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "researching motorcycle sports, not college baseball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "negative_iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "contrastive", "text": "auto racing motorcycle sports rather than horse racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching badminton sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching badminton, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "badminton sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching badminton sports, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "best badminton in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "badminton rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "top sports baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for sports baseball instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "vague", "text": "exploring baseball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "best baseball sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports baseball rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "learn about sports baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "vague", "text": "exploring sports basketball options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for basketball sports instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports basketball rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching basketball, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for basketball sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "best basketball sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "what is beach volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports beach volleyball rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "which sports beach volleyball is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "beach volleyball rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports beach volleyball, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching sports beach volleyball, not basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "best bodybuilding in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for bodybuilding instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports bodybuilding, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "sports bodybuilding"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need bodybuilding, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching bodybuilding, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports bowling rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "which bowling sports is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for bowling sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports bowling instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for bowling sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "compare sports bowling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports boxing, not american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "compare sports boxing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "how does sports boxing options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "sports boxing rather than basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need boxing, not basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "vague", "text": "exploring boxing in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need sports cheerleading, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "cheerleading sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports cheerleading rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports cheerleading, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "vague", "text": "need advice about sports cheerleading options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need cheerleading sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "college sports rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for sports college sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching college sports sports, not american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "college sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching college sport, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need college sports, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "college baseball in college sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Baseball", "negative_iab_path": "Sports > College Sports > College Football", "prompt_family": "contrastive", "text": "looking for college baseball college sports instead of college football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "vague", "text": "exploring college sports college baseball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "college basketball college sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "sports college sports college basketball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Basketball", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "college basketball college sports rather than motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Football", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need college sports college football, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Football", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "college football rather than college baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "college football college sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "top cricket in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "cricket sports overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "cricket sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "cricket basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "sports cricket options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching cricket sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports cycling rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for cycling instead of american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching sports cycling, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for cycling instead of australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "how does sports cycling options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "best cycling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "learn about sports darts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching dart, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "what is darts in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "sports darts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "dart rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "darts sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports disabled sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports disabled sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "disabled sport rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "disabled sports rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching disabled sport, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need disabled sports sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "diving sports rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need diving sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need diving, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "diving sports rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports diving rather than american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "what is diving in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "best equine sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "equine sports sports rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "top equine sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "sports equine sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for equine sports sports instead of australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "vague", "text": "help me choose equine sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "discovery", "text": "best sports horse racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "discovery", "text": "horse racing equine sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "discovery", "text": "compare horse racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need extreme sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "sports extreme sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "extreme sport options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports extreme sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "sports extreme sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching extreme sports, not american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "canoeing and kayaking extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "sports extreme sports canoeing and kayaking overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "negative_iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "contrastive", "text": "looking for canoeing and kayaking instead of scuba diving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "discovery", "text": "compare extreme sports climbing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "sports extreme sports climbing basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Climbing", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "climbing extreme sports rather than motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "extreme sports paintball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "paintball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "paintball basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "discovery", "text": "top extreme sports scuba diving"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Scuba Diving", "negative_iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "contrastive", "text": "researching scuba diving, not climbing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Scuba Diving", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "looking for extreme sports scuba diving instead of canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "discovery", "text": "best extreme sports skateboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Skateboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for skateboarding extreme sports instead of motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Skateboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for extreme sports skateboarding instead of motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Snowboarding", "negative_iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "contrastive", "text": "looking for snowboarding extreme sports instead of climbing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "learn about snowboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Snowboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for snowboarding extreme sports instead of motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "discovery", "text": "best surfing and bodyboarding in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "sports extreme sports surfing and bodyboarding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "vague", "text": "need advice about surfing and bodyboarding in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "what is sports extreme sports waterskiing and wakeboarding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "vague", "text": "help me choose waterskiing and wakeboarding in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "looking for sports extreme sports waterskiing and wakeboarding instead of canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "compare fantasy sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for fantasy sports sports instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "fantasy sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for fantasy sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "fantasy sports sports rather than australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "what is fantasy sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "how does sports field hockey work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching field hockey sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "field hockey sports rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "compare field hockey sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "sports field hockey rather than basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "vague", "text": "looking into field hockey in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "what is figure skating in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "figure skating basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "which figure skating is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for figure skating sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "sports figure skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "figure skating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching fishing sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for fishing sport instead of american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "top fishing sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need fishing sports, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "sports fishing sports options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for fishing sport instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports golf rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "golf options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "golf sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need golf, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching golf, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "vague", "text": "help me choose sports golf options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "gymnastics rather than auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "how does sports gymnastics options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastics guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for gymnastics instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching gymnastics sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "gymnastics rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "top sports hunting and shooting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "how does sports hunting and shooting options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "best hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for hunting and shooting sports instead of badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "compare sports hunting and shooting options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching hunting and shooting sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "top ice hockey"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "vague", "text": "help me choose sports ice hockey options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "ice hockey sports overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need ice hockey, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "how does ice hockey sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "vague", "text": "looking into sports ice hockey options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for sports inline skating instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "compare inline skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "inline skating basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching inline skating sports, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "vague", "text": "looking into sports inline skating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports inline skating, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "how does lacrosse in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "best lacrosse in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for lacrosse sports instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports lacrosse rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "compare lacrosse sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "vague", "text": "exploring lacrosse in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching martial art, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching martial arts, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "what is martial arts in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "vague", "text": "help me choose sports martial arts options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching sports martial arts, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "sports martial arts overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need olympic sport, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need olympic sports sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching olympic sports sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for sports olympic sports instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for olympic sport instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for sports olympic sports instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "negative_iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "contrastive", "text": "need olympic sports summer olympic sports, not winter olympic sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need sports olympic sports summer olympic sports, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "vague", "text": "looking into olympic sports summer olympic sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "winter olympic sports in olympic sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "sports olympic sports winter olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "top winter olympic sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "poker and professional gambling sports rather than badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "top poker and professional gambling in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports poker and professional gambling, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching poker and professional gambling, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "vague", "text": "need advice about sports poker and professional gambling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "sports poker and professional gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "which rodeo is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "rodeo sports rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports rodeo, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need rodeo sports, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "top sports rodeo options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "rodeo sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for rowing instead of american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "top sports rowing options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports rowing, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need rowing sports, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "rowing in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "sports rowing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "rugby sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "what is rugby in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "rugby sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "how does rugby sports work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "rugby rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports rugby instead of australian rules football"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby League", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "researching rugby rugby league, not college baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "sports rugby league"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby League", "negative_iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "contrastive", "text": "looking for rugby league instead of rugby union"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "how does rugby union in rugby work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "sports rugby union guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "discovery", "text": "top rugby union in rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sailing sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "which sports sailing is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sailing, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sailing, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sailing sports rather than auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "top skiing in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need skiing sports, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching skiing, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "top skiing sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for skiing sports instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching skiing, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "which snooker/pool/billiards is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "snooker/pool/billiard rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "what is snooker/pool/billiards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "best snooker/pool/billiard"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need snooker/pool/billiard, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sports snooker/pool/billiards, not basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "top sports soccer options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "soccer rules rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "learn about premier league"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "soccer sports rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching soccer rules, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching soccer, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for sports softball instead of american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "what is sports softball options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching softball, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "how does sports softball options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "top softball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "softball sports rather than australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "vague", "text": "exploring sports sports equipment options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports equipment sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "what is sports equipment sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports equipment in sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports equipment, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sports equipment, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need squash, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need squash sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need squash, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for squash instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "which squash is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "how does sports squash work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "sports swimming basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for swimming sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need swimming sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "compare sports swimming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "sports swimming rather than basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "sports swimming rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for table tenni instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for table tenni instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports table tennis, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "sports table tennis rather than basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports table tennis, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "table tenni options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "tennis sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching tenni, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for tenni instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching tenni, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "tennis rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports tennis, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "sports track and field rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "track and field sports rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports track and field rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "track and field basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports track and field instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "track and field guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "volleyball sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "vague", "text": "need advice about sports volleyball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "what is sports volleyball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "sports volleyball guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching volleyball, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "volleyball sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "walking rather than australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "what is walking in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "how does walking sports work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need sports walking, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "what is sports walking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need walking, not basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "how does water polo in sports work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for water polo sports instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for water polo sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "compare water polo in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching water polo, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "best sports weightlifting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "vague", "text": "need advice about sports weightlifting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "vague", "text": "looking into weightlifting in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "weightlifting sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "how does sports weightlifting options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "sports weightlifting basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports wrestling rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "which wrestling is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports wrestling, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for wrestling instead of basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "wrestling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "what is wrestling in sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching style & fashion, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "need advice about outfit help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style and fashion"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching style and fashion, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is fashion ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "exploring shoe shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "outfit help guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "style & fashion rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "looking into fashion ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style picks guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching style & fashion, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style & fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "best shoe shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need style & fashion, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "looking into style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "how does outfit help work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching style and fashion, not books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "researching style and fashion beauty, not designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "researching beauty style and fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "compare beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "how does style and fashion beauty work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "beauty rather than men's fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "looking for style and fashion beauty instead of men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "vague", "text": "need advice about beauty hair care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "discovery", "text": "hair care beauty options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "how does makeup and accessories in beauty work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "negative_iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "contrastive", "text": "looking for makeup and accessories beauty instead of nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "makeup and accessories beauty overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Nail Care", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "researching nail care, not hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "what is beauty nail care options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "discovery", "text": "top nail care in beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "need natural and organic beauty, not hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "vague", "text": "need advice about natural and organic beauty in beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "vague", "text": "looking into natural and organic beauty in beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "how does style and fashion perfume and fragrance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "vague", "text": "looking into beauty perfume and fragrance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "discovery", "text": "top perfume and fragrance beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "beauty skin care basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "style and fashion skin care"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Skin Care", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "looking for skin care beauty instead of hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "body art style and fashion options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "looking for style and fashion body art instead of designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "body art style and fashion rather than fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "body art rather than fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "body art style and fashion rather than high fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "looking for style and fashion body art instead of men's fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "style and fashion children's clothing rather than designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "researching children's clothing style and fashion, not beauty"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "researching style and fashion children's clothing, not designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "looking for children's clothing instead of beauty"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "need children's clothing, not beauty"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "researching children's clothing style and fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "need designer clothing style and fashion, not children's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "learn about designer clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "vague", "text": "need advice about style and fashion designer clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "learn about style and fashion designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "researching designer clothing, not fashion trends"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "compare designer clothing in style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "looking for style and fashion fashion trends instead of designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "looking for fashion trends style and fashion instead of body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "fashion trends style and fashion rather than beauty"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "fashion trend rather than men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "vague", "text": "exploring style and fashion fashion trends options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "fashion trends style and fashion rather than children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "need high fashion, not fashion trends"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "what is style and fashion high fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "what is high fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "style and fashion high fashion options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "researching high fashion, not men's fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "high fashion rather than body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "need style and fashion men's fashion, not designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "looking for style and fashion men's fashion instead of fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "men's fashion rather than designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "style and fashion men's fashion basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "researching men's fashion style and fashion, not fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "style and fashion men's fashion rather than children's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "contrastive", "text": "men's accessories men's fashion rather than men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "need men's accessories, not hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "men's accessories overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "alias", "text": "men's jewelry and watches men's accessories overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "vague", "text": "help me choose style and fashion men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "looking for men's clothing men's fashion instead of hair care"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "men's clothing men's fashion rather than hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "vague", "text": "exploring style and fashion men's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "contrastive", "text": "looking for men's clothing men's business wear instead of men's formal wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "need men's business wear, not men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "contrastive", "text": "looking for men's casual wear instead of men's formal wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "contrastive", "text": "looking for men's clothing men's casual wear instead of men's business wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "contrastive", "text": "looking for men's formal wear men's clothing instead of men's outerwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "alias", "text": "men's clothing men's formal wear overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "alias", "text": "learn about style and fashion men's fashion men's clothing men's outerwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "looking for men's outerwear men's clothing instead of men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "alias", "text": "what is men's sportswear in men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "alias", "text": "what is style and fashion men's fashion men's clothing men's sportswear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "contrastive", "text": "men's underwear and sleepwear men's clothing rather than men's business wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "contrastive", "text": "men's clothing men's underwear and sleepwear rather than men's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "discovery", "text": "which men's shoes and footwear men's fashion is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "contrastive", "text": "men's shoes and footwear men's fashion rather than men's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "men's fashion men's shoes and footwear options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "researching personal care style and fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "personal care style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "personal care rather than high fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "looking for personal care style and fashion instead of fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "looking for style and fashion personal care instead of beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "vague", "text": "exploring personal care in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "discovery", "text": "which personal care bath and shower is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "vague", "text": "need advice about style and fashion bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "what is bath and shower"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "deodorant and antiperspirant in personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "action", "text": "find personal care deodorant and antiperspirant"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "discovery", "text": "compare style and fashion personal care deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "discovery", "text": "top style and fashion oral care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "discovery", "text": "best oral care in personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "action", "text": "find oral care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "what is shaving in personal care"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Shaving", "negative_iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "contrastive", "text": "need personal care shaving, not deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Shaving", "negative_iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "contrastive", "text": "researching shaving personal care, not deodorant and antiperspirant"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "looking for style and fashion street style instead of body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "researching style and fashion street style, not children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "looking for style and fashion street style instead of children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "street style rather than fashion trends"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "top street style in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "style and fashion street style options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "researching style and fashion women's fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "researching women's fashion, not fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "researching women's fashion style and fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "need women's fashion, not fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "looking for style and fashion women's fashion instead of high fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "need women's fashion style and fashion, not high fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "style and fashion women's accessories guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "women's accessory"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "best women's accessories women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "discovery", "text": "women's accessories women's glasses options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "alias", "text": "women's accessories women's glasses"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "contrastive", "text": "researching women's handbags and wallet, not women's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "discovery", "text": "top style and fashion women's fashion women's accessories women's handbags and wallets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "vague", "text": "need advice about women's hats and scarves in women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "alias", "text": "women's hats and scarves guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "contrastive", "text": "looking for women's accessories women's jewelry and watches instead of women's hats and scarves"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "style and fashion women's fashion women's accessories women's jewelry and watches rather than men's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "discovery", "text": "best women's fashion women's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "vague", "text": "exploring style and fashion women's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "contrastive", "text": "looking for women's clothing instead of women's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "need women's business wear, not men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "contrastive", "text": "researching style and fashion women's fashion women's clothing women's business wear, not women's intimates and sleepwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "alias", "text": "women's clothing women's casual wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "looking for women's casual wear women's clothing instead of men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "contrastive", "text": "need women's formal wear, not women's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "discovery", "text": "top women's formal wear women's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "women's intimates and sleepwear rather than women's business wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "need women's clothing women's intimates and sleepwear, not women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "discovery", "text": "which women's outerwear women's clothing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "alias", "text": "style and fashion women's fashion women's clothing women's outerwear overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "looking for style and fashion women's fashion women's clothing women's sportswear instead of men's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "discovery", "text": "best women's clothing women's sportswear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "contrastive", "text": "women's shoes and footwear rather than makeup and accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "discovery", "text": "best women's shoes and footwear in women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "discovery", "text": "best women's shoes and footwear women's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "best device comparison"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "tech buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "need advice about device comparison"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "technology & computing rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need technology & computing, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "compare technology & computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching technology and computing, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "technology & computing rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "exploring device comparison"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "best tech buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "best software options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "device comparison guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "top tech buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is tech buying"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need technology & computing, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "software options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "artificial intelligence technology and computing rather than virtual reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "artificial intelligence overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "artificial intelligence basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "best artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "researching artificial intelligence, not computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "researching artificial intelligence, not augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "augmented reality technology and computing rather than virtual reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "learn about technology and computing augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "researching augmented reality, not virtual reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "looking for technology and computing augmented reality instead of computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "need technology and computing augmented reality, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "looking for technology and computing augmented reality instead of robotics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "researching technology and computing computing, not robotics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "computing basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "vague", "text": "exploring technology and computing computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "how does technology and computing computing options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "vague", "text": "exploring computing in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "what is computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "computing computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "what is computing computer networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Networking", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "researching computer networking, not computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "what is computer peripheral"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "discovery", "text": "top computing computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "computing computer peripherals overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "software and applications guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "action", "text": "book computer software and applications computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "action", "text": "reserve software and application"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "discovery", "text": "compare 3d graphics in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "action", "text": "buy computer software and applications 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "discovery", "text": "best computer software and applications antivirus software options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "alias", "text": "learn about antivirus software computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "researching browsers, not 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "action", "text": "book browsers computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "alias", "text": "what is technology and computing computer animation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "alias", "text": "computer animation computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "discovery", "text": "which technology and computing computing computer software and applications databases is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "vague", "text": "help me choose computer software and applications databases options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "discovery", "text": "best desktop publishing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need desktop publishing, not 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "discovery", "text": "compare technology and computing digital audio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "discovery", "text": "compare digital audio computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "action", "text": "find technology and computing computing computer software and applications graphics software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need graphics software, not 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "alias", "text": "what is technology and computing operating systems"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "vague", "text": "help me choose computer software and applications operating systems options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "contrastive", "text": "researching photo editing software computer software and applications, not antivirus software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "action", "text": "get computer software and applications photo editing software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "vague", "text": "looking into technology and computing shareware and freeware"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "computer software and applications shareware and freeware rather than 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "alias", "text": "computer software and applications video software guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "alias", "text": "what is computer software and applications video software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "alias", "text": "web conferencing basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "discovery", "text": "best technology and computing web conferencing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "computing data storage and warehousing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "technology and computing computing data storage and warehousing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "learn about data storage and warehousing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "discovery", "text": "top desktops in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "action", "text": "book desktops computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "vague", "text": "need advice about desktops in computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Information and Network Security", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "computing information and network security rather than software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "discovery", "text": "compare computing information and network security options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Information and Network Security", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "looking for information and network security computing instead of computer networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "looking for computing internet instead of computer networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "researching internet computing, not software and applications"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "internet computing rather than software and applications"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "negative_iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "contrastive", "text": "researching internet cloud computing, not it and internet support"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need cloud computing, not 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "alias", "text": "internet email overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Email", "negative_iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "contrastive", "text": "researching email internet, not cloud computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "discovery", "text": "compare internet for beginners in internet"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "vague", "text": "looking into internet for beginners in internet"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "internet of things rather than 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "alias", "text": "internet of thing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "alias", "text": "it and internet support internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "alias", "text": "it and internet support internet overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "vague", "text": "need advice about internet search options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "alias", "text": "learn about search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "vague", "text": "looking into technology and computing social networking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "alias", "text": "how does social networking in internet work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "negative_iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "contrastive", "text": "researching web design and html, not cloud computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "discovery", "text": "compare web design and html"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "alias", "text": "what is technology and computing web development"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "discovery", "text": "best technology and computing computing internet web development"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need internet web hosting, not 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "alias", "text": "web hosting guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Laptops", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "labtops rather than computer peripherals"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Laptops", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "computing laptops rather than computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "what is computing laptops"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "discovery", "text": "programming languages options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "technology and computing programming languages guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Programming Languages", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "computing programming languages rather than software and applications"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "need consumer electronics, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "need technology and computing consumer electronics, not robotics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "what is consumer electronics in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "consumer electronic guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "technology and computing consumer electronics options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "how does consumer electronic work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "technology and computing cameras and camcorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "discovery", "text": "top cameras and camcorders consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "discovery", "text": "top cameras and camcorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "home entertainment systems consumer electronics guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "vague", "text": "need advice about home entertainment systems in consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "how does home entertainment systems consumer electronics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "camera phones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "action", "text": "get smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "discovery", "text": "which smartphones is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "tablets and e-reader rather than home entertainment systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "tablets and e-readers consumer electronics basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "vague", "text": "looking into consumer electronics tablets and e-readers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "technology and computing consumer electronics wearable technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "discovery", "text": "compare wearable technology consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "negative_iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "contrastive", "text": "wearable technology rather than smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "learn about technology and computing robotics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "need robotic, not consumer electronics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "robotic rather than computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "need robotics, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "robotics rather than computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "how does robotic work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "compare technology and computing virtual reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "need virtual reality, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "researching virtual reality technology and computing, not computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "looking for virtual reality technology and computing instead of computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "virtual reality guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "top virtual reality in technology and computing"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "need advice about travel guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "compare travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "help me choose places to stay"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "help me choose travel guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "travel options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "best trip planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "need advice about hotel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "looking into places to stay"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "need advice about trip planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "help me choose travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "looking into hotel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "how does trip planning work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "learn about travel accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel travel accessories options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "what is travel accessories travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "how does travel accessories in travel work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "contrastive", "text": "travel accessory rather than travel preparation and advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "how does travel accessories work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "researching travel locations travel, not travel type"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "looking for travel locations travel instead of travel accessories"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "researching travel locations, not travel type"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "researching travel location, not travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel travel locations overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "researching travel locations, not travel accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Africa Travel", "negative_iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "contrastive", "text": "africa travel travel locations rather than europe travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "discovery", "text": "compare africa travel travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "vague", "text": "help me choose travel locations africa travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "travel locations asia travel basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "asia travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Asia Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "asia travel rather than australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "travel locations australia and oceania travel rather than asia travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need travel locations australia and oceania travel, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "vague", "text": "exploring australia and oceania travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Europe Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for europe travel instead of africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Europe Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "looking for europe travel travel locations instead of asia travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Europe Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "looking for europe travel instead of asia travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "travel travel locations north america travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "what is north america travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > North America Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "researching north america travel, not australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Polar Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need polar travel, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "vague", "text": "need advice about polar travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "vague", "text": "help me choose travel polar travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "how does travel locations south america travel options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "how does south america travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "discovery", "text": "compare travel locations south america travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "top travel travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "vague", "text": "exploring travel travel preparation and advice options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "looking for travel preparation and advice instead of travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "which travel travel preparation and advice is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "researching travel preparation and advice, not travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "travel travel preparation and advice rather than travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "need travel travel type, not travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "how does travel type travel work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "looking for travel travel type instead of travel accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "travel type guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "travel travel type options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Adventure Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need adventure travel, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Adventure Travel", "negative_iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "contrastive", "text": "need adventure travel travel type, not bed and breakfasts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "learn about adventure travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Air Travel", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "air travel travel type rather than beach travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "vague", "text": "need advice about travel type air travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "vague", "text": "help me choose travel type air travel options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Beach Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "need beach travel, not air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "beach travel basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "beach travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "researching bed and breakfasts, not adventure travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "researching bed & breakfast, not beach travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "vague", "text": "help me choose travel bed and breakfasts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Budget Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need budget travel, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Budget Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need travel travel type budget travel, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "how does budget travel in travel type work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Business Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "travel travel type business travel rather than africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "what is travel type business travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Business Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need business travel travel type, not africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "how does travel travel type camping work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Camping", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "camping rather than africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Camping", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "camping travel type rather than beach travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "how does travel type cruises options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "learn about cruises travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "discovery", "text": "compare cruise"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "discovery", "text": "best day trips in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "discovery", "text": "compare travel type day trips options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Day Trips", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "need day trips, not air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "discovery", "text": "best travel family travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "vague", "text": "looking into family travel in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "how does family travel work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "honeymoons and getaways rather than adventure travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "honeymoons and getaways rather than beach travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "discovery", "text": "best honeymoons and getaway"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "action", "text": "buy hotels and motels travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Hotels and Motels", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "researching hotel booking, not beach travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "learn about motel booking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Rail Travel", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "researching travel travel type rail travel, not beach travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "rail travel travel type overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Rail Travel", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "rail travel rather than beach travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Road Trips", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "need road trips travel type, not air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "road trips travel type guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "discovery", "text": "travel travel type road trips options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Spas", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "spas travel type rather than air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "travel type spas overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Spas", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for spas travel type instead of africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "learn about video gaming"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for video gaming instead of attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "looking into video gaming options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "what is video gaming guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching video gaming, not books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "need console games video gaming, not esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "top console game"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "researching video gaming console games, not mobile games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "compare console games video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "console game rather than esports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "looking for console game instead of video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "top esports in video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "vague", "text": "help me choose esports in video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "looking for esport instead of console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "looking for esports video gaming instead of console games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "which esport is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "learn about esports video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile games video gaming guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "video gaming mobile games overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "researching mobile game, not pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "researching video gaming mobile games, not video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile game"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "looking for mobile games video gaming instead of console games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "pc games video gaming basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "video gaming pc games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "pc games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "top pc game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "pc game basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "vague", "text": "need advice about pc games in video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "looking for video game genres instead of mobile games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "looking for video game genres video gaming instead of console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "video game genres video gaming rather than console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "video gaming video game genres rather than console games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "best video game genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "looking for video game genre instead of mobile games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "video game genres action video games basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "vague", "text": "help me choose action video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "vague", "text": "exploring video game genres action video games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "action-adventure video games rather than action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need action-adventure video game, not adult video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "discovery", "text": "top video gaming action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "how does adult video game work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "video game genres adult video games options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "need adult video games video game genres, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "video game genres adventure video games overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "how does adventure video game work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "looking for adventure video games video game genres instead of adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "need casino and gambling video games, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "discovery", "text": "which casino and gambling video games video game genres is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "casino and gambling video games video game genres rather than action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "vague", "text": "looking into video game genres casual games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "video game genres casual games options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "casual games video game genres rather than action video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "vague", "text": "exploring video game genres educational video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "discovery", "text": "best educational video games video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "learn about educational video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "discovery", "text": "compare video game genres exercise and fitness video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "discovery", "text": "compare video gaming video game genres exercise and fitness video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "discovery", "text": "best exercise and fitness video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "researching family video games, not action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "discovery", "text": "top video game genres family video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "family video games basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "vague", "text": "need advice about video gaming horror video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "discovery", "text": "compare video gaming horror video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "horror video games rather than adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "how does video game genres mmos work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "discovery", "text": "top mmos in video game genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > MMOs", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "researching mmos, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "video game genres music and party video games overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "discovery", "text": "best video game genres music and party video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "video gaming video game genres music and party video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "video gaming video game genres puzzle video games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "how does video gaming video game genres puzzle video games work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "video gaming puzzle video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "racing video game rather than action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "discovery", "text": "compare racing video game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "racing video games video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "discovery", "text": "role-playing video game options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "discovery", "text": "which video gaming video game genres role-playing video games is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "role-playing video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "discovery", "text": "best video game genres simulation video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "discovery", "text": "top video gaming video game genres simulation video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "simulation video games video game genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "discovery", "text": "best sports video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "video gaming video game genres sports video games guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need sports video games, not action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "what is video gaming video game genres strategy video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "learn about video game genres strategy video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need strategy video games, not adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "how does war and conflicts work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching war and conflicts, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "top war and conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "compare war and conflicts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "what is war and conflict"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "need advice about war and conflicts options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need war and conflicts, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflict basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "compare war and conflict"} diff --git a/data/iab/train.jsonl b/data/iab/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..48a00cd9d4766e76c8cd641f149845d0a9b81b2c --- /dev/null +++ b/data/iab/train.jsonl @@ -0,0 +1,13211 @@ +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attraction basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "how does attractions work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "need attraction, not business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "which attraction is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching attraction, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "attractions rather than business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attraction guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "top attraction"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "need attractions, not business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "top attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for attraction instead of books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "need advice about attractions guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "attractions rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "help me choose attractions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "attraction options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "what is attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "what is attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "need advice about attractions options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "attractions rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need attraction, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "looking for attractions instead of business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for attractions instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "help me choose attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "best attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "attraction rather than business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching attractions, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "how does attraction work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "best attraction"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "researching attraction, not business and finance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "exploring attractions options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "what is attractions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "learn about attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attraction"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for attractions instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need attraction, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "looking for attraction instead of business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "researching attractions, not business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "what is attraction"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "attraction rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "best attractions amusement and theme parks options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "best amusement and theme parks in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "learn about attractions amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "amusement and theme parks rather than museums and galleries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "amusement and theme parks options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme park overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "top attractions amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme park guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "how does amusement and theme park work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "vague", "text": "need advice about attractions amusement and theme parks options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "best attractions amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme parks attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "compare amusement and theme parks in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "how does amusement and theme parks in attractions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "compare attractions amusement and theme parks options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "compare amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "discovery", "text": "best amusement and theme parks attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme parks in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "vague", "text": "need advice about amusement and theme parks in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme parks attractions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme parks attractions basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "vague", "text": "exploring amusement and theme parks in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "attractions amusement and theme parks options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "amusement and theme parks overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "top bars and restaurants attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "vague", "text": "looking into bars and restaurants in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "action", "text": "reserve bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "compare attractions bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "compare bars and restaurants attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "action", "text": "get attractions bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "bars and restaurants basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "which bars and restaurants attractions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "top bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "bars and restaurants overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "compare attractions bars and restaurants options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "vague", "text": "exploring bars and restaurants in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "what is bars & restaurant"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "what is bars and restaurants attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "learn about bars and restaurants attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "action", "text": "get bars and restaurants"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "vague", "text": "looking into attractions bars and restaurants options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "how does bars & restaurant work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "action", "text": "book bars and restaurants attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "learn about bars & restaurant"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "vague", "text": "need advice about bars and restaurants in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "bars and restaurants in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "what is bars and restaurants in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "attractions bars and restaurants options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "casinos and gambling attractions rather than museums and galleries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "best attractions casinos and gambling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "researching casinos and gambling, not amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for casinos & gambling instead of amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "top attractions casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "best attractions casinos and gambling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "vague", "text": "exploring attractions casinos and gambling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "casinos & gambling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "learn about attractions casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "attractions casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "how does casinos and gambling work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "attractions casinos and gambling options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "attractions casinos and gambling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "how does attractions casinos and gambling work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "learn about casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "casinos & gambling guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "casinos and gambling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "what is casinos and gambling attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "vague", "text": "help me choose attractions casinos and gambling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "compare attractions casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "which casinos and gambling attractions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "attractions casinos and gambling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "vague", "text": "looking into attractions casinos and gambling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "vague", "text": "help me choose casinos and gambling in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "compare attractions historic site and landmark tours options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "historic site and landmark tours in attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "what is attractions historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "historic site and landmark tours attractions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "what is attractions historic site and landmark tours options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "historic site and landmark tour basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "learn about historic site and landmark tour"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "compare historic site and landmark tours in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "attractions historic site and landmark tours guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "compare historic site and landmark tours"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "what is historic site and landmark tours in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "best attractions historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "learn about historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "how does historic site and landmark tours attractions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "top historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "how does historic site and landmark tours work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "top historic site and landmark tour"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "vague", "text": "exploring attractions historic site and landmark tours options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "top historic site and landmark tours in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "discovery", "text": "best historic site and landmark tours in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "attractions historic site and landmark tours overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "vague", "text": "help me choose historic site and landmark tours in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "vague", "text": "looking into historic site and landmark tours in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "vague", "text": "help me choose attractions historic site and landmark tours options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "need malls and shopping centers, not nightclubs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "malls & shopping center options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "looking for malls and shopping centers instead of bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "looking for attractions malls and shopping centers instead of bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "malls and shopping centers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "compare malls and shopping centers attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "how does attractions malls and shopping centers options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "vague", "text": "exploring attractions malls and shopping centers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "attractions malls and shopping centers overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "attractions malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "malls and shopping centers attractions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "which malls and shopping centers attractions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "malls and shopping centers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "attractions malls and shopping centers basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "compare malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "best malls & shopping center"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "learn about attractions malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "malls and shopping centers attractions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "learn about malls and shopping centers attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "attractions malls and shopping centers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "which malls & shopping center is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "vague", "text": "exploring malls and shopping centers in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "how does malls and shopping centers in attractions work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "need attractions museums and galleries, not historic site and landmark tours"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "top attractions museums and galleries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "vague", "text": "help me choose attractions museums and galleries options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "museums and galleries rather than bars and restaurants"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "what is museums and galleries in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "compare attractions museums and galleries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "how does museums and galleries in attractions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "what is attractions museums and galleries options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "which attractions museums and galleries is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "museums and galleries attractions rather than nightclubs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "need museums and galleries attractions, not casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "attractions museums and galleries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "museums & gallery options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "museums and galleries attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "which museums and galleries attractions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "top museums & gallery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "attractions museums and galleries guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "compare museums & gallery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "best museums and galleries attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "discovery", "text": "best museums & gallery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "learn about museums and galleries attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "museums and galleries in attractions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "vague", "text": "looking into museums and galleries in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "vague", "text": "looking into attractions museums and galleries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "vague", "text": "looking into nightclubs in attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "looking for attractions nightclubs instead of malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "nightclub options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "how does nightclubs work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "what is nightclub"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "compare nightclubs attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "nightclubs guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "attractions nightclubs rather than casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "researching nightclub, not casinos and gambling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "best attractions nightclubs options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "vague", "text": "exploring nightclubs in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "how does nightclub work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "what is nightclubs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "nightclub basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "how does attractions nightclubs options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "compare nightclubs in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "compare attractions nightclubs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "top nightclubs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "vague", "text": "need advice about attractions nightclubs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "attractions nightclubs overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "what is attractions nightclubs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "nightclubs attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "what is nightclubs attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "alias", "text": "nightclubs in attractions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "what is attractions outdoor activities options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "attractions outdoor activities options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "looking for outdoor activities attractions instead of bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "outdoor activities attractions rather than casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activity guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "attractions outdoor activities rather than historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activities attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "looking for outdoor activity instead of museums and galleries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activities in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "outdoor activities options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "attractions outdoor activities basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "what is outdoor activities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "best outdoor activities attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "vague", "text": "looking into attractions outdoor activities options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "learn about outdoor activity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "best outdoor activities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "how does outdoor activity work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "best outdoor activities in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "what is outdoor activities in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "top outdoor activity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "compare outdoor activities in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "vague", "text": "exploring attractions outdoor activities options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activities overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "top outdoor activities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "parks and nature attractions rather than bars and restaurants"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "how does attractions parks and nature options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "how does parks and nature in attractions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "parks and nature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "attractions parks and nature options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "learn about parks and nature attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "which parks & nature is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "how does attractions parks and nature work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "which parks and nature is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks and nature in attractions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "vague", "text": "help me choose parks and nature in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks & nature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks and nature overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "attractions parks and nature overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "compare attractions parks and nature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "vague", "text": "exploring attractions parks and nature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "top attractions parks and nature options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks & nature basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks and nature attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "attractions parks and nature guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "compare parks and nature attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "discovery", "text": "top parks and nature in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "vague", "text": "looking into parks and nature in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "vague", "text": "need advice about parks and nature in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "vague", "text": "help me choose attractions theater venues options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "need theater venues attractions, not amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "best theater venues in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "top theater venues in attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for theater venues instead of amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "best theater venues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venue basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venues in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venues basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "learn about theater venues attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "top theater venues attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "compare theater venues in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "compare attractions theater venues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venue guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "how does theater venues attractions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "learn about theater venue"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "attractions theater venues basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venues in attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "theater venues guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "alias", "text": "what is theater venues in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "vague", "text": "looking into theater venues in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "vague", "text": "exploring theater venues in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "vague", "text": "exploring attractions theater venues options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "need zoos and aquariums, not museums and galleries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "compare zoos and aquariums"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "what is zoos and aquariums in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "top zoos and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "zoos and aquariums attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "what is zoos and aquariums attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "best attractions zoos and aquariums options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "learn about attractions zoos and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "zoos & aquarium basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "zoos and aquariums in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "top attractions zoos and aquariums options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "zoos and aquariums options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "learn about zoos and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "top attractions zoos and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "learn about zoos & aquarium"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "vague", "text": "need advice about zoos and aquariums in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "vague", "text": "help me choose attractions zoos and aquariums options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "vague", "text": "exploring attractions zoos and aquariums options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "attractions zoos and aquariums basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "attractions zoos and aquariums guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "vague", "text": "help me choose zoos and aquariums in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "zoos and aquariums attractions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "how does zoos and aquariums in attractions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "top zoos and aquariums in attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "compare used cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "learn about automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "looking into auto advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for automotive instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "compare vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "looking for automotive instead of business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "top automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "researching automotive, not business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "used cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "vehicle shopping guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "need advice about auto advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "need advice about automotive options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching automotive, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "used cars guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "automotive overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "top car buying"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "compare automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "top vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "compare auto advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "best car buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "how does vehicle shopping work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "automotive rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "car buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is auto advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "how does automotive work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "help me choose vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "best auto advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "top auto advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "auto advice guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "how does car buying work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "need advice about vehicle shopping"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "help me choose automotive guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "exploring car buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "vehicle shopping"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is automotive options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching automotive, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "exploring automotive guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "need automotive, not business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "exploring auto advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "looking into automotive guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "exploring automotive options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "best automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "car buying guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "auto advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "need advice about car buying"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "automotive guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "how does auto advice work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "help me choose car buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "need advice about used cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "how does used cars work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "how does auto body style work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "best auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "what is auto body styles in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "learn about automotive auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "auto body styles automotive overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "compare auto body styles automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "top automotive auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "what is auto body styles automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "automotive auto body styles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "vague", "text": "help me choose automotive auto body styles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "vague", "text": "need advice about automotive auto body styles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "what is automotive auto body styles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "vague", "text": "looking into automotive auto body styles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "which auto body styles is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "vague", "text": "looking into auto body styles in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "learn about auto body style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "what is automotive auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "auto body styles in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "auto body style guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "how does auto body styles automotive work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "top auto body style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "auto body styles automotive options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "top auto body styles automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "discovery", "text": "best commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "discovery", "text": "top automotive auto body styles commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "what is auto body styles commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "discovery", "text": "top commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "automotive auto body styles commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "auto body styles commercial trucks options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "discovery", "text": "best auto body styles commercial trucks options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "commercial trucks in auto body styles guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "how does automotive auto body styles commercial trucks work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "alias", "text": "auto body styles commercial trucks overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "vague", "text": "exploring commercial trucks in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "vague", "text": "need advice about auto body styles commercial trucks options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Convertible", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "auto body styles convertible rather than coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "automotive auto body styles convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "discovery", "text": "which automotive auto body styles convertible is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "how does automotive convertible work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "what is automotive auto body styles convertible"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Convertible", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "convertible rather than coupe"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "vague", "text": "need advice about automotive convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "convertible auto body styles overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "how does automotive auto body styles convertible work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "vague", "text": "help me choose auto body styles convertible options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "discovery", "text": "best automotive auto body styles convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "discovery", "text": "best convertible auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "automotive coupe guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Coupe", "negative_iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "contrastive", "text": "looking for auto body styles coupe instead of crossover"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Coupe", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching automotive auto body styles coupe, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "coupe auto body styles basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "vague", "text": "exploring auto body styles coupe options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "discovery", "text": "compare automotive coupe"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Coupe", "negative_iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "contrastive", "text": "looking for coupe instead of crossover"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "automotive auto body styles coupe overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "discovery", "text": "best coupe auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "discovery", "text": "which automotive auto body styles coupe is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "vague", "text": "help me choose auto body styles coupe options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "discovery", "text": "top automotive auto body styles coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "discovery", "text": "which auto body styles crossover is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "learn about automotive auto body styles crossover"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "auto body styles crossover basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "discovery", "text": "crossover auto body styles options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Crossover", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need automotive auto body styles crossover, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "discovery", "text": "best crossover in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "what is crossover in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "discovery", "text": "top automotive auto body styles crossover"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "crossover in auto body styles guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "how does automotive auto body styles crossover work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Crossover", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "crossover rather than commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "alias", "text": "auto body styles crossover"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "discovery", "text": "hatchback auto body styles options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Hatchback", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "auto body styles hatchback rather than coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "hatchback auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "discovery", "text": "best automotive auto body styles hatchback"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Hatchback", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "looking for auto body styles hatchback instead of convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "how does automotive auto body styles hatchback work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Hatchback", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "need automotive auto body styles hatchback, not coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "how does hatchback work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "vague", "text": "need advice about auto body styles hatchback options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "what is automotive auto body styles hatchback"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "hatchback guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "alias", "text": "automotive auto body styles hatchback basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "discovery", "text": "best auto body styles microcar"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "discovery", "text": "which automotive auto body styles microcar is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "discovery", "text": "compare auto body styles microcar"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "action", "text": "buy automotive auto body styles microcar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "what is automotive microcar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "automotive microcar"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Microcar", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need auto body styles microcar, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Microcar", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "need microcar, not coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "microcar overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "action", "text": "find microcar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "what is microcar in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "learn about auto body styles microcar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "discovery", "text": "top auto body styles minivan options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "learn about minivan"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Minivan", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "looking for automotive auto body styles minivan instead of convertible"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Minivan", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "need automotive auto body styles minivan, not convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "what is minivan auto body styles"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Minivan", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for minivan instead of coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "learn about automotive auto body styles minivan"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "what is minivan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "minivan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "how does automotive minivan work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "vague", "text": "need advice about minivan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "vague", "text": "need advice about automotive minivan"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "discovery", "text": "off-road vehicle options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "off-road vehicles guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "need automotive auto body styles off-road vehicles, not coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "how does off-road vehicle work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "auto body styles off-road vehicles rather than convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "off-road vehicles overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "vague", "text": "looking into auto body styles off-road vehicles options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "looking for auto body styles off-road vehicles instead of commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "discovery", "text": "auto body styles off-road vehicles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "vague", "text": "need advice about off-road vehicles in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "how does automotive auto body styles off-road vehicles work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "off-road vehicle overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "how does pickup trucks in auto body styles work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for pickup truck instead of coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "what is pickup trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "auto body styles pickup trucks guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "discovery", "text": "top auto body styles pickup trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "discovery", "text": "best pickup trucks auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "discovery", "text": "best auto body styles pickup trucks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "discovery", "text": "top automotive pickup trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need auto body styles pickup trucks, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "vague", "text": "looking into pickup trucks in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "discovery", "text": "which pickup trucks is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "vague", "text": "help me choose pickup trucks in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "what is sedan"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "learn about sedan auto body styles"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Sedan", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "sedan rather than commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Sedan", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "auto body styles sedan rather than convertible"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "vague", "text": "exploring sedan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Sedan", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "looking for sedan instead of convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "sedan auto body styles overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "sedan basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "discovery", "text": "top auto body styles sedan"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "discovery", "text": "compare sedan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "vague", "text": "help me choose sedan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "discovery", "text": "compare auto body styles sedan options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "learn about station wagon"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "discovery", "text": "top station wagon in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "discovery", "text": "automotive auto body styles station wagon options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "auto body styles station wagon rather than convertible"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "need station wagon, not coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "discovery", "text": "best automotive auto body styles station wagon"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "auto body styles station wagon overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "discovery", "text": "auto body styles station wagon options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "what is auto body styles station wagon"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "how does station wagon in auto body styles work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "vague", "text": "need advice about auto body styles station wagon options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "station wagon auto body styles guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "automotive suv guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "discovery", "text": "best automotive suv"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "what is auto body styles suv"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "automotive auto body styles suv basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "discovery", "text": "suv options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "discovery", "text": "compare suv in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "suv auto body styles overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "vague", "text": "need advice about suv in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "learn about automotive auto body styles suv"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > SUV", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "suv rather than coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "auto body styles suv basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "vague", "text": "exploring suv in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "vague", "text": "need advice about van in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "discovery", "text": "best van in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "van auto body styles basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Van", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "auto body styles van rather than commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Van", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "looking for automotive auto body styles van instead of coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "auto body styles van"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Van", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "looking for automotive auto body styles van instead of convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "discovery", "text": "which van auto body styles is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "auto body styles van guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "automotive van guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "vague", "text": "need advice about auto body styles van options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "what is auto body styles van"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "top auto buying and selling automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "vague", "text": "need advice about automotive auto buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "auto buying and selling guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "top automotive auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "auto buying and selling in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "best used suv to buy this year"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "action", "text": "find auto buying and selling automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "action", "text": "book auto buying and selling automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "auto buying and selling automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "learn about automotive auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "top automotive auto buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "best automotive auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "which auto buying and selling automotive is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "auto buying and selling automotive options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "action", "text": "buy auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "vague", "text": "help me choose auto buying and selling in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "what is auto buying and selling in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "how does automotive auto buying and selling options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "what is automotive auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "automotive auto buying and selling guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "learn about auto buying and selling automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "automotive auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "vague", "text": "looking into automotive auto buying and selling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need auto insurance, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need auto insurance automotive, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "learn about auto insurance automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "vague", "text": "looking into auto insurance in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "researching auto insurance, not auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "need auto insurance automotive, not auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "automotive auto insurance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "auto insurance basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "vague", "text": "exploring automotive auto insurance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "auto insurance in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "vague", "text": "exploring auto insurance in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "learn about auto insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "automotive auto insurance options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "top auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "automotive auto insurance basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "top auto insurance in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "compare auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "auto insurance automotive options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "vague", "text": "need advice about auto insurance in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "compare auto insurance automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "top automotive auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "best auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "which automotive auto insurance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "discovery", "text": "best automotive auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "what is auto parts automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "need auto parts automotive, not auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "compare auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto parts in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need automotive auto parts, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "looking for auto parts instead of auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Repair", "prompt_family": "contrastive", "text": "need auto part, not auto repair"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need automotive auto parts, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto part guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto parts overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "top automotive auto parts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "top automotive auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "vague", "text": "exploring auto parts in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "automotive auto parts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto parts automotive basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto parts automotive overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "top auto parts in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "automotive auto parts options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "best automotive auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "vague", "text": "help me choose automotive auto parts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "top auto parts automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "discovery", "text": "which automotive auto parts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "how does auto parts work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "learn about auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "best automotive auto recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "automotive auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need auto recalls automotive, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "auto recall options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "automotive auto recalls basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "auto recall"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "best auto recall"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "what is automotive auto recalls options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "how does automotive auto recalls options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "vague", "text": "need advice about auto recalls in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "learn about auto recalls automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "learn about auto recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "how does auto recalls work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "automotive auto recalls options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "learn about automotive auto recalls"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "what is auto recalls in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "compare auto recalls in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "auto recalls automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "how does auto recall work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "best auto recalls"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "vague", "text": "exploring automotive auto recalls options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "alias", "text": "auto recalls automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "compare auto recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "which auto recall is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "what is automotive auto rentals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "compare automotive auto rentals options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "how does auto rental work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "compare auto rentals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "best auto rentals in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "automotive auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "action", "text": "reserve auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "action", "text": "book auto rental"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "compare auto rentals in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "best auto rentals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "what is automotive auto rentals options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "vague", "text": "looking into auto rentals in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "auto rentals automotive overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "automotive auto rentals guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "auto rental guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "top auto rental"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "how does automotive auto rentals work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "auto rental basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "auto rentals basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "vague", "text": "looking into automotive auto rentals options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "learn about auto rentals automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "auto rental overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "vague", "text": "help me choose automotive auto rentals options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "automotive auto rentals options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "top auto repair in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need automotive auto repair, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "top auto repair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "automotive auto repair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "which auto repair is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "vague", "text": "exploring auto repair in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "auto repair automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "compare automotive auto repair options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "auto repair automotive options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "compare auto repair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "auto repair automotive basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "learn about auto repair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "which auto repair automotive is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "auto repair basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "automotive auto repair basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "top automotive auto repair options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "auto repair guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "discovery", "text": "top auto repair automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "what is auto repair in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "learn about automotive auto repair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "auto repair automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "how does auto repair work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "learn about auto repair automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "vague", "text": "need advice about auto repair in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "researching auto safety automotive, not auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "looking for auto safety automotive instead of auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "automotive auto safety rather than auto recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "how does auto safety automotive work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "which auto safety is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "what is automotive auto safety options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "vague", "text": "exploring auto safety in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "automotive auto safety options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "compare auto safety automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "how does auto safety work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "vague", "text": "looking into automotive auto safety options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "automotive auto safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "best automotive auto safety"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "top automotive auto safety options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "vague", "text": "need advice about automotive auto safety options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "auto safety automotive options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "automotive auto safety guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "auto safety in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "automotive auto safety overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "automotive auto safety options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "best auto safety automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "auto safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "what is auto safety automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "which automotive auto safety is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "top auto shows automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "auto shows automotive guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "top auto shows in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "automotive auto shows"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "vague", "text": "help me choose automotive auto shows options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "top auto shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "auto shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "learn about auto shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "auto show"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "automotive auto shows options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "best automotive auto shows options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "auto shows automotive options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "how does auto shows in automotive work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "which auto show is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "which auto shows automotive is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "auto shows automotive overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "auto shows basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "compare auto show"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "vague", "text": "exploring automotive auto shows options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "what is automotive auto shows options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "how does auto shows automotive work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "what is auto show"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "vague", "text": "help me choose auto shows in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "vague", "text": "need advice about auto shows in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "how does automotive auto technology work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "auto technology automotive rather than auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "researching auto technology, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for automotive auto technology instead of auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "looking for auto technology instead of auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology automotive basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology automotive overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "automotive auto technology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "compare automotive auto technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "automotive auto technology basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "automotive auto technology options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "top auto technology in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "vague", "text": "exploring automotive auto technology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "top auto technology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "vague", "text": "need advice about auto technology in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "learn about auto technology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology in automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "which auto technology is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "how does automotive auto technology options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "automotive auto technology overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "compare automotive auto technology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "auto technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "discovery", "text": "compare auto infotainment technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "discovery", "text": "which auto infotainment technologies auto technology is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "discovery", "text": "which auto infotainment technology is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "auto infotainment technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "automotive auto technology auto infotainment technologies overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "what is automotive auto infotainment technologies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "contrastive", "text": "need auto infotainment technologies auto technology, not auto navigation systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "what is automotive auto technology auto infotainment technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "automotive auto technology auto infotainment technologies basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "contrastive", "text": "need auto infotainment technologies auto technology, not auto safety technologies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "how does auto infotainment technologies in auto technology work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "vague", "text": "exploring auto infotainment technologies in auto technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "auto technology auto navigation systems basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "learn about auto navigation system"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "discovery", "text": "top auto navigation system"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "negative_iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "contrastive", "text": "auto navigation system rather than auto infotainment technologies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need auto navigation system, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "auto navigation systems auto technology basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "discovery", "text": "which auto navigation systems is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "vague", "text": "exploring auto technology auto navigation systems options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "discovery", "text": "compare auto technology auto navigation systems options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "vague", "text": "need advice about auto navigation systems in auto technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "how does auto technology auto navigation systems work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "how does auto navigation systems auto technology work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "auto safety technologies rather than convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "auto safety technologies guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "what is auto safety technologies in auto technology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "what is automotive auto safety technologies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "contrastive", "text": "auto safety technology rather than auto navigation systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "how does auto safety technologies auto technology work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "vague", "text": "need advice about automotive auto safety technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "automotive auto technology auto safety technologies overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "what is auto technology auto safety technologies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "discovery", "text": "best auto safety technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "discovery", "text": "auto technology auto safety technologies options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "vague", "text": "need advice about auto safety technologies in auto technology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "auto type rather than auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "which auto type is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "looking for auto type automotive instead of auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "vague", "text": "need advice about auto type in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need auto type, not auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "compare auto type in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto type automotive rather than auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "top automotive auto type options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "vague", "text": "exploring auto type in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "learn about automotive auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "auto type automotive basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "vague", "text": "exploring automotive auto type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "auto type automotive overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "vague", "text": "help me choose auto type in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "what is auto type in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "auto type guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "top auto type automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "how does auto type automotive work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "what is automotive auto type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "what is auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "automotive auto type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "compare automotive auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "automotive auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "how does automotive auto type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "action", "text": "reserve automotive auto type budget cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "budget cars guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "vague", "text": "looking into budget cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "discovery", "text": "which auto type budget cars is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "discovery", "text": "compare automotive budget cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "budget cars in auto type guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "discovery", "text": "compare budget cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "action", "text": "get budget cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "automotive auto type budget cars basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "what is automotive budget cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "budget cars overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "budget car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "discovery", "text": "which certified pre-owned car is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "certified pre-owned car overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "auto type certified pre-owned cars basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "certified pre-owned cars guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "learn about certified pre-owned cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "action", "text": "book automotive auto type certified pre-owned cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "automotive certified pre-owned cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "vague", "text": "need advice about certified pre-owned cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "action", "text": "buy certified pre-owned car"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "vague", "text": "looking into certified pre-owned cars in auto type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "how does automotive certified pre-owned cars work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "action", "text": "find certified pre-owned cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "classic cars basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "action", "text": "book classic car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "auto type classic cars overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "discovery", "text": "compare auto type classic cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "how does auto type classic cars work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "discovery", "text": "top automotive classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "discovery", "text": "best classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "action", "text": "reserve automotive auto type classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "automotive auto type classic cars overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "vague", "text": "exploring automotive classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "classic cars overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "action", "text": "find automotive auto type classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "learn about concept cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "discovery", "text": "top concept cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "discovery", "text": "best concept cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "automotive auto type concept cars basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "what is concept cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "action", "text": "book concept cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "discovery", "text": "top automotive auto type concept cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "discovery", "text": "compare auto type concept cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "what is auto type concept cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "what is auto type concept cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "what is concept car"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "vague", "text": "exploring concept cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "automotive auto type driverless cars basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "discovery", "text": "top driverless car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "driverless car basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "how does driverless cars in auto type work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "discovery", "text": "compare auto type driverless cars options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "vague", "text": "need advice about driverless cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "how does driverless cars auto type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "discovery", "text": "best automotive auto type driverless cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "automotive driverless cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "action", "text": "buy auto type driverless cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "action", "text": "buy driverless cars auto type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "vague", "text": "need advice about automotive driverless cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Green Vehicles", "negative_iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "contrastive", "text": "need automotive auto type green vehicles, not certified pre-owned cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "vague", "text": "help me choose green vehicles in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "auto type green vehicles guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "what is automotive green vehicles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "discovery", "text": "top auto type green vehicles options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Green Vehicles", "negative_iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "contrastive", "text": "looking for green vehicle instead of classic cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "vague", "text": "exploring green vehicles in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "automotive auto type green vehicles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "green vehicles overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "green vehicles auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "discovery", "text": "compare green vehicles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "discovery", "text": "compare automotive green vehicles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "auto type luxury cars options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "discovery", "text": "best luxury car"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Luxury Cars", "negative_iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "contrastive", "text": "looking for automotive auto type luxury cars instead of classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "action", "text": "buy automotive auto type luxury cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "vague", "text": "exploring luxury cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "luxury car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "auto type luxury cars basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "what is luxury cars in auto type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "luxury cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "luxury car basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "alias", "text": "luxury cars guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "vague", "text": "exploring auto type luxury cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "discovery", "text": "performance car options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Performance Cars", "negative_iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "contrastive", "text": "need automotive auto type performance cars, not classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "performance car basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "action", "text": "get performance cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "discovery", "text": "best performance cars auto type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "what is performance cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "automotive auto type performance cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "performance cars auto type guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "how does performance cars auto type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "alias", "text": "automotive auto type performance cars guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "vague", "text": "exploring auto type performance cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "action", "text": "book automotive auto type performance cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "automotive car culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "best car culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "what is car culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "best automotive car culture options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "compare automotive car culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "how does car culture automotive work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "vague", "text": "exploring car culture in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "action", "text": "book automotive car culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "compare car culture in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "vague", "text": "need advice about automotive car culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "what is car culture automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "action", "text": "find car culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "automotive car culture basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "vague", "text": "exploring automotive car culture options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "top car culture in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "car culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "best car culture automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "car culture in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "compare car culture automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "learn about automotive car culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "action", "text": "book car culture automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "what is automotive car culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "how does automotive car culture options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "car culture basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "researching dash cam video, not auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "vague", "text": "need advice about automotive dash cam videos options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "need automotive dash cam videos, not auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "dash cam videos automotive rather than auto buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "how does automotive dash cam videos options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "how does automotive dash cam videos work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "dash cam videos automotive basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "how does dash cam video work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "which automotive dash cam videos is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "what is automotive dash cam videos"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "what is dash cam videos automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "what is dash cam video"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "learn about dash cam videos"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "compare dash cam videos in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "what is dash cam videos in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "top dash cam videos automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "top automotive dash cam videos"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "compare automotive dash cam videos options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "automotive dash cam videos guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "automotive dash cam videos options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "best automotive dash cam videos options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "compare automotive dash cam videos"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "dash cam videos options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "discovery", "text": "compare dash cam videos"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "what is automotive motorcycles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "compare motorcycles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "compare motorcycle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "which motorcycle is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "which automotive motorcycles is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "learn about automotive motorcycles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "motorcycles in automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "top motorcycles automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "automotive motorcycles basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "top automotive motorcycles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "compare motorcycles automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "compare automotive motorcycles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "how does motorcycles in automotive work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "vague", "text": "need advice about motorcycles in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "learn about motorcycle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "discovery", "text": "best automotive motorcycles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "motorcycles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "vague", "text": "looking into automotive motorcycles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "what is motorcycles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "motorcycle basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "how does automotive motorcycles work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "motorcycles automotive guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "vague", "text": "help me choose automotive motorcycles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "vague", "text": "exploring automotive motorcycles options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "vague", "text": "looking into automotive road-side assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "which road-side assistance is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "road-side assistance rather than auto recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "road-side assistance automotive overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "automotive road-side assistance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "road-side assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "top road-side assistance automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "best road-side assistance automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "learn about automotive road-side assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "road-side assistance automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "automotive road-side assistance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "what is road-side assistance automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "vague", "text": "help me choose automotive road-side assistance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "automotive road-side assistance options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "how does road-side assistance in automotive work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "top road-side assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "best automotive road-side assistance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "vague", "text": "exploring automotive road-side assistance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "vague", "text": "exploring road-side assistance in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "road-side assistance automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "what is road-side assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "how does road-side assistance automotive work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "road-side assistance in automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "road-side assistance automotive basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "looking for scooter instead of auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "researching scooters automotive, not auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooters guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "what is scooters automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "which scooter is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "top automotive scooters options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "what is scooter"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooter overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "vague", "text": "looking into automotive scooters options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "what is automotive scooters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "compare scooters automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "automotive scooters options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "automotive scooters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "which scooters automotive is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "learn about scooters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "top scooters automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "how does scooters in automotive work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "best scooters automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooter"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "automotive scooters overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "alias", "text": "scooters basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "vague", "text": "help me choose automotive scooters options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "vague", "text": "need advice about scooters in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "vague", "text": "looking into scooters in automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "books and literature rather than business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "top books to read"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "books and literature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "book recommendations guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "help me choose fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "looking into books to read"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "exploring books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "looking into book recommendations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need books and literature, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "best books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "exploring reading ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "need advice about books to read"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "books to read"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "compare book recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "which books and literature is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "how does book recommendations work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "books and literature overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "fiction books guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "books and literature rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching books and literature, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "books and literature rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "exploring book recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "learn about books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "top reading ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "how does fiction books work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "best book recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "how does books and literature work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching books and literature, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "looking into books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "exploring fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "book recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is books to read"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "help me choose book recommendations"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "looking into books and literature options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "compare books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "best reading ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "help me choose books and literature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "how does books to read work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "top books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for books and literature instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "looking into reading ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "best fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "help me choose books to read"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for books and literature instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "books and literature basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "need books and literature, not business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is reading ideas"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "researching books and literature art and photography, not poetry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "books and literature art and photography options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "researching art and photography, not fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "which art and photography is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "art and photography in books and literature guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "which books and literature art and photography is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "art and photography books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "vague", "text": "need advice about art and photography in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "best art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "art and photography overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "books and literature art and photography basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "art and photography books and literature options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "books and literature art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "books and literature art and photography guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "how does books and literature art and photography options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "books and literature art and photography overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "how does art and photography books and literature work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "compare art and photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "vague", "text": "exploring books and literature art and photography options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "art and photography basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "how does art and photography work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "top books and literature art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "discovery", "text": "best art and photography books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "vague", "text": "help me choose art and photography in books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "looking for books and literature comics and graphic novels instead of fiction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "looking for comics and graphic novels instead of art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "learn about comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "looking for comics and graphic novels books and literature instead of poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novel"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "looking for comics and graphic novels books and literature instead of art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "top comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "best comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "what is books and literature comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "top comics and graphic novels in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "comics and graphic novel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novels in books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "books and literature comics and graphic novels options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "what is comics and graphic novels in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "what is comics and graphic novels books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "vague", "text": "help me choose comics and graphic novels in books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "vague", "text": "need advice about comics and graphic novels in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "best comics and graphic novels books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "vague", "text": "looking into comics and graphic novels in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novel basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novels books and literature overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "how does comics and graphic novels books and literature work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "comics and graphic novels books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "vague", "text": "looking into books and literature fiction options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "top fiction in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "compare books and literature fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "how does books and literature fiction work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "best fiction"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "vague", "text": "exploring fiction in books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "researching fiction books and literature, not comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "how does fiction work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "vague", "text": "looking into fiction in books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "need fiction, not comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "need fiction books and literature, not comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "fiction options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "best books and literature fiction options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "need books and literature fiction, not art and photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "what is books and literature fiction options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "need fiction, not poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "which fiction books and literature is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "vague", "text": "help me choose fiction in books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "fiction books and literature guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "fiction books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "books and literature fiction basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "books and literature fiction guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "how does fiction books and literature work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "books and literature fiction options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "what is books and literature poetry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "books and literature poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "top poetry books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "best books and literature poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "best poetry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "poetry rather than fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "what is poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "poetry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "how does poetry work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "need poetry, not comics and graphic novels"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "vague", "text": "exploring books and literature poetry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "compare books and literature poetry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "need books and literature poetry, not fiction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "poetry rather than comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "how does books and literature poetry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "vague", "text": "looking into books and literature poetry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "best books and literature poetry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "how does books and literature poetry options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "books and literature poetry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "poetry books and literature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "what is poetry in books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "discovery", "text": "top books and literature poetry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "learn about books and literature poetry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "how does poetry in books and literature work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "exploring business and finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "financial planning"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is business and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "financial planning guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "best business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for business and finance instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "exploring business software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching business and finance, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "help me choose financial planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "business and finance rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "how does business and finance work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need business and finance, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching business and finance, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "business software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching business and finance, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "need advice about business software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "learn about business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need business and finance, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "looking into business and finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "sales and marketing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is company operations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "company operations guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "how does business software work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "compare financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "which business and finance is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is business and finance guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "help me choose business and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "how does sales and marketing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "looking into sales and marketing"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "need advice about business and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "top financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "top business software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "looking into financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "how does financial planning work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "exploring sales and marketing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "compare business software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for business and finance instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "best company operations"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "looking into business and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "business and finance overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "exploring financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "need advice about financial planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for business and finance instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "help me choose company operations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "business and finance rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "business and finance basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "business and finance rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "what is sales and marketing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "best business software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "help me choose sales and marketing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "need business, not economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "what is business and finance business options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "how does business and finance business options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Industries", "prompt_family": "contrastive", "text": "researching business business and finance, not industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "vague", "text": "exploring business in business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "top business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "business options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business in business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "best business and finance business options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "what is business in business and finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "need business and finance business, not economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "what is business"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "researching business business and finance, not economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "how does business work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "which business business and finance is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business in business and finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "compare business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business and finance business options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "how does business in business and finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business and finance business overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "best business in business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "discovery", "text": "compare business in business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "discovery", "text": "business accounting and finance business options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "negative_iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "contrastive", "text": "business accounting and finance rather than business it"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "business and finance business business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "discovery", "text": "best business accounting and finance in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "what is business business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "negative_iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "contrastive", "text": "business accounting & finance rather than business it"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "vague", "text": "exploring business business accounting and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "business accounting & finance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "business accounting and finance business rather than business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "business accounting and finance business basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "discovery", "text": "which business and finance business business accounting and finance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "alias", "text": "business accounting and finance basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "vague", "text": "looking into business and finance business administration"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Administration", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need business administration, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "vague", "text": "looking into business administration in business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "business business administration options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "business business administration guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Administration", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "need business administration, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "vague", "text": "looking into business business administration options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "how does business administration in business work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Administration", "negative_iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "contrastive", "text": "business administration rather than business it"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Administration", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "business and finance business business administration rather than business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "business and finance business business administration guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "discovery", "text": "compare business business administration options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance", "negative_iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "contrastive", "text": "business banking & finance rather than business it"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "how does business business banking and finance work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance business business banking and finance rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "how does business business banking and finance options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "how does business and finance business business banking and finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "business banking and finance business overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "business banking and finance basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance", "negative_iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "contrastive", "text": "need business and finance business business banking and finance, not business it"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "vague", "text": "need advice about business business banking and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "discovery", "text": "compare business and finance business business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "discovery", "text": "top business banking and finance business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "discovery", "text": "which business banking & finance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "alias", "text": "business and finance business business banking and finance angel investment guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "alias", "text": "angel investment in business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "discovery", "text": "best business and finance business business banking and finance angel investment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "discovery", "text": "top business banking and finance angel investment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "discovery", "text": "best business banking and finance angel investment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "discovery", "text": "compare business banking and finance angel investment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "vague", "text": "help me choose business banking and finance angel investment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "alias", "text": "business and finance business business banking and finance angel investment overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "contrastive", "text": "need bankruptcy business banking and finance, not debt factoring and invoice discounting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "discovery", "text": "compare business and finance bankruptcy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "vague", "text": "need advice about business and finance bankruptcy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "researching business and finance business business banking and finance bankruptcy, not business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "alias", "text": "business banking and finance bankruptcy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "alias", "text": "learn about bankruptcy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "alias", "text": "business and finance business business banking and finance bankruptcy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "alias", "text": "learn about business banking and finance bankruptcy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "vague", "text": "help me choose business loans in business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "discovery", "text": "compare business loans"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "contrastive", "text": "looking for business and finance business business banking and finance business loans instead of bankruptcy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "alias", "text": "business and finance business business banking and finance business loans"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "alias", "text": "how does business and finance business loans work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "action", "text": "reserve business loans business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "discovery", "text": "which business loans is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "alias", "text": "what is business and finance business loans"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "business banking and finance debt factoring and invoice discounting rather than business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "discovery", "text": "top debt factoring and invoice discounting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "discovery", "text": "debt factoring & invoice discounting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "alias", "text": "how does business and finance business business banking and finance debt factoring and invoice discounting work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "alias", "text": "what is debt factoring and invoice discounting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "discovery", "text": "compare business banking and finance debt factoring and invoice discounting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "alias", "text": "debt factoring and invoice discounting in business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "alias", "text": "how does business banking and finance debt factoring and invoice discounting work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "learn about mergers and acquisition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "what is business banking and finance mergers and acquisitions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "business banking and finance mergers and acquisitions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "discovery", "text": "top business banking and finance mergers and acquisitions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "discovery", "text": "which mergers and acquisitions business banking and finance is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "contrastive", "text": "business banking and finance mergers and acquisitions rather than angel investment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "discovery", "text": "compare business banking and finance mergers and acquisitions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "vague", "text": "need advice about business and finance mergers and acquisitions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "alias", "text": "private equity business banking and finance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "alias", "text": "private equity basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "discovery", "text": "compare private equity business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "alias", "text": "business and finance business business banking and finance private equity guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "alias", "text": "how does business banking and finance private equity work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "discovery", "text": "best business and finance private equity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "vague", "text": "looking into business and finance private equity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "discovery", "text": "compare business banking and finance private equity"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "contrastive", "text": "need sale & lease back, not bankruptcy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "discovery", "text": "which sale and lease back is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "alias", "text": "sale and lease back basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "alias", "text": "business and finance business business banking and finance sale and lease back guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "discovery", "text": "best sale and lease back business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "alias", "text": "learn about sale and lease back business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "alias", "text": "sale and lease back guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "vague", "text": "need advice about business and finance sale and lease back"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "discovery", "text": "top venture capital in business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "looking for venture capital instead of business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "discovery", "text": "top venture capital"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "alias", "text": "what is venture capital"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "alias", "text": "business banking and finance venture capital basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "alias", "text": "what is business banking and finance venture capital options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "alias", "text": "learn about venture capital"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "alias", "text": "business and finance business business banking and finance venture capital overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "how does business it in business work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "which business business it is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "password reset help guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business I.T.", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching business and finance business business it, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "best business and finance business business it"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "best access management"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "work account security options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "business and finance business business it"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business I.T.", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business business it instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "discovery", "text": "best work account security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "vague", "text": "exploring business business it options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "vague", "text": "exploring business it in business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "how does business operations in business work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "learn about business business operations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "learn about business operation"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Operations", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need business and finance business business operations, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "discovery", "text": "business operations business options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Operations", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching business business operations, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "how does business business operations work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "business operation guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "vague", "text": "need advice about business and finance business operations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Operations", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "researching business business operations, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "what is business business operations options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "discovery", "text": "top business operations in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "discovery", "text": "compare business utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Utilities", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business and finance business business utilities, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "discovery", "text": "best business business utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Utilities", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "looking for business utilities instead of business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Utilities", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need business business utilities, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "business business utilities guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "discovery", "text": "which business utility is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "business utility"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "business and finance business business utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "what is business utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "business utilities business basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "alias", "text": "business and finance business business utilities guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "consumer issues in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching consumer issue, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "discovery", "text": "compare consumer issues business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "what is business consumer issues options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need business consumer issues, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "discovery", "text": "best business and finance consumer issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "discovery", "text": "top business consumer issues options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "how does consumer issues work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "need business and finance business consumer issues, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "consumer issues business guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "vague", "text": "exploring business consumer issues options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "discovery", "text": "top consumer issues business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "contrastive", "text": "researching consumer issues recalls, not bankruptcy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "discovery", "text": "which recalls is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "contrastive", "text": "consumer issues recalls rather than debt factoring and invoice discounting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "alias", "text": "consumer issues recalls options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "alias", "text": "recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "alias", "text": "recalls consumer issues basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "alias", "text": "learn about recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "alias", "text": "recalls consumer issues guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "what is executive leadership & management"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching business executive leadership and management, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "discovery", "text": "which executive leadership and management is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "discovery", "text": "best executive leadership and management"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "vague", "text": "help me choose executive leadership and management in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need executive leadership & management, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business executive leadership and management instead of business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "executive leadership and management basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "executive leadership and management in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "executive leadership and management business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "alias", "text": "business executive leadership and management"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "vague", "text": "help me choose business executive leadership and management options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "business government business overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "what is government business business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "how does business and finance government business work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "discovery", "text": "best business and finance government business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "how does business and finance business government business work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "vague", "text": "need advice about business government business options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "discovery", "text": "best business government business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "discovery", "text": "best business government business options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "how does business government business options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "government business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "discovery", "text": "compare business government business options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "vague", "text": "need advice about government business in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "discovery", "text": "best business and finance business green solutions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "discovery", "text": "compare business green solutions options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Green Solutions", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business green solutions instead of business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Green Solutions", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "business green solutions rather than business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "discovery", "text": "business and finance business green solutions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "green solution guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "learn about business green solutions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "green solutions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "what is green solutions business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "vague", "text": "help me choose business green solutions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "how does green solution work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "vague", "text": "exploring business green solutions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "what is human resource"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "vague", "text": "need advice about business human resources options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "discovery", "text": "business human resources options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "human resources"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "discovery", "text": "which business and finance business human resources is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Human Resources", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching business and finance business human resources, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "human resources business basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "vague", "text": "help me choose business human resources options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "discovery", "text": "compare human resource"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Human Resources", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "need business and finance business human resources, not business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "learn about business human resources"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "vague", "text": "exploring business human resources options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Large Business", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business large business rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "how does large business in business work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Large Business", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "researching business large business, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "discovery", "text": "best business large business options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "learn about large business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "discovery", "text": "best large business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "business and finance business large business overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "how does business and finance large business work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "discovery", "text": "which large business business is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "discovery", "text": "compare business large business options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "vague", "text": "looking into large business in business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "vague", "text": "help me choose large business in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Logistics", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need business and finance business logistics, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "discovery", "text": "top logistics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "learn about logistic"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "vague", "text": "exploring business logistics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Logistics", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching logistic, not business administration"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "discovery", "text": "compare business and finance logistics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "business and finance business logistics guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "vague", "text": "exploring logistics in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "discovery", "text": "top logistic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "logistic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "logistics business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "how does logistics business work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Marketing and Advertising", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "business and finance business marketing and advertising rather than business administration"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "how does marketing and advertising in business work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Marketing and Advertising", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "need business and finance business marketing and advertising, not business administration"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "discovery", "text": "best marketing and advertising in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Marketing and Advertising", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business marketing and advertising rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "vague", "text": "exploring business marketing and advertising options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "campaign analytics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "how does marketing tools work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "discovery", "text": "best marketing and advertising business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "discovery", "text": "which marketing and advertising business is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "what is business and finance marketing and advertising"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "marketing and advertising business overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "vague", "text": "looking into business sales options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "discovery", "text": "compare customer relationship management"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Sales", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance business sales instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Sales", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "business and finance business sales rather than business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "customer relationship management basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "discovery", "text": "best sales business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "sales in business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Sales", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "need crm software, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "discovery", "text": "top sales in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "discovery", "text": "which lead management tools is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "business sales overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "vague", "text": "exploring business and finance sales"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "business small and medium-sized business overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "vague", "text": "need advice about business and finance small and medium-sized business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "discovery", "text": "top small and medium-sized business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "business small and medium-sized business rather than business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "need business and finance business small and medium-sized business, not business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "discovery", "text": "best business and finance business small and medium-sized business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "learn about business and finance business small and medium-sized business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "what is small and medium-sized business business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "what is business small and medium-sized business options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "alias", "text": "how does small and medium-sized business work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "vague", "text": "help me choose business small and medium-sized business options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "prompt_family": "discovery", "text": "top business small and medium-sized business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "how does business and finance business startups work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Startups", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business startups instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "vague", "text": "help me choose business and finance startups"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "discovery", "text": "startup options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "learn about startup"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Startups", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business startups, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "vague", "text": "looking into business startups options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "what is startup"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "what is business and finance business startups"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "startup guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "startups in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "alias", "text": "how does startup work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "compare economy in business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "what is economy in business and finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Economy", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "researching business and finance economy, not business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "best economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "how does business and finance economy work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "vague", "text": "looking into economy in business and finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Economy", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "looking for business and finance economy instead of business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "which business and finance economy is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "top economy in business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "which economy business and finance is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Economy", "negative_iab_path": "Business and Finance > Industries", "prompt_family": "contrastive", "text": "researching business and finance economy, not industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "business and finance economy basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Economy", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "business and finance economy rather than business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "top business and finance economy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Economy", "negative_iab_path": "Business and Finance > Industries", "prompt_family": "contrastive", "text": "economy business and finance rather than industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "economy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "learn about business and finance economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "business and finance economy overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "what is business and finance economy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "economy business and finance basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "how does business and finance economy options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "vague", "text": "need advice about economy in business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "vague", "text": "help me choose economy in business and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Commodities", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for commodities instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "how does economy commodities work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "discovery", "text": "top business and finance economy commodities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "economy commodities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "commodities economy guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "vague", "text": "need advice about commodities in economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "vague", "text": "exploring economy commodities options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "business and finance commodities guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "discovery", "text": "business and finance economy commodities options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Commodities", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "commodities rather than financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "economy commodities overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "alias", "text": "commodities basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Currencies", "negative_iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "contrastive", "text": "currencies rather than commodities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Currencies", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "researching business and finance economy currencies, not financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Currencies", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "business and finance economy currencies rather than financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Currencies", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "need business and finance economy currencies, not financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "discovery", "text": "top business and finance economy currencies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "discovery", "text": "top currencies in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "discovery", "text": "top economy currencies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "vague", "text": "looking into economy currencies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "currencies guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "business and finance economy currencies basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "business and finance currencies guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "currency basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Crisis", "negative_iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "contrastive", "text": "researching economy financial crisis, not financial reform"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Crisis", "negative_iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "contrastive", "text": "need financial crisi, not commodities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "vague", "text": "exploring business and finance financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Crisis", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "looking for business and finance economy financial crisis instead of currencies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "economy financial crisis basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "learn about business and finance economy financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Crisis", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance economy financial crisis rather than business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "learn about financial crisi"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "financial crisis economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "discovery", "text": "top financial crisis economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "discovery", "text": "compare business and finance economy financial crisis"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "financial crisis in economy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "discovery", "text": "best economy financial reform"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Reform", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "looking for financial reform instead of financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "what is financial reform economy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Reform", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "need business and finance economy financial reform, not currencies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Reform", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "financial reform rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "discovery", "text": "best business and finance financial reform"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "how does economy financial reform options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "business and finance economy financial reform guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "vague", "text": "help me choose financial reform in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "discovery", "text": "which business and finance economy financial reform is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "alias", "text": "financial reform economy guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "vague", "text": "exploring economy financial reform options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "discovery", "text": "which business and finance economy financial regulation is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "what is economy financial regulation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "discovery", "text": "best business and finance economy financial regulation"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Regulation", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching financial regulation, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "discovery", "text": "best financial regulation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "discovery", "text": "top economy financial regulation options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "discovery", "text": "best business and finance financial regulation"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Regulation", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "looking for financial regulation instead of financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "learn about economy financial regulation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "what is business and finance economy financial regulation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "vague", "text": "exploring business and finance financial regulation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "vague", "text": "looking into economy financial regulation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "what is economy gasoline prices"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "learn about gasoline price"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Gasoline Prices", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business and finance economy gasoline prices, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Gasoline Prices", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance economy gasoline prices instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Gasoline Prices", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "researching business and finance economy gasoline prices, not financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Gasoline Prices", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for economy gasoline prices instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "gasoline prices basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "gasoline prices economy guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "vague", "text": "exploring economy gasoline prices options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "discovery", "text": "gasoline prices economy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "gasoline prices"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "vague", "text": "need advice about gasoline prices in economy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Housing Market", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "researching housing market, not currencies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "what is economy housing market"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Housing Market", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "housing market rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Housing Market", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "researching economy housing market, not financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "housing market economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "discovery", "text": "top housing market in economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "vague", "text": "exploring business and finance housing market"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "business and finance economy housing market overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Housing Market", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "researching business and finance economy housing market, not currencies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "economy housing market overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "discovery", "text": "which business and finance economy housing market is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "alias", "text": "economy housing market options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "interest rate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "discovery", "text": "which interest rate is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Interest Rates", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "need interest rate, not currencies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "discovery", "text": "best economy interest rates options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "interest rate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "discovery", "text": "best business and finance economy interest rates"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "economy interest rates"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "what is economy interest rates options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Interest Rates", "negative_iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "contrastive", "text": "researching interest rate, not commodities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Interest Rates", "negative_iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "contrastive", "text": "need business and finance economy interest rates, not commodities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "interest rate basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "vague", "text": "help me choose interest rates in economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "vague", "text": "help me choose job market in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "how does economy job market work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "what is job market economy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Job Market", "negative_iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "contrastive", "text": "looking for job market instead of commodities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "discovery", "text": "compare economy job market"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "what is job market in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "discovery", "text": "top business and finance economy job market"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "job market"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "discovery", "text": "top economy job market options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "economy job market overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "job market economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "alias", "text": "job market in economy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "researching industries business and finance, not business"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "researching industries business and finance, not economy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "looking for industry instead of business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "industries basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "learn about industries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "looking for industries business and finance instead of business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "industries options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "industries guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "compare business and finance industries options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "best industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "which industries business and finance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "what is business and finance industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "business and finance industries overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "which industry is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "discovery", "text": "best business and finance industries options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "how does industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "industries business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "business and finance industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "alias", "text": "learn about business and finance industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "vague", "text": "exploring business and finance industries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "vague", "text": "need advice about business and finance industries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "vague", "text": "need advice about industries in business and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "industries advertising industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "discovery", "text": "compare business and finance industries advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "vague", "text": "exploring industries advertising industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Advertising Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business and finance industries advertising industry, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "advertising industry industries basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Advertising Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for advertising industry instead of agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Advertising Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for business and finance industries advertising industry instead of apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "discovery", "text": "top business and finance advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "how does industries advertising industry options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "vague", "text": "help me choose advertising industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "what is advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "advertising industry in industries guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "agriculture industries guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "business and finance industries agriculture overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Agriculture", "negative_iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "contrastive", "text": "looking for business and finance industries agriculture instead of automotive industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "how does industries agriculture work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "agriculture guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "discovery", "text": "top industries agriculture options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "vague", "text": "exploring business and finance agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Agriculture", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "need agriculture industries, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "vague", "text": "exploring agriculture in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "industries agriculture options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "discovery", "text": "compare business and finance agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "discovery", "text": "compare business and finance industries agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "discovery", "text": "best apparel industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "discovery", "text": "which apparel industry industries is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Apparel Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need apparel industry industries, not advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Apparel Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "business and finance industries apparel industry rather than agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "discovery", "text": "best business and finance apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Apparel Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for business and finance industries apparel industry instead of advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "industries apparel industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "business and finance industries apparel industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "business and finance apparel industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "apparel industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "learn about apparel industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "alias", "text": "business and finance industries apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Automotive Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for automotive industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "business and finance industries automotive industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "discovery", "text": "compare business and finance industries automotive industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "what is automotive industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "discovery", "text": "best business and finance industries automotive industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "how does automotive industry in industries work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Automotive Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "need automotive industry industries, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Automotive Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching business and finance industries automotive industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "business and finance industries automotive industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "alias", "text": "automotive industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "discovery", "text": "best automotive industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "vague", "text": "need advice about industries automotive industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "discovery", "text": "which business and finance industries aviation industry is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Aviation Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "aviation industry industries rather than business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "discovery", "text": "top aviation industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Aviation Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "business and finance industries aviation industry rather than agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "learn about aviation industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "aviation industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "aviation industry industries guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "discovery", "text": "top business and finance aviation industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "aviation industry in industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Aviation Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for aviation industry industries instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "aviation industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "discovery", "text": "top industries aviation industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "biotech and biomedical industry industries rather than advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "biotech and biomedical industry rather than business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "discovery", "text": "top business and finance industries biotech and biomedical industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "discovery", "text": "top biotech and biomedical industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "biotech and biomedical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "biotech and biomedical industry industries overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "discovery", "text": "top biotech and biomedical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "business and finance industries biotech and biomedical industry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "what is industries biotech and biomedical industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "learn about biotech and biomedical industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "vague", "text": "exploring industries biotech and biomedical industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "vague", "text": "exploring business and finance biotech and biomedical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "discovery", "text": "top civil engineering industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "what is industries civil engineering industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "business and finance industries civil engineering industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "discovery", "text": "compare industries civil engineering industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for civil engineering industry instead of advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "industries civil engineering industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "discovery", "text": "compare business and finance civil engineering industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "civil engineering industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "discovery", "text": "civil engineering industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "vague", "text": "need advice about civil engineering industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "how does industries civil engineering industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "vague", "text": "help me choose industries civil engineering industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "vague", "text": "exploring business and finance construction industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "learn about construction industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "construction industry industries overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "what is industries construction industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "what is construction industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Construction Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "construction industry rather than advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Construction Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need construction industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "vague", "text": "need advice about industries construction industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "discovery", "text": "compare industries construction industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "discovery", "text": "best industries construction industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "how does construction industry industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "discovery", "text": "best business and finance industries construction industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "discovery", "text": "best defense industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Defense Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "need defense industry industries, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "vague", "text": "looking into defense industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "how does business and finance defense industry work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Defense Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for defense industry industries instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "discovery", "text": "best business and finance industries defense industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Defense Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching defense industry industries, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "how does defense industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "vague", "text": "exploring defense industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "defense industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "how does industries defense industry options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "what is defense industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Education industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "need business and finance industries education industry, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "vague", "text": "exploring education industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "discovery", "text": "top education industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "education industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "how does education industry industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "discovery", "text": "compare education industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "what is industries education industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "discovery", "text": "top education industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "education industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "what is industries education industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "education industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "how does education industry work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Entertainment Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business and finance industries entertainment industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "what is business and finance entertainment industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Entertainment Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for entertainment industry instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Entertainment Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for entertainment industry industries instead of advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "vague", "text": "exploring entertainment industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "vague", "text": "looking into entertainment industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "business and finance industries entertainment industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "vague", "text": "help me choose industries entertainment industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "what is entertainment industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "discovery", "text": "top entertainment industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "discovery", "text": "best business and finance industries entertainment industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "discovery", "text": "which entertainment industry industries is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "what is environmental services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "learn about business and finance industries environmental services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "discovery", "text": "best industries environmental services industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "vague", "text": "need advice about business and finance environmental services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "learn about environmental services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "business and finance industries environmental services industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "discovery", "text": "compare business and finance environmental services industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "vague", "text": "need advice about industries environmental services industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "discovery", "text": "which environmental services industry is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "discovery", "text": "top industries environmental services industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "how does business and finance industries environmental services industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "how does environmental services industry industries work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Financial Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "financial industry industries rather than agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "discovery", "text": "financial industry industries options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "learn about financial industry industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Financial Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "business and finance industries financial industry rather than apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "business and finance financial industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "discovery", "text": "which business and finance industries financial industry is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "vague", "text": "exploring financial industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Financial Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching financial industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "industries financial industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "industries financial industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "how does business and finance industries financial industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "alias", "text": "what is financial industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "business and finance food industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "business and finance industries food industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "what is industries food industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "discovery", "text": "top food industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "discovery", "text": "best industries food industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "industries food industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "discovery", "text": "top industries food industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Food Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for food industry industries instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "food industry industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Food Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching food industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "alias", "text": "how does food industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "vague", "text": "looking into industries food industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "business and finance industries healthcare industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "action", "text": "book industries healthcare industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "action", "text": "find industries healthcare industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "what is business and finance healthcare industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "discovery", "text": "compare industries healthcare industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "action", "text": "get healthcare industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "discovery", "text": "compare business and finance healthcare industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "industries healthcare industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "discovery", "text": "healthcare industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "learn about healthcare industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "vague", "text": "help me choose business and finance healthcare industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "vague", "text": "need advice about healthcare industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "discovery", "text": "best business and finance hospitality industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "how does hospitality industry industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "discovery", "text": "best hospitality industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "vague", "text": "need advice about hospitality industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "hospitality industry industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Hospitality Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "need hospitality industry, not apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "learn about business and finance industries hospitality industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "what is business and finance industries hospitality industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "discovery", "text": "hospitality industry industries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "business and finance hospitality industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "vague", "text": "exploring business and finance hospitality industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "alias", "text": "industries hospitality industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "what is business and finance industries information services industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Information Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for business and finance industries information services industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "discovery", "text": "compare information services industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "discovery", "text": "compare industries information services industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "vague", "text": "need advice about business and finance information services industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "vague", "text": "looking into business and finance information services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "industries information services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "discovery", "text": "compare information services industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "learn about industries information services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "information services industry industries guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "what is information services industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "information services industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Legal Services Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business and finance industries legal services industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Legal Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for legal services industry instead of agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "discovery", "text": "top legal services industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "what is business and finance legal services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "business and finance industries legal services industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "how does business and finance industries legal services industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "vague", "text": "looking into business and finance legal services industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "business and finance legal services industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "vague", "text": "looking into industries legal services industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "legal services industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "legal services industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "alias", "text": "what is legal services industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "discovery", "text": "logistics and transportation industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need logistics and transportation industry, not advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for business and finance industries logistics and transportation industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "industries logistics and transportation industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "discovery", "text": "compare logistics and transportation industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need industries logistics and transportation industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "vague", "text": "need advice about business and finance logistics and transportation industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "what is industries logistics and transportation industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "discovery", "text": "top industries logistics and transportation industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "how does logistics and transportation industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "vague", "text": "need advice about industries logistics and transportation industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "logistics and transportation industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "need management consulting industry, not apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "how does management consulting industry industries work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching management consulting industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "discovery", "text": "compare business and finance management consulting industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "discovery", "text": "compare management consulting industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "business and finance industries management consulting industry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "vague", "text": "help me choose industries management consulting industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "management consulting industry industries overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "management consulting industry in industries guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "vague", "text": "looking into business and finance management consulting industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "management consulting industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "alias", "text": "how does industries management consulting industry options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for industries manufacturing industry instead of advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance industries manufacturing industry instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "vague", "text": "help me choose business and finance manufacturing industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "researching industries manufacturing industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "manufacturing industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "industries manufacturing industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "discovery", "text": "industries manufacturing industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "how does manufacturing industry industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "what is manufacturing industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "discovery", "text": "best manufacturing industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "discovery", "text": "best manufacturing industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "discovery", "text": "compare business and finance manufacturing industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need business and finance industries mechanical and industrial engineering industry, not advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "discovery", "text": "compare industries mechanical and industrial engineering industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "researching business and finance industries mechanical and industrial engineering industry, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need mechanical and industrial engineering industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need mechanical and industrial engineering industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "industries mechanical and industrial engineering industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "how does mechanical and industrial engineering industry industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "how does mechanical and industrial engineering industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "mechanical and industrial engineering industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "discovery", "text": "best mechanical and industrial engineering industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "learn about industries mechanical and industrial engineering industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "discovery", "text": "mechanical and industrial engineering industry industries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "vague", "text": "exploring media industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Media Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for industries media industry instead of advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "discovery", "text": "best industries media industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Media Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need media industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "discovery", "text": "which industries media industry is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "discovery", "text": "compare media industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "how does industries media industry options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "discovery", "text": "which media industry is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "discovery", "text": "top business and finance media industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Media Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "researching industries media industry, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "business and finance media industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "media industry industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Metals Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need industries metals industry, not advertising industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Metals Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need industries metals industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "industries metals industry basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "discovery", "text": "best business and finance metals industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "what is business and finance industries metals industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "discovery", "text": "which metals industry industries is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "vague", "text": "need advice about industries metals industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "how does business and finance metals industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "metals industry industries guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "business and finance industries metals industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "learn about industries metals industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "alias", "text": "learn about metals industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "non-profit organizations overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "discovery", "text": "compare non-profit organizations industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for business and finance industries non-profit organizations instead of advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "discovery", "text": "top business and finance industries non-profit organizations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for business and finance industries non-profit organizations instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "how does non-profit organizations industries work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "vague", "text": "looking into non-profit organizations in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for business and finance industries non-profit organizations instead of apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "discovery", "text": "non-profit organizations industries options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "learn about industries non-profit organizations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "how does non-profit organizations work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "vague", "text": "help me choose non-profit organizations in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "discovery", "text": "compare pharmaceutical industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "pharmaceutical industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "what is business and finance pharmaceutical industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "discovery", "text": "best industries pharmaceutical industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "what is industries pharmaceutical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "how does pharmaceutical industry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "discovery", "text": "which pharmaceutical industry is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need pharmaceutical industry, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "what is business and finance industries pharmaceutical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "pharmaceutical industry industries guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "vague", "text": "exploring pharmaceutical industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "vague", "text": "help me choose pharmaceutical industry in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching business and finance industries power and energy industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "vague", "text": "looking into industries power and energy industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for industries power and energy industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "power and energy industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "discovery", "text": "compare power and energy industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "discovery", "text": "which business and finance industries power and energy industry is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "discovery", "text": "top industries power and energy industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "discovery", "text": "top power and energy industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "industries power and energy industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "what is power and energy industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "business and finance industries power and energy industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "power and energy industry industries basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Publishing Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need business and finance industries publishing industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "discovery", "text": "industries publishing industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "vague", "text": "exploring industries publishing industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Publishing Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance industries publishing industry instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "discovery", "text": "compare industries publishing industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "how does publishing industry in industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "learn about publishing industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "how does publishing industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "how does industries publishing industry options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "what is publishing industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "learn about industries publishing industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "alias", "text": "business and finance industries publishing industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "action", "text": "buy real estate industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "industries real estate industry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "what is real estate industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "action", "text": "book real estate industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "vague", "text": "help me choose industries real estate industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "discovery", "text": "top industries real estate industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "learn about real estate industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "discovery", "text": "best business and finance industries real estate industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "discovery", "text": "industries real estate industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "real estate industry guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "discovery", "text": "compare real estate industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "real estate industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "industries retail industry basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Retail Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business and finance industries retail industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Retail Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching industries retail industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Retail Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching industries retail industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Retail Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "retail industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "how does industries retail industry options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "discovery", "text": "compare industries retail industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "discovery", "text": "top business and finance industries retail industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "vague", "text": "help me choose industries retail industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "retail industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "business and finance industries retail industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "vague", "text": "looking into industries retail industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Technology Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching business and finance industries technology industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "technology industry in industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Technology Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for industries technology industry instead of advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "what is technology industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "technology industry basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Technology Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "researching business and finance industries technology industry, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "technology industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "how does industries technology industry work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "discovery", "text": "compare industries technology industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "discovery", "text": "compare business and finance industries technology industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "discovery", "text": "industries technology industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "vague", "text": "looking into industries technology industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "researching telecommunications industry, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for business and finance industries telecommunications industry instead of agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching telecommunications industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "how does business and finance telecommunications industry work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need telecommunications industry, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "discovery", "text": "business and finance industries telecommunications industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "business and finance telecommunications industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "vague", "text": "looking into industries telecommunications industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "learn about telecommunications industry industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "business and finance industries telecommunications industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "vague", "text": "exploring business and finance telecommunications industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "telecommunications industry industries basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for careers instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching careers, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "careers guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need careers, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "career rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "career overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "how does career work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "looking into careers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "top career"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "careers basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "find careers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "careers rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "help me choose careers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "buy careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "compare careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "career"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "career basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "book career"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for career instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "which career is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need careers, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "compare career"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "help me choose careers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "career guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "careers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "what is careers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need career, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "need advice about careers guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for careers instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "exploring careers guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for careers instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching careers, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "what is careers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "how does careers work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "looking into careers guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "career rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "find career"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need career, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "best career"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "learn about careers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for career instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "what is career"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching career, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching career, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need career, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "vague", "text": "looking into apprenticeships in careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "what is apprenticeships in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "top apprenticeship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "apprenticeships careers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "best careers apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "best apprenticeship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "action", "text": "reserve apprenticeships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "top apprenticeships in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "action", "text": "book apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "how does apprenticeships careers work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "how does careers apprenticeships work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "action", "text": "book apprenticeship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "apprenticeships overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "which apprenticeships is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "vague", "text": "looking into careers apprenticeships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "discovery", "text": "compare apprenticeship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "action", "text": "buy apprenticeships careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "learn about apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "apprenticeships careers overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "careers apprenticeships options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "vague", "text": "help me choose careers apprenticeships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "how does apprenticeship work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "what is careers apprenticeships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "vague", "text": "help me choose apprenticeships in careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "compare careers career advice options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "vague", "text": "help me choose career advice in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "best careers career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "action", "text": "buy career advice careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "vague", "text": "looking into career advice in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "action", "text": "get careers career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "career advice overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "career advice careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "learn about career advice careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "compare career advice careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "vague", "text": "looking into careers career advice options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "what is careers career advice options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "careers career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "how does career advice careers work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "compare career advice in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "career advice careers basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "what is career advice in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "top careers career advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "top career advice in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "compare career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "learn about career advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "careers career advice options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "top career advice careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "alias", "text": "career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "action", "text": "book career planning careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "vague", "text": "need advice about career planning in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "best careers career planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "career planning basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "vague", "text": "looking into careers career planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "which career planning careers is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "vague", "text": "help me choose career planning in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "which career planning is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "learn about career planning careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "action", "text": "reserve career planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "action", "text": "get career planning careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "career planning in careers guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "vague", "text": "looking into career planning in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "learn about career planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "what is career planning in careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "how does careers career planning options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "top careers career planning options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "best careers career planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "career planning careers guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "top career planning in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "discovery", "text": "best career planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "career planning overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "what is careers career planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "careers career planning basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Job Search", "negative_iab_path": "Careers > Remote Working", "prompt_family": "contrastive", "text": "researching careers job search, not remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "job search careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "action", "text": "buy careers job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "learn about careers job search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "top job search in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "action", "text": "get job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "how does careers job search work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "vague", "text": "looking into job search in careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "compare careers job search options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "job search options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "job search in careers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "action", "text": "book job search careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "careers job search options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "action", "text": "get job search careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "action", "text": "reserve job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "what is careers job search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "top careers job search options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "job search careers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "careers job search options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "how does job search careers work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "top job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "which job search careers is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "discovery", "text": "compare job search careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "what is job search careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "discovery", "text": "best job fair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "action", "text": "find job search job fairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "job fairs job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "action", "text": "reserve job fair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "careers job search job fairs guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "vague", "text": "exploring job fairs in job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "discovery", "text": "job fairs options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers > Job Search > Job Fairs", "negative_iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "contrastive", "text": "need careers job search job fairs, not resume writing and advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers > Job Search > Job Fairs", "negative_iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "contrastive", "text": "researching job fairs, not resume writing and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "discovery", "text": "compare job search job fairs options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "vague", "text": "need advice about careers job fairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "action", "text": "buy job fairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "action", "text": "buy resume writing and advice job search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "discovery", "text": "best careers resume writing and advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "action", "text": "find resume writing and advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers > Job Search > Resume Writing and Advice", "negative_iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "contrastive", "text": "careers job search resume writing and advice rather than job fairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "how does resume writing and advice job search work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "resume writing and advice job search overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "vague", "text": "exploring careers resume writing and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "discovery", "text": "top careers resume writing and advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "careers job search resume writing and advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers > Job Search > Resume Writing and Advice", "negative_iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "contrastive", "text": "researching job search resume writing and advice, not job fairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "discovery", "text": "top job search resume writing and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "discovery", "text": "top job search resume writing and advice options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Remote Working", "negative_iab_path": "Careers > Job Search", "prompt_family": "contrastive", "text": "looking for careers remote working instead of job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "learn about remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "remote working careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "vague", "text": "exploring remote working in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "learn about careers remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "what is careers remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "compare remote working careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "vague", "text": "help me choose careers remote working options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "which remote working is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "how does remote working in careers work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "remote working careers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "careers remote working guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "careers remote working overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "vague", "text": "help me choose remote working in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "remote working careers options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "compare remote working in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "action", "text": "buy remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "which remote working careers is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "top remote working"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "remote working in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "discovery", "text": "careers remote working options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "action", "text": "book careers remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "action", "text": "find remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "action", "text": "get careers remote working"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "best vocational training in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "best vocational training careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "action", "text": "get careers vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "best careers vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "careers vocational training overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "action", "text": "reserve vocational training careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "compare careers vocational training options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "best vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "top vocational training careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "vocational training careers guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "vague", "text": "exploring vocational training in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "vocational training careers basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "what is vocational training in careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "vague", "text": "need advice about careers vocational training options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "learn about vocational training"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "how does careers vocational training options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "vague", "text": "help me choose vocational training in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "what is vocational training"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "vocational training in careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "careers vocational training options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "how does vocational training in careers work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "vocational training careers overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "how does vocational training work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "vocational training basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "action", "text": "buy internal communication tools"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "action", "text": "book technology and computing computing computer software and applications communication"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "alias", "text": "communication computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "alias", "text": "how does communication work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "alias", "text": "how does technology and computing communication work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "discovery", "text": "top communication computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "vague", "text": "looking into communication in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "alias", "text": "learn about workplace messaging"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "what is crime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "discovery", "text": "compare crime"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching crime, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "exploring crime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "crime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "discovery", "text": "which crime is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "need advice about crime guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "looking into crime options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "help me choose crime options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "what is crime options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "crime rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "crime overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "crime rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "discovery", "text": "best crime"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need crime, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "help me choose crime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "learn about crime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "alias", "text": "crime guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need crime, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "exploring crime options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching crime, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "need advice about crime options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Crime", "prompt_family": "vague", "text": "looking into crime guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for crime instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disaster basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "best disasters"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "exploring disasters guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "how does disaster work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need disaster, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need disasters, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "best disaster"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "help me choose disasters guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disaster"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for disasters instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for disaster instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "learn about disasters"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "disaster rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "need advice about disasters options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for disasters instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "exploring disasters options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "disasters rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for disaster instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching disasters, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "need advice about disasters guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disasters basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "compare disasters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disasters guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "disaster options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need disaster, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching disasters, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching disasters, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "disasters rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching disaster, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "top disaster"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "compare disaster"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disasters"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for disaster instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "which disaster is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "disasters options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "disasters rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching disaster, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "discovery", "text": "which disasters is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "how does disasters work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Disasters", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need disasters, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "how does study options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "student advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "top education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is study options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "need advice about education guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "exploring education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "help me choose education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "study options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is student advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need education, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "best school guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "compare education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need education, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "looking into education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "top study options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "top school guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "study options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "how does education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "top education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "need advice about education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "need advice about student advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "education overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "looking into study options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "student advice guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "top student advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "compare student advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "exploring education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "looking into student advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "school guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "education programs guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "looking into school guidance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "looking into education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "how does education programs work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "compare school guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "need advice about school guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching education, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for education instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "best education"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "help me choose education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "compare study options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "how does school guidance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is education programs"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "education rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "help me choose student advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "best education programs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "how does student advice work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "education basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "best student advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "vague", "text": "help me choose education adult education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "vague", "text": "looking into adult education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "what is adult education education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "how does education adult education options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "adult education education basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "vague", "text": "help me choose adult education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "vague", "text": "exploring education adult education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "top adult education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "adult education in education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "best education adult education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "which adult education education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "compare adult education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "top adult education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "compare adult education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "top adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "compare adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "discovery", "text": "which adult education is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "adult education overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "education adult education options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "how does adult education education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "adult education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "adult education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "what is adult education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "how does adult education in education work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "researching education college education, not educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "need education college education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "top college education education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "what is education college education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "vague", "text": "exploring education college education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "learn about college education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "what is education college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "college education education basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "what is college education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "top college education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "best college education education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "vague", "text": "exploring college education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "how does education college education options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "top college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "how does college education education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "education college education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "education college education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "compare education college education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "college education in education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "college education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "college education education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "college education education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "alias", "text": "college education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "vague", "text": "need advice about education college education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "what is college planning in college education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "discovery", "text": "compare college education college planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "discovery", "text": "college education college planning options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > College Planning", "negative_iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "contrastive", "text": "looking for college planning instead of undergraduate education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > College Planning", "negative_iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "contrastive", "text": "researching college education college planning, not undergraduate education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "how does college planning in college education work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > College Planning", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "college planning rather than postgraduate education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > College Planning", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "researching college planning college education, not postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "college planning college education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "college planning guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "learn about education college education college planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "college education college planning options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Postgraduate Education", "negative_iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "contrastive", "text": "graduate schools rather than undergraduate education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Postgraduate Education", "negative_iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "contrastive", "text": "need graduate schools, not undergraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "learn about masters degree"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Postgraduate Education", "negative_iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "contrastive", "text": "researching education college education postgraduate education, not undergraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "what is postgraduate education college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "how does postgraduate study work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "discovery", "text": "compare postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "learn about graduate schools"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "learn about postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "postgraduate education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "vague", "text": "need advice about postgraduate education in college education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "vague", "text": "exploring education postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "universities for masters"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "education professional school"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "vague", "text": "looking into education professional school"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "masters degree overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "discovery", "text": "which professional school postgraduate education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "vague", "text": "exploring postgraduate education professional school options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "postgraduate education professional school basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "how does postgraduate education professional school options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "discovery", "text": "top education undergraduate education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "discovery", "text": "best college education undergraduate education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "undergraduate education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Undergraduate Education", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "need college education undergraduate education, not postgraduate education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "vague", "text": "need advice about education undergraduate education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "undergraduate education in college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "discovery", "text": "which education college education undergraduate education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "vague", "text": "need advice about college education undergraduate education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "undergraduate education college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "undergraduate education basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "how does undergraduate education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "alias", "text": "college education undergraduate education basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need early childhood education, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need early childhood education education, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "early childhood education education rather than educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "researching early childhood education, not homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "vague", "text": "help me choose early childhood education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "top education early childhood education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "what is early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "what is early childhood education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "education early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "early childhood education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "early childhood education education overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "what is education early childhood education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "compare early childhood education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "learn about education early childhood education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "vague", "text": "need advice about early childhood education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "best education early childhood education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "vague", "text": "need advice about education early childhood education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "how does education early childhood education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "early childhood education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "compare early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "top early childhood education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "best early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "early childhood education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "vague", "text": "looking into early childhood education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "educational assessment overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "which educational assessment is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "educational assessment in education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "how does education educational assessment options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "vague", "text": "looking into educational assessment in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "what is educational assessment in education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "need educational assessment education, not homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "education educational assessment overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "educational assessment education guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "researching education educational assessment, not college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "looking for educational assessment education instead of homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "learn about educational assessment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "education educational assessment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "top educational assessment in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "educational assessment education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "educational assessment education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "compare education educational assessment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "vague", "text": "need advice about education educational assessment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "top education educational assessment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "education educational assessment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "how does educational assessment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "learn about education educational assessment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "vague", "text": "need advice about educational assessment in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "alias", "text": "educational assessment education overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "what is education standardized testing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > Educational Assessment > Standardized Testing", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "looking for standardized testing instead of postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "learn about standardized testing educational assessment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "standardized testing educational assessment overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "standardized testing educational assessment basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "discovery", "text": "standardized testing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "educational assessment standardized testing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "discovery", "text": "top standardized testing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "alias", "text": "standardized testing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "discovery", "text": "top educational assessment standardized testing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "vague", "text": "help me choose education standardized testing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "vague", "text": "help me choose educational assessment standardized testing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "how does education homeschooling options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "researching homeschooling education, not language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "which homeschooling is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "education homeschooling options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "what is homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "vague", "text": "exploring homeschooling in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "best homeschooling education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "compare homeschooling education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "vague", "text": "need advice about education homeschooling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "best homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "what is homeschooling in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "homeschooling education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "best education homeschooling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "vague", "text": "help me choose homeschooling in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "education homeschooling guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "vague", "text": "looking into education homeschooling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "what is education homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "education homeschooling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "what is homeschooling education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "which homeschooling education is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "top education homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "how does homeschooling education work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "alias", "text": "how does homeschooling in education work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "compare education homework and study options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "homework and study rather than early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "need education homework and study, not homeschooling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "education homework and study rather than homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "what is education homework and study options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "homework and study guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "learn about homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "education homework and study"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "how does homework and study in education work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "vague", "text": "help me choose education homework and study options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "what is homework and study in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "learn about homework and study education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "homework and study education basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "homework and study education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "vague", "text": "exploring homework and study in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "top homework and study education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "vague", "text": "need advice about education homework and study options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "best homework and study in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "homework and study in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "homework and study education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "best homework and study"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "vague", "text": "help me choose homework and study in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "which education homework and study is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "discovery", "text": "education homework and study options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "need language learning education, not college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "need language learning, not homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "looking for education language learning instead of college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "education language learning overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "top education language learning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "language learning options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "vague", "text": "looking into language learning in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "learn about language learning education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "top education language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "compare language learning in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "which language learning is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "what is language learning in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "how does language learning in education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "learn about education language learning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "compare education language learning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "which education language learning is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "what is education language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "discovery", "text": "top language learning education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "vague", "text": "exploring education language learning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "how does language learning education work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "vague", "text": "exploring language learning in education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "researching education online education, not homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "best education online education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "vague", "text": "need advice about education online education options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "researching education online education, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "online education education rather than homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "researching education online education, not educational assessment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "education online education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "online education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "learn about online education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "how does education online education options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "best online education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "compare education online education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "which online education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "best education online education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "education online education options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "education online education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "how does online education education work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "vague", "text": "need advice about online education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "online education in education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "online education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "vague", "text": "help me choose education online education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "online education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "online education education basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "vague", "text": "help me choose online education in education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "need primary education, not educational assessment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "compare education primary education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "how does education primary education work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "primary education education rather than college education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "learn about primary education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "best primary education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "which primary education education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "how does education primary education options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education in education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "how does primary education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "primary education education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "top education primary education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "best education primary education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "learn about primary education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "vague", "text": "looking into primary education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "education primary education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "how does primary education education work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "vague", "text": "need advice about education primary education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "vague", "text": "exploring primary education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "vague", "text": "exploring private school in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "best private school"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "private school education rather than homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "what is private school in education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "private school education rather than adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "education private school rather than college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "need private school education, not homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "how does private school in education work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need private school education, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Private School", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "need private school education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "which private school education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "best private school in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "learn about private school education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "top private school"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "private school guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "education private school overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "what is private school"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "vague", "text": "looking into private school in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "private school education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "education private school basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "private school in education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "private school basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "education private school guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "vague", "text": "looking into education private school options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "vague", "text": "looking into education secondary education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "best secondary education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "top education secondary education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "secondary education education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "vague", "text": "exploring secondary education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "which secondary education is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "researching secondary education, not homework and study"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "best secondary education in education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "need secondary education education, not homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "education secondary education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "secondary education basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "education secondary education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "best education secondary education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "education secondary education options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "education secondary education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "top secondary education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "discovery", "text": "compare secondary education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "how does secondary education work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "what is secondary education education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "how does education secondary education options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "secondary education education overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "what is education secondary education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "vague", "text": "help me choose education secondary education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "vague", "text": "help me choose secondary education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "which special education is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "education special education options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "special education rather than homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "researching special education, not homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "learn about special education education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "compare education special education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "special education education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "what is special education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "best special education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "compare education special education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "vague", "text": "looking into special education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "which special education education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "best education special education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "special education education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "special education education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "what is special education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "what is education special education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "vague", "text": "exploring education special education options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "vague", "text": "need advice about special education in education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "education special education basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "what is special education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "how does education special education options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "special education education overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "special education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "watch tonight"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "learn about entertainment"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need entertainment, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "help me choose watch tonight"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching entertainment, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need entertainment, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching entertainment, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "how does watch tonight work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "top entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "looking into film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "how does movies to watch work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need entertainment, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "movies to watch guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "compare entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "top film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "compare movies to watch"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "best entertainment ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "film picks guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "entertainment options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "looking into entertainment guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "movies to watch"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "help me choose entertainment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "entertainment basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching entertainment, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "best movies to watch"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "top watch tonight"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "looking into movies to watch"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "entertainment rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "exploring watch tonight"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for entertainment instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "which entertainment is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "exploring entertainment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "entertainment ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is film picks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "entertainment rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "help me choose entertainment guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is entertainment guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "need advice about movies to watch"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "exploring film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "compare watch tonight"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "entertainment rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "best entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is watch tonight"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is movies to watch"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "best film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "compare film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "help me choose film picks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for entertainment instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "how does entertainment work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "help me choose movies to watch"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "need advice about film picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "vague", "text": "looking into movies in entertainment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "how does movies to watch work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "vague", "text": "help me choose movies in entertainment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "researching entertainment movies, not music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "vague", "text": "help me choose cinema picks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "what is film recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "compare movy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "researching movies, not television"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "need movie night, not television"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "top entertainment movies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "film recommendations overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "how does entertainment movies work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "need film recommendations, not television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "compare movies to watch"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "movies to watch guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "compare movies in entertainment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "movies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "top film recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "compare movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "discovery", "text": "cinema picks options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "what is movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "movies entertainment guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "movies entertainment overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "movies guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "looking for entertainment music instead of television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "music entertainment overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "need entertainment music, not movies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "music rather than television"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "compare music in entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "vague", "text": "need advice about music in entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "best entertainment music options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "need music entertainment, not movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "what is music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "compare music entertainment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "looking for music entertainment instead of movies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "compare entertainment music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "entertainment music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "vague", "text": "help me choose entertainment music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "which music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "learn about music entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "what is entertainment music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "discovery", "text": "best music in entertainment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "researching entertainment music, not television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "entertainment music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "how does music in entertainment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "how does music entertainment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "how does music work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "looking for television entertainment instead of music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "compare television entertainment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "how does entertainment television work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "television rather than music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "television basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "television rather than movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "top entertainment television"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "entertainment television rather than music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "television"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "need television entertainment, not music"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "researching television entertainment, not music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "television in entertainment guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "entertainment television guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "entertainment television options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "learn about television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "compare entertainment television"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "looking for television instead of movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "entertainment television"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Television", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "researching television entertainment, not movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "what is entertainment television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "learn about television entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "vague", "text": "help me choose television in entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "vague", "text": "looking into entertainment television options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "vague", "text": "looking into television in entertainment"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for event instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching events, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "help me choose events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "best events"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need events, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for event instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "which event is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need event, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "events rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "event"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "learn about events"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching events, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "top event"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for event instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "events basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "learn about event"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need event, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need event, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "need advice about events options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching events, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "how does events work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "event rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "event options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "what is events options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for events instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "what is events guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "need advice about events guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "looking into events options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "events rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "looking into events guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need events, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "compare events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "top events"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching event, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need events, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "events guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for events instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "what is event"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "event rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "awards shows events rather than business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "researching awards shows, not fan conventions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "top awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "awards shows guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "awards shows events basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "awards shows in events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "compare awards shows in events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "vague", "text": "looking into awards shows in events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "top awards show"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "events awards shows basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "vague", "text": "need advice about awards shows in events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "awards shows events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "awards show overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "events awards shows options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "which awards shows is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "events awards shows overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "learn about events awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "compare awards shows"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "how does awards shows in events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "best events awards shows options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "best awards shows"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "how does events awards shows options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "alias", "text": "awards show basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "vague", "text": "help me choose awards shows in events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "need events business expos and conferences, not awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "what is events business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "need business expos and conferences events, not awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "which events business expos and conferences is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "events business expos and conferences guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "events business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "top business expos and conferences events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "how does business expos & conference work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "top business expos and conferences in events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "learn about business expos and conferences events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "learn about events business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "what is business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "business expos and conferences events overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "events business expos and conferences rather than awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "business expos & conference"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "vague", "text": "help me choose events business expos and conferences options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "how does business expos and conferences in events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "how does events business expos and conferences options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "compare business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "best events business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "compare events business expos and conferences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "vague", "text": "exploring events business expos and conferences options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "vague", "text": "need advice about business expos and conferences in events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "vague", "text": "help me choose business expos and conferences in events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "fan conventions rather than awards shows"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "vague", "text": "help me choose fan conventions in events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "fan convention rather than business expos and conferences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "vague", "text": "looking into fan conventions in events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "fan conventions in events guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "need events fan conventions, not business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "learn about fan conventions events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "what is fan conventions events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "how does events fan conventions work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "looking for fan convention instead of business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "compare fan convention"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "researching fan conventions, not awards shows"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "researching events fan conventions, not business expos and conferences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "fan conventions in events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "top events fan conventions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "vague", "text": "exploring fan conventions in events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "what is events fan conventions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "best fan conventions in events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "best events fan conventions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "what is fan convention"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "best fan conventions events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "fan conventions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "discovery", "text": "fan convention options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "vague", "text": "need advice about events fan conventions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "best parenting help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "exploring parenting help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for family and relationships instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationships overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "exploring relationship guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching family and relationship, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationships basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for family and relationships instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "help me choose raising kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "best family and relationship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "top family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "compare family advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "top family advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "family and relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationship basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationships"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "help me choose family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "which family and relationship is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "compare raising kids"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "relationship guidance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "best raising kids"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is raising kids"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need family and relationship, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "need advice about family advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "compare relationship guidance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "looking into family and relationships guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "help me choose relationship guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching family and relationship, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "parenting help guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need family and relationships, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "how does family and relationships work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is family advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "top family and relationship"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "help me choose family advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "raising kids guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "learn about family and relationship"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "help me choose family and relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "which family and relationships is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "compare family and relationships"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is family and relationships options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need family and relationship, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "looking into family and relationships options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family advice guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "best family advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "how does family and relationship work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for family and relationships instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "how does family advice work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "best family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationship overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "top parenting help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "compare parenting help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for family and relationship instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "top relationship guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "family and relationship rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching family and relationships, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "need advice about family and relationships options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "need advice about parenting help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "looking into relationship guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "compare family and relationship"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need family and relationships, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "family and relationships rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need family and relationship, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching family and relationships, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "how does relationship guidance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "relationship guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationship"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "how does bereavement in family and relationships work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "vague", "text": "looking into family and relationships bereavement options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "researching bereavement family and relationships, not divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "family and relationships bereavement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "top family and relationships bereavement options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "vague", "text": "help me choose bereavement in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "which bereavement is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "bereavement guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "compare family and relationships bereavement options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "top bereavement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "learn about family and relationships bereavement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "bereavement family and relationships overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "compare bereavement in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "which family and relationships bereavement is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "compare family and relationships bereavement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "what is family and relationships bereavement options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "family and relationships bereavement overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "learn about bereavement family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "family and relationships bereavement guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "what is bereavement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "bereavement in family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "how does bereavement work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "vague", "text": "exploring bereavement in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "vague", "text": "need advice about family and relationships bereavement options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "dating family and relationships rather than eldercare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "vague", "text": "help me choose family and relationships dating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "looking for dating instead of bereavement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "learn about dating family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "compare dating in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "best family and relationships dating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "what is dating family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "how does dating in family and relationships work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "dating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating family and relationships basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "compare family and relationships dating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "vague", "text": "need advice about family and relationships dating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "best dating family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "family and relationships dating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "vague", "text": "looking into family and relationships dating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "compare family and relationships dating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating family and relationships overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating family and relationships guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "top dating in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "top family and relationships dating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "divorce family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "divorce family and relationships guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "how does family and relationships divorce options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "top divorce in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "vague", "text": "help me choose family and relationships divorce options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "compare divorce in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "vague", "text": "looking into divorce in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "vague", "text": "exploring family and relationships divorce options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "family and relationships divorce guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "family and relationships divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "what is divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "compare family and relationships divorce"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "what is divorce in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "how does divorce work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "top divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "family and relationships divorce options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "learn about divorce family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "divorce overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "divorce family and relationships basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "best divorce in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "top family and relationships divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "how does family and relationships divorce work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "divorce"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "alias", "text": "divorce guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "action", "text": "get eldercare family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "eldercare overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "compare eldercare family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "eldercare options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "how does eldercare family and relationships work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "vague", "text": "need advice about eldercare in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "best family and relationships eldercare options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "which eldercare family and relationships is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "vague", "text": "exploring eldercare in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "compare eldercare in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "family and relationships eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "best family and relationships eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "action", "text": "get family and relationships eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "learn about family and relationships eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "compare family and relationships eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "how does eldercare work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "best eldercare family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "what is family and relationships eldercare options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "vague", "text": "help me choose family and relationships eldercare options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "eldercare in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "eldercare family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "what is eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "eldercare basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "eldercare"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "marriage and civil unions rather than parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "vague", "text": "help me choose family and relationships marriage and civil unions options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "researching marriage and civil unions family and relationships, not divorce"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "looking for marriage and civil unions family and relationships instead of single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "top marriage and civil unions in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "top family and relationships marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "family and relationships marriage and civil unions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "family and relationships marriage and civil unions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "marriage and civil unions family and relationships basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "marriage and civil unions in family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "family and relationships marriage and civil unions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "compare family and relationships marriage and civil unions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "top marriage and civil unions family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "discovery", "text": "compare marriage and civil union"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "how does marriage and civil unions family and relationships work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "learn about marriage and civil unions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "what is family and relationships marriage and civil unions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "family and relationships marriage and civil unions basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "vague", "text": "exploring family and relationships marriage and civil unions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "how does marriage and civil union work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "vague", "text": "help me choose marriage and civil unions in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "marriage and civil unions in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "what is marriage and civil unions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "vague", "text": "looking into marriage and civil unions in family and relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "need preschool parenting, not single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "vague", "text": "help me choose family and relationships parenting options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "need family and relationships parenting, not single life"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "how does family and relationships parenting work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "family and relationships parenting options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "family and relationships parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "toddler parenting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "compare parenting family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "vague", "text": "need advice about parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "which toddler parenting is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "parenting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "teen parenting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "teen parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "learn about parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "teen parenting basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "best parenting family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "how does parenting advice work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "toddler parenting guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "how does family and relationships parenting options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "alias", "text": "what is parenting family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "top parenting family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "vague", "text": "looking into parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "top preschool parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "best preschool parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "discovery", "text": "compare preschool parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "discovery", "text": "compare parenting adoption and fostering"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "preschool parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "adoption and fostering parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "discovery", "text": "top preschool parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "family and relationships adoption and fostering guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "researching adoption and fostering, not internet safety"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "negative_iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "contrastive", "text": "need family and relationships parenting adoption and fostering, not daycare and pre-school"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "vague", "text": "looking into adoption and fostering in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "discovery", "text": "best family and relationships parenting adoption and fostering"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "teen parenting guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "vague", "text": "exploring adoption and fostering in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "action", "text": "reserve teen parenting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "daycare and pre-school parenting rather than internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "discovery", "text": "best daycare and pre-school parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "discovery", "text": "which teen parenting is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "daycare and pre-school in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "how does parenting advice work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "what is teen parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "vague", "text": "need advice about daycare and pre-school in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "learn about parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "discovery", "text": "preschool parenting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "action", "text": "reserve family and relationships parenting daycare and pre-school"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "vague", "text": "help me choose daycare and pre-school in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "how does parenting advice work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "vague", "text": "need advice about parenting internet safety options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Internet Safety", "negative_iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "contrastive", "text": "researching family and relationships parenting internet safety, not adoption and fostering"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "toddler parenting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "vague", "text": "looking into family and relationships internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "which parenting advice is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "best toddler parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "internet safety parenting basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "top parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "parenting internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "learn about parenting internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "teen parenting overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "discovery", "text": "best family and relationships parenting babies and toddlers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "preschool parenting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "what is toddler parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "discovery", "text": "top parenting parenting babies and toddlers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "parenting advice overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "how does toddler parenting work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "looking for family and relationships parenting parenting babies and toddlers instead of internet safety"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "discovery", "text": "top family and relationships parenting babies and toddlers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "parenting advice basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "vague", "text": "looking into parenting parenting babies and toddlers options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "vague", "text": "looking into parenting babies and toddlers in parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "parenting children aged 4-11 in parenting guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "discovery", "text": "top family and relationships parenting children aged 4-11"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "need parenting children aged 4-11, not internet safety"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "looking for parenting children aged 4-11 instead of internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "learn about parenting children aged 4-11 parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "family and relationships parenting parenting children aged 4-11"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "family and relationships parenting children aged 4-11 guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "discovery", "text": "best parenting children aged 4-11"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "vague", "text": "need advice about parenting children aged 4-11 in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "discovery", "text": "preschool parenting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "discovery", "text": "best parenting parenting children aged 4-11 options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "vague", "text": "looking into parenting children aged 4-11 in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "family and relationships parenting parenting teens options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "best parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "top family and relationships parenting parenting teens"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "top parenting teen"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "need parenting parenting teens, not internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "which teen parenting is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "negative_iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "contrastive", "text": "parenting advice rather than adoption and fostering"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "learn about parenting teen"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "vague", "text": "exploring parenting teens in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "parenting teens overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "what is parenting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "teen parenting overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "learn about parenting special needs kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "learn about special needs kids parenting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "negative_iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "contrastive", "text": "parenting advice rather than daycare and pre-school"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "learn about family and relationships parenting special needs kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "family and relationships parenting special needs kids overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "discovery", "text": "best family and relationships parenting special needs kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "discovery", "text": "compare family and relationships parenting special needs kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "parenting special needs kids"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "negative_iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "contrastive", "text": "need parenting special needs kids, not daycare and pre-school"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "toddler parenting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "discovery", "text": "top parenting special needs kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "single life options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "researching single life family and relationships, not dating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "looking for single life family and relationships instead of eldercare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "need single life family and relationships, not eldercare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "how does family and relationships single life options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "top family and relationships single life options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life in family and relationships guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "vague", "text": "help me choose single life in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "how does single life family and relationships work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "which single life is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "how does family and relationships single life work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life family and relationships overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "vague", "text": "looking into single life in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "top single life family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "vague", "text": "exploring single life in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "best family and relationships single life options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "best family and relationships single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life in family and relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "which family and relationships single life is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "what is family and relationships single life"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "family and relationships single life options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "discovery", "text": "fine art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "fine art guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "what is fine art options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "exploring fine art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "discovery", "text": "top fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "how does fine art work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "looking into fine art options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need fine art, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "need advice about fine art options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching fine art, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "what is fine art guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "help me choose fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "fine art"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for fine art instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "need advice about fine art guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for fine art instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "discovery", "text": "compare fine art"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "fine art rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching fine art, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need fine art, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "fine art overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "help me choose fine art options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "fine art rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "vague", "text": "looking into fine art guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "researching fine art costume, not digital arts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "looking for costume instead of dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "compare costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "costume options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "vague", "text": "help me choose costume in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "which costume is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "top costume fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "how does fine art costume options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume fine art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "fine art costume guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "vague", "text": "help me choose fine art costume options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "how does fine art costume work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "compare fine art costume options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "best costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "top fine art costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume fine art guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "top costume in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "costume fine art overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "what is fine art costume options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "learn about costume"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "looking for dance instead of costume"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "researching fine art dance, not design"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "need dance fine art, not opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "researching dance, not fine art photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "compare dance in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "dance fine art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "what is dance in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "best dance in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "what is fine art dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "fine art dance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "fine art dance options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "how does dance fine art work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "top dance in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "dance fine art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "best fine art dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "dance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "which dance is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "dance in fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "dance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "what is fine art dance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "discovery", "text": "best fine art dance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "vague", "text": "help me choose dance in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "vague", "text": "exploring dance in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "vague", "text": "help me choose fine art dance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "design fine art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "compare design"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "need fine art design, not costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "which design fine art is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "how does design fine art work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "need design fine art, not costume"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "need design, not digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "design fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "fine art design"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "design guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "top design fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "best fine art design options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "vague", "text": "need advice about fine art design options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "best design fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "what is design in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "how does fine art design work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "vague", "text": "need advice about design in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "fine art design basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "vague", "text": "looking into fine art design options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "vague", "text": "looking into design in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "how does fine art design options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "what is design fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "design"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "discovery", "text": "which design is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "researching fine art digital arts, not costume"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "looking for digital arts fine art instead of dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "need digital arts fine art, not fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "which digital arts fine art is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "compare fine art digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "top digital arts in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "vague", "text": "exploring digital arts in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "which fine art digital arts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "best fine art digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "vague", "text": "exploring fine art digital arts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "how does fine art digital arts work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "vague", "text": "need advice about fine art digital arts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "how does digital arts in fine art work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "what is digital arts in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "how does digital arts work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "digital arts fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "vague", "text": "looking into fine art digital arts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "best fine art photography fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "how does fine art photography fine art work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art fine art photography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "need fine art photography, not opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "fine art photography rather than digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "which fine art photography fine art is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art fine art photography guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "learn about fine art photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "vague", "text": "need advice about fine art fine art photography options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art photography in fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "top fine art photography fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art photography fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "compare fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "what is fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "learn about fine art fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art photography guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "which fine art photography is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "top fine art fine art photography options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "fine art photography fine art overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "compare fine art fine art photography options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "discovery", "text": "fine art photography fine art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "vague", "text": "looking into fine art photography in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "vague", "text": "exploring fine art photography in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "fine art modern art rather than dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "compare modern art fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "compare fine art modern art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "compare modern art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "fine art modern art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "fine art modern art options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "what is modern art in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "top fine art modern art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "learn about modern art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art fine art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "best modern art fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "fine art modern art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "fine art modern art guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "modern art fine art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "top fine art modern art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "vague", "text": "help me choose modern art in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "vague", "text": "need advice about modern art in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "learn about fine art modern art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "vague", "text": "looking into modern art in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "need opera fine art, not costume"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "vague", "text": "help me choose opera in fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "researching fine art opera, not costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "which opera fine art is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "vague", "text": "need advice about fine art opera options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "how does opera work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera in fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "fine art opera guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "best opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "best opera fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera fine art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "which fine art opera is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "vague", "text": "exploring opera in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "top fine art opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "what is opera fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "fine art opera options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera fine art overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "what is fine art opera"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "what is opera"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "vague", "text": "help me choose fine art opera options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "learn about fine art opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "looking for theater fine art instead of modern art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "researching theater fine art, not costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "fine art theater overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "which fine art theater is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "top theater"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "top theater in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "which theater fine art is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "vague", "text": "help me choose fine art theater options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "fine art theater options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "what is theater fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "theater basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "theater guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "what is fine art theater options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "best theater"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "how does fine art theater options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "vague", "text": "exploring theater in fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "discovery", "text": "compare theater"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "theater"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "what is theater"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "what is theater in fine art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "theater in fine art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "learn about theater"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "learn about theater fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "how does theater fine art work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "which food and drink is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food & drink"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "looking into food and drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "top places to eat"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "food & drink rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "learn about food & drink"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need food and drink, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food recommendations guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food & drink guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for food & drink instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "best food recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "compare food recommendations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for food & drink instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "food and drink rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "need advice about food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food and drink basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching food & drink, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "need advice about food recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "help me choose restaurant ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "help me choose food and drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "restaurant ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "exploring food and drink options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "food & drink rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "food and drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "help me choose food recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "looking into places to eat"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "compare food & drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "help me choose places to eat"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "compare drinks to try"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "drinks to try"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need food & drink, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "looking into food and drink guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "how does food recommendations work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is restaurant ideas"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for food and drink instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is food & drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "best drinks to try"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "looking into drinks to try"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "help me choose drinks to try"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "places to eat"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "exploring restaurant ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "best food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "need advice about drinks to try"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching food & drink, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food & drink basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "how does food & drink work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "how does restaurant ideas work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "food & drink rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "compare food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food recommendations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "top food and drink"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for food and drink instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is places to eat"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "top restaurant ideas"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching food & drink, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "drinks to try guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food and drink guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need food & drink, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "food and drink rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "top drinks to try"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "best food & drink"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching food and drink, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "how does places to eat work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "need advice about restaurant ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "compare restaurant ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "exploring drinks to try"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching alcoholic beverage, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "alcoholic beverages food and drink basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "food and drink alcoholic beverages guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "how does cocktails work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "what is alcoholic beverages in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "compare food and drink alcoholic beverages options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "vague", "text": "help me choose cocktails"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "food and drink alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "researching cocktails, not dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "food and drink alcoholic beverages rather than food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "looking for alcoholic beverage instead of food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "vague", "text": "need advice about spirits to try"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "learn about spirits to try"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "best cocktails"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "vodka drinks guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "vague", "text": "help me choose whiskey cocktails"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "vague", "text": "need advice about alcoholic beverages in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "alcoholic beverages food and drink options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "alcoholic beverages food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "alcoholic beverages options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "food and drink alcoholic beverages options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "top alcoholic beverages in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "top alcoholic beverages food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "discovery", "text": "which whiskey cocktails is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "barbecues and grilling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "vague", "text": "looking into barbecues and grilling in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "vague", "text": "need advice about barbecues and grilling in food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "researching food and drink barbecues and grilling, not food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "vague", "text": "looking into food and drink barbecues and grilling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "compare barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "how does food and drink barbecues and grilling work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "compare food and drink barbecues and grilling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "best food and drink barbecues and grilling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "which barbecues and grilling is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "food and drink barbecues and grilling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "top food and drink barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "compare food and drink barbecues and grilling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "discovery", "text": "compare barbecues and grilling in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "how does food and drink barbecues and grilling options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "barbecues and grilling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "learn about food and drink barbecues and grilling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "vague", "text": "exploring food and drink barbecues and grilling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "food and drink barbecues and grilling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "barbecues and grilling food and drink basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "how does barbecues and grilling in food and drink work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "what is food and drink barbecues and grilling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "what is barbecues and grilling in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "barbecues and grilling guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "cooking food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "best cooking food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "what is cooking in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "cooking in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "food and drink cooking guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "learn about food and drink cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "food and drink cooking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "compare cooking in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "top food and drink cooking options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "vague", "text": "help me choose cooking in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "best cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "cooking food and drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "vague", "text": "need advice about cooking in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "what is food and drink cooking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "how does cooking work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "cooking overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "how does cooking food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "food and drink cooking overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "top food and drink cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "cooking food and drink overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "alias", "text": "learn about cooking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "best cooking in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "which cooking food and drink is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "vague", "text": "need advice about food and drink cooking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "desserts and baking food and drink rather than cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "need food and drink desserts and baking, not barbecues and grilling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "vague", "text": "looking into food and drink desserts and baking options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "vague", "text": "exploring desserts and baking in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking food and drink guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "vague", "text": "help me choose food and drink desserts and baking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "top food and drink desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "food and drink desserts and baking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "compare desserts and baking in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "what is food and drink desserts and baking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "learn about food and drink desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "food and drink desserts and baking guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "desserts and baking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "how does food and drink desserts and baking work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "how does food and drink desserts and baking options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "desserts and baking in food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "alias", "text": "what is desserts and baking food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "compare food and drink desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "food and drink desserts and baking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "which food and drink desserts and baking is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "top food and drink desserts and baking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "action", "text": "get book a table"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "dining out food and drink options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "action", "text": "buy food and drink dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "how does food and drink dining out work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "best places to eat"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "action", "text": "book food and drink dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "food and drink dining out options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "what is dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "which dining out food and drink is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "action", "text": "buy dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "food and drink dining out overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "how does dining out work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "action", "text": "get dining out food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "dining out food and drink overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "best book a table"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "learn about restaurant booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "dining out in food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "top food and drink dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "compare dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "how does book a table work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "dining out food and drink guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "vague", "text": "help me choose restaurant booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "vague", "text": "looking into restaurant booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "vague", "text": "need advice about places to eat"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "researching food allergies food and drink, not cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "need food allergy, not alcoholic beverages"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "vague", "text": "need advice about food allergies in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "how does food allergies food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "what is food allergy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "food and drink food allergies options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "food allergy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "top food and drink food allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "food and drink food allergies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "what is food allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "food and drink food allergies overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "food and drink food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "vague", "text": "looking into food allergies in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "compare food and drink food allergies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "learn about food allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "food allergy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "what is food and drink food allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "vague", "text": "need advice about food and drink food allergies options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "vague", "text": "exploring food allergies in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "food allergy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "learn about food allergies food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "compare food allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "top food allergies food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "discovery", "text": "compare food allergy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for food and drink food movements instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food movement basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food and drink food movements options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "best food and drink food movements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "best food movement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "top food and drink food movements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "which food movements is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food movements guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "vague", "text": "looking into food movements in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food movements in food and drink guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "compare food movements in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food and drink food movements overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "top food movements food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "compare food movements food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "what is food movement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "what is food movements"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "vague", "text": "need advice about food movements in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food and drink food movements basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food movement guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "how does food movements work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "vague", "text": "exploring food and drink food movements options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "food movements in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "food movements food and drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "vague", "text": "help me choose food and drink food movements options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "looking for food and drink healthy cooking and eating instead of cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching healthy cooking and eating food and drink, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "top healthy cooking and eating food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "top healthy cooking and eating in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "compare food and drink healthy cooking and eating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "need healthy cooking and eating, not desserts and baking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "how does food and drink healthy cooking and eating options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "what is healthy cooking and eating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "vague", "text": "need advice about food and drink healthy cooking and eating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "what is healthy cooking and eating food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "best healthy cooking and eating in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "vague", "text": "need advice about healthy cooking and eating in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "top healthy cooking and eating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "how does healthy cooking and eating in food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "food and drink healthy cooking and eating overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "food and drink healthy cooking and eating basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "healthy cooking and eating basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "food and drink healthy cooking and eating options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "healthy cooking and eating food and drink overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "healthy cooking and eating in food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "healthy cooking and eating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "vague", "text": "looking into healthy cooking and eating in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "alias", "text": "healthy cooking and eating overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "vague", "text": "exploring healthy cooking and eating in food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "need non-alcoholic beverage, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "best non-alcoholic beverage"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "what is food and drink non-alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "need food and drink non-alcoholic beverages, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "non-alcoholic beverages rather than dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "need food and drink non-alcoholic beverages, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "learn about non-alcoholic beverage"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "what is non-alcoholic beverage"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "non-alcoholic beverage options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "vague", "text": "help me choose non-alcoholic beverages in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "best food and drink non-alcoholic beverages options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "learn about non-alcoholic beverages"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "what is non-alcoholic beverages in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "non-alcoholic beverages options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "vague", "text": "exploring food and drink non-alcoholic beverages options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "non-alcoholic beverages food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "non-alcoholic beverages overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "non-alcoholic beverages food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "learn about food and drink non-alcoholic beverages"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "compare food and drink non-alcoholic beverages options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "compare non-alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "food and drink non-alcoholic beverages basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "non-alcoholic beverages food and drink overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "non-alcoholic beverage basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "researching vegan diet, not dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "vegan diet rather than dining out"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "food and drink vegan diets basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "learn about food and drink vegan diets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "best vegan diet"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for vegan diets food and drink instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "vegan diet overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "vegan diets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "vague", "text": "exploring vegan diets in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "which vegan diets food and drink is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "best vegan diets food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "vegan diet basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "best food and drink vegan diets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "which vegan diet is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "vegan diets in food and drink guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "vague", "text": "looking into vegan diets in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "vegan diets overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "how does vegan diets work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "food and drink vegan diets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "how does vegan diets food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "vegan diet guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "what is food and drink vegan diets options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "vague", "text": "looking into food and drink vegan diets options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "vague", "text": "exploring food and drink vegan diets options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "need vegetarian diets, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "vegetarian diet rather than cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "compare vegetarian diet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "learn about vegetarian diet"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for vegetarian diets instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "which food and drink vegetarian diets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "best food and drink vegetarian diets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "vague", "text": "help me choose food and drink vegetarian diets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "best vegetarian diet"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "vague", "text": "looking into food and drink vegetarian diets options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "vague", "text": "looking into vegetarian diets in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "top vegetarian diet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "learn about vegetarian diets food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "vegetarian diet guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "vague", "text": "need advice about vegetarian diets in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "vegetarian diets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "food and drink vegetarian diets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "learn about vegetarian diets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "how does vegetarian diet work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "vegetarian diets basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "top vegetarian diets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "what is food and drink vegetarian diets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "how does food and drink vegetarian diets work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "food and drink vegetarian diets overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "vague", "text": "help me choose food and drink world cuisines options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "vague", "text": "help me choose world cuisines in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "how does world cuisine work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "compare food and drink world cuisines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "world cuisine options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "which world cuisines food and drink is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "which world cuisines is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "best world cuisines in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "compare world cuisine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "vague", "text": "looking into food and drink world cuisines options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "what is world cuisines in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "food and drink world cuisines options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "how does world cuisines in food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "world cuisines overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "learn about world cuisines food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "vague", "text": "exploring food and drink world cuisines options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "world cuisines food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "what is world cuisine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "learn about world cuisines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "food and drink world cuisines guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "world cuisines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "what is food and drink world cuisines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "how does world cuisines food and drink work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "alias", "text": "learn about food and drink world cuisines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "compare genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for genres instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "best genre"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need genres, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "learn about genre"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for genres instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need genre, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "genre rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching genres, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "top genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genres overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "genre rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching genres, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching genre, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "how does genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "learn about genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "genre options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for genre instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for genre instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need genre, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "looking into genres guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for genres instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "help me choose genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "best genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "how does genre work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need genres, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genres basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "need advice about genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "which genre is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "looking into genres options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "genres rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "what is genres options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need genres, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "which genres is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "genres rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for genre instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genre overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "top nature in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "how does nature work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need genres nature, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need genres nature, not action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "how does nature in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "which genres nature is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "nature basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "top genres nature options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "nature genres overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "vague", "text": "need advice about genres nature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "what is nature in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "learn about nature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "learn about nature genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "nature guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "vague", "text": "need advice about nature in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "nature genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "how does nature genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "what is nature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "compare genres nature options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "best genres nature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "vague", "text": "looking into nature in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "best nature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "genres nature options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "vague", "text": "help me choose genres nature options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "action/adventure rather than documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "action/adventure genres rather than factual"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "looking for action/adventure genres instead of factual"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "genres action/adventure basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "action/adventure genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "top genres action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "vague", "text": "exploring action/adventure in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "how does genres action/adventure options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "best action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "action/adventure in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "what is genres action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "action/adventure genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "genres action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "best action/adventure genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "genres action/adventure options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "compare action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "how does action/adventure genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "genres action/adventure options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "compare genres action/adventure options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "vague", "text": "need advice about action/adventure in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "discovery", "text": "which genres action/adventure is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "vague", "text": "looking into action/adventure in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "vague", "text": "need advice about genres action/adventure options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "genres animation and anime options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "vague", "text": "exploring genres animation and anime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "genres animation and anime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation & anime overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "best animation & anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "how does animation and anime genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "top animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "learn about genres animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "genres animation and anime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "which animation and anime is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "vague", "text": "looking into genres animation and anime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "top genres animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "top animation and anime in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "which genres animation and anime is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "animation and anime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation and anime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "what is animation and anime genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "discovery", "text": "which animation and anime genres is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation and anime in genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation and anime genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "vague", "text": "help me choose animation and anime in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation & anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "vague", "text": "need advice about genres animation and anime options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "biographies rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for biographies instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for biography instead of drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "biographies genres rather than factual"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "vague", "text": "looking into biographies in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biography overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "best genres biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "vague", "text": "exploring genres biographies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "top biography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "which biographies genres is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "how does genres biographies work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biographies genres overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "top biographies in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "what is genres biographies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biographies genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "genres biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "learn about biography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "compare biography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "best biography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "how does biographies work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "top genres biographies options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "vague", "text": "exploring biographies in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "vague", "text": "looking into genres biographies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "genres comedy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "top genres comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "genres comedy rather than factual"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "genres comedy options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "comedy genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for genres comedy instead of documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need comedy, not animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "vague", "text": "help me choose comedy in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "researching comedy genres, not action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "how does genres comedy options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "comedy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "comedy genres rather than biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "vague", "text": "exploring comedy in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "how does comedy genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "genres comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "best comedy in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "vague", "text": "looking into genres comedy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "top comedy in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "top genres comedy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "comedy in genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "how does comedy in genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "vague", "text": "exploring genres comedy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "how does genres comedy work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "comedy genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "what is documentary genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "genres documentary guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need documentary genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "researching documentary genres, not factual"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "documentary basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "genres documentary rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "genres documentary rather than comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "vague", "text": "exploring genres documentary options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "vague", "text": "help me choose documentary in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need documentary genres, not comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "top documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "vague", "text": "exploring documentary in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "documentary guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "best documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "what is documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "documentary genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "compare genres documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "how does documentary genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "documentary options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "compare documentary genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "learn about documentary genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "learn about genres documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "what is genres documentary options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "what is drama genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "which drama is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "vague", "text": "help me choose genres drama options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "compare genres drama options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "how does genres drama work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "what is drama in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "how does drama genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "learn about genres drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "vague", "text": "need advice about genres drama options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "learn about drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "vague", "text": "exploring genres drama options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "best genres drama options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "drama genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "top drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "genres drama overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "vague", "text": "looking into genres drama options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "drama genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "which genres drama is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "drama genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "what is genres drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "genres drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "top drama in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "best genres drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "top genres drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need genres factual, not documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching genres factual, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for factual instead of comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "best factual genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "which factual is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "genres factual options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "vague", "text": "exploring factual in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "what is factual genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "compare genres factual"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "which genres factual is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "genres factual options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "vague", "text": "help me choose factual in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "what is genres factual"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual in genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "genres factual basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "best genres factual"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "best factual"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "best factual in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "discovery", "text": "factual genres options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need family/children, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for genres family/children instead of comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "learn about family/children"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "family/children genres basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "top genres family/children options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "compare genres family/children options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "vague", "text": "looking into family/children in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "which genres family/children is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "top family/children in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "how does family/children in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "compare genres family/children"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "what is family/children"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "top genres family/children"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "vague", "text": "help me choose genres family/children options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "how does family/children work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "what is genres family/children"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "genres family/children overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "genres family/children basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "learn about genres family/children"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "vague", "text": "exploring genres family/children options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "family/children guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "how does family/children genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "genres family/children guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "alias", "text": "family/children overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "how does fantasy work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "researching fantasy, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need fantasy genres, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "how does genres fantasy work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "best fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "best genres fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "compare fantasy genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "what is fantasy in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "learn about fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "what is genres fantasy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "vague", "text": "looking into genres fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "genres fantasy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "fantasy overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "genres fantasy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "vague", "text": "help me choose fantasy in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "which fantasy is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "which fantasy genres is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "fantasy genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "vague", "text": "need advice about fantasy in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "compare fantasy in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "how does fantasy genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "fantasy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "fantasy genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "genres fantasy overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need history genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "which history is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history in genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "genres history"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "vague", "text": "help me choose genres history options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "top history"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "learn about genres history"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "vague", "text": "help me choose history in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "best history"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "genres history options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "best history genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "what is history genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "top history genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "compare history"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "vague", "text": "need advice about history in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "history genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "history guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "discovery", "text": "best genres history options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "vague", "text": "need advice about genres history options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "best holiday genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "how does genres holiday options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "what is genres holiday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "how does genres holiday work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "holiday basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "learn about genres holiday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "vague", "text": "looking into genres holiday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "what is holiday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "holiday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "how does holiday work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "what is holiday in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "holiday genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "vague", "text": "exploring holiday in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "genres holiday guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "top holiday genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "holiday genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "compare genres holiday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "top genres holiday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "which holiday is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "compare holiday in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "best holiday in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "vague", "text": "looking into holiday in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "vague", "text": "help me choose holiday in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "alias", "text": "learn about holiday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need horror, not biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "compare genres horror options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for horror genres instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "genres horror"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "horror basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "best horror genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "horror genres rather than action/adventure"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "genres horror options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "horror genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "what is horror genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "horror genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "which horror is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "genres horror options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "horror overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "vague", "text": "help me choose genres horror options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "vague", "text": "exploring horror in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "how does horror genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "genres horror guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "learn about horror genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "genres horror basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "what is genres horror"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "vague", "text": "looking into genres horror options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "horror genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "what is horror"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "compare lifestyle genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for lifestyle genres instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for lifestyle instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need lifestyle genres, not animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "compare lifestyle in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "top genres lifestyle"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "vague", "text": "looking into genres lifestyle options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "genres lifestyle basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "top genres lifestyle options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "top lifestyle genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "compare genres lifestyle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "how does lifestyle work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "lifestyle genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "lifestyle options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "discovery", "text": "best lifestyle genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "how does lifestyle in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "genres lifestyle overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "lifestyle genres overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "how does genres lifestyle options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "learn about lifestyle genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "lifestyle"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "what is lifestyle in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "genres lifestyle guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "alias", "text": "learn about genres lifestyle"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "genres music video options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching music video, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "music video genres rather than comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "music video"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching music video, not comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "vague", "text": "exploring music video in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "vague", "text": "looking into music video in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "genres music video overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "genres music video guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "top genres music video options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "which music video is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "genres music video"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "best genres music video options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "what is music video"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "music video in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "best music video genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "which genres music video is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "music video guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "vague", "text": "help me choose genres music video options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "best music video"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "which music video genres is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "discovery", "text": "compare music video genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "music video genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "music video genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musical genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "learn about genres musical"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for genres musical instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching genres musical, not documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musical in genres guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "musicals rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need musical, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "musical options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musical"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "top genres musical options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "how does musical in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musicals overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "which musical genres is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "genres musical options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musical genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "vague", "text": "looking into musical in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musical guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "which genres musical is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "learn about musical"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musicals basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "vague", "text": "need advice about genres musical options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "musicals guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "genres musical overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "alias", "text": "what is musical"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "best genres mystery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "top genres mystery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "mystery options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "learn about genres mystery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "mystery genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "top mystery genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "learn about mystery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "genres mystery overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "top genres mystery options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "compare mystery genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "compare genres mystery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "vague", "text": "help me choose mystery in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "compare mystery in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "vague", "text": "exploring genres mystery options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "mystery in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "mystery genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "mystery in genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "what is genres mystery options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "what is genres mystery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "vague", "text": "need advice about mystery in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "what is mystery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "mystery guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "mystery overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "alias", "text": "how does mystery in genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for genres reality tv instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "reality tv rather than biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "how does reality tv genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "vague", "text": "need advice about genres reality tv options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need reality tv genres, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "what is reality tv genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "genres reality tv options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "how does reality tv work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "compare genres reality tv options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "which genres reality tv is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "top genres reality tv"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "top reality tv in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "top genres reality tv options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "genres reality tv overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "best reality tv genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "reality tv options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "vague", "text": "exploring reality tv in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "best reality tv"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "vague", "text": "looking into reality tv in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "reality tv basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "reality tv overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "discovery", "text": "which reality tv genres is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "vague", "text": "help me choose genres reality tv options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "genres reality tv basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "genres romance rather than biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "how does romance in genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "romance genres rather than drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "best romance in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "romance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "compare romance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "best romance genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "what is genres romance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "romance genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "what is genres romance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "discovery", "text": "best romance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "vague", "text": "need advice about genres romance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "romance genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "how does genres romance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "vague", "text": "help me choose romance in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "what is romance genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "romance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "how does romance genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "what is romance in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "romance genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "learn about romance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "genres romance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "romance genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "vague", "text": "looking into romance in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for science fiction genres instead of animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "how does science fiction in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "learn about science fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "what is science fiction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for science fiction instead of biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "science fiction in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need genres science fiction, not comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "genres science fiction options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "how does genres science fiction work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "best science fiction in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "what is genres science fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "science fiction basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "science fiction genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "compare genres science fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "science fiction options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "top science fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "top science fiction genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "how does science fiction work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "learn about genres science fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "what is science fiction genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "learn about science fiction genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "vague", "text": "need advice about genres science fiction options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "vague", "text": "help me choose genres science fiction options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "vague", "text": "help me choose science fiction in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "genres soap opera options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for genres soap opera instead of documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching soap opera, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "compare soap opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need soap opera genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "learn about soap opera genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "learn about genres soap opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "genres soap opera guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "compare soap opera genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "how does soap opera in genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "best soap opera in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "vague", "text": "need advice about soap opera in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "soap opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "genres soap opera options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "top soap opera in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "vague", "text": "exploring genres soap opera options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "best soap opera genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "discovery", "text": "which soap opera is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "soap opera overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "what is soap opera in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "soap opera guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "soap opera genres overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "alias", "text": "learn about soap opera"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "vague", "text": "help me choose soap opera in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need special interest (indie/art house), not animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "best special interest (indie/art house) in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "what is genres special interest (indie/art house) options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "vague", "text": "help me choose special interest (indie/art house) in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "top genres special interest (indie/art house)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "special interest (indie/art house) genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "top special interest (indie/art house)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "genres special interest (indie/art house) guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "best genres special interest (indie/art house)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "genres special interest (indie/art house) overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "what is special interest (indie/art house) genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "top special interest (indie/art house) in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "compare genres special interest (indie/art house) options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "learn about special interest (indie/art house) genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "best special interest (indie/art house) genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "vague", "text": "need advice about special interest (indie/art house) in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "special interest (indie/art house) in genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "special interest (indie/art house)"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "discovery", "text": "compare special interest (indie/art house) in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "genres special interest (indie/art house)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "how does genres special interest (indie/art house) work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "special interest (indie/art house) basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "how does special interest (indie/art house) in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "special interest (indie/art house) genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "what is sports radio genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need sports radio genres, not comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "sports radio rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for genres sports radio instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "sports radio basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "vague", "text": "looking into sports radio in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "sports radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "top sports radio in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "learn about sports radio genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "which sports radio genres is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "compare sports radio genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "best sports radio in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "sports radio genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "genres sports radio basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "learn about genres sports radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "compare genres sports radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "sports radio overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "how does sports radio in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "learn about sports radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "top sports radio genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "compare sports radio in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "genres sports radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "what is genres sports radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "vague", "text": "looking into genres sports radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "compare talk radio genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching talk radio, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "talk radio genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for talk radio genres instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "which talk radio genres is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for genres talk radio instead of drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "compare talk radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "learn about talk radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "which talk radio is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "talk radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "best talk radio genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "top talk radio in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "genres talk radio basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "how does talk radio in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "genres talk radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "what is talk radio in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "best talk radio in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "discovery", "text": "compare genres talk radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "talk radio genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "vague", "text": "help me choose genres talk radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "genres talk radio guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "vague", "text": "looking into genres talk radio options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "vague", "text": "looking into talk radio in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "vague", "text": "need advice about genres talk radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "how does talk radio public radio work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "genres talk radio public radio basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "compare public radio talk radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "learn about genres talk radio public radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "top public radio talk radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "talk radio public radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "public radio overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "top talk radio public radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "compare genres public radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "which public radio is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "top genres talk radio public radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "which genres talk radio public radio is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for talk show genres instead of documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching talk show genres, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "genres talk show overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "compare genres talk show options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "talk show options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "best genres talk show"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "vague", "text": "need advice about talk show in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "compare genres talk show"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "talk show genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "how does genres talk show options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show genres overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "what is talk show in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "vague", "text": "help me choose talk show in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "vague", "text": "looking into talk show in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "genres talk show basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "top talk show genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "vague", "text": "need advice about genres talk show options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "what is genres talk show"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "which genres talk show is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show in genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching true crime genres, not drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "true crime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "how does genres true crime work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "true crime rather than drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "genres true crime basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "true crime genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "best genres true crime options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "compare genres true crime options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for true crime genres instead of documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching genres true crime, not drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "genres true crime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "compare true crime genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "how does true crime work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "learn about genres true crime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "compare true crime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "true crime genres basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "vague", "text": "exploring genres true crime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "true crime guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "genres true crime overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "genres true crime options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "how does true crime genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "vague", "text": "exploring true crime in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "true crime basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "vague", "text": "need advice about genres true crime options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching western genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for western instead of documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "genres western overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "best western genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need western genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "western genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "top genres western"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "western guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "compare genres western"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "genres western"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "western genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "what is western"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "western genres overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "vague", "text": "exploring western in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "top genres western options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "compare western genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "what is genres western options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "western options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "learn about western"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "how does western in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "how does genres western work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "which western is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "vague", "text": "exploring genres western options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "vague", "text": "need advice about genres western options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching genres young adult, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for young adult genres instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need young adult genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "which young adult genres is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "top genres young adult"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "genres young adult guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "best genres young adult"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "genres young adult options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "compare young adult"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "what is genres young adult"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "vague", "text": "looking into genres young adult options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "genres young adult options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "top young adult in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "vague", "text": "help me choose genres young adult options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "learn about genres young adult"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "genres young adult basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "how does young adult in genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "what is young adult"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "young adult guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "young adult genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "compare genres young adult"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "how does young adult genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "discovery", "text": "young adult genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "how does genres young adult options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "best healthy habits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "running advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is healthy living"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "looking into healthy living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "need advice about running advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need healthy living, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "how does running advice work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "exploring fitness ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "need advice about fitness ideas"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching healthy living, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is healthy living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "best fitness ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "help me choose healthy living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "compare healthy habits"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "learn about healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is running advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "need advice about healthy living options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "top healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "top exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for healthy living instead of books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "exploring healthy living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "compare exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need healthy living, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "fitness ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "compare running advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "fitness ideas guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "need advice about exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "running advice guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "top running advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "exploring healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "looking into exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "exploring exercise guidance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "looking into healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "how does healthy habits work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "help me choose healthy habits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "best exercise guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "need advice about healthy habits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "how does fitness ideas work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "looking into running advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "healthy living rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "best running advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "top fitness ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "best healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "healthy living basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "compare fitness ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "healthy living rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "healthy habits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "looking into healthy habits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "exercise guidance guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "researching children's health, not fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "top children's health healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "vague", "text": "need advice about healthy living children's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "children's health healthy living overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "compare healthy living children's health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "vague", "text": "help me choose healthy living children's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "what is healthy living children's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "learn about children's health healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "compare children's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "children's health healthy living guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "children's health guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "healthy living children's health overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "vague", "text": "exploring children's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "children's health healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "how does healthy living children's health options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "top healthy living children's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "best children's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "how does children's health in healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "how does children's health healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "children's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "compare children's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "what is children's health healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "healthy living children's health options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "alias", "text": "what is children's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "top healthy living fitness and exercise options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "fitness and exercise healthy living rather than men's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "best healthy living fitness and exercise options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "what is fitness and exercise healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "looking for fitness and exercise instead of men's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "need fitness and exercise, not wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "fitness and exercise healthy living rather than wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "researching fitness and exercise, not wellness"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "compare fitness and exercise in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "fitness and exercise guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "fitness and exercise healthy living guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "fitness and exercise healthy living overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "top healthy living fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "fitness and exercise overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "fitness and exercise healthy living basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "fitness and exercise in healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "what is healthy living fitness and exercise options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "healthy living fitness and exercise overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "how does fitness and exercise in healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "what is healthy living fitness and exercise"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "vague", "text": "help me choose fitness and exercise in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "top fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "fitness and exercise healthy living options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "top fitness and exercise healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "healthy living fitness and exercise participant sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "negative_iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "contrastive", "text": "looking for healthy living fitness and exercise participant sports instead of running and jogging"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "contrastive", "text": "looking for participant sport instead of alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "negative_iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "contrastive", "text": "need participant sport, not physical therapy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "fitness and exercise participant sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "participant sports in fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "participant sports fitness and exercise guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "participant sports fitness and exercise overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "discovery", "text": "best participant sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "discovery", "text": "best healthy living fitness and exercise participant sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "learn about healthy living fitness and exercise participant sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "vague", "text": "need advice about participant sports in fitness and exercise"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "contrastive", "text": "10k training rather than alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "vague", "text": "help me choose fitness and exercise running and jogging options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "vague", "text": "need advice about healthy living running and jogging"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "negative_iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "contrastive", "text": "looking for 5k training instead of physical therapy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "what is running and jogging fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "discovery", "text": "top fitness and exercise running and jogging"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "negative_iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "contrastive", "text": "looking for 10k training instead of participant sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "learn about 10k training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "healthy living fitness and exercise running and jogging basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "how does half marathon advice work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "discovery", "text": "top 5k training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "discovery", "text": "which healthy living fitness and exercise running and jogging is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "vague", "text": "exploring healthy living men's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "learn about men's health healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "top men's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "learn about men's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "compare healthy living men's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "how does healthy living men's health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "healthy living men's health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "top healthy living men's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "learn about healthy living men's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "how does men's health healthy living work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "how does men's health in healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "best men's health healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "men's health healthy living overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "best healthy living men's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "healthy living men's health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "what is men's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "what is men's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "men's health in healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "compare men's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "men's health overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "best men's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "vague", "text": "need advice about healthy living men's health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "vague", "text": "looking into men's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "vague", "text": "exploring men's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "vague", "text": "looking into nutrition in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "researching nutrition, not children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "looking for healthy living nutrition instead of senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "which nutrition is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "need nutrition healthy living, not children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "looking for nutrition healthy living instead of senior health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "what is nutrition in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "compare nutrition healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "how does nutrition in healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "healthy living nutrition guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "nutrition basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "vague", "text": "exploring healthy living nutrition options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "what is nutrition healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "how does nutrition work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "vague", "text": "need advice about healthy living nutrition options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "how does nutrition healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "best healthy living nutrition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "nutrition in healthy living guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "nutrition healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "nutrition guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "learn about healthy living nutrition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "vague", "text": "help me choose healthy living nutrition options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "nutrition options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "which healthy living nutrition is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "best healthy living senior health options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "healthy living senior health rather than children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "looking for senior health instead of wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "need healthy living senior health, not wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "senior health healthy living guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "how does senior health healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "senior health basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "how does healthy living senior health options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "what is senior health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "what is healthy living senior health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "healthy living senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "best senior health healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "which senior health is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "compare senior health healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "vague", "text": "help me choose healthy living senior health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "what is senior health healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "senior health healthy living overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "learn about healthy living senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "healthy living senior health basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "vague", "text": "help me choose senior health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "senior health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "which healthy living senior health is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "compare senior health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "vague", "text": "exploring senior health in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "researching weight loss, not senior health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "looking for weight loss instead of senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "what is weight loss"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "need healthy living weight loss, not senior health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "vague", "text": "exploring weight loss in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "healthy living weight loss rather than children's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "which weight loss is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "what is weight loss in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "vague", "text": "looking into healthy living weight loss options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "looking for weight loss healthy living instead of fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "healthy living weight loss basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "how does healthy living weight loss options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "healthy living weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "learn about healthy living weight loss"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "compare healthy living weight loss options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "weight loss overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "weight loss in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "which healthy living weight loss is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "weight loss healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "how does weight loss in healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "best healthy living weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "compare weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "weight loss options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "what is wellness"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "best healthy living wellness options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "best healthy living wellness"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "compare wellness in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "healthy living wellness"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "vague", "text": "looking into wellness in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "vague", "text": "help me choose healthy living wellness options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "best wellness in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "top wellness in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "compare wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness healthy living overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "how does healthy living wellness options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness healthy living basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "what is wellness healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "compare healthy living wellness options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "vague", "text": "exploring healthy living wellness options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "what is healthy living wellness options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "learn about healthy living wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "vague", "text": "looking into healthy living wellness options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "healthy living wellness overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "discovery", "text": "compare wellness alternative medicine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "discovery", "text": "compare healthy living wellness alternative medicine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "learn about alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "vague", "text": "exploring healthy living alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "discovery", "text": "compare wellness alternative medicine options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "negative_iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "contrastive", "text": "looking for healthy living wellness alternative medicine instead of participant sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "discovery", "text": "wellness alternative medicine options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "alternative medicine in wellness guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "alternative medicine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "wellness alternative medicine guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "how does wellness alternative medicine work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "vague", "text": "need advice about alternative medicine in wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "alias", "text": "what is alternative medicine herbs and supplements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "discovery", "text": "healthy living wellness alternative medicine herbs and supplements options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "contrastive", "text": "alternative medicine herbs and supplements rather than holistic health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "discovery", "text": "top healthy living herbs and supplements"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "vague", "text": "looking into herbs and supplements in alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "contrastive", "text": "looking for healthy living wellness alternative medicine herbs and supplements instead of holistic health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "alias", "text": "what is healthy living herbs and supplements"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "alias", "text": "what is herbs and supplements in alternative medicine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "alias", "text": "healthy living wellness alternative medicine holistic health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "alias", "text": "how does alternative medicine holistic health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "alias", "text": "learn about healthy living wellness alternative medicine holistic health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "discovery", "text": "alternative medicine holistic health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "vague", "text": "looking into healthy living holistic health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "alias", "text": "holistic health alternative medicine overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "alias", "text": "what is holistic health in alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "discovery", "text": "best alternative medicine holistic health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "which healthy living wellness physical therapy is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "wellness physical therapy overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "how does physical therapy in wellness work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "best wellness physical therapy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "healthy living wellness physical therapy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "wellness physical therapy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "compare healthy living physical therapy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "discovery", "text": "compare wellness physical therapy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "what is healthy living wellness physical therapy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "how does wellness physical therapy options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "physical therapy overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "vague", "text": "exploring physical therapy in wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "how does smoking cessation work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "learn about smoking cessation"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "negative_iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "contrastive", "text": "looking for healthy living wellness smoking cessation instead of physical therapy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "healthy living wellness smoking cessation basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "smoking cessation guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "discovery", "text": "best healthy living smoking cessation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "vague", "text": "looking into healthy living smoking cessation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "how does wellness smoking cessation options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "vague", "text": "help me choose smoking cessation in wellness"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "alias", "text": "how does healthy living smoking cessation work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "discovery", "text": "compare smoking cessation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "discovery", "text": "compare smoking cessation wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "looking for women's health instead of fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "healthy living women's health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "top healthy living women's health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "healthy living women's health options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "best healthy living women's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "top women's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "vague", "text": "looking into women's health in healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "vague", "text": "need advice about healthy living women's health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "vague", "text": "help me choose healthy living women's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "which healthy living women's health is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "vague", "text": "exploring healthy living women's health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "women's health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "women's health healthy living basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "how does women's health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "learn about healthy living women's health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "best healthy living women's health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "how does women's health in healthy living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "healthy living women's health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "women's health healthy living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "what is healthy living women's health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "women's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "how does healthy living women's health work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "what is women's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "alias", "text": "learn about women's health healthy living"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for hobbies and interests instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "hobbies & interest rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching hobbies and interests, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "top hobbies & interest"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "top hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "what is hobbies & interest"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need hobbies and interests, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "help me choose hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "hobbies & interest rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching hobbies and interests, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "hobbies & interest rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching hobbies & interest, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for hobbies and interests instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "hobbies and interests rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for hobbies & interest instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies & interest guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need hobbies & interest, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need hobbies & interest, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "looking into hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need hobbies and interests, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "hobbies and interests rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "how does hobbies and interests work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need hobbies & interest, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies & interest basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "need advice about hobbies and interests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies & interest overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "best hobbies & interest"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "exploring hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "hobbies & interest options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies and interests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies and interests overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "what is hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for hobbies and interests instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "hobbies & interest"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "need advice about hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "discovery", "text": "which hobbies & interest is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "looking into hobbies and interests options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching hobbies & interest, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for hobbies & interest instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "antiquing and antiques rather than cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching antiquing and antiques, not beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "hobbies and interests antiquing and antiques options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "compare antiquing and antique"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "best hobbies and interests antiquing and antiques options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "best antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "antiquing and antique guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "vague", "text": "looking into antiquing and antiques in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "vague", "text": "exploring hobbies and interests antiquing and antiques options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "antiquing and antiques overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "hobbies and interests antiquing and antiques basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "what is antiquing and antique"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "which antiquing and antiques hobbies and interests is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "vague", "text": "need advice about hobbies and interests antiquing and antiques options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "best antiquing and antiques hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "what is antiquing and antiques"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "top hobbies and interests antiquing and antiques options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "how does antiquing and antiques in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "discovery", "text": "antiquing and antiques options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "learn about antiquing and antiques hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "antiquing and antiques hobbies and interests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "learn about antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "hobbies and interests antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "alias", "text": "learn about hobbies and interests antiquing and antiques"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "vague", "text": "exploring hobbies and interests arts and crafts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "vague", "text": "looking into arts and crafts in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "vague", "text": "need advice about hobbies and interests arts and crafts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "arts and crafts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "learn about arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "learn about arts and craft"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "arts and crafts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "how does arts and crafts work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "arts and crafts overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "what is arts and craft"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "arts and crafts hobbies and interests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "top arts and crafts hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "arts and craft"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "hobbies and interests arts and crafts options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "arts and crafts basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "best hobbies and interests arts and crafts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "top hobbies and interests arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "learn about arts and crafts hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "arts and craft guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "best arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "hobbies and interests arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "which hobbies and interests arts and crafts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "compare arts and craft"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "discovery", "text": "top arts and craft"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "arts and crafts beadwork rather than drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "discovery", "text": "top beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "hobbies and interests arts and crafts beadwork guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "discovery", "text": "compare beadwork"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "vague", "text": "looking into hobbies and interests beadwork"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "vague", "text": "help me choose beadwork in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "discovery", "text": "which beadwork arts and crafts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "hobbies and interests arts and crafts beadwork basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "arts and crafts beadwork rather than candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "how does hobbies and interests beadwork work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "arts and crafts beadwork options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "hobbies and interests beadwork guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "what is hobbies and interests arts and crafts candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "discovery", "text": "compare candle and soap making in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "vague", "text": "exploring arts and crafts candle and soap making options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "candle and soap making rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "contrastive", "text": "researching arts and crafts candle and soap making, not jewelry making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "looking for candle and soap making arts and crafts instead of beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "arts and crafts candle and soap making guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "discovery", "text": "best candle and soap making arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "hobbies and interests arts and crafts candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "candle and soap making overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "arts and crafts candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "alias", "text": "learn about candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "arts and crafts drawing and sketching rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "contrastive", "text": "drawing and sketching arts and crafts rather than jewelry making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "looking for drawing and sketching instead of beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "hobbies and interests arts and crafts drawing and sketching basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "how does arts and crafts drawing and sketching work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "what is hobbies and interests drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "learn about drawing and sketching arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "what is drawing and sketching arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "discovery", "text": "top hobbies and interests arts and crafts drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "discovery", "text": "compare drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "vague", "text": "help me choose hobbies and interests drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "vague", "text": "exploring drawing and sketching in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "discovery", "text": "top hobbies and interests arts and crafts jewelry making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "hobbies and interests arts and crafts jewelry making rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "need arts and crafts jewelry making, not drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "discovery", "text": "compare jewelry making in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "vague", "text": "need advice about jewelry making in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "what is arts and crafts jewelry making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "jewelry making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "how does hobbies and interests arts and crafts jewelry making work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "hobbies and interests arts and crafts jewelry making guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "arts and crafts jewelry making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "discovery", "text": "jewelry making arts and crafts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "vague", "text": "help me choose jewelry making in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "needlework in arts and crafts guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "needlework rather than candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "researching needlework, not beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "arts and crafts needlework"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "needlework basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "researching arts and crafts needlework, not drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "vague", "text": "looking into hobbies and interests needlework"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "needlework guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "how does needlework arts and crafts work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "hobbies and interests needlework guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "alias", "text": "what is hobbies and interests arts and crafts needlework"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "vague", "text": "exploring needlework in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "discovery", "text": "compare arts and crafts painting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "arts and crafts painting overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "discovery", "text": "arts and crafts painting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "discovery", "text": "which arts and crafts painting is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "hobbies and interests arts and crafts painting overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "vague", "text": "looking into painting in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "learn about painting arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "need hobbies and interests arts and crafts painting, not candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "discovery", "text": "top painting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "hobbies and interests arts and crafts painting basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "how does arts and crafts painting options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "arts and crafts painting options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "discovery", "text": "top hobbies and interests photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "arts and crafts photography overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "looking for arts and crafts photography instead of candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "photography overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "vague", "text": "need advice about photography in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "vague", "text": "exploring arts and crafts photography options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "photography arts and crafts basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "hobbies and interests photography guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "how does hobbies and interests photography work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "what is photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "discovery", "text": "best photography in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "discovery", "text": "compare photography in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "hobbies and interests scrapbooking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "hobbies and interests arts and crafts scrapbooking rather than drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "scrapbooking arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "scrapbooking arts and crafts basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "discovery", "text": "best scrapbooking arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "action", "text": "buy arts and crafts scrapbooking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "discovery", "text": "best arts and crafts scrapbooking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "action", "text": "book scrapbooking arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "discovery", "text": "hobbies and interests arts and crafts scrapbooking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "learn about scrapbooking arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "vague", "text": "need advice about hobbies and interests scrapbooking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "vague", "text": "exploring scrapbooking in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "what is hobbies and interests arts and crafts woodworking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "need hobbies and interests arts and crafts woodworking, not candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "best woodworking in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "learn about arts and crafts woodworking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "top woodworking in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "compare woodworking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "arts and crafts woodworking rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "woodworking in arts and crafts guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "vague", "text": "looking into hobbies and interests woodworking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "arts and crafts woodworking overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "hobbies and interests arts and crafts woodworking overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "alias", "text": "what is woodworking arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "what is beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "hobbies and interests beekeeping guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "beekeeping in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "vague", "text": "need advice about beekeeping in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "what is beekeeping in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "looking for beekeeping hobbies and interests instead of collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "learn about beekeeping hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "vague", "text": "help me choose hobbies and interests beekeeping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "vague", "text": "exploring hobbies and interests beekeeping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "beekeeping in hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "best hobbies and interests beekeeping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "what is beekeeping hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "beekeeping hobbies and interests overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "best hobbies and interests beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "beekeeping hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "best beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "what is hobbies and interests beekeeping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "top beekeeping in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "vague", "text": "exploring beekeeping in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "which beekeeping hobbies and interests is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "hobbies and interests beekeeping options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "beekeeping guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "which beekeeping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "hobbies and interests beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "vague", "text": "exploring birdwatching in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "need hobbies and interests birdwatching, not cigars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "vague", "text": "help me choose birdwatching in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "compare birdwatching hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "birdwatching hobbies and interests overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "vague", "text": "looking into hobbies and interests birdwatching options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "birdwatching hobbies and interests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "hobbies and interests birdwatching overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "compare birdwatching in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "how does hobbies and interests birdwatching work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "top hobbies and interests birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "top birdwatching hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "which birdwatching hobbies and interests is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "learn about birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "learn about hobbies and interests birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "birdwatching guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "top birdwatching in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "discovery", "text": "compare hobbies and interests birdwatching options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "hobbies and interests birdwatching guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "birdwatching hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "what is hobbies and interests birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "what is birdwatching hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "how does birdwatching work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "alias", "text": "learn about birdwatching hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "vague", "text": "help me choose cigars in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigars hobbies and interests overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "hobbies and interests cigars basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "best cigar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "how does cigars in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "learn about cigars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigars in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigars basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigars in hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigar basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "learn about cigars hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "compare cigars in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigar guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "what is hobbies and interests cigars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "which cigars is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "hobbies and interests cigars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigars hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "cigar"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "top cigars in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "best cigars in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "vague", "text": "exploring hobbies and interests cigars options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "discovery", "text": "top hobbies and interests cigars options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "vague", "text": "exploring cigars in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "vague", "text": "looking into cigars in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "which collecting is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "need hobbies and interests collecting, not content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "hobbies and interests collecting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "how does hobbies and interests collecting work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "vague", "text": "exploring hobbies and interests collecting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "hobbies and interests collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "compare collecting hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "best hobbies and interests collecting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "hobbies and interests collecting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "learn about collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "collecting hobbies and interests options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "vague", "text": "help me choose hobbies and interests collecting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "compare collecting in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "collecting basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "top hobbies and interests collecting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "what is collecting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "collecting in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "collecting overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "collecting in hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "hobbies and interests collecting options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "learn about hobbies and interests collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "how does collecting work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "vague", "text": "need advice about collecting in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "vague", "text": "looking into collecting in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "how does collecting comic books work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "researching comic book, not candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "looking for comic book instead of candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "how does comic books in collecting work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "comic books guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "need collecting comic books, not drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "researching comic book, not drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "hobbies and interests collecting comic books"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "discovery", "text": "top comic books"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "discovery", "text": "which comic book is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "discovery", "text": "compare comic books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "vague", "text": "looking into hobbies and interests comic books"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "what is hobbies and interests collecting stamps and coins"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "need stamps and coin, not candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "negative_iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "contrastive", "text": "hobbies and interests collecting stamps and coins rather than comic books"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "negative_iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "contrastive", "text": "looking for hobbies and interests collecting stamps and coins instead of comic books"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "collecting stamps and coins guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "looking for stamps and coin instead of candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "how does stamps and coins in collecting work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "vague", "text": "exploring stamps and coins in collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "discovery", "text": "stamps and coins options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "discovery", "text": "collecting stamps and coins options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "discovery", "text": "hobbies and interests collecting stamps and coins options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "discovery", "text": "compare hobbies and interests collecting stamps and coins"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for content production instead of birdwatching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "top hobbies and interests content production options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "looking for content production instead of cigars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "what is content production hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "hobbies and interests content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "which hobbies and interests content production is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "top content production in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "which content production is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "content production in hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "learn about content production hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "vague", "text": "looking into content production in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "which content production hobbies and interests is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "how does hobbies and interests content production options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "compare hobbies and interests content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "learn about content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "content production guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "content production hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "vague", "text": "looking into hobbies and interests content production options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "vague", "text": "help me choose hobbies and interests content production options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "hobbies and interests content production options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "how does content production work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "vague", "text": "exploring hobbies and interests content production options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "hobbies and interests content production guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "hobbies and interests content production overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "how does audio production in content production work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "negative_iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "contrastive", "text": "researching audio production, not screenwriting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "vague", "text": "looking into hobbies and interests audio production"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "negative_iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "contrastive", "text": "researching audio production content production, not video production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "how does audio production content production work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "learn about audio production content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "audio production in content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "discovery", "text": "which hobbies and interests content production audio production is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "vague", "text": "need advice about audio production in content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "learn about audio production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "discovery", "text": "top content production audio production options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "learn about hobbies and interests content production audio production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "freelance writing guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "negative_iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "contrastive", "text": "researching freelance writing, not audio production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "discovery", "text": "best hobbies and interests freelance writing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "what is content production freelance writing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "freelance writing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "discovery", "text": "freelance writing content production options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "discovery", "text": "best hobbies and interests content production freelance writing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "what is freelance writing content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "how does freelance writing content production work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "hobbies and interests content production freelance writing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "alias", "text": "how does content production freelance writing options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "vague", "text": "looking into freelance writing in content production"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "negative_iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "contrastive", "text": "content production screenwriting rather than video production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "how does screenwriting work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "negative_iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "contrastive", "text": "content production screenwriting rather than audio production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "discovery", "text": "top content production screenwriting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "what is content production screenwriting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "what is screenwriting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "content production screenwriting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "how does hobbies and interests screenwriting work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "discovery", "text": "top content production screenwriting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "discovery", "text": "compare screenwriting content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "how does screenwriting in content production work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "alias", "text": "hobbies and interests screenwriting guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Video Production", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "video production rather than beadwork"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Video Production", "negative_iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "contrastive", "text": "looking for content production video production instead of screenwriting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "how does content production video production work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Video Production", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "need hobbies and interests content production video production, not beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "video production guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "discovery", "text": "which hobbies and interests content production video production is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Video Production", "negative_iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "contrastive", "text": "researching content production video production, not screenwriting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "vague", "text": "exploring video production in content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "hobbies and interests video production guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "learn about video production content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "vague", "text": "looking into video production in content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "alias", "text": "what is content production video production options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "looking for hobbies and interests games and puzzles instead of collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "what is games and puzzles hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need games and puzzles hobbies and interests, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "hobbies and interests games and puzzles rather than arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "top games and puzzle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "top games and puzzles hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "best games and puzzle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "what is hobbies and interests games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "games and puzzle guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "compare games and puzzles hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "compare games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "vague", "text": "help me choose games and puzzles in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "how does games and puzzle work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "which games and puzzle is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "how does games and puzzles in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "best games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "learn about hobbies and interests games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "vague", "text": "looking into hobbies and interests games and puzzles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "games and puzzles overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "how does hobbies and interests games and puzzles options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "hobbies and interests games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "alias", "text": "games and puzzles hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "vague", "text": "looking into games and puzzles in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "need board games and puzzles games and puzzles, not beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "board games and puzzles games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "vague", "text": "need advice about games and puzzles board games and puzzles options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "looking for board games and puzzles games and puzzles instead of candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "hobbies and interests board games and puzzles guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "discovery", "text": "which board games and puzzle is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "discovery", "text": "compare hobbies and interests games and puzzles board games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "board games and puzzle basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "researching board games and puzzles, not candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "how does board games and puzzles in games and puzzles work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "learn about board games and puzzle"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "discovery", "text": "best hobbies and interests games and puzzles board games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "card game basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "discovery", "text": "compare games and puzzles card games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "what is card games in games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "discovery", "text": "best hobbies and interests games and puzzles card games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "action", "text": "reserve games and puzzles card games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "discovery", "text": "compare card games games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "games and puzzles card games guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "vague", "text": "exploring card games in games and puzzles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "discovery", "text": "games and puzzles card games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "card games games and puzzles guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "action", "text": "get card games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "what is card game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "what is roleplaying game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "vague", "text": "looking into roleplaying games in games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "looking for games and puzzles roleplaying games instead of beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "discovery", "text": "roleplaying games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "looking for roleplaying game instead of beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "discovery", "text": "which hobbies and interests games and puzzles roleplaying games is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "hobbies and interests games and puzzles roleplaying games overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "discovery", "text": "top hobbies and interests games and puzzles roleplaying games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "negative_iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "contrastive", "text": "looking for hobbies and interests games and puzzles roleplaying games instead of board games and puzzles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "what is games and puzzles roleplaying games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "games and puzzles roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "how does roleplaying games games and puzzles work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "genealogy and ancestry hobbies and interests overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "genealogy and ancestry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "hobbies and interests genealogy and ancestry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "how does genealogy and ancestry in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "need genealogy and ancestry, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching hobbies and interests genealogy and ancestry, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "hobbies and interests genealogy and ancestry rather than birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "looking for hobbies and interests genealogy and ancestry instead of arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "what is genealogy and ancestry hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "learn about genealogy and ancestry hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "vague", "text": "help me choose genealogy and ancestry in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "hobbies and interests genealogy and ancestry options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "compare genealogy and ancestry in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "which genealogy and ancestry is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "what is genealogy and ancestry in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "best genealogy and ancestry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "which genealogy and ancestry hobbies and interests is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "hobbies and interests genealogy and ancestry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "how does genealogy and ancestry hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "genealogy and ancestry hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "compare hobbies and interests genealogy and ancestry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "genealogy and ancestry hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "what is genealogy and ancestry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "vague", "text": "need advice about hobbies and interests genealogy and ancestry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "best magic and illusion hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need hobbies and interests magic and illusion, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need magic and illusion hobbies and interests, not collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "how does hobbies and interests magic and illusion options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need magic and illusion, not collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "hobbies and interests magic and illusion rather than arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "vague", "text": "need advice about hobbies and interests magic and illusion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "vague", "text": "looking into hobbies and interests magic and illusion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "top magic and illusion hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "compare hobbies and interests magic and illusion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion hobbies and interests basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "vague", "text": "looking into magic and illusion in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion in hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "what is hobbies and interests magic and illusion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "compare magic and illusion in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "top magic and illusion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "vague", "text": "exploring hobbies and interests magic and illusion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "what is magic and illusion in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "learn about hobbies and interests magic and illusion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "hobbies and interests magic and illusion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "how does magic and illusion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "how does model toys hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "which hobbies and interests model toys is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "model toys overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "hobbies and interests model toys options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "hobbies and interests model toys overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "what is model toys in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "compare hobbies and interests model toys"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "best model toys in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "best model toy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "model toys in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "top hobbies and interests model toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "how does hobbies and interests model toys work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "what is hobbies and interests model toys"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "compare hobbies and interests model toys options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "model toy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "hobbies and interests model toys guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "model toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "which model toy is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "model toys guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "vague", "text": "need advice about hobbies and interests model toys options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "which model toys hobbies and interests is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "vague", "text": "need advice about model toys in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "discovery", "text": "hobbies and interests model toys options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "vague", "text": "help me choose hobbies and interests model toys options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need musical instruments hobbies and interests, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need musical instrument, not collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "what is hobbies and interests musical instruments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instruments hobbies and interests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instrument overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "vague", "text": "exploring hobbies and interests musical instruments options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instruments"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "vague", "text": "looking into musical instruments in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "compare hobbies and interests musical instruments"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "vague", "text": "help me choose hobbies and interests musical instruments options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "what is hobbies and interests musical instruments options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "what is musical instruments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instruments hobbies and interests overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "how does musical instruments hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "hobbies and interests musical instruments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instruments hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "compare musical instruments hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "vague", "text": "exploring musical instruments in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "musical instrument guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "best musical instruments in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "which musical instruments is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "top musical instruments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "top musical instrument"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "musical instruments hobbies and interests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "paranormal phenomena"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "need hobbies and interests paranormal phenomena, not antiquing and antiques"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "vague", "text": "exploring hobbies and interests paranormal phenomena options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "how does paranormal phenomena in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "best paranormal phenomena"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "how does paranormal phenomena hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "what is paranormal phenomena hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "which paranormal phenomena hobbies and interests is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "learn about paranormal phenomena"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "what is hobbies and interests paranormal phenomena options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "best hobbies and interests paranormal phenomena"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "top hobbies and interests paranormal phenomena"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "what is hobbies and interests paranormal phenomena"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "hobbies and interests paranormal phenomena options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "paranormal phenomena options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "paranormal phenomena overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "discovery", "text": "top paranormal phenomena in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "vague", "text": "looking into paranormal phenomena in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "vague", "text": "help me choose hobbies and interests paranormal phenomena options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "hobbies and interests paranormal phenomena"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "paranormal phenomena hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "hobbies and interests paranormal phenomena basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "paranormal phenomena in hobbies and interests guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "vague", "text": "need advice about hobbies and interests paranormal phenomena options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "best radio control hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "what is radio control hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "top radio control in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "vague", "text": "exploring radio control in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for radio control instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "researching radio control hobbies and interests, not cigars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "hobbies and interests radio control overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "which radio control is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "top hobbies and interests radio control options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "which radio control hobbies and interests is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "vague", "text": "help me choose radio control in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "compare radio control"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "which hobbies and interests radio control is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "what is hobbies and interests radio control"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "hobbies and interests radio control basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "discovery", "text": "top hobbies and interests radio control"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "learn about radio control"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "what is radio control in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "learn about radio control hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "how does radio control hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "how does radio control work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "radio control hobbies and interests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "radio control"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "what is hobbies and interests radio control options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "vague", "text": "exploring hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "vague", "text": "help me choose hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "best sci-fi and fantasy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching hobbies and interests sci-fi and fantasy, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "learn about sci-fi and fantasy hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "best hobbies and interests sci-fi and fantasy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "vague", "text": "need advice about sci-fi and fantasy in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "best hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "hobbies and interests sci-fi and fantasy overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "sci-fi and fantasy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "compare hobbies and interests sci-fi and fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "sci-fi and fantasy hobbies and interests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "sci-fi and fantasy hobbies and interests overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "what is hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "top sci-fi and fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "compare sci-fi and fantasy hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "how does sci-fi and fantasy hobbies and interests work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "compare hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "sci-fi and fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "discovery", "text": "sci-fi and fantasy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "hobbies and interests sci-fi and fantasy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "what is sci-fi and fantasy hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "what is sci-fi and fantasy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "learn about hobbies and interests sci-fi and fantasy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching hobbies and interests workshops and classes, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "looking for workshops and classes instead of cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "workshops and classes hobbies and interests rather than cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need workshops and classe, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classes guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "what is workshops and classes in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "hobbies and interests workshops and classes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classe guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "what is workshops and classe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "workshops and classe options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "which workshops and classes is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "vague", "text": "exploring workshops and classes in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classes hobbies and interests overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "top workshops and classes in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classes in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "compare workshops and classe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "how does workshops and classes hobbies and interests work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "best hobbies and interests workshops and classes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "how does workshops and classe work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "which hobbies and interests workshops and classes is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "hobbies and interests workshops and classes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "vague", "text": "need advice about hobbies and interests workshops and classes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "how does hobbies and interests workshops and classes work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classes overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "which holidays is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for holidays instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "compare holidays"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "looking into holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holidays guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching holiday, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holidays overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "learn about holidays"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need holiday, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "what is holiday"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for holidays instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need holidays, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "holidays rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "holiday rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching holiday, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "top holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holidays basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for holiday instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching holidays, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "holidays rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "compare holiday"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for holidays instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "holiday rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holiday overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for holiday instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need holiday, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "help me choose holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "how does holiday work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holiday guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "best holiday"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "exploring holidays guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "learn about holiday"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need holidays, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "which holiday is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "how does holidays work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need holidays, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "best holidays"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for holiday instead of books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "help me choose holidays guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national and civic holidays in holidays guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national and civic holidays in holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "top holidays national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "how does national and civic holidays work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "best holidays national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "compare national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "learn about national & civic holiday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "which national & civic holiday is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "what is national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national and civic holidays holidays overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national & civic holiday basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "national and civic holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national and civic holidays"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "how does national and civic holidays in holidays work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "compare holidays national and civic holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "holidays national and civic holidays overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "compare national and civic holidays in holidays"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "vague", "text": "help me choose holidays national and civic holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "what is holidays national and civic holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "compare national & civic holiday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "vague", "text": "exploring national and civic holidays in holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "what is national & civic holiday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "best national and civic holidays in holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "which holidays national and civic holidays is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "top house updates"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "compare backyard ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "house updates guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home & garden"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching home and garden, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "learn about home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "top home & garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home & garden basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching home and garden, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need home & garden, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "exploring backyard ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "need advice about house updates"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need home & garden, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for home & garden instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home projects guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "home & garden rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for home and garden instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "home and garden rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "looking into home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "exploring home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "compare garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "how does garden advice work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "home and garden rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "best garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "compare house updates"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "need advice about home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is backyard ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "top backyard ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "best home & garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home & garden overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "help me choose backyard ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "exploring home and garden options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is home & garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "compare home and garden"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "home & garden rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "best home projects"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "need advice about home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is house updates"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "how does home projects work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "best house updates"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "top home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "help me choose home projects"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "which home & garden is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home and garden basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for home & garden instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "learn about home & garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "compare home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "how does backyard ideas work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need home and garden, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "looking into backyard ideas"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching home and garden, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching home & garden, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need home & garden, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "home & garden options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "help me choose home and garden options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "backyard ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "looking into garden advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for home and garden instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "how does house updates work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "home and garden rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "best backyard ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is home and garden options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "exploring house updates"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "gardening overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "looking for gardening instead of interior decorating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "researching balcony garden, not home improvement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "vague", "text": "exploring backyard garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "looking for gardening home and garden instead of home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "vague", "text": "help me choose home and garden gardening options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "gardening tips"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "top balcony garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "need balcony garden, not indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "need gardening tips, not interior decorating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "gardening in home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "how does backyard garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "home and garden gardening overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "top gardening in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "compare backyard garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "what is balcony garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "compare home and garden gardening options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "balcony garden basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "compare gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "learn about gardening home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "top gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "gardening home and garden options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "which gardening is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "discovery", "text": "which gardening home and garden is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "top home appliance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home appliances in home and garden guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "need home appliances, not home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "need home appliances, not interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "which home appliance is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "how does home and garden home appliances options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "vague", "text": "help me choose home and garden home appliances options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "top home appliances home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "what is home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "vague", "text": "help me choose home appliances in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home appliances overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "what is home and garden home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home and garden home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "home appliances home and garden options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "best home appliance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "top home appliances in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "learn about home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "vague", "text": "looking into home and garden home appliances options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "home appliance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "vague", "text": "need advice about home and garden home appliances options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home and garden home appliances overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home appliance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "home appliances home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "discovery", "text": "best home appliances in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "looking for home and garden home entertaining instead of home improvement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "home and garden home entertaining rather than home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home and garden home entertaining options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "compare home entertaining in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "compare home and garden home entertaining options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "what is home entertaining home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home entertaining home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "learn about home and garden home entertaining"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "how does home entertaining in home and garden work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "vague", "text": "exploring home entertaining in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home and garden home entertaining"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home entertaining home and garden basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home entertaining in home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "what is home and garden home entertaining options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home entertaining home and garden overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "best home entertaining home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "best home entertaining"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "learn about home entertaining"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "vague", "text": "help me choose home entertaining in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "home entertaining"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "top home entertaining in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "vague", "text": "looking into home entertaining in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "discovery", "text": "best home and garden home entertaining"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "vague", "text": "looking into home and garden home entertaining options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "best home improvement in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "looking for home improvement home and garden instead of home security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "compare home and garden home improvement options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "researching home improvement home and garden, not home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "vague", "text": "need advice about home improvement in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "vague", "text": "need advice about home and garden home improvement options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "vague", "text": "exploring home improvement in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "learn about home and garden home improvement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "which home improvement home and garden is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home and garden home improvement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home and garden home improvement options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "how does home and garden home improvement work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "compare home improvement in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "best home improvement home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "top home improvement in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "best home improvement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home improvement home and garden basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home and garden home improvement basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home improvement guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "how does home improvement work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home improvement overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "how does home improvement home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "what is home improvement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home improvement basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "vague", "text": "help me choose home and garden home security options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "looking for home security instead of home entertaining"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "compare home security home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "need home security, not home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching home security home and garden, not gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home security overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "how does home security home and garden work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "looking for home security instead of home improvement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home security home and garden overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home security home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "vague", "text": "need advice about home and garden home security options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "vague", "text": "help me choose home security in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home and garden home security guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "compare home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "how does home and garden home security work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "which home and garden home security is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "home and garden home security options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "top home and garden home security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "what is home security in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "home security home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "compare home and garden home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "what is home security home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "best home and garden home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "top home security home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "which home and garden indoor environmental quality is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "researching indoor environmental quality home and garden, not home improvement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Interior Decorating", "prompt_family": "contrastive", "text": "researching indoor environmental quality, not interior decorating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "how does home and garden indoor environmental quality options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "home and garden indoor environmental quality options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "vague", "text": "exploring indoor environmental quality in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "what is home and garden indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "indoor environmental quality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "which indoor environmental quality is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "best home and garden indoor environmental quality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "how does indoor environmental quality home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "indoor environmental quality home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "best indoor environmental quality in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "how does home and garden indoor environmental quality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "top indoor environmental quality home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "what is indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "vague", "text": "looking into home and garden indoor environmental quality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "learn about indoor environmental quality home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "home and garden indoor environmental quality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "indoor environmental quality in home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "best indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "discovery", "text": "indoor environmental quality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "vague", "text": "exploring home and garden indoor environmental quality options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "home and garden interior decorating rather than gardening"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "need interior decorating, not home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "interior decorating rather than home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "top interior decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "what is interior decorating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "what is home and garden interior decorating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "vague", "text": "exploring interior decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "best home and garden interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "interior decorating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "how does interior decorating in home and garden work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "home and garden interior decorating options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "interior decorating home and garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "best home and garden interior decorating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "vague", "text": "exploring home and garden interior decorating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "interior decorating guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "top home and garden interior decorating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "compare interior decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "which home and garden interior decorating is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "home and garden interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "home and garden interior decorating guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "compare interior decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "what is home and garden interior decorating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "vague", "text": "looking into home and garden interior decorating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "best interior decorating in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "how does landscaping in home and garden work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "need home and garden landscaping, not home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "researching landscaping, not home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "what is landscaping home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "looking for landscaping home and garden instead of indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "what is home and garden landscaping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "need landscaping home and garden, not home security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "vague", "text": "looking into home and garden landscaping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "landscaping home and garden rather than home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "home and garden landscaping rather than gardening"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "need home and garden landscaping, not home improvement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "top home and garden landscaping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "learn about landscaping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "vague", "text": "need advice about home and garden landscaping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "landscaping guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "how does landscaping home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "best home and garden landscaping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "vague", "text": "exploring landscaping in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "which home and garden landscaping is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "landscaping in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "what is landscaping in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "landscaping home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "learn about home and garden landscaping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "home and garden landscaping overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "how does outdoor decorating in home and garden work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "looking for outdoor decorating home and garden instead of home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "researching outdoor decorating, not indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "looking for outdoor decorating instead of home entertaining"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "vague", "text": "looking into outdoor decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "outdoor decorating rather than home security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "vague", "text": "help me choose home and garden outdoor decorating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "outdoor decorating in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "top home and garden outdoor decorating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "best outdoor decorating in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "top outdoor decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "researching home and garden outdoor decorating, not home security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "learn about outdoor decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "what is outdoor decorating home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "compare outdoor decorating in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "what is outdoor decorating in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "best home and garden outdoor decorating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "home and garden outdoor decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "home and garden outdoor decorating overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "home and garden outdoor decorating options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "what is home and garden outdoor decorating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "how does home and garden outdoor decorating work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "outdoor decorating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "vague", "text": "looking into home and garden outdoor decorating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "researching remodeling and construction, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "remodeling and construction options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "looking for home and garden remodeling and construction instead of home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "need remodeling and construction home and garden, not indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "remodeling and construction in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "best remodeling and construction home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "home and garden remodeling and construction overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "vague", "text": "exploring remodeling and construction in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "top remodeling and construction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "remodeling and construction overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "what is remodeling and construction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "home and garden remodeling and construction guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "remodeling and construction home and garden options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "remodeling & construction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "how does remodeling and construction work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "compare remodeling and construction in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "what is remodeling and construction in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "which remodeling and construction home and garden is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "vague", "text": "looking into home and garden remodeling and construction options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "remodeling & construction overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "top remodeling & construction"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "top home and garden remodeling and construction options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "vague", "text": "need advice about home and garden remodeling and construction options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "vague", "text": "help me choose remodeling and construction in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "smart home home and garden rather than gardening"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "researching smart home, not indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "home and garden smart home options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "looking for home and garden smart home instead of gardening"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "compare home and garden smart home options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "learn about home and garden smart home"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "vague", "text": "need advice about home and garden smart home options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "learn about smart home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "which home and garden smart home is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "how does smart home home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "best home and garden smart home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "what is home and garden smart home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "best smart home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "top smart home home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "what is home and garden smart home options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "how does smart home work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "home and garden smart home options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "smart home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "smart home home and garden guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "home and garden smart home"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "vague", "text": "help me choose smart home in home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "how does smart home in home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "how does home and garden smart home work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "vague", "text": "exploring smart home in home and garden"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching law, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "what is law guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "law basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need law, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "discovery", "text": "compare law"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "need advice about law guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need law, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "discovery", "text": "best law"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching law, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "what is law"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "exploring law guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "law overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching law, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "looking into law options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "law rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "how does law work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "law rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need law, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "looking into law guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "what is law options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "law rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for law instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "help me choose law options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "discovery", "text": "which law is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "action", "text": "buy technology and computing computing computer software and applications maps and navigation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "action", "text": "buy maps & navigation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "discovery", "text": "computer software and applications maps and navigation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "alias", "text": "maps and navigation basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "alias", "text": "maps and navigation in computer software and applications guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "alias", "text": "what is maps & navigation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "discovery", "text": "compare maps and navigation in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "alias", "text": "learn about maps & navigation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "compare symptom help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "medical health rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "top medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "how does symptom help work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for medical health instead of attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "need advice about medical health guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for medical health instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "exploring health questions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "how does health questions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "exploring symptom help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "which medical health is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "doctor guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "looking into doctor guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is symptom help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "how does doctor guidance work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need medical health, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "medical health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is medical health"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "looking into medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "help me choose doctor guidance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "looking into medical health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "need advice about medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "help me choose symptom help"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is medical health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "learn about medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "how does medical health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "medical health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "top health questions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "help me choose medical health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "medical advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching medical health, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "help me choose medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "compare medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "health questions guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "exploring medical health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "compare doctor guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "compare medical health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching medical health, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "looking into symptom help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is health questions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "compare health questions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "best medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "top symptom help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "exploring doctor guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "best health questions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "doctor guidance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for medical health instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching medical health, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "compare cosmetic medical services in medical health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "contrastive", "text": "medical health cosmetic medical services rather than pharmaceutical drugs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "looking for medical health cosmetic medical services instead of surgery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical services in medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "vague", "text": "help me choose medical health cosmetic medical services options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "vague", "text": "help me choose cosmetic medical services in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "what is cosmetic medical services medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical services medical health overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "compare medical health cosmetic medical services options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "medical health cosmetic medical services guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "what is cosmetic medical services in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "how does cosmetic medical services work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical services medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "vague", "text": "exploring medical health cosmetic medical services options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical services basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "compare cosmetic medical service"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "what is medical health cosmetic medical services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical service basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "compare cosmetic medical services medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "cosmetic medical services in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "cosmetic medical service options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "best cosmetic medical services medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "top medical health cosmetic medical services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "vague", "text": "need advice about medical health diseases and conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "top diseases and conditions medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "diseases and condition overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "best diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "which diseases and condition is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "best diseases and conditions in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "top medical health diseases and conditions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "diseases and conditions in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "medical health diseases and conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "what is medical health diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "diseases and conditions overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "compare medical health diseases and conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "which medical health diseases and conditions is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "what is medical health diseases and conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "how does diseases and conditions medical health work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "top diseases and conditions in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "vague", "text": "help me choose medical health diseases and conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "diseases and condition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "diseases and conditions medical health overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "medical health diseases and conditions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "how does diseases and conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "how does diseases and condition work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "discovery", "text": "best medical health diseases and conditions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "alias", "text": "how does diseases and conditions in medical health work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "negative_iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "contrastive", "text": "allergy rather than brain and nervous system disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "learn about allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "how does medical health diseases and conditions allergies work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "allergy overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "diseases and conditions allergies overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "how does allergies work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "allergies diseases and conditions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "discovery", "text": "top allergies diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "vague", "text": "need advice about allergies in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "discovery", "text": "diseases and conditions allergies options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "discovery", "text": "top medical health allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "vague", "text": "exploring medical health allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "how does blood disorders diseases and conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "what is diseases and conditions blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "discovery", "text": "best blood disorders diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "discovery", "text": "compare blood disorders in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "discovery", "text": "best diseases and conditions blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "blood disorder rather than allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "blood disorder"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "learn about blood disorder"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "blood disorders diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "alias", "text": "how does blood disorder work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "vague", "text": "need advice about blood disorders in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "vague", "text": "need advice about medical health blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "what is bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "what is diseases and conditions bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "diseases and conditions bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "discovery", "text": "compare diseases and conditions bone and joint conditions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "vague", "text": "help me choose bone and joint conditions in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "discovery", "text": "which diseases and conditions bone and joint conditions is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching bone and joint conditions, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "what is bone and joint conditions in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need bone and joint conditions diseases and conditions, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "discovery", "text": "top bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "vague", "text": "need advice about medical health bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "discovery", "text": "best bone and joint conditions in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "what is brain and nervous system disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "what is brain and nervous system disorders diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "discovery", "text": "which diseases and conditions brain and nervous system disorders is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "discovery", "text": "diseases and conditions brain and nervous system disorders options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "brain and nervous system disorder rather than allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "brain and nervous system disorder rather than bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "discovery", "text": "top brain and nervous system disorders diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "vague", "text": "need advice about diseases and conditions brain and nervous system disorders options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "looking for brain and nervous system disorders diseases and conditions instead of blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "how does brain and nervous system disorders in diseases and conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "how does medical health diseases and conditions brain and nervous system disorders work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "brain and nervous system disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "what is medical health diseases and conditions cancer"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "medical health diseases and conditions cancer"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "vague", "text": "exploring medical health cancer"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "what is diseases and conditions cancer options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "cancer rather than blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "vague", "text": "looking into cancer in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "learn about cancer diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "learn about diseases and conditions cancer"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need cancer diseases and conditions, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "vague", "text": "looking into diseases and conditions cancer options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "discovery", "text": "top cancer diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "discovery", "text": "top cancer"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "how does cold and flu diseases and conditions work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching cold and flu diseases and conditions, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "vague", "text": "exploring diseases and conditions cold and flu options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "what is medical health cold and flu"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "discovery", "text": "best diseases and conditions cold and flu options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "cold and flu rather than allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "diseases and conditions cold and flu options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "how does cold and flu work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "what is diseases and conditions cold and flu"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "discovery", "text": "compare diseases and conditions cold and flu"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "cold and flu diseases and conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "alias", "text": "how does medical health diseases and conditions cold and flu work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "vague", "text": "help me choose dental health in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "discovery", "text": "top diseases and conditions dental health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "how does dental health diseases and conditions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "discovery", "text": "compare diseases and conditions dental health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "dental health in diseases and conditions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "discovery", "text": "best medical health dental health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "discovery", "text": "dental health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "dental health in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "what is diseases and conditions dental health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "medical health diseases and conditions dental health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "dental health overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "prompt_family": "alias", "text": "diseases and conditions dental health guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "need diabetes, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "vague", "text": "exploring diseases and conditions diabetes options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need diabetes diseases and conditions, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "discovery", "text": "best diseases and conditions diabetes"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "looking for diabete instead of blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching diabete, not allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "learn about diseases and conditions diabetes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "medical health diseases and conditions diabetes guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "diabetes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "learn about diabetes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "what is diabetes diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "how does diabete work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "discovery", "text": "compare digestive disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "discovery", "text": "top digestive disorders in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "learn about digestive disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "digestive disorders diseases and conditions overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "what is medical health digestive disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for digestive disorders diseases and conditions instead of allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "vague", "text": "looking into medical health digestive disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "how does digestive disorder work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "discovery", "text": "digestive disorder options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "how does diseases and conditions digestive disorders options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "medical health diseases and conditions digestive disorders guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "alias", "text": "medical health diseases and conditions digestive disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "how does medical health ear, nose and throat conditions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "how does diseases and conditions ear, nose and throat conditions options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "discovery", "text": "which diseases and conditions ear, nose and throat conditions is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "looking for ear, nose and throat conditions instead of blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "what is ear, nose and throat condition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "what is diseases and conditions ear, nose and throat conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "alias", "text": "how does ear, nose and throat conditions work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "ear, nose and throat conditions rather than blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "discovery", "text": "compare ear, nose and throat conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "vague", "text": "exploring ear, nose and throat conditions in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "discovery", "text": "top diseases and conditions ear, nose and throat conditions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "vague", "text": "help me choose diseases and conditions ear, nose and throat conditions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "vague", "text": "help me choose diseases and conditions endocrine and metabolic diseases options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "learn about endocrine and metabolic diseases diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "discovery", "text": "diseases and conditions endocrine and metabolic diseases options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "need diseases and conditions endocrine and metabolic diseases, not allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "discovery", "text": "compare diseases and conditions endocrine and metabolic diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "discovery", "text": "best diseases and conditions endocrine and metabolic diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "endocrine and metabolic diseases overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "discovery", "text": "endocrine and metabolic disease options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "learn about endocrine and metabolic disease"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "endocrine and metabolic diseases diseases and conditions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "alias", "text": "what is medical health diseases and conditions endocrine and metabolic diseases"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "vague", "text": "looking into medical health endocrine and metabolic diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "hormonal disorder basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "learn about hormonal disorders endocrine and metabolic diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "discovery", "text": "medical health diseases and conditions endocrine and metabolic diseases hormonal disorders options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "learn about hormonal disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "hormonal disorders overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "discovery", "text": "best medical health diseases and conditions endocrine and metabolic diseases hormonal disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "what is hormonal disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "vague", "text": "exploring medical health hormonal disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "discovery", "text": "best endocrine and metabolic diseases menopause"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "discovery", "text": "compare endocrine and metabolic diseases menopause"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "alias", "text": "how does endocrine and metabolic diseases menopause options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "contrastive", "text": "endocrine and metabolic diseases menopause rather than thyroid disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "discovery", "text": "medical health diseases and conditions endocrine and metabolic diseases menopause options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "vague", "text": "exploring endocrine and metabolic diseases menopause options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "alias", "text": "menopause endocrine and metabolic diseases basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "alias", "text": "how does endocrine and metabolic diseases menopause work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "contrastive", "text": "researching endocrine and metabolic diseases thyroid disorders, not hormonal disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "vague", "text": "help me choose thyroid disorders in endocrine and metabolic diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "discovery", "text": "top thyroid disorder"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "discovery", "text": "compare endocrine and metabolic diseases thyroid disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "discovery", "text": "compare endocrine and metabolic diseases thyroid disorders options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "alias", "text": "endocrine and metabolic diseases thyroid disorders overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "alias", "text": "what is endocrine and metabolic diseases thyroid disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "alias", "text": "medical health diseases and conditions endocrine and metabolic diseases thyroid disorders guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "discovery", "text": "compare diseases and conditions eye and vision conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "medical health diseases and conditions eye and vision conditions guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching diseases and conditions eye and vision conditions, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for diseases and conditions eye and vision conditions instead of bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "how does eye and vision conditions diseases and conditions work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for eye and vision conditions instead of allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "vague", "text": "help me choose eye and vision conditions in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "diseases and conditions eye and vision conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "eye and vision condition basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "how does diseases and conditions eye and vision conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "how does medical health diseases and conditions eye and vision conditions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "alias", "text": "eye and vision conditions in diseases and conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "diseases and conditions foot health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "foot health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "how does foot health in diseases and conditions work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need foot health, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "vague", "text": "need advice about foot health in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for foot health diseases and conditions instead of bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "discovery", "text": "compare foot health diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need foot health diseases and conditions, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "discovery", "text": "best foot health diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "discovery", "text": "foot health diseases and conditions options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need foot health diseases and conditions, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "vague", "text": "need advice about medical health foot health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching heart and cardiovascular disease, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "medical health heart and cardiovascular diseases"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "discovery", "text": "compare medical health heart and cardiovascular diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "action", "text": "book heart and cardiovascular diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "heart and cardiovascular disease overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "discovery", "text": "compare heart and cardiovascular diseases diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "vague", "text": "need advice about diseases and conditions heart and cardiovascular diseases options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "discovery", "text": "heart and cardiovascular diseases options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "vague", "text": "looking into heart and cardiovascular diseases in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "action", "text": "find medical health diseases and conditions heart and cardiovascular diseases"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "what is diseases and conditions heart and cardiovascular diseases options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "learn about heart and cardiovascular disease"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "how does medical health diseases and conditions infectious diseases work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "infectious disease basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "need infectious disease, not allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "medical health diseases and conditions infectious diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "discovery", "text": "compare medical health diseases and conditions infectious diseases"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "discovery", "text": "compare diseases and conditions infectious diseases options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "infectious diseases in diseases and conditions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "vague", "text": "need advice about diseases and conditions infectious diseases options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "vague", "text": "help me choose infectious diseases in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "discovery", "text": "compare diseases and conditions infectious diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "infectious diseases overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "infectious diseases in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "injuries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "learn about diseases and conditions injuries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "discovery", "text": "best medical health diseases and conditions injuries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need diseases and conditions injuries, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "what is medical health diseases and conditions injuries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "discovery", "text": "top diseases and conditions injuries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "what is medical health injuries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "diseases and conditions injuries rather than allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "discovery", "text": "which diseases and conditions injuries is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for injuries instead of allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "what is injuries diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "alias", "text": "what is injuries in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "medical health first aid"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "learn about first aid"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "discovery", "text": "medical health diseases and conditions injuries first aid options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "contrastive", "text": "looking for injuries first aid instead of hormonal disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "what is injuries first aid options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "discovery", "text": "best medical health diseases and conditions injuries first aid"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "discovery", "text": "compare medical health diseases and conditions injuries first aid"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "vague", "text": "help me choose injuries first aid options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "what is medical health lung and respiratory health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching lung and respiratory health, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "discovery", "text": "best medical health lung and respiratory health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "lung and respiratory health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "diseases and conditions lung and respiratory health guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "lung and respiratory health guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need lung and respiratory health, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "researching lung and respiratory health, not bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "discovery", "text": "top lung and respiratory health in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "discovery", "text": "compare medical health lung and respiratory health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "vague", "text": "help me choose medical health lung and respiratory health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "vague", "text": "looking into diseases and conditions lung and respiratory health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "what is diseases and conditions mental health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "discovery", "text": "medical health diseases and conditions mental health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "mental health diseases and conditions basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "discovery", "text": "compare diseases and conditions mental health options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "looking for mental health instead of blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "diseases and conditions mental health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "discovery", "text": "top medical health mental health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "discovery", "text": "best diseases and conditions mental health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "vague", "text": "help me choose mental health in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "diseases and conditions mental health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "mental health guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "alias", "text": "medical health diseases and conditions mental health guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching diseases and conditions reproductive health, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "vague", "text": "help me choose diseases and conditions reproductive health options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "vague", "text": "exploring reproductive health in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "discovery", "text": "compare medical health reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "discovery", "text": "reproductive health options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions reproductive health, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "discovery", "text": "compare diseases and conditions reproductive health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "what is reproductive health in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need reproductive health, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "reproductive health basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "diseases and conditions reproductive health guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "how does diseases and conditions reproductive health work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "vague", "text": "exploring birth control in reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "discovery", "text": "best medical health diseases and conditions reproductive health birth control"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "negative_iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "contrastive", "text": "medical health diseases and conditions reproductive health birth control rather than pregnancy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "discovery", "text": "top birth control in reproductive health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "alias", "text": "how does medical health birth control work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "alias", "text": "birth control overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "alias", "text": "birth control"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "alias", "text": "how does reproductive health birth control options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "discovery", "text": "medical health diseases and conditions reproductive health infertility options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "alias", "text": "infertility reproductive health guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions reproductive health infertility, not hormonal disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "alias", "text": "infertility reproductive health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions reproductive health infertility, not menopause"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "discovery", "text": "top infertility reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "alias", "text": "what is medical health diseases and conditions reproductive health infertility"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "discovery", "text": "which medical health diseases and conditions reproductive health infertility is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "negative_iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "contrastive", "text": "medical health diseases and conditions reproductive health pregnancy rather than birth control"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "negative_iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "contrastive", "text": "researching pregnancy reproductive health, not infertility"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "alias", "text": "learn about pregnancy reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "alias", "text": "reproductive health pregnancy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "alias", "text": "how does pregnancy reproductive health work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "discovery", "text": "best reproductive health pregnancy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "discovery", "text": "top pregnancy reproductive health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "discovery", "text": "medical health diseases and conditions reproductive health pregnancy options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "sexual health rather than blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "discovery", "text": "best diseases and conditions sexual health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "how does diseases and conditions sexual health options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "sexual health diseases and conditions basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "looking for medical health diseases and conditions sexual health instead of blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "how does medical health sexual health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "how does sexual health work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "vague", "text": "looking into diseases and conditions sexual health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "medical health diseases and conditions sexual health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "vague", "text": "help me choose sexual health in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "diseases and conditions sexual health overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "alias", "text": "medical health diseases and conditions sexual health basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "contrastive", "text": "looking for sexual conditions instead of hormonal disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "alias", "text": "how does medical health sexual conditions work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "contrastive", "text": "sexual conditions rather than hormonal disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "alias", "text": "sexual health sexual conditions options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "discovery", "text": "compare sexual conditions sexual health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "vague", "text": "help me choose sexual conditions in sexual health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "discovery", "text": "compare sexual conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "discovery", "text": "which sexual conditions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "discovery", "text": "which medical health diseases and conditions skin and dermatology is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "skin and dermatology diseases and conditions overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "diseases and conditions skin and dermatology rather than bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "vague", "text": "need advice about skin and dermatology in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "what is skin and dermatology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "discovery", "text": "medical health diseases and conditions skin and dermatology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "what is diseases and conditions skin and dermatology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "discovery", "text": "compare medical health skin and dermatology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "discovery", "text": "best medical health skin and dermatology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "what is skin and dermatology in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "diseases and conditions skin and dermatology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "alias", "text": "skin and dermatology diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "discovery", "text": "best diseases and conditions sleep disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "what is diseases and conditions sleep disorders options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "medical health sleep disorders guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "what is sleep disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for medical health diseases and conditions sleep disorders instead of bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "learn about diseases and conditions sleep disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "vague", "text": "looking into sleep disorders in diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "sleep disorder overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "discovery", "text": "best sleep disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "discovery", "text": "medical health diseases and conditions sleep disorders options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "what is diseases and conditions sleep disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "alias", "text": "sleep disorders in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "discovery", "text": "best medical health substance abuse"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching diseases and conditions substance abuse, not allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching substance abuse, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "medical health substance abuse"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "discovery", "text": "which substance abuse diseases and conditions is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "diseases and conditions substance abuse basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "substance abuse overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "substance abuse"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "how does substance abuse diseases and conditions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "discovery", "text": "best diseases and conditions substance abuse"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "vague", "text": "need advice about medical health substance abuse"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "vague", "text": "help me choose diseases and conditions substance abuse options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "contrastive", "text": "researching medical test, not pharmaceutical drugs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "need medical tests medical health, not cosmetic medical services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "top medical health medical tests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "which medical test is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical tests in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "vague", "text": "exploring medical tests in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "top medical health medical tests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "vague", "text": "looking into medical tests in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "how does medical tests in medical health work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "what is medical tests in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical test overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "vague", "text": "need advice about medical health medical tests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical tests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "compare medical tests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical health medical tests basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical health medical tests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical health medical tests overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "compare medical tests medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "learn about medical health medical tests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "how does medical health medical tests work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "compare medical health medical tests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "medical health medical tests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "what is medical health medical tests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "discovery", "text": "medical tests medical health options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "looking for pharmaceutical drug instead of surgery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "top pharmaceutical drug"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching pharmaceutical drug, not vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "need medical health pharmaceutical drugs, not vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "vague", "text": "exploring pharmaceutical drugs in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "how does medical health pharmaceutical drugs options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "need pharmaceutical drug, not cosmetic medical services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "pharmaceutical drugs in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "what is medical health pharmaceutical drugs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "pharmaceutical drugs medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "pharmaceutical drug overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "best pharmaceutical drugs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "how does pharmaceutical drugs work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "which pharmaceutical drugs is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "vague", "text": "help me choose pharmaceutical drugs in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "how does pharmaceutical drugs medical health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "medical health pharmaceutical drugs basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "how does pharmaceutical drugs in medical health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "pharmaceutical drugs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "top medical health pharmaceutical drugs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "compare medical health pharmaceutical drugs options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "top pharmaceutical drugs in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "pharmaceutical drugs guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "vague", "text": "looking into pharmaceutical drugs in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "learn about surgery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "surgery basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "need surgery, not cosmetic medical services"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "looking for surgery medical health instead of medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "researching surgery medical health, not medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "need surgery, not vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "need surgery, not medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "contrastive", "text": "researching medical health surgery, not pharmaceutical drugs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "learn about surgery medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "best surgery medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "what is surgery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "what is surgery in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "medical health surgery options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "vague", "text": "need advice about surgery in medical health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "best medical health surgery options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "vague", "text": "help me choose medical health surgery options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "how does surgery in medical health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "which surgery is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "medical health surgery overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "compare medical health surgery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "surgery medical health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "medical health surgery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "best surgery"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "discovery", "text": "best medical health surgery"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "need vaccines, not surgery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "compare medical health vaccines options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "vaccines medical health rather than diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "learn about vaccine"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "looking for vaccine instead of surgery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "what is medical health vaccines options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "what is vaccines in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "top vaccines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "vaccines guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "vaccine options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "vaccines basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "vaccines medical health options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "medical health vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "vague", "text": "exploring medical health vaccines options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "vague", "text": "help me choose vaccines in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "what is vaccines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "best medical health vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "compare vaccines in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "learn about medical health vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "vague", "text": "looking into vaccines in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "what is vaccine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "vague", "text": "need advice about vaccines in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "vaccines medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "vaccines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "discovery", "text": "which adult album alternative is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "adult album alternative guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "what is adult album alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "discovery", "text": "best entertainment adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Album Alternative", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "researching adult album alternative music, not blues"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Album Alternative", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching adult album alternative, not adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "discovery", "text": "compare entertainment music adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "how does entertainment music adult album alternative work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Album Alternative", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "researching adult album alternative, not blues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "music adult album alternative options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "vague", "text": "exploring adult album alternative in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "adult album alternative overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "discovery", "text": "compare adult contemporary music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "need adult contemporary music music, not blues"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching adult contemporary music, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "discovery", "text": "top adult contemporary music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "researching adult contemporary music, not blues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "vague", "text": "help me choose entertainment adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "adult contemporary music music basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "vague", "text": "need advice about adult contemporary music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "discovery", "text": "top entertainment adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "music adult contemporary music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "how does adult contemporary music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "discovery", "text": "best soft ac music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "entertainment music adult contemporary music soft ac music rather than album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "alias", "text": "learn about soft ac music adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "alias", "text": "entertainment music adult contemporary music soft ac music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "alias", "text": "learn about adult contemporary music soft ac music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "alias", "text": "how does entertainment music adult contemporary music soft ac music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "alias", "text": "how does soft ac music in adult contemporary music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "vague", "text": "exploring soft ac music in adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "vague", "text": "looking into urban ac music in adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "alias", "text": "entertainment urban ac music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "discovery", "text": "which urban ac music adult contemporary music is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "looking for adult contemporary music urban ac music instead of album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "alias", "text": "urban ac music adult contemporary music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "discovery", "text": "compare urban ac music in adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "discovery", "text": "which adult contemporary music urban ac music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "alias", "text": "urban ac music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "discovery", "text": "entertainment music alternative music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "discovery", "text": "compare alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "alternative music in music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "alternative music in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Alternative Music", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "entertainment music alternative music rather than blues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "music alternative music options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Alternative Music", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "need alternative music, not blues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "what is alternative music music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "music alternative music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "discovery", "text": "top music alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "vague", "text": "looking into music alternative music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "how does music alternative music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "discovery", "text": "top music blues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "discovery", "text": "blue options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "what is entertainment music blues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "vague", "text": "help me choose entertainment blues"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Blues", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for blues instead of adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "music blues options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Blues", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching blues music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Blues", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for blue instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "learn about blues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "discovery", "text": "best music blues options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "discovery", "text": "which entertainment music blues is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "what is music blues"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Children's Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "children's music music rather than adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "discovery", "text": "best children's music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "entertainment children's music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Children's Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need children's music, not alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "music children's music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "how does music children's music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "children's music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "how does music children's music options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "vague", "text": "help me choose music children's music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "music children's music options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "vague", "text": "exploring music children's music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "alias", "text": "what is children's music music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "discovery", "text": "best classic hits music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classic Hits", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "classic hits music rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "discovery", "text": "classic hits music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "discovery", "text": "which music classic hits is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "classic hit guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "vague", "text": "exploring classic hits in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "classic hits in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "classic hits guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "entertainment music classic hits"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "classic hits music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "what is music classic hits"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "alias", "text": "music classic hits options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "classical music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "learn about classical music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classical Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "classical music music rather than alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "vague", "text": "need advice about classical music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "music classical music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "learn about entertainment music classical music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "entertainment classical music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "discovery", "text": "best music classical music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "music classical music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "discovery", "text": "compare classical music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "discovery", "text": "which classical music music is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "discovery", "text": "compare entertainment classical music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "discovery", "text": "compare entertainment college radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "learn about college radio music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "college radio music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "discovery", "text": "which college radio is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > College Radio", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "college radio rather than adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > College Radio", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need college radio music, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "college radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "discovery", "text": "compare music college radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "vague", "text": "looking into music college radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "discovery", "text": "which college radio music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "what is college radio music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "how does college radio music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "vague", "text": "looking into comedy (music and audio) in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "discovery", "text": "top comedy (music and audio) in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "discovery", "text": "comedy (music and audio) options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "entertainment music comedy (music and audio) rather than adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "learn about music comedy (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "comedy (music and audio) in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "entertainment music comedy (music and audio) guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "comedy (music and audio) rather than alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "music comedy (music and audio) overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "how does entertainment comedy (music and audio) work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "alias", "text": "entertainment music comedy (music and audio) overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "vague", "text": "looking into music comedy (music and audio) options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for contemporary hits/pop/top 40 instead of adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "vague", "text": "need advice about entertainment contemporary hits/pop/top 40"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "learn about entertainment music contemporary hits/pop/top 40"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "entertainment music contemporary hits/pop/top 40 rather than adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "contemporary hits/pop/top 40 rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "music contemporary hits/pop/top 40"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "contemporary hits/pop/top 40"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "contemporary hits/pop/top 40 music rather than alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "entertainment music contemporary hits/pop/top 40 guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "discovery", "text": "compare contemporary hits/pop/top 40 music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "discovery", "text": "which contemporary hits/pop/top 40 is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "discovery", "text": "compare contemporary hits/pop/top 40"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "what is music country music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "discovery", "text": "which entertainment music country music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "discovery", "text": "best country music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "what is entertainment music country music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Country Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for entertainment music country music instead of adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "what is country music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "entertainment music country music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "discovery", "text": "top country music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Country Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching entertainment music country music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Country Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need country music music, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Country Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for country music instead of adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "what is country music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "how does entertainment music dance and electronic music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "discovery", "text": "compare dance and electronic music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "music dance and electronic music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "vague", "text": "looking into music dance and electronic music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "dance and electronic music in music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "dance and electronic music in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Dance and Electronic Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for entertainment music dance and electronic music instead of adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "vague", "text": "exploring dance and electronic music in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Dance and Electronic Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for dance and electronic music instead of alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "entertainment music dance and electronic music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "how does music dance and electronic music options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "alias", "text": "how does music dance and electronic music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "discovery", "text": "best entertainment music gospel music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Gospel Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need entertainment music gospel music, not adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "music gospel music guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Gospel Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for gospel music instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "discovery", "text": "which gospel music music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "discovery", "text": "which music gospel music is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Gospel Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need gospel music, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "vague", "text": "looking into entertainment gospel music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "learn about music gospel music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "how does entertainment gospel music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "what is gospel music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "entertainment music gospel music basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Hip Hop Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for entertainment music hip hop music instead of adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Hip Hop Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need entertainment music hip hop music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Hip Hop Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need hip hop music music, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "discovery", "text": "compare hip hop music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "hip hop music overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "vague", "text": "exploring entertainment hip hop music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "entertainment hip hop music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "vague", "text": "looking into hip hop music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "learn about music hip hop music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "discovery", "text": "top entertainment music hip hop music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "discovery", "text": "which entertainment music hip hop music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "discovery", "text": "music hip hop music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "vague", "text": "need advice about inspirational/new age music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "inspirational/new age music music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "learn about inspirational/new age music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need inspirational/new age music, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "discovery", "text": "compare entertainment music inspirational/new age music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "entertainment music inspirational/new age music rather than adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "discovery", "text": "music inspirational/new age music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "music inspirational/new age music guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for entertainment music inspirational/new age music instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "entertainment music inspirational/new age music overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "vague", "text": "help me choose music inspirational/new age music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "how does music inspirational/new age music options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "what is music jazz options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Jazz", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need jazz music, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "music jazz"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "vague", "text": "exploring music jazz options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "what is jazz music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Jazz", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "jazz music rather than adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "how does jazz in music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "music jazz options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "jazz guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "discovery", "text": "entertainment music jazz options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "discovery", "text": "jazz music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "discovery", "text": "best music jazz options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching music oldies/adult standards, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need music oldies/adult standards, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "how does entertainment oldies/adult standards work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching oldies/adult standard, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "vague", "text": "help me choose oldies/adult standards in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "discovery", "text": "top oldies/adult standard"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "how does oldies/adult standards music work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need entertainment music oldies/adult standards, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "oldies/adult standard"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "discovery", "text": "compare entertainment oldies/adult standards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "vague", "text": "help me choose music oldies/adult standards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "discovery", "text": "music oldies/adult standards options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "vague", "text": "need advice about entertainment r and b/soul/funk"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "discovery", "text": "best entertainment music r and b/soul/funk"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching r and b/soul/funk, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need r and b/soul/funk, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "r and b/soul/funk in music guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need entertainment music r and b/soul/funk, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "discovery", "text": "which r and b/soul/funk is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "entertainment music r and b/soul/funk"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "how does r&b/soul/funk work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "learn about music r and b/soul/funk"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "discovery", "text": "top entertainment r and b/soul/funk"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "discovery", "text": "music r and b/soul/funk options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "discovery", "text": "which music reggae is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "discovery", "text": "reggae options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "how does reggae in music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "discovery", "text": "best reggae"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "entertainment music reggae"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "what is reggae"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "discovery", "text": "compare reggae music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "reggae music overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Reggae", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching reggae, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "discovery", "text": "best entertainment reggae"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "alias", "text": "what is music reggae"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "vague", "text": "need advice about entertainment reggae"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "discovery", "text": "compare religious (music and audio)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "music religious (music and audio) basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching music religious (music and audio), not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "vague", "text": "help me choose music religious (music and audio) options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "what is religious (music and audio) music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "how does religious (music and audio) in music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "entertainment music religious (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "discovery", "text": "top religious (music and audio) in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "discovery", "text": "top entertainment religious (music and audio)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "how does entertainment music religious (music and audio) work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "how does entertainment religious (music and audio) work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "vague", "text": "looking into music religious (music and audio) options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "discovery", "text": "best rock music music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need music rock music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "discovery", "text": "compare music rock music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "discovery", "text": "top entertainment rock music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "entertainment rock music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "discovery", "text": "which rock music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "how does entertainment music rock music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "music rock music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "rock music music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "music rock music overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "rock music in music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "alias", "text": "learn about rock music music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "alias", "text": "album-oriented rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "vague", "text": "need advice about album-oriented rock in rock music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "contrastive", "text": "researching album-oriented rock rock music, not hard rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "contrastive", "text": "album-oriented rock rather than alternative rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "contrastive", "text": "need album-oriented rock rock music, not classic rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "discovery", "text": "best entertainment music rock music album-oriented rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "discovery", "text": "compare entertainment album-oriented rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "discovery", "text": "top entertainment album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "discovery", "text": "best rock music alternative rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "alias", "text": "alternative rock in rock music guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "looking for alternative rock instead of album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "alias", "text": "rock music alternative rock guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "discovery", "text": "best alternative rock rock music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "alias", "text": "rock music alternative rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "alias", "text": "entertainment music rock music alternative rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "vague", "text": "exploring entertainment alternative rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "alias", "text": "how does rock music classic rock work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "discovery", "text": "top rock music classic rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "alias", "text": "learn about classic rock rock music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "contrastive", "text": "need classic rock rock music, not soft ac music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "alias", "text": "classic rock overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "alias", "text": "classic rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "discovery", "text": "which rock music classic rock is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "vague", "text": "need advice about entertainment classic rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "vague", "text": "exploring rock music hard rock options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "alias", "text": "learn about rock music hard rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "discovery", "text": "best entertainment hard rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "contrastive", "text": "hard rock rather than alternative rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "looking for entertainment music rock music hard rock instead of album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "discovery", "text": "top rock music hard rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "alias", "text": "rock music hard rock guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "alias", "text": "how does entertainment music rock music hard rock work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "vague", "text": "looking into entertainment soft rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "discovery", "text": "which soft rock rock music is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "looking for entertainment music rock music soft rock instead of album-oriented rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "alias", "text": "what is rock music soft rock options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "researching soft rock, not album-oriented rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "discovery", "text": "which soft rock is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "discovery", "text": "compare rock music soft rock options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "alias", "text": "soft rock in rock music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "discovery", "text": "which songwriters/folk is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "how does music songwriters/folk options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "discovery", "text": "top entertainment songwriters/folk"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "songwriters/folk music basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Songwriters/Folk", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for entertainment music songwriters/folk instead of adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "discovery", "text": "songwriters/folk music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "how does music songwriters/folk work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "entertainment songwriters/folk"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Songwriters/Folk", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for songwriters/folk instead of adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "vague", "text": "looking into entertainment songwriters/folk"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Songwriters/Folk", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching songwriters/folk, not alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Songwriters/Folk", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for music songwriters/folk instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "discovery", "text": "best soundtracks, tv and showtune"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need music soundtracks, tv and showtunes, not alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "learn about soundtracks, tv and showtune"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "discovery", "text": "compare entertainment music soundtracks, tv and showtunes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "vague", "text": "help me choose entertainment soundtracks, tv and showtunes"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "entertainment music soundtracks, tv and showtunes rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "soundtracks, tv and showtune overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "entertainment soundtracks, tv and showtunes guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "how does soundtracks, tv and showtunes music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "what is soundtracks, tv and showtunes in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "alias", "text": "soundtracks, tv and showtunes music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "discovery", "text": "top soundtracks, tv and showtunes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "discovery", "text": "which entertainment music world/international music is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "discovery", "text": "best entertainment world/international music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > World/International Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for entertainment music world/international music instead of alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "how does music world/international music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "entertainment world/international music guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > World/International Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching world/international music, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > World/International Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "entertainment music world/international music rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "entertainment music world/international music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "entertainment music world/international music basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "world/international music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "what is world/international music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "alias", "text": "how does world/international music work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Urban Contemporary Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "entertainment music urban contemporary music rather than alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "discovery", "text": "best urban contemporary music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "vague", "text": "looking into entertainment urban contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "vague", "text": "need advice about urban contemporary music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "what is music urban contemporary music options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "discovery", "text": "best urban contemporary music music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "discovery", "text": "which urban contemporary music music is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "urban contemporary music music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "music urban contemporary music overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "how does music urban contemporary music work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "what is urban contemporary music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "urban contemporary music guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "discovery", "text": "top entertainment variety (music and audio)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "entertainment music variety (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "discovery", "text": "compare variety (music and audio) in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "entertainment variety (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need music variety (music and audio), not alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "vague", "text": "exploring entertainment variety (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "looking for entertainment music variety (music and audio) instead of adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "entertainment music variety (music and audio) overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for variety (music and audio) instead of alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "music variety (music and audio) rather than adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "how does entertainment music variety (music and audio) work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "vague", "text": "need advice about music variety (music and audio) options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need personal celebrations and life events, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "exploring personal celebrations and life events options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "personal celebrations & life event rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching personal celebrations and life events, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "best personal celebrations & life event"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need personal celebrations and life events, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "help me choose personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "how does personal celebrations & life event work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "what is personal celebrations & life event"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations & life event overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "how does personal celebrations and life events work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "what is personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching personal celebrations and life events, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "need advice about personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations and life events basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "what is personal celebrations and life events guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "looking into personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations & life event"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "top personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations and life events overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations & life event guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations and life events guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "need advice about personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "learn about personal celebrations & life event"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "best personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "compare personal celebrations & life event"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching personal celebrations and life events, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for personal celebrations & life event instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "personal celebrations & life event rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "personal celebrations and life events rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for personal celebrations & life event instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "personal celebrations and life events rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "top personal celebrations & life event"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "personal celebrations and life events rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "what is personal celebrations and life events options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "top anniversary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "need personal celebrations and life events anniversary, not baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "anniversary personal celebrations and life events basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "researching personal celebrations and life events anniversary, not birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "anniversary basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "top personal celebrations and life events anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "learn about personal celebrations and life events anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "learn about anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "personal celebrations and life events anniversary options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "how does personal celebrations and life events anniversary work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "what is personal celebrations and life events anniversary options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "anniversary personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "what is anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "compare anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "personal celebrations and life events anniversary overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "vague", "text": "help me choose anniversary in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "personal celebrations and life events anniversary options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "how does anniversary in personal celebrations and life events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "vague", "text": "exploring anniversary in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "personal celebrations and life events anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "alias", "text": "how does anniversary work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "compare anniversary personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "top personal celebrations and life events anniversary options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "best anniversary in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "researching baby shower personal celebrations and life events, not bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events baby shower instead of birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "personal celebrations and life events baby shower guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "how does baby shower work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "compare baby shower in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "baby shower personal celebrations and life events overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "best personal celebrations and life events baby shower options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "which baby shower is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "which baby shower personal celebrations and life events is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "what is baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "what is personal celebrations and life events baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "learn about baby shower personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "which personal celebrations and life events baby shower is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "baby shower in personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "compare personal celebrations and life events baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "baby shower personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "personal celebrations and life events baby shower basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "what is baby shower personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "compare personal celebrations and life events baby shower options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "vague", "text": "looking into personal celebrations and life events baby shower options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "top baby shower in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "alias", "text": "baby shower"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "vague", "text": "help me choose personal celebrations and life events baby shower options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "vague", "text": "exploring personal celebrations and life events baby shower options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "what is bachelor party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "top bachelor party personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "vague", "text": "exploring personal celebrations and life events bachelor party options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "bachelor party personal celebrations and life events basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "personal celebrations and life events bachelor party basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "best bachelor party"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "best personal celebrations and life events bachelor party options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "compare bachelor party personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "learn about bachelor party personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "vague", "text": "need advice about personal celebrations and life events bachelor party options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "vague", "text": "need advice about bachelor party in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "how does bachelor party work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "which bachelor party personal celebrations and life events is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "vague", "text": "help me choose bachelor party in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "bachelor party personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "bachelor party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "bachelor party overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "compare bachelor party in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "how does personal celebrations and life events bachelor party work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "compare personal celebrations and life events bachelor party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "personal celebrations and life events bachelor party guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "what is bachelor party in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "top personal celebrations and life events bachelor party options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "discovery", "text": "compare personal celebrations and life events bachelor party options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "need bachelorette party personal celebrations and life events, not birthday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "vague", "text": "help me choose personal celebrations and life events bachelorette party options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "vague", "text": "help me choose bachelorette party in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "best bachelorette party in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party personal celebrations and life events overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "best bachelorette party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "learn about bachelorette party personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "top bachelorette party in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "vague", "text": "looking into personal celebrations and life events bachelorette party options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "how does bachelorette party personal celebrations and life events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party in personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "bachelorette party personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "what is bachelorette party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "bachelorette party personal celebrations and life events basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "how does personal celebrations and life events bachelorette party options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "top bachelorette party personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "personal celebrations and life events bachelorette party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "best personal celebrations and life events bachelorette party"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "personal celebrations and life events bachelorette party options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "best personal celebrations and life events bachelorette party options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "birth basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "birth personal celebrations and life events overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "vague", "text": "exploring personal celebrations and life events birth options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "birth personal celebrations and life events basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "vague", "text": "need advice about personal celebrations and life events birth options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "birth guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "what is birth in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "top birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "compare birth personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "personal celebrations and life events birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "best birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "birth options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "compare birth in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "how does birth work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "birth overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "personal celebrations and life events birth basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "top birth in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "which birth personal celebrations and life events is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "what is birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "which personal celebrations and life events birth is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "how does birth personal celebrations and life events work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "how does personal celebrations and life events birth work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "learn about birth personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "vague", "text": "help me choose personal celebrations and life events birth options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "vague", "text": "need advice about birthday in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "vague", "text": "looking into personal celebrations and life events birthday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "how does birthday personal celebrations and life events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "vague", "text": "exploring personal celebrations and life events birthday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "what is birthday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "birthday in personal celebrations and life events guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "vague", "text": "help me choose personal celebrations and life events birthday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "learn about birthday personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "which birthday personal celebrations and life events is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "birthday guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "learn about personal celebrations and life events birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "birthday basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "which personal celebrations and life events birthday is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "best personal celebrations and life events birthday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "birthday personal celebrations and life events guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "what is personal celebrations and life events birthday options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "personal celebrations and life events birthday options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "compare personal celebrations and life events birthday options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "how does birthday in personal celebrations and life events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "what is birthday in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "birthday personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "alias", "text": "birthday personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "top personal celebrations and life events birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "discovery", "text": "best birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "personal celebrations and life events funeral basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "best personal celebrations and life events funeral options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "funeral personal celebrations and life events overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "personal celebrations and life events funeral"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "best funeral in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "funeral personal celebrations and life events rather than birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "which funeral is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "personal celebrations and life events funeral options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "funeral rather than birth"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "vague", "text": "need advice about personal celebrations and life events funeral options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "learn about funeral personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "best funeral personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "vague", "text": "looking into personal celebrations and life events funeral options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "what is funeral in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "vague", "text": "help me choose funeral in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "best funeral"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "funeral personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "compare funeral in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "how does personal celebrations and life events funeral work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "funeral personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "learn about personal celebrations and life events funeral"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "funeral in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "top funeral personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "vague", "text": "need advice about funeral in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "looking for graduation instead of bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events graduation instead of bachelorette party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "what is graduation personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "top personal celebrations and life events graduation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "graduation overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "learn about graduation personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "personal celebrations and life events graduation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "top graduation personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "graduation personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "best graduation personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "vague", "text": "need advice about graduation in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "vague", "text": "looking into graduation in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "personal celebrations and life events graduation guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "which graduation personal celebrations and life events is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "vague", "text": "looking into personal celebrations and life events graduation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "personal celebrations and life events graduation overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "compare graduation personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "personal celebrations and life events graduation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "top graduation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "what is graduation in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "best graduation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "graduation personal celebrations and life events basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "how does graduation personal celebrations and life events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "vague", "text": "need advice about personal celebrations and life events graduation options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "vague", "text": "need advice about personal celebrations and life events prom options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "researching prom personal celebrations and life events, not baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "prom rather than bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "researching personal celebrations and life events prom, not anniversary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "vague", "text": "help me choose personal celebrations and life events prom options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "vague", "text": "looking into prom in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "what is personal celebrations and life events prom"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "prom personal celebrations and life events basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "personal celebrations and life events prom basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "learn about prom personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "prom personal celebrations and life events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "prom overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "best personal celebrations and life events prom options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "prom guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "how does prom in personal celebrations and life events work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "what is personal celebrations and life events prom options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "vague", "text": "exploring personal celebrations and life events prom options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "compare prom"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "which personal celebrations and life events prom is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "which prom personal celebrations and life events is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "top personal celebrations and life events prom options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "best prom personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "discovery", "text": "top prom personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "prom personal celebrations and life events overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "wedding overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "wedding rather than bachelorette party"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "best wedding"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "wedding rather than birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "wedding personal celebrations and life events basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "vague", "text": "help me choose personal celebrations and life events wedding options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "personal celebrations and life events wedding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "vague", "text": "looking into personal celebrations and life events wedding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "best wedding in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "learn about wedding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "personal celebrations and life events wedding guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "which wedding is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "what is wedding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "compare personal celebrations and life events wedding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "how does personal celebrations and life events wedding options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "what is wedding in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "wedding guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "vague", "text": "help me choose wedding in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "top wedding in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "vague", "text": "exploring wedding in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "compare wedding personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "wedding in personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "learn about personal celebrations and life events wedding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "wedding in personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "exploring budget planning"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "looking into personal finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "personal finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "personal finance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "learn about personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "best budget planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "saving money"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "need advice about personal finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "looking into retirement planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "need advice about budget planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "help me choose saving money"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching personal finance, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "compare saving money"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "help me choose financial guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "personal finance overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need personal finance, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "need advice about personal finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is retirement planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "personal finance rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "looking into saving money"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "saving money guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "top budget planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "looking into budget planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for personal finance instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "personal finance rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "compare budget planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need personal finance, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is personal finance guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "help me choose personal finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "best saving money"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "how does budget planning work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "retirement planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "compare personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "need advice about retirement planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "how does personal finance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is saving money"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching personal finance, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "financial guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for personal finance instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "compare financial guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "personal finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "best retirement planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "compare retirement planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching personal finance, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "how does saving money work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "help me choose budget planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "top financial guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "top personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "help me choose retirement planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "best personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "how does financial guidance work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "consumer banking rather than insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "researching consumer banking personal finance, not personal debt"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "vague", "text": "looking into consumer banking in personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "need personal finance consumer banking, not insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "researching consumer banking, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "researching personal finance consumer banking, not financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking personal finance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "what is personal finance consumer banking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "top personal finance consumer banking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "which personal finance consumer banking is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking personal finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "learn about consumer banking personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "personal finance consumer banking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "how does consumer banking work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "best personal finance consumer banking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "personal finance consumer banking options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "how does personal finance consumer banking options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "best consumer banking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking in personal finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "consumer banking basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "top consumer banking in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "vague", "text": "help me choose personal finance consumer banking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "financial assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "best financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "what is financial assistance in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "vague", "text": "exploring personal finance financial assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "which financial assistance personal finance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "learn about personal finance financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "financial assistance in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "vague", "text": "need advice about personal finance financial assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "personal finance financial assistance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "best financial assistance in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "compare personal finance financial assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "financial assistance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "which financial assistance is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "top personal finance financial assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "personal finance financial assistance overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "what is personal finance financial assistance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "top financial assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "how does personal finance financial assistance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "what is financial assistance personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "vague", "text": "looking into financial assistance in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "how does financial assistance personal finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "personal finance financial assistance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "financial assistance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "alias", "text": "personal finance financial assistance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "learn about government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "how does government support and welfare in financial assistance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "how does personal finance government support and welfare work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "need government support and welfare, not gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "government support and welfare financial assistance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "negative_iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "contrastive", "text": "need government support and welfare financial assistance, not internet service providers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "how does government support and welfare work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "discovery", "text": "best government support and welfare financial assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "financial assistance government support and welfare basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "vague", "text": "exploring financial assistance government support and welfare options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "discovery", "text": "which personal finance financial assistance government support and welfare is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "vague", "text": "exploring personal finance government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "learn about financial assistance student financial aid"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "how does financial assistance student financial aid options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "what is financial assistance student financial aid"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "discovery", "text": "compare personal finance student financial aid"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "how does personal finance financial assistance student financial aid work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "financial assistance student financial aid rather than gas and electric"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "looking for financial assistance student financial aid instead of gas and electric"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "discovery", "text": "top personal finance student financial aid"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "discovery", "text": "top financial assistance student financial aid options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "discovery", "text": "best student financial aid financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "vague", "text": "looking into student financial aid in financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "vague", "text": "looking into financial assistance student financial aid options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "personal finance financial planning guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "learn about financial planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "researching personal finance financial planning, not insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "what is financial planning in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "how does financial planning personal finance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "compare personal finance financial planning options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "best personal finance financial planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "which financial planning personal finance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "learn about financial planning personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "top financial planning in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "financial planning personal finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "compare financial planning in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "best personal finance financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "vague", "text": "help me choose financial planning in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "discovery", "text": "top financial planning personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "how does personal finance financial planning work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "vague", "text": "need advice about personal finance financial planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "what is financial planning personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "financial planning personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "financial planning overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "financial planning guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "alias", "text": "personal finance financial planning basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "vague", "text": "looking into financial planning in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Planning", "prompt_family": "vague", "text": "help me choose personal finance financial planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "what is frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "need frugal living personal finance, not consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "looking for frugal living personal finance instead of home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "what is frugal living personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "looking for personal finance frugal living instead of home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "personal finance frugal living rather than personal debt"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "best personal finance frugal living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "vague", "text": "help me choose personal finance frugal living options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "how does frugal living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "personal finance frugal living basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "frugal living personal finance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "frugal living overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "vague", "text": "need advice about frugal living in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "personal finance frugal living overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "learn about frugal living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "how does frugal living personal finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "compare frugal living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "how does personal finance frugal living work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "alias", "text": "frugal living personal finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "compare frugal living personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "personal finance frugal living options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "vague", "text": "looking into personal finance frugal living options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "best frugal living personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "top frugal living in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "home utilities personal finance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "personal finance home utilities rather than insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "looking for personal finance home utilities instead of personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "what is home utility"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "home utilities rather than insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "vague", "text": "need advice about home utilities in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "home utilities personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "how does home utilities work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "home utilities options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "home utilities in personal finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "home utility"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "top home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "best home utilities personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "what is home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "personal finance home utilities overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "learn about home utility"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "top personal finance home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "learn about personal finance home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "learn about home utilities personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "what is personal finance home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "personal finance home utilities options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "vague", "text": "looking into home utilities in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "vague", "text": "looking into personal finance home utilities options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "vague", "text": "help me choose personal finance home utilities options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "discovery", "text": "best home utilities gas and electric options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "vague", "text": "help me choose gas and electric in home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "vague", "text": "need advice about home utilities gas and electric options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "personal finance home utilities gas and electric basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "negative_iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "contrastive", "text": "looking for gas and electric instead of water services"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "negative_iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "contrastive", "text": "home utilities gas and electric rather than internet service providers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "negative_iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "contrastive", "text": "researching gas and electric home utilities, not water services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "discovery", "text": "best gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "learn about gas and electric home utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "negative_iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "contrastive", "text": "gas and electric home utilities rather than internet service providers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "how does home utilities gas and electric work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "gas and electric guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "discovery", "text": "internet service providers home utilities options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "what is home utilities internet service providers options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "negative_iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "contrastive", "text": "researching internet service provider, not water services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "personal finance home utilities internet service providers basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "discovery", "text": "compare internet service providers in home utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "negative_iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "contrastive", "text": "researching home utilities internet service providers, not phone services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "how does internet service providers home utilities work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "how does internet service providers work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "how does internet service providers in home utilities work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "learn about internet service providers home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "vague", "text": "need advice about internet service providers in home utilities"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "need internet service provider, not gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "compare personal finance home utilities phone services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "compare phone service"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "phone services home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "which phone services home utilities is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Phone Services", "negative_iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "contrastive", "text": "home utilities phone services rather than water services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "how does phone services work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "what is phone services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "how does personal finance phone services work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "learn about personal finance home utilities phone services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "vague", "text": "help me choose phone services in home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "personal finance phone services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "alias", "text": "phone services home utilities basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "discovery", "text": "compare home utilities water services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "vague", "text": "need advice about home utilities water services options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "discovery", "text": "compare water services home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "discovery", "text": "water services home utilities options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Water Services", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "need water service, not government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "learn about water services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "vague", "text": "exploring personal finance water services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "personal finance water services guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Water Services", "negative_iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "contrastive", "text": "water service rather than phone services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "water services guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "how does home utilities water services work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "water services home utilities overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "insurance personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "researching personal finance insurance, not personal debt"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "looking for insurance personal finance instead of personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "what is personal finance insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "learn about insurance personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "vague", "text": "help me choose insurance in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "vague", "text": "need advice about personal finance insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "what is insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "best insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "personal finance insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "top insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "top insurance in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "insurance personal finance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "compare insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "how does insurance in personal finance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "best insurance in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "how does insurance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "vague", "text": "looking into personal finance insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "personal finance insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "insurance personal finance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "discovery", "text": "which personal finance insurance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "learn about personal finance insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Health Insurance", "negative_iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "contrastive", "text": "looking for health insurance insurance instead of home insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "discovery", "text": "health insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "discovery", "text": "which health insurance insurance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "how does health insurance insurance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "vague", "text": "need advice about insurance health insurance options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Health Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "researching health insurance insurance, not government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "discovery", "text": "best health insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "personal finance health insurance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "insurance health insurance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "what is personal finance insurance health insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "how does insurance health insurance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "vague", "text": "exploring health insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "discovery", "text": "compare insurance home insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "home insurance insurance overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Home Insurance", "negative_iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "contrastive", "text": "looking for insurance home insurance instead of motor insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "how does home insurance work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Home Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "researching home insurance, not government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Home Insurance", "negative_iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "contrastive", "text": "need home insurance insurance, not life insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "vague", "text": "exploring insurance home insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "discovery", "text": "top insurance home insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "what is personal finance home insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "discovery", "text": "personal finance insurance home insurance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "home insurance in insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "insurance home insurance overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Life Insurance", "negative_iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "contrastive", "text": "looking for insurance life insurance instead of home insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "vague", "text": "looking into personal finance life insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "discovery", "text": "top life insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "personal finance life insurance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "discovery", "text": "compare insurance life insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "personal finance insurance life insurance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "learn about life insurance insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "discovery", "text": "which personal finance insurance life insurance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "life insurance insurance overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "what is personal finance life insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "discovery", "text": "top personal finance insurance life insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "learn about life insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "discovery", "text": "compare motor insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "motor insurance in insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "discovery", "text": "top motor insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Motor Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for insurance motor insurance instead of government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "how does motor insurance work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Motor Insurance", "negative_iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "contrastive", "text": "researching insurance motor insurance, not health insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "how does personal finance insurance motor insurance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "insurance motor insurance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "vague", "text": "exploring insurance motor insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "learn about motor insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "motor insurance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Motor Insurance", "prompt_family": "alias", "text": "what is insurance motor insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Pet Insurance", "negative_iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "contrastive", "text": "personal finance insurance pet insurance rather than home insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Pet Insurance", "negative_iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "contrastive", "text": "researching insurance pet insurance, not home insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "what is pet insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Pet Insurance", "negative_iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "contrastive", "text": "pet insurance rather than life insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "how does pet insurance in insurance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "pet insurance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Pet Insurance", "negative_iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "contrastive", "text": "looking for pet insurance instead of life insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "insurance pet insurance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "what is personal finance pet insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "discovery", "text": "top personal finance insurance pet insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "discovery", "text": "best pet insurance insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "discovery", "text": "best pet insurance in insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "personal finance insurance travel insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "travel insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "vague", "text": "need advice about personal finance travel insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Travel Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for insurance travel insurance instead of government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Travel Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "need travel insurance, not government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "how does insurance travel insurance options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "learn about travel insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "discovery", "text": "top insurance travel insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "discovery", "text": "which personal finance insurance travel insurance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "travel insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "vague", "text": "help me choose insurance travel insurance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "what is insurance travel insurance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal debt personal finance basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "compare personal debt in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "best personal debt personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "what is personal finance personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "how does personal finance personal debt work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "how does personal finance personal debt options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "vague", "text": "looking into personal debt in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "best personal finance personal debt options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal finance personal debt"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "how does personal debt in personal finance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "vague", "text": "need advice about personal finance personal debt options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "compare personal finance personal debt"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "vague", "text": "need advice about personal debt in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "which personal debt personal finance is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal debt basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "top personal finance personal debt"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "compare personal finance personal debt options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal finance personal debt overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "how does personal debt personal finance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "vague", "text": "looking into personal finance personal debt options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "top personal debt personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "what is personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal debt overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "alias", "text": "personal debt personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "how does personal finance personal debt credit cards work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "credit card overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "discovery", "text": "best personal debt credit cards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "credit cards basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "action", "text": "book credit cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "how does credit card work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "discovery", "text": "compare credit cards in personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "discovery", "text": "top credit card"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "discovery", "text": "top personal finance credit cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "personal debt credit cards basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "personal debt credit cards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "vague", "text": "looking into personal finance credit cards"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Home Financing", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "personal debt home financing rather than government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "what is personal finance personal debt home financing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "personal debt home financing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "discovery", "text": "personal debt home financing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "vague", "text": "need advice about home financing in personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "personal finance personal debt home financing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "discovery", "text": "compare home financing personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "discovery", "text": "best home financing personal debt"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "vague", "text": "need advice about personal debt home financing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "home financing personal debt guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "personal finance personal debt home financing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "how does personal debt home financing options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "discovery", "text": "compare personal loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "what is personal loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "action", "text": "find personal loan"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "vague", "text": "looking into personal debt personal loans options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "negative_iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "contrastive", "text": "looking for personal finance personal debt personal loans instead of credit cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "discovery", "text": "compare personal finance personal debt personal loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "how does personal loans personal debt work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "action", "text": "book personal finance personal debt personal loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "personal loans personal debt basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "personal loans overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "personal finance personal loans"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "alias", "text": "personal debt personal loans options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "student loan overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "vague", "text": "exploring personal debt student loans options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "action", "text": "reserve personal finance personal debt student loans"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "vague", "text": "exploring personal finance student loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "action", "text": "find student loan"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "action", "text": "find student loans"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "discovery", "text": "compare personal finance student loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "what is personal debt student loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "student loans overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "personal debt student loans overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "personal finance personal debt student loans guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "alias", "text": "student loan"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal investing in personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "researching personal investing, not financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "what is personal finance personal investing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "what is personal investing in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "personal investing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "best personal investing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "how does personal finance personal investing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "what is personal finance personal investing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal investing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal investing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "top personal finance personal investing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal investing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "personal finance personal investing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal investing personal finance overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal investing in personal finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "what is personal investing personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "compare personal investing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "best personal investing in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal finance personal investing options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "which personal finance personal investing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "personal finance personal investing basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "vague", "text": "need advice about personal finance personal investing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "alias", "text": "learn about personal finance personal investing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "vague", "text": "looking into personal finance personal investing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "discovery", "text": "compare hedge funds in personal investing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "discovery", "text": "which personal finance personal investing hedge funds is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "negative_iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "contrastive", "text": "researching hedge fund, not mutual funds"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for hedge funds instead of government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "hedge fund overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "learn about hedge fund"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "personal finance personal investing hedge funds guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "personal investing hedge funds options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "personal finance personal investing hedge funds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "personal finance hedge funds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "vague", "text": "help me choose hedge funds in personal investing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "vague", "text": "exploring personal investing hedge funds options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "discovery", "text": "which personal investing mutual funds is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "mutual funds overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "mutual funds personal investing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "mutual fund rather than government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "how does mutual funds work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "how does mutual funds personal investing work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "negative_iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "contrastive", "text": "looking for mutual funds personal investing instead of options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "vague", "text": "need advice about mutual funds in personal investing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "mutual funds personal investing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "discovery", "text": "top mutual funds in personal investing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "discovery", "text": "which mutual funds personal investing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "discovery", "text": "best personal finance personal investing mutual funds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "discovery", "text": "which personal finance personal investing options is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "discovery", "text": "top options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "discovery", "text": "top option"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "options personal investing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "discovery", "text": "which personal investing options is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Options", "negative_iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "contrastive", "text": "looking for options instead of stocks and bonds"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Options", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "need options personal investing, not government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "vague", "text": "need advice about personal investing options options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "how does personal finance options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "how does personal finance personal investing options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Options", "negative_iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "contrastive", "text": "need options personal investing, not mutual funds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "personal finance personal investing options basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "personal finance personal investing stocks and bonds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "discovery", "text": "top stocks and bonds in personal investing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "negative_iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "contrastive", "text": "looking for stocks and bond instead of mutual funds"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "negative_iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "contrastive", "text": "need personal finance personal investing stocks and bonds, not hedge funds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "discovery", "text": "personal finance personal investing stocks and bonds options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "what is personal investing stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "discovery", "text": "best stocks and bond"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "learn about personal finance personal investing stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "learn about stocks and bonds"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "negative_iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "contrastive", "text": "stocks and bond rather than mutual funds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "vague", "text": "need advice about personal finance stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "top personal finance personal taxes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "personal taxes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "which personal finance personal taxes is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "looking for personal taxe instead of insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "researching personal finance personal taxes, not consumer banking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "personal finance personal taxes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "what is personal taxe"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "vague", "text": "need advice about personal taxes in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "vague", "text": "help me choose personal finance personal taxes options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal taxes in personal finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal taxe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "learn about personal taxes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal finance personal taxes guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "what is personal taxes in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal taxe guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "best personal taxe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal finance personal taxes overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "personal taxe overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "top personal taxes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "learn about personal finance personal taxes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "what is personal taxes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "vague", "text": "looking into personal finance personal taxes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "best personal finance personal taxes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "vague", "text": "need advice about personal finance personal taxes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "learn about personal finance retirement planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "retirement planning personal finance rather than financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "retirement planning basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "researching retirement planning, not home utilities"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "vague", "text": "help me choose personal finance retirement planning options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "looking for personal finance retirement planning instead of frugal living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "personal finance retirement planning basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "top personal finance retirement planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "which personal finance retirement planning is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "retirement planning in personal finance guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "retirement planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "which retirement planning is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "vague", "text": "exploring personal finance retirement planning options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "top personal finance retirement planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "how does retirement planning work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "top retirement planning personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "retirement planning overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "best retirement planning in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "compare retirement planning personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "vague", "text": "looking into retirement planning in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "discovery", "text": "retirement planning personal finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "how does retirement planning personal finance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "personal finance retirement planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "vague", "text": "looking into personal finance retirement planning options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching pet, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "best pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "compare pets"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching pet, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "pets options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "looking into pets guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "exploring pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pets basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pet basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "which pets is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need pet, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for pets instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "top pets"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for pets instead of books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "what is pets guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "pet rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "best pet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pets overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "pets rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for pet instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching pets, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pets"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need pets, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "what is pets options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "help me choose pets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "how does pet work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "what is pets"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need pet, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "exploring pets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "pet options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need pet, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "learn about pets"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "need advice about pets options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for pet instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need pets, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "what is pet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "compare pet"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching pets, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching pet, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for pet instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "birds pets rather than cats"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "pets birds options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "learn about bird"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "compare bird"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "how does bird work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "looking for birds pets instead of large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "researching pets birds, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "looking for birds instead of cats"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "vague", "text": "looking into pets birds options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "bird guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "what is pets birds options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "pets birds overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "what is birds pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "best birds in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "vague", "text": "need advice about birds in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "birds in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "birds pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "how does pets birds work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "vague", "text": "exploring birds in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "best bird"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "which pets birds is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "which birds is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "discovery", "text": "which bird is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "vague", "text": "exploring pets birds options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "what is cats in pets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "cats rather than birds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "learn about cats pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "best cats"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "top cats in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "pets cats guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "top pets cats options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "vague", "text": "looking into pets cats options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "which cats pets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "learn about cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "best cat"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "vague", "text": "exploring cats in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "top cat"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "which cats is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "learn about pets cats"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "discovery", "text": "compare cats in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "cats guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "vague", "text": "need advice about cats in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "cats in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "what is pets cats options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "how does cats pets work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "cat"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "how does cats work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "learn about cat"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "researching dogs pets, not birds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "pets dogs basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "dogs pets rather than cats"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "vague", "text": "looking into dogs in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "dogs in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "vague", "text": "looking into pets dogs options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "top pets dogs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "which dogs pets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "dog options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "vague", "text": "exploring pets dogs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "best dogs pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "how does dog work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "what is dogs pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "which dogs is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "which pets dogs is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "compare dogs pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "what is dogs in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "how does dogs in pets work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "dog"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "pets dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "what is pets dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "what is dog"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "dogs basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "dog basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "top fish and aquariums in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "top pets fish and aquariums options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "vague", "text": "looking into pets fish and aquariums options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "what is pets fish and aquariums options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "how does fish and aquarium work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "how does pets fish and aquariums options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "compare fish and aquariums"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "best pets fish and aquariums options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "fish and aquarium guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "fish and aquariums basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "fish and aquariums pets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "fish and aquariums pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "which fish and aquariums pets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "learn about fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "best fish and aquarium"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "fish and aquariums overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "what is fish and aquariums in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "pets fish and aquariums basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "which pets fish and aquariums is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "discovery", "text": "best pets fish and aquariums"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "vague", "text": "need advice about pets fish and aquariums options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "vague", "text": "looking into fish and aquariums in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "vague", "text": "exploring fish and aquariums in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animal overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "which large animals pets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animals pets overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "compare pets large animals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "best large animals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "how does large animal work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "compare large animal"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "vague", "text": "need advice about large animals in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "learn about large animals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "top pets large animals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "vague", "text": "looking into pets large animals options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "vague", "text": "exploring large animals in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "what is large animals in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animals in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "top pets large animals options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "vague", "text": "help me choose large animals in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "pets large animals options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "which large animals is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "how does large animals work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "pets large animals overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animals overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "large animals guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "how does large animals pets work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "researching pet adoptions pets, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "looking for pets pet adoptions instead of dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pet adoptions overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "how does pets pet adoptions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pets pet adoptions guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "pets pet adoptions rather than pet supplies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "vague", "text": "looking into pets pet adoptions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "how does pet adoptions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pets pet adoptions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "pet adoption options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pet adoptions pets overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "best pet adoptions in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pet adoptions pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "which pet adoptions pets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "top pet adoptions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "compare pet adoptions in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "best pets pet adoptions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pets pet adoptions options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pet adoptions pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "compare pet adoption"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "vague", "text": "exploring pet adoptions in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "what is pet adoptions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "pet adoptions pets basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "vague", "text": "need advice about pet adoptions in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pets pet supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "researching pet supplies pets, not birds"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "vague", "text": "looking into pet supplies in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "vague", "text": "need advice about pet supplies in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pet supply overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "top pet supplies in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "top pets pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "top pet supplies pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "which pet supplies is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "what is pet supply"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pets pet supplies overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pet supplies in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "learn about pet supplies pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pet supply basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "compare pet supplies pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "compare pets pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "discovery", "text": "top pet supply"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "how does pet supplies work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "learn about pets pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "pets pet supplies basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "vague", "text": "exploring pet supplies in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "alias", "text": "how does pets pet supplies work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Supplies", "prompt_family": "vague", "text": "need advice about pets pet supplies options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "what is pets reptiles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptiles pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptile overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "compare reptile"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "how does reptile work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "vague", "text": "exploring pets reptiles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptiles overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "top pets reptiles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "top pets reptiles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "which reptiles is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "vague", "text": "exploring reptiles in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptiles in pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "compare reptiles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "what is reptiles pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "top reptiles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "pets reptiles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptile guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "top reptiles pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptiles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "vague", "text": "need advice about reptiles in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "reptiles pets basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "what is reptiles in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "what is reptiles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "alias", "text": "what is reptile"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "looking for veterinary medicine pets instead of cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "pets veterinary medicine guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "pets veterinary medicine rather than large animals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "vague", "text": "help me choose veterinary medicine in pets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Veterinary Medicine", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "researching pets veterinary medicine, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "learn about veterinary medicine pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "vague", "text": "need advice about veterinary medicine in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "learn about pets veterinary medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "how does pets veterinary medicine options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "veterinary medicine pets overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "top pets veterinary medicine options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "compare veterinary medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "veterinary medicine in pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "veterinary medicine basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "top veterinary medicine pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "what is pets veterinary medicine"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "veterinary medicine pets guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "veterinary medicine overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "how does veterinary medicine in pets work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "compare pets veterinary medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "what is veterinary medicine in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "what is veterinary medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "compare veterinary medicine in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "top pets veterinary medicine"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "exploring politics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "politics rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "help me choose politics guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for politics instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching politic, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "exploring politics guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for politics instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "politic options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "help me choose politics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching politic, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for politic instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need politic, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "what is politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "how does politics work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need politics, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "politic rather than books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "looking into politics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "which politic is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for politics instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "politic rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "learn about politics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching politics, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "best politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politics overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "politics rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "politic rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "compare politic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politic basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "need advice about politics options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "what is politics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politic"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need politic, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "top politics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need politics, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching politics, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politics basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Politics", "prompt_family": "vague", "text": "need advice about politics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "which politics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politic guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "civic affairs rather than elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "how does civic affairs politics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "civic affairs politics options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "researching civic affairs, not elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "politics civic affairs options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "vague", "text": "exploring civic affairs in politics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Political Issues & policy", "prompt_family": "contrastive", "text": "civic affair rather than political issues and policy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "best civic affairs in politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "best civic affair"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "looking for civic affair instead of elections"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Civic affairs", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "researching civic affairs politics, not elections"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "politics civic affairs options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "best civic affairs politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "compare politics civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "how does politics civic affairs work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "learn about civic affair"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "civic affairs guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "civic affair basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "civic affair guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "vague", "text": "help me choose civic affairs in politics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "vague", "text": "exploring politics civic affairs options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "learn about civic affairs politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "what is civic affair"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "how does politics civic affairs options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "researching elections politics, not civic affairs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Political Issues & policy", "prompt_family": "contrastive", "text": "looking for politics elections instead of political issues and policy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "which election is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "learn about politics elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "politics elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "elections politics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "politics elections options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "election guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "elections in politics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "looking for election instead of civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "what is elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "elections guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "elections politics overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "looking for elections politics instead of civic affairs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "need elections politics, not civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "politics elections overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "best elections politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "best election"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "learn about elections"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "vague", "text": "help me choose elections in politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "compare elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "top election"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "vague", "text": "need advice about elections in politics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "vague", "text": "need advice about politics elections options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "researching political issues and policy politics, not elections"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "best political issues and policy in politics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "vague", "text": "need advice about political issues and policy in politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "politics political issues and policy guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "vague", "text": "looking into politics political issues and policy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "how does political issues and policy politics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "what is political issues and policy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "top political issues & policy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "need political issues & policy, not civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "political issues and policy politics options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "looking for politics political issues and policy instead of civic affairs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "need political issues & policy, not elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "which political issues and policy politics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "best political issues & policy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "researching politics political issues and policy, not civic affairs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "compare politics political issues and policy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "politics political issues and policy rather than elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "discovery", "text": "top political issues and policy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "politics political issues and policy options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "vague", "text": "exploring political issues and policy in politics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "what is political issues and policy in politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "how does political issues and policy work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "political issues and policy in politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "politics political issues and policy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "pop culture overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "pop culture basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for pop culture instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "discovery", "text": "best pop culture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching pop culture, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "how does pop culture work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "pop culture rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "exploring pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "discovery", "text": "compare pop culture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need pop culture, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "discovery", "text": "top pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for pop culture instead of attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "what is pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "learn about pop culture"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "help me choose pop culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "discovery", "text": "pop culture options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "help me choose pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "pop culture rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching pop culture, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "exploring pop culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "what is pop culture"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "what is pop culture options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need pop culture, not books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "researching celebrity deaths pop culture, not celebrity style"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "celebrity death rather than celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "learn about celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "which celebrity deaths is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "vague", "text": "exploring pop culture celebrity deaths options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "compare celebrity death"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "how does pop culture celebrity deaths work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "researching pop culture celebrity deaths, not celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "what is celebrity death"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "celebrity death overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "celebrity deaths options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "pop culture celebrity deaths basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "which celebrity death is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "vague", "text": "help me choose pop culture celebrity deaths options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "best celebrity deaths pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "compare pop culture celebrity deaths"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "vague", "text": "looking into pop culture celebrity deaths options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "how does pop culture celebrity deaths options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "vague", "text": "exploring celebrity deaths in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "what is celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "best celebrity death"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "celebrity death basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "compare pop culture celebrity deaths options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "discovery", "text": "best celebrity deaths in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "best celebrity family"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "celebrity families pop culture rather than celebrity style"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "researching pop culture celebrity families, not celebrity pregnancy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "vague", "text": "help me choose pop culture celebrity families options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "what is celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "celebrity family rather than celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "learn about celebrity families pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "pop culture celebrity families guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "celebrity family overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "best celebrity families in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "compare celebrity families pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "what is celebrity families pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "celebrity families in pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "vague", "text": "looking into pop culture celebrity families options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "celebrity family basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "compare celebrity families"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "how does celebrity families in pop culture work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "celebrity families pop culture overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "celebrity families pop culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "how does celebrity family work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "compare pop culture celebrity families"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "vague", "text": "looking into celebrity families in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "celebrity families"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "vague", "text": "exploring celebrity families in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "vague", "text": "help me choose celebrity homes in pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "looking for pop culture celebrity homes instead of celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "learn about celebrity homes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "how does pop culture celebrity homes options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "celebrity home options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "need celebrity home, not celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "looking for celebrity home instead of celebrity style"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "looking for celebrity home instead of celebrity pregnancy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "top pop culture celebrity homes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "how does celebrity home work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "best celebrity home"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "how does pop culture celebrity homes work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "pop culture celebrity homes options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "celebrity homes guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "celebrity homes pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "vague", "text": "looking into pop culture celebrity homes options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "learn about celebrity homes pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "how does celebrity homes in pop culture work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "what is celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "what is pop culture celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "alias", "text": "pop culture celebrity homes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "vague", "text": "need advice about pop culture celebrity homes options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "vague", "text": "looking into celebrity homes in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "vague", "text": "exploring celebrity pregnancy in pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Style", "prompt_family": "contrastive", "text": "need pop culture celebrity pregnancy, not celebrity style"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "vague", "text": "help me choose celebrity pregnancy in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "which celebrity pregnancy pop culture is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "pop culture celebrity pregnancy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "what is pop culture celebrity pregnancy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "top pop culture celebrity pregnancy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "which pop culture celebrity pregnancy is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "top celebrity pregnancy in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "best celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "which celebrity pregnancy is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "celebrity pregnancy in pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "pop culture celebrity pregnancy basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "celebrity pregnancy in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "vague", "text": "exploring pop culture celebrity pregnancy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "vague", "text": "looking into celebrity pregnancy in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "celebrity pregnancy pop culture basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "how does celebrity pregnancy work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "pop culture celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "what is celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "how does celebrity pregnancy pop culture work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "pop culture celebrity pregnancy guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "how does pop culture celebrity pregnancy options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "learn about celebrity pregnancy pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "celebrity relationships rather than celebrity pregnancy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "vague", "text": "help me choose pop culture celebrity relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationships guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "what is pop culture celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "celebrity relationships pop culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "how does celebrity relationship work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "vague", "text": "help me choose celebrity relationships in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "celebrity relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationships pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "compare celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationship basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "top celebrity relationships pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "vague", "text": "looking into pop culture celebrity relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "top pop culture celebrity relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "what is celebrity relationships in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationships pop culture basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "top pop culture celebrity relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "what is celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "pop culture celebrity relationships guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "vague", "text": "exploring pop culture celebrity relationships options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "best pop culture celebrity relationships options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "pop culture celebrity relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "discovery", "text": "compare pop culture celebrity relationships options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "need celebrity scandal, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "looking for pop culture celebrity scandal instead of celebrity homes"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "celebrity scandal rather than celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "pop culture celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "celebrity scandal pop culture rather than celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "celebrity scandal pop culture options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "top celebrity scandal pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "pop culture celebrity scandal options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "celebrity scandal pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "learn about celebrity scandal pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "top celebrity scandal in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "what is pop culture celebrity scandal"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "what is pop culture celebrity scandal options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "best celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "compare celebrity scandal"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "celebrity scandal in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "learn about celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "celebrity scandal options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "best celebrity scandal in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "vague", "text": "looking into pop culture celebrity scandal options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "vague", "text": "need advice about celebrity scandal in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "vague", "text": "looking into celebrity scandal in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "vague", "text": "exploring pop culture celebrity scandal options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "looking for celebrity style instead of celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "celebrity style pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "celebrity style rather than celebrity families"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "celebrity style in pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "best celebrity style pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "learn about pop culture celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "celebrity style pop culture options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "vague", "text": "exploring celebrity style in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "how does pop culture celebrity style options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "what is celebrity style in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "what is celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "pop culture celebrity style basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "top pop culture celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "top celebrity style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "how does pop culture celebrity style work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "celebrity style overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "compare pop culture celebrity style options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "which pop culture celebrity style is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "vague", "text": "looking into pop culture celebrity style options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "learn about celebrity style pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "best celebrity style"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "vague", "text": "looking into celebrity style in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "vague", "text": "help me choose celebrity style in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "discovery", "text": "top celebrity style in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "how does humor and satire work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "humor and satire pop culture guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "vague", "text": "looking into pop culture humor and satire options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "pop culture humor and satire rather than celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "humor and satire pop culture rather than celebrity homes"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "what is pop culture humor and satire options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "pop culture humor and satire overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "how does humor and satire pop culture work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "compare pop culture humor and satire options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "pop culture humor and satire options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "best humor and satire pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "vague", "text": "help me choose pop culture humor and satire options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "top pop culture humor and satire"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "best humor and satire"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "humor and satire"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "best pop culture humor and satire options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "what is pop culture humor and satire"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "what is humor and satire"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "top humor and satire"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "how does pop culture humor and satire options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "humor and satire pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "vague", "text": "help me choose humor and satire in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "humor and satire in pop culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "vague", "text": "need advice about humor and satire in pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "alias", "text": "technology and computing computing computer software and applications productivity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "alias", "text": "how does computer software and applications productivity options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "alias", "text": "what is technology and computing computing computer software and applications productivity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "alias", "text": "productivity basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "alias", "text": "computer software and applications productivity guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "vague", "text": "help me choose computer software and applications productivity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "discovery", "text": "computer software and applications productivity options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "discovery", "text": "best computer software and applications productivity options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "need advice about housing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need real estate, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "need advice about home buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "top apartment search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "action", "text": "reserve real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "top home buying"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "real estate rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is housing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is renting advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "best home buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "home buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is apartment search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "how does home buying work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "exploring apartment search"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for real estate instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "real estate basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "housing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "how does renting advice work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "compare renting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "learn about real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "best real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "exploring home buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "apartment search guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is home buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "best apartment search"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "help me choose real estate guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "exploring renting advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "apartment search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "looking into housing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "how does apartment search work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "help me choose real estate options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "looking into real estate guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "what is real estate options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "housing options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "looking into home buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "renting advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "looking into real estate options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "action", "text": "find real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "which real estate is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "real estate guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "help me choose housing options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "exploring real estate options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "home buying guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "top housing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need real estate, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching real estate, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "real estate options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for real estate instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "looking into renting advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "need advice about renting advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "real estate overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "looking into apartment search"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "real estate rather than books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "need advice about real estate options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "need advice about real estate guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "compare real estate apartments options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "what is real estate apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "which real estate apartments is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "action", "text": "get apartment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "vague", "text": "looking into apartments in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "learn about apartments real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "what is apartment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "vague", "text": "help me choose real estate apartments options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "apartments real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "real estate apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "best apartments"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "vague", "text": "exploring real estate apartments options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "best apartment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "compare apartments real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "learn about apartments"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "compare apartments in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "what is apartments"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "how does apartments in real estate work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "best real estate apartments options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "what is apartments real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "apartments basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "how does real estate apartments work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "how does apartment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "learn about apartment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "how does developmental sites in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "action", "text": "reserve developmental sites real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "vague", "text": "exploring developmental sites in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental sites guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "top developmental sites in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental site overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "real estate developmental sites options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "real estate developmental sites options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "action", "text": "buy developmental site"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental sites real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "what is developmental site"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental sites real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "compare real estate developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "action", "text": "get developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental sites overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "developmental site guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "best real estate developmental sites"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "vague", "text": "help me choose real estate developmental sites options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "which developmental sites is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "best developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "which developmental sites real estate is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "vague", "text": "help me choose developmental sites in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "vague", "text": "looking into developmental sites in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "compare real estate hotel properties options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "which real estate hotel properties is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "action", "text": "get hotel properties real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "vague", "text": "looking into hotel properties in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "how does real estate hotel properties options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "how does hotel property work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "action", "text": "buy hotel property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "vague", "text": "looking into real estate hotel properties options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "best real estate hotel properties options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "hotel properties real estate options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "top hotel properties real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "vague", "text": "need advice about real estate hotel properties options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "vague", "text": "help me choose hotel properties in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "learn about hotel properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "what is hotel properties real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "hotel properties options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "hotel properties in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "action", "text": "book real estate hotel properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "hotel property overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "top hotel property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "how does hotel properties work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "hotel properties basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "hotel properties guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "action", "text": "book hotel properties real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "top houses real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "action", "text": "reserve real estate houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "action", "text": "book houses real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "compare house"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "best house"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "houses overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "houses real estate basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "best houses real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "learn about house"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "top houses"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "top houses in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "compare houses"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "vague", "text": "looking into real estate houses options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "how does houses in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "real estate houses basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "what is houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "house guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "houses in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "what is real estate houses options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "learn about real estate houses"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "real estate houses options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "vague", "text": "need advice about real estate houses options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "vague", "text": "need advice about houses in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "vague", "text": "help me choose houses in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "action", "text": "find real estate industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "top industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "real estate industrial property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "what is real estate industrial property options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "what is industrial property in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "industrial property in real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "action", "text": "reserve real estate industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "industrial property real estate basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "action", "text": "get industrial property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "compare industrial property real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "real estate industrial property options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "how does real estate industrial property work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "which industrial property is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "compare real estate industrial property options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "how does industrial property in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "top industrial property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "which real estate industrial property is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "top real estate industrial property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "vague", "text": "exploring real estate industrial property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "industrial property guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "how does industrial property real estate work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "vague", "text": "need advice about industrial property in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "vague", "text": "exploring industrial property in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "vague", "text": "help me choose industrial property in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "vague", "text": "need advice about land and farms in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "top real estate land and farms options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "vague", "text": "looking into land and farms in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "action", "text": "reserve land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "vague", "text": "exploring real estate land and farms options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "compare land and farm"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "which land and farms real estate is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "action", "text": "get real estate land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "what is real estate land and farms options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "real estate land and farms guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "land and farms real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "best land and farms"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "learn about land and farms real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "action", "text": "reserve real estate land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "what is land and farms in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "land and farm overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "land and farms real estate basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "what is land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "compare real estate land and farms options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "top real estate land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "how does land and farms in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "real estate land and farms"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "land and farms real estate overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "what is real estate land and farms"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "action", "text": "find real estate office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "action", "text": "reserve office property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "office property overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "compare office property real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "office property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "top office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "which office property real estate is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "real estate office property options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "vague", "text": "need advice about real estate office property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "office property real estate options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "what is real estate office property options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "vague", "text": "need advice about office property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "learn about real estate office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "learn about office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "what is office property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "top office property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "best office property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "office property options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "what is office property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "discovery", "text": "compare office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "how does real estate office property work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "how does office property work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "action", "text": "reserve real estate office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "how does office property real estate work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Buying and Selling", "negative_iab_path": "Real Estate > Houses", "prompt_family": "contrastive", "text": "need real estate real estate buying and selling, not houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "vague", "text": "looking into real estate real estate buying and selling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "vague", "text": "help me choose real estate real estate buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "which real estate real estate buying and selling is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "vague", "text": "help me choose real estate buying and selling in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "action", "text": "find real estate buying and selling real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "top real estate buying and selling real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "action", "text": "reserve real estate buying and selling real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling real estate guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "vague", "text": "exploring real estate real estate buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate real estate buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "real estate buying and selling real estate options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling real estate basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "best real estate real estate buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "compare real estate real estate buying and selling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling in real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate real estate buying and selling overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "how does real estate buying and selling in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "compare real estate buying and selling real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "how does real estate buying and selling real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "learn about real estate buying and selling real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "rental listings"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "rental listings overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "which lease options is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "best rental listings"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "vague", "text": "looking into lease options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "real estate renting and leasing real estate options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "what is lease options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "how does apartment search work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "vague", "text": "looking into apartments for rent"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "how does apartments for rent work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "learn about apartment search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "learn about real estate real estate renting and leasing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "compare rental listings"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "real estate renting and leasing real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "compare real estate renting and leasing real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "how does lease options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "apartment search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "vague", "text": "exploring real estate renting and leasing in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "how does real estate real estate renting and leasing options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "real estate renting and leasing real estate basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "best real estate renting and leasing in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "vague", "text": "looking into rental listings"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "which rental listings is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "best apartments for rent"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "how does real estate retail property options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "what is retail property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "vague", "text": "exploring real estate retail property options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "vague", "text": "help me choose real estate retail property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "retail property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "action", "text": "buy real estate retail property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "retail property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "best retail property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "action", "text": "reserve retail property real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "best real estate retail property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "how does retail property real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "how does real estate retail property work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "real estate retail property overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "compare real estate retail property options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "vague", "text": "help me choose retail property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "what is retail property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "compare real estate retail property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "action", "text": "book retail property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "retail property real estate overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "which retail property real estate is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "how does retail property in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "retail property overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "what is retail property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "top retail property real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "action", "text": "get vacation property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "vague", "text": "looking into vacation properties in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "action", "text": "find vacation properties real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "action", "text": "get vacation properties real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "learn about vacation property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "vacation property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "best real estate vacation properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "action", "text": "book vacation property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "best vacation properties real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "which vacation properties real estate is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "vacation property overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "vacation properties in real estate guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "top real estate vacation properties options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "vacation properties real estate basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "vacation property guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "vacation properties real estate options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "real estate vacation properties overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "how does vacation property work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "which vacation property is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "learn about vacation properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "what is vacation property"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "vague", "text": "exploring real estate vacation properties options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "vague", "text": "looking into real estate vacation properties options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "vague", "text": "need advice about real estate vacation properties options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching religion & spirituality, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "compare religion & spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for religion & spirituality instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "religion and spirituality rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for religion and spirituality instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "religion & spirituality rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "looking into religion and spirituality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "how does religion & spirituality work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "exploring religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion & spirituality overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "help me choose religion and spirituality options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "religion & spirituality rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for religion & spirituality instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "compare religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion and spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "religion & spirituality options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "religion and spirituality rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "what is religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "religion and spirituality rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need religion & spirituality, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "help me choose religion and spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching religion and spirituality, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need religion & spirituality, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need religion and spirituality, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching religion & spirituality, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "best religion & spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "what is religion & spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion and spirituality overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "best religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "how does religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion & spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion and spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching religion and spirituality, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "top religion and spirituality"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "exploring religion and spirituality options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching religion & spirituality, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "learn about religion & spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for religion & spirituality instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need religion and spirituality, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "agnosticism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "religion and spirituality agnosticism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "top religion and spirituality agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "learn about agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "agnosticism religion and spirituality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "vague", "text": "help me choose religion and spirituality agnosticism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "compare religion and spirituality agnosticism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "religion and spirituality agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "which agnosticism religion and spirituality is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "best religion and spirituality agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "how does agnosticism religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "religion and spirituality agnosticism overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "learn about religion and spirituality agnosticism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "vague", "text": "exploring agnosticism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "vague", "text": "looking into agnosticism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "agnosticism religion and spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "what is religion and spirituality agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "how does religion and spirituality agnosticism work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "best agnosticism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "agnosticism guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "how does agnosticism work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "how does religion and spirituality agnosticism options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "alias", "text": "agnosticism basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "vague", "text": "help me choose agnosticism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "need astrology, not buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching astrology religion and spirituality, not hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "astrology religion and spirituality rather than buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "researching astrology, not atheism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "which religion and spirituality astrology is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "compare astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "astrology options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "vague", "text": "exploring religion and spirituality astrology options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "vague", "text": "looking into astrology in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "religion and spirituality astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "astrology religion and spirituality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "top astrology religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "what is astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "learn about astrology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "vague", "text": "need advice about astrology in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "how does religion and spirituality astrology work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "what is astrology religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "what is religion and spirituality astrology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "learn about religion and spirituality astrology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "best astrology in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "astrology basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "religion and spirituality astrology overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "compare astrology in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "alias", "text": "how does religion and spirituality astrology options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "top atheism religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "top atheism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "religion and spirituality atheism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "how does atheism work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "what is atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism in religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "which atheism is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "compare religion and spirituality atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "what is atheism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "religion and spirituality atheism guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "vague", "text": "help me choose atheism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "which religion and spirituality atheism is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "best religion and spirituality atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "vague", "text": "exploring religion and spirituality atheism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "discovery", "text": "compare atheism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "learn about religion and spirituality atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism religion and spirituality overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "religion and spirituality atheism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "atheism religion and spirituality basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "vague", "text": "looking into religion and spirituality atheism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "vague", "text": "help me choose religion and spirituality atheism options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for religion and spirituality buddhism instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "learn about buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "buddhism religion and spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "religion and spirituality buddhism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "religion and spirituality buddhism guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "which religion and spirituality buddhism is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "religion and spirituality buddhism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "compare buddhism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "what is buddhism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "top buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "how does buddhism work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "top buddhism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "what is religion and spirituality buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "what is buddhism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "best religion and spirituality buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "buddhism guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "religion and spirituality buddhism overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "discovery", "text": "best buddhism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "how does buddhism religion and spirituality work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "buddhism in religion and spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "vague", "text": "exploring buddhism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "buddhism religion and spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "vague", "text": "looking into buddhism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "vague", "text": "help me choose buddhism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "religion and spirituality christianity basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "which religion and spirituality christianity is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "christianity overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "researching christianity religion and spirituality, not atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "christianity rather than astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "christianity options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "top religion and spirituality christianity options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "vague", "text": "looking into christianity in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "vague", "text": "exploring christianity in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "researching religion and spirituality christianity, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "top christianity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "vague", "text": "need advice about christianity in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "vague", "text": "need advice about religion and spirituality christianity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "religion and spirituality christianity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "christianity religion and spirituality overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "how does christianity in religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "religion and spirituality christianity overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "compare christianity in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "what is religion and spirituality christianity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "how does christianity religion and spirituality work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "religion and spirituality christianity options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "learn about christianity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "what is christianity religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "christianity religion and spirituality basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "need hinduism religion and spirituality, not astrology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "researching religion and spirituality hinduism, not astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "best hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "top hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "need religion and spirituality hinduism, not atheism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "how does hinduism religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "how does hinduism work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "hinduism religion and spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "what is hinduism religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "vague", "text": "looking into religion and spirituality hinduism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "compare religion and spirituality hinduism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "vague", "text": "help me choose hinduism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "top hinduism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "how does religion and spirituality hinduism options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "best religion and spirituality hinduism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "top religion and spirituality hinduism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "what is religion and spirituality hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "hinduism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "religion and spirituality hinduism overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "hinduism religion and spirituality overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "learn about hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "top religion and spirituality hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "which hinduism religion and spirituality is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "learn about religion and spirituality hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "researching islam, not astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "top religion and spirituality islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "best religion and spirituality islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "islam religion and spirituality overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching islam, not hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "islam guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "researching islam religion and spirituality, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "what is religion and spirituality islam"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "what is islam in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "which religion and spirituality islam is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "religion and spirituality islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "how does religion and spirituality islam work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "compare islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "islam religion and spirituality basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "religion and spirituality islam basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "islam options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "what is islam religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "how does islam in religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "learn about islam"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "learn about religion and spirituality islam"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "vague", "text": "help me choose islam in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "vague", "text": "need advice about religion and spirituality islam options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "vague", "text": "help me choose religion and spirituality islam options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "vague", "text": "exploring islam in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "compare judaism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "judaism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "what is judaism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "how does religion and spirituality judaism work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "best religion and spirituality judaism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "how does judaism work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "religion and spirituality judaism rather than atheism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "religion and spirituality judaism guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "how does judaism religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "need religion and spirituality judaism, not hinduism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "top religion and spirituality judaism options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "need religion and spirituality judaism, not astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "compare judaism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "what is religion and spirituality judaism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "vague", "text": "exploring religion and spirituality judaism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "how does judaism in religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "what is judaism religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "vague", "text": "looking into religion and spirituality judaism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "compare religion and spirituality judaism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "judaism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "religion and spirituality judaism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "vague", "text": "need advice about judaism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "vague", "text": "looking into judaism in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "best judaism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "looking for religion and spirituality sikhism instead of agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "need sikhism, not christianity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "how does sikhism in religion and spirituality work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "vague", "text": "help me choose sikhism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "sikhism religion and spirituality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "compare religion and spirituality sikhism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "best sikhism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "best sikhism religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "best religion and spirituality sikhism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "sikhism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "learn about sikhism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "how does sikhism religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "sikhism overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "sikhism guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "religion and spirituality sikhism options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "which sikhism is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "discovery", "text": "sikhism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "sikhism religion and spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "sikhism in religion and spirituality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "what is religion and spirituality sikhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "religion and spirituality sikhism basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "vague", "text": "exploring religion and spirituality sikhism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "vague", "text": "looking into religion and spirituality sikhism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "vague", "text": "help me choose religion and spirituality sikhism options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "compare religion and spirituality spirituality options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "need spirituality, not buddhism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "how does spirituality in religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "need spirituality religion and spirituality, not atheism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "compare religion and spirituality spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "compare spirituality religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "compare spirituality in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "vague", "text": "exploring religion and spirituality spirituality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "spirituality in religion and spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "vague", "text": "help me choose religion and spirituality spirituality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "what is spirituality religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "religion and spirituality spirituality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "which religion and spirituality spirituality is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "what is spirituality in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "spirituality religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "what is spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "what is religion and spirituality spirituality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "vague", "text": "need advice about spirituality in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "spirituality basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "vague", "text": "help me choose spirituality in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "how does spirituality religion and spirituality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "learn about religion and spirituality spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need science, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching science, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching science, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "how does science work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "science rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "looking into science options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "discovery", "text": "top science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "science"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "what is science options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "help me choose science guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "help me choose science options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "science overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "looking into science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "science basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need science, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "alias", "text": "learn about science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "discovery", "text": "compare science"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching science, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "science rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "exploring science guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "need advice about science guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "exploring science options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for science instead of attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "need biological science, not physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "need science biological sciences, not environment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "biological science rather than geography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "best science biological sciences options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "how does biological sciences science work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "vague", "text": "help me choose science biological sciences options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "biological science options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "how does biological science work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "what is science biological sciences options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "which biological sciences science is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "biological sciences science options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "compare biological sciences in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "biological sciences science guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "biological sciences in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "best biological sciences science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "learn about biological sciences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "vague", "text": "looking into biological sciences in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "what is biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "biological sciences science overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "discovery", "text": "top science biological sciences options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "what is biological science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "science biological sciences overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "vague", "text": "need advice about science biological sciences options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "vague", "text": "help me choose biological sciences in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "chemistry rather than environment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "compare chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "vague", "text": "exploring chemistry in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "best chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "vague", "text": "need advice about science chemistry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "compare science chemistry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "chemistry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "looking for chemistry science instead of geography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "chemistry basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "chemistry science rather than biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "need chemistry, not biological sciences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "compare chemistry in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "looking for chemistry science instead of biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "what is chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "vague", "text": "looking into chemistry in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "compare chemistry science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "top chemistry science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "which chemistry science is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "top science chemistry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "how does chemistry work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "science chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "how does chemistry in science work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "how does science chemistry options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "learn about science chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "vague", "text": "looking into environment in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "need science environment, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "environment rather than chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "environment science guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "researching environment science, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "environment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "vague", "text": "need advice about environment in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "compare environment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "how does environment in science work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "what is environment in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "compare science environment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "learn about science environment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "science environment basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "top science environment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "how does science environment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "how does environment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "what is environment science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "best environment in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "compare science environment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "environment guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "environment science basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "top environment in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "which environment is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "discovery", "text": "compare environment science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "vague", "text": "help me choose genetics in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetics science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "what is science genetics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "vague", "text": "exploring science genetics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "top genetics in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "how does genetics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "vague", "text": "looking into science genetics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "what is genetics in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "top genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "science genetics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "best science genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetics science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "learn about genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "compare genetics science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "top science genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "best genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "learn about science genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "science genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "compare science genetics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetic basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "vague", "text": "help me choose science genetics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "how does science genetics work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "need science geography, not environment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "science geography guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "which science geography is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "compare geography science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "best geography in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "best geography science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "science geography overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "geography guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "geography overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "science geography options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "how does geography science work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "what is science geography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "science geography options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "vague", "text": "help me choose geography in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "geography in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "vague", "text": "exploring science geography options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "geography science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "which geography science is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "how does science geography work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "geography science options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "learn about geography science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "how does science geography options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "alias", "text": "what is geography in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "vague", "text": "looking into geography in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "researching science geology, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "geology overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "researching geology, not genetics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "looking for science geology instead of physics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "geology science basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "learn about science geology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "geology science rather than geography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "geology guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "what is science geology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "which geology is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "how does geology work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "what is geology science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "geology in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "compare science geology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "science geology options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "top science geology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "science geology guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "science geology options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "vague", "text": "need advice about science geology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "compare geology science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "compare science geology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "vague", "text": "exploring geology in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "vague", "text": "exploring science geology options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "vague", "text": "need advice about geology in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "science physics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "science physics overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "physic rather than chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "physics guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "researching physic, not environment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "physics rather than geography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "top science physics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "learn about science physics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "vague", "text": "help me choose science physics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "physic options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "what is science physics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "which physics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "physic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "best physics science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "physic basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "vague", "text": "need advice about science physics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "physics science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "physic guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "vague", "text": "exploring science physics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "best science physics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "top science physics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "best physics in science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "vague", "text": "looking into science physics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "discovery", "text": "top physic"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "space and astronomy rather than biological sciences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "space and astronomy in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "compare space and astronomy science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "space and astronomy science overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "learn about space and astronomy science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "looking for space and astronomy science instead of environment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "vague", "text": "looking into science space and astronomy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "looking for science space and astronomy instead of geology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "what is science space and astronomy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "how does science space and astronomy work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "top space and astronomy in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "compare science space and astronomy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "best space and astronomy in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "best science space and astronomy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "space and astronomy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "top space and astronomy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "top space and astronomy science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "science space and astronomy options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "science space and astronomy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "space and astronomy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "how does science space and astronomy options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "learn about science space and astronomy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "learn about space and astronomy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "vague", "text": "help me choose science space and astronomy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "researching science weather, not geology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "vague", "text": "help me choose weather in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "weather science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "top weather"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "what is science weather"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "top science weather"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "vague", "text": "need advice about weather in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "weather options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "best weather science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "compare science weather"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "vague", "text": "exploring weather in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "what is weather science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "weather in science guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "best weather in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "best science weather"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "weather guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "discovery", "text": "which science weather is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "weather science overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "learn about weather science"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "how does science weather options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "what is weather"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "vague", "text": "help me choose science weather options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "weather overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "how does weather in science work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need sensitive topic, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need sensitive topics, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "need advice about sensitive topics guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "sensitive topic rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "what is sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topics overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need sensitive topic, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "sensitive topic options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching sensitive topic, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "looking into sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "top sensitive topic"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need sensitive topics, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "best sensitive topic"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "sensitive topic rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "what is sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "sensitive topic rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "need advice about sensitive topics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "which sensitive topics is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for sensitive topic instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "best sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need sensitive topic, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "learn about sensitive topic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topics basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "looking into sensitive topics options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "what is sensitive topics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "compare sensitive topic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topics guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "help me choose sensitive topics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching sensitive topics, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching sensitive topics, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching sensitive topic, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topic basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for sensitive topic instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need sensitive topics, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "exploring sensitive topics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "sensitive topic overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching sensitive topics, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "how does sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "best sensitive topics adult and explicit sexual content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "what is sensitive topics adult and explicit sexual content options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "sensitive topics adult and explicit sexual content options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "adult & explicit sexual content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "vague", "text": "help me choose adult and explicit sexual content in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "how does sensitive topics adult and explicit sexual content options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "adult and explicit sexual content in sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "what is sensitive topics adult and explicit sexual content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "top sensitive topics adult and explicit sexual content options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "vague", "text": "need advice about sensitive topics adult and explicit sexual content options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "top adult and explicit sexual content sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "adult and explicit sexual content in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "top adult & explicit sexual content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "vague", "text": "looking into sensitive topics adult and explicit sexual content options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "how does adult and explicit sexual content sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "learn about sensitive topics adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "best adult & explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "compare adult & explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "adult and explicit sexual content basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "adult & explicit sexual content guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "vague", "text": "looking into adult and explicit sexual content in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "what is adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "what is adult & explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "alias", "text": "adult & explicit sexual content overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "top arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "researching arms & ammunition, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "arms & ammunition rather than adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "best sensitive topics arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "arms & ammunition rather than hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "arms & ammunition overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "arms & ammunition options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "learn about arms & ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "how does arms & ammunition work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "compare arms and ammunition sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "arms & ammunition basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "arms and ammunition in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "arms and ammunition sensitive topics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "sensitive topics arms and ammunition overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "compare arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "arms and ammunition sensitive topics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "compare sensitive topics arms and ammunition options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "what is arms and ammunition in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "vague", "text": "help me choose arms and ammunition in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "what is sensitive topics arms and ammunition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "what is sensitive topics arms and ammunition options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "vague", "text": "looking into arms and ammunition in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "how does arms and ammunition sensitive topics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "vague", "text": "help me choose sensitive topics arms and ammunition options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "crime and harmful acts to individuals, society and human right violations sensitive topics overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "top crime and harmful acts to individuals, society and human right violations in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "looking for crime & harmful acts to individuals, society & human right violation instead of debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "looking for crime and harmful acts to individuals, society and human right violations instead of illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "researching crime and harmful acts to individuals, society and human right violations sensitive topics, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "crime and harmful acts to individuals, society and human right violations rather than arms and ammunition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "vague", "text": "need advice about sensitive topics crime and harmful acts to individuals, society and human right violations options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "best crime and harmful acts to individuals, society and human right violations sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "which crime and harmful acts to individuals, society and human right violations sensitive topics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "learn about crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "top crime & harmful acts to individuals, society & human right violation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "vague", "text": "exploring sensitive topics crime and harmful acts to individuals, society and human right violations options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "best crime & harmful acts to individuals, society & human right violation"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "vague", "text": "help me choose crime and harmful acts to individuals, society and human right violations in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "best sensitive topics crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "how does crime & harmful acts to individuals, society & human right violation work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "sensitive topics crime and harmful acts to individuals, society and human right violations options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "how does crime and harmful acts to individuals, society and human right violations in sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "sensitive topics crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "crime and harmful acts to individuals, society and human right violations in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "crime and harmful acts to individuals, society and human right violations sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "crime & harmful acts to individuals, society & human right violation overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "what is crime and harmful acts to individuals, society and human right violations in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "how does sensitive topics death, injury, or military conflict work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "top death, injury, or military conflict in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "looking for sensitive topics death, injury, or military conflict instead of illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "which death, injury, or military conflict sensitive topics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "death, injury, or military conflict sensitive topics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "sensitive topics death, injury, or military conflict guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "vague", "text": "exploring death, injury, or military conflict in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "how does death, injury, or military conflict sensitive topics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "vague", "text": "need advice about sensitive topics death, injury, or military conflict options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "death, injury, or military conflict guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "compare death, injury, or military conflict sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "best death, injury, or military conflict in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "vague", "text": "looking into death, injury, or military conflict in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "learn about sensitive topics death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "what is death, injury, or military conflict sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "death, injury, or military conflict sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "what is death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "top death, injury, or military conflict sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "vague", "text": "help me choose death, injury, or military conflict in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "death, injury, or military conflict options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "best death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "best sensitive topics death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "discovery", "text": "compare death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "learn about debated sensitive social issue"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "top debated sensitive social issues sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "sensitive topics debated sensitive social issues rather than hate speech and acts of aggression"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "sensitive topics debated sensitive social issues options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "need debated sensitive social issue, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "learn about debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "debated sensitive social issues options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "best debated sensitive social issues in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "debated sensitive social issues in sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "learn about sensitive topics debated sensitive social issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "vague", "text": "help me choose sensitive topics debated sensitive social issues options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "vague", "text": "exploring debated sensitive social issues in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "how does debated sensitive social issue work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "debated sensitive social issues sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "debated sensitive social issue"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "how does sensitive topics debated sensitive social issues work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "what is debated sensitive social issues in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "best debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "which debated sensitive social issues is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "vague", "text": "help me choose debated sensitive social issues in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "what is debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "alias", "text": "debated sensitive social issues basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "compare debated sensitive social issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "vague", "text": "exploring sensitive topics debated sensitive social issues options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "vague", "text": "help me choose hate speech and acts of aggression in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "what is sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching sensitive topics hate speech and acts of aggression, not debated sensitive social issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "sensitive topics hate speech and acts of aggression options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "researching sensitive topics hate speech and acts of aggression, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "compare sensitive topics hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "how does hate speech and acts of aggression sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "hate speech and acts of aggression sensitive topics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "what is sensitive topics hate speech and acts of aggression"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "top sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "how does hate speech and acts of aggression in sensitive topics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression in sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "which hate speech and acts of aggression sensitive topics is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "how does sensitive topics hate speech and acts of aggression options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "best sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "top hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "how does hate speech and acts of aggression work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "vague", "text": "help me choose sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "vague", "text": "need advice about sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "best illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "learn about illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "need illegal drugs, tobacco, ecigarettes, vaping, alcohol, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "researching illegal drugs, tobacco, ecigarettes, vaping, alcohol, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "top illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "what is illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "best sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "top illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "compare illegal drugs, tobacco, ecigarettes, vaping, alcohol in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "best sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "illegal drugs, tobacco, ecigarettes, vaping, alcohol overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "discovery", "text": "best illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "how does illegal drugs, tobacco, ecigarettes, vaping, alcohol work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "vague", "text": "need advice about illegal drugs, tobacco, ecigarettes, vaping, alcohol in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "vague", "text": "help me choose illegal drugs, tobacco, ecigarettes, vaping, alcohol in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "how does sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "what is sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "vague", "text": "need advice about sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "vague", "text": "help me choose sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "which obscenity and profanity sensitive topics is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "looking for obscenity and profanity instead of death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "obscenity and profanity sensitive topics rather than debated sensitive social issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "vague", "text": "looking into obscenity and profanity in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "compare obscenity and profanity in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "need obscenity and profanity, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "compare obscenity and profanity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "vague", "text": "looking into sensitive topics obscenity and profanity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "sensitive topics obscenity and profanity basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "best sensitive topics obscenity and profanity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "how does sensitive topics obscenity and profanity options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "what is obscenity and profanity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "what is obscenity and profanity in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "which obscenity and profanity is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "compare obscenity and profanity sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "obscenity and profanity in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "sensitive topics obscenity and profanity overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "how does obscenity and profanity work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "best sensitive topics obscenity and profanity options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "best obscenity and profanity in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "learn about sensitive topics obscenity and profanity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "discovery", "text": "sensitive topics obscenity and profanity options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "learn about obscenity and profanity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "how does obscenity and profanity sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "online piracy rather than arms and ammunition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "vague", "text": "looking into online piracy in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "online piracy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "top sensitive topics online piracy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "what is sensitive topics online piracy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "need online piracy sensitive topics, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "learn about sensitive topics online piracy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "top online piracy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "sensitive topics online piracy basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "best online piracy sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "top online piracy sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "sensitive topics online piracy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "vague", "text": "exploring online piracy in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "online piracy overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "sensitive topics online piracy guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "how does online piracy in sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "how does sensitive topics online piracy work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "vague", "text": "need advice about online piracy in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "how does sensitive topics online piracy options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "online piracy in sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "what is sensitive topics online piracy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "sensitive topics online piracy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "learn about online piracy sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "alias", "text": "online piracy guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "sensitive topics spam or harmful content options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "vague", "text": "need advice about sensitive topics spam or harmful content options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "need sensitive topics spam or harmful content, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "looking for spam or harmful content instead of adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "spam or harmful content sensitive topics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "sensitive topics spam or harmful content guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "spam or harmful content overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "compare spam or harmful content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "vague", "text": "exploring spam or harmful content in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "spam or harmful content sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "sensitive topics spam or harmful content options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "best spam or harmful content"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "vague", "text": "exploring sensitive topics spam or harmful content options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "vague", "text": "help me choose spam or harmful content in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "which spam or harmful content sensitive topics is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "top sensitive topics spam or harmful content options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "top sensitive topics spam or harmful content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "what is spam or harmful content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "learn about spam or harmful content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "how does spam or harmful content sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "learn about sensitive topics spam or harmful content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "sensitive topics spam or harmful content overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "spam or harmful content sensitive topics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "what is spam or harmful content sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "researching terrorism sensitive topics, not death, injury, or military conflict"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "vague", "text": "exploring terrorism in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "researching terrorism, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "researching terrorism sensitive topics, not hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "what is sensitive topics terrorism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "learn about terrorism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "terrorism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "sensitive topics terrorism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "terrorism sensitive topics basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "best terrorism in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "sensitive topics terrorism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "terrorism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "which terrorism sensitive topics is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "what is terrorism in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "how does terrorism sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "compare terrorism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "compare sensitive topics terrorism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "best terrorism sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "terrorism in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "vague", "text": "help me choose terrorism in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "top terrorism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "what is terrorism sensitive topics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "terrorism sensitive topics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "sensitive topics terrorism guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching shopping, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "need advice about shopping options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for shopping instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need shopping, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "what is shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "shopping rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "shopping basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "help me choose shopping guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "looking into shopping guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need shopping, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching shopping, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "shopping rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "discovery", "text": "shopping options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "exploring shopping guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "need advice about shopping guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "shopping rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "discovery", "text": "top shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "learn about shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching shopping, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for shopping instead of books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "looking into shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "shopping overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "how does shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "top children's games and toy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toys overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toys shopping basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "researching children's games and toys shopping, not household supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "learn about children's games and toy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toy overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "best children's games and toys in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "compare shopping children's games and toys"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "vague", "text": "help me choose shopping children's games and toys options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "top children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "compare children's games and toys shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "best children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "compare children's games and toy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "vague", "text": "looking into children's games and toys in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toys shopping guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "best children's games and toys shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toys"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "how does shopping children's games and toys options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "vague", "text": "help me choose children's games and toys in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "how does children's games and toys in shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "learn about children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toy basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "children's games and toys in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "what is shopping children's games and toys"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "vague", "text": "help me choose shopping coupons and discounts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "vague", "text": "looking into coupons and discounts in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "how does coupons and discounts in shopping work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "looking for coupons and discount instead of household supplies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discounts in shopping guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "coupons and discounts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "coupons and discounts shopping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "looking for coupons and discounts shopping instead of children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "shopping coupons and discounts overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "researching shopping coupons and discounts, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "top coupons and discounts shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "how does coupons and discounts work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "top shopping coupons and discounts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "what is shopping coupons and discounts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "top coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "best shopping coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "learn about coupons and discounts shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discount"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discounts shopping guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "vague", "text": "looking into shopping coupons and discounts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "top coupons and discounts in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "how does shopping coupons and discounts options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discounts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "alias", "text": "coupons and discounts shopping basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "shopping flower shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "shopping flower shopping basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "vague", "text": "looking into shopping flower shopping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "what is shopping flower shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "what is shopping flower shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "vague", "text": "exploring shopping flower shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "top shopping flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "how does shopping flower shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "compare shopping flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "how does flower shopping shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "shopping flower shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "vague", "text": "need advice about shopping flower shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "which shopping flower shopping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "how does flower shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "flower shopping shopping basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "best flower shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "flower shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "shopping flower shopping overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "flower shopping shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "what is flower shopping in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "vague", "text": "exploring flower shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "which flower shopping shopping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "top flower shopping shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "discovery", "text": "flower shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "gifts and greetings card"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "what is gifts and greetings cards in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "best gifts and greetings cards shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "how does shopping gifts and greetings cards work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "action", "text": "reserve gifts and greetings card"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "gifts and greetings cards shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "top gifts and greetings card"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "what is shopping gifts and greetings cards options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "top shopping gifts and greetings cards options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "vague", "text": "help me choose shopping gifts and greetings cards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "action", "text": "find gifts and greetings cards shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "best shopping gifts and greetings cards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "action", "text": "book gifts and greetings card"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "vague", "text": "need advice about gifts and greetings cards in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "what is shopping gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "which shopping gifts and greetings cards is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "best gifts and greetings cards in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "which gifts and greetings card is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "gifts and greetings cards basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "how does gifts and greetings cards work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "shopping gifts and greetings cards options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "what is gifts and greetings cards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "vague", "text": "exploring gifts and greetings cards in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "vague", "text": "need advice about shopping gifts and greetings cards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "what is grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "learn about grocery shopping shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "compare shopping grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "which grocery shopping is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "grocery shopping rather than coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "shopping grocery shopping rather than flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "grocery shopping shopping guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "need grocery shopping, not flower shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "researching shopping grocery shopping, not gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "looking for shopping grocery shopping instead of coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "need grocery shopping shopping, not coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "which shopping grocery shopping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "top grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "which grocery shopping shopping is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "best grocery shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "grocery shopping shopping overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "learn about grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "shopping grocery shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "vague", "text": "exploring grocery shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "top grocery shopping shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "grocery shopping shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "grocery shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "vague", "text": "help me choose shopping grocery shopping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "how does shopping grocery shopping options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "researching holiday shopping, not gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "best shopping holiday shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "vague", "text": "exploring holiday shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "need holiday shopping, not flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "top holiday shopping shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "vague", "text": "exploring shopping holiday shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "shopping holiday shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "compare holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "learn about holiday shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "vague", "text": "looking into shopping holiday shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "which holiday shopping shopping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "holiday shopping shopping basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "top shopping holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "holiday shopping overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "compare holiday shopping shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "how does shopping holiday shopping work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "shopping holiday shopping options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "vague", "text": "help me choose shopping holiday shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "shopping holiday shopping basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "what is shopping holiday shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "how does shopping holiday shopping options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "holiday shopping shopping guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "learn about holiday shopping shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "holiday shopping basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "which household supplies is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "compare shopping household supplies options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "vague", "text": "need advice about household supplies in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "what is household supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supplies shopping basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "what is household supplies in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "vague", "text": "help me choose household supplies in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "how does shopping household supplies work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supplies basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "which shopping household supplies is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "how does household supplies shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "compare household supply"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "how does household supply work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "top household supply"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "which household supply is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "how does household supplies in shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supply overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "vague", "text": "looking into household supplies in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "compare household supplies in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "discovery", "text": "best household supply"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supplies guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supply guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "vague", "text": "help me choose shopping household supplies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "shopping household supplies guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "what is shopping lotteries and scratchcards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "vague", "text": "exploring lotteries and scratchcards in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "vague", "text": "looking into shopping lotteries and scratchcards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "action", "text": "book lotteries and scratchcards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "which shopping lotteries and scratchcards is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "lotteries and scratchcards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "action", "text": "get lotteries and scratchcards shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "action", "text": "reserve shopping lotteries and scratchcards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "best lotteries and scratchcards in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcards guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "compare lotteries and scratchcards in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "how does lotteries and scratchcards in shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcards overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcard overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "learn about shopping lotteries and scratchcards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "how does shopping lotteries and scratchcards work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "learn about lotteries and scratchcards shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "shopping lotteries and scratchcards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "compare lotteries and scratchcards shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "how does lotteries and scratchcard work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcards shopping guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "vague", "text": "help me choose lotteries and scratchcards in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "how does shopping lotteries and scratchcards options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "vague", "text": "exploring shopping lotteries and scratchcards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "top party supplies and decorations shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "vague", "text": "help me choose shopping party supplies and decorations options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "vague", "text": "looking into shopping party supplies and decorations options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "what is party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "looking for party supplies and decorations shopping instead of coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "how does party supplies and decorations shopping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "learn about party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "researching party supplies and decoration, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decoration basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "learn about party supplies and decorations shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decorations in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decorations overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decorations basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "what is shopping party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "best shopping party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decoration guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decorations shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "party supplies and decorations shopping basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "vague", "text": "exploring party supplies and decorations in shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "best shopping party supplies and decorations options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "which party supplies and decorations is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "party supplies and decoration options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "best party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "compare shopping party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "researching sales and promotions, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "need shopping sales and promotions, not flower shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "sales and promotions shopping rather than holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "looking for sales and promotions instead of coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "what is sales and promotions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "researching shopping sales and promotions, not coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "shopping sales and promotions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "sales and promotion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "vague", "text": "need advice about shopping sales and promotions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "vague", "text": "help me choose sales and promotions in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "compare shopping sales and promotions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "top sales and promotions in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "how does shopping sales and promotions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "compare sales and promotions in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "sales and promotions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "sales and promotion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "vague", "text": "help me choose shopping sales and promotions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "sales and promotions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "shopping sales and promotions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "sales and promotion overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "top shopping sales and promotions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "which sales and promotions shopping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "top sales and promotions shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "vague", "text": "looking into sales and promotions in shopping"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "need advice about sports options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "help me choose sports options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for sport instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "sports rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need sports, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching sports, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "how does soccer advice work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "looking into sports rules"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "game tactics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "learn about sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "help me choose game tactics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need sport, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "best sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "need advice about match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "exploring game tactics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sport overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "need advice about soccer advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "exploring sports guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "need advice about sports guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "sport rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "top sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching sports, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "compare sports rules"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "match guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "sports rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "help me choose soccer advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "sport rather than books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "looking into sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sports rules guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "help me choose sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "compare sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sport guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for sport instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "compare soccer advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "how does game tactics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "game tactics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "best sports rules"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "which sports is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching sports, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "soccer advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for sports instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "match guidance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching sport, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "help me choose match guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "which sport is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "looking into match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is sports rules"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "how does match guidance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is sports"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "exploring sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "exploring match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "need advice about sports rules"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "best match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "looking into game tactics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "top soccer advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "exploring soccer advice"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for sport instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "compare sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "learn about sport"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "best soccer advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "looking into sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "compare match guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "help me choose sports rules"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "top sports rules"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "sport options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "how does sports american football options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "what is american football sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "vague", "text": "looking into american football in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "sports american football basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "american football rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching sports american football, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sports american football, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "how does american football sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "how does sports american football work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "vague", "text": "help me choose sports american football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "best american football sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "top american football in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "top sports american football options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "american football in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "american football in sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "how does american football in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "sports american football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "american football sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "sports american football guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "what is american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "compare sports american football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "best sports american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "vague", "text": "help me choose american football in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "american football sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "australian rules football rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "which australian rules football sports is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "australian rules football sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "what is sports australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Beach Volleyball", "prompt_family": "contrastive", "text": "sports australian rules football rather than beach volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "best australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "australian rules football sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "sports australian rules football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "top sports australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "sports australian rules football overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "vague", "text": "looking into sports australian rules football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "australian rules football basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "vague", "text": "help me choose australian rules football in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "australian rules football sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "vague", "text": "help me choose sports australian rules football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "learn about sports australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "vague", "text": "need advice about australian rules football in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "sports australian rules football options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "australian rules football sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "how does australian rules football in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "australian rules football sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "how does sports australian rules football options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "sports australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "what is sports australian rules football options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "auto racing sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "auto racing sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "auto racing rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports auto racing, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "top auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "learn about auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "which auto racing sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "vague", "text": "help me choose auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "what is auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "sports auto racing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "best auto racing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "compare sports auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "how does auto racing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "best sports auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "what is sports auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "compare auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "auto racing sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "vague", "text": "exploring auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "auto racing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "auto racing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "auto racing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "how does sports auto racing options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "compare sports auto racing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "discovery", "text": "best auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "motorcycle sport overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "discovery", "text": "which motorcycle sports is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "negative_iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "contrastive", "text": "motorcycle sports rather than horse racing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "negative_iab_path": "Sports > College Sports > College Basketball", "prompt_family": "contrastive", "text": "need auto racing motorcycle sports, not college basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "how does sports auto racing motorcycle sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "discovery", "text": "auto racing motorcycle sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "vague", "text": "exploring sports motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "discovery", "text": "top motorcycle sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "discovery", "text": "which sports auto racing motorcycle sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "how does motorcycle sports auto racing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "motorcycle sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "vague", "text": "help me choose auto racing motorcycle sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "best sports badminton options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "how does sports badminton work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "learn about badminton sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "what is badminton in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "vague", "text": "need advice about badminton in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "sports badminton guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "how does sports badminton options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "badminton sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "top badminton in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "what is badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "how does badminton sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "compare sports badminton options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "vague", "text": "looking into sports badminton options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "top badminton sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "sports badminton options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "badminton in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "compare badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "badminton sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "vague", "text": "help me choose badminton in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "how does badminton in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "best sports badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "vague", "text": "help me choose sports badminton options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "which sports badminton is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "discovery", "text": "badminton sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching baseball, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports baseball instead of basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "how does sports baseball work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "baseball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "sports baseball overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "which sports baseball is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "compare baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "baseball sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "how does baseball in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "how does sports baseball options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "vague", "text": "looking into baseball in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "best baseball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "baseball sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "what is sports baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "compare sports baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "what is baseball sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "compare baseball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "baseball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "discovery", "text": "sports baseball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "how does baseball sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "baseball guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "vague", "text": "looking into sports baseball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "how does baseball work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "vague", "text": "help me choose baseball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching basketball, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "vague", "text": "help me choose basketball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need basketball, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports basketball rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "how does sports basketball work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Beach Volleyball", "prompt_family": "contrastive", "text": "researching basketball, not beach volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "sports basketball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "best sports basketball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "what is sports basketball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "learn about basketball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "basketball basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "basketball overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "sports basketball overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "compare sports basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "sports basketball guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "which sports basketball is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "top sports basketball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "basketball sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "top sports basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "discovery", "text": "compare sports basketball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "vague", "text": "exploring basketball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "how does basketball work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "sports basketball basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "basketball guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need beach volleyball sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports beach volleyball rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "best beach volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "beach volleyball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "compare beach volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "sports beach volleyball overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "vague", "text": "exploring sports beach volleyball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "best beach volleyball in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "beach volleyball in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "learn about sports beach volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "best beach volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "how does beach volleyball sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "vague", "text": "help me choose beach volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "beach volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "top beach volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "how does sports beach volleyball work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "beach volleyball sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "top beach volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "sports beach volleyball basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "beach volleyball sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "what is beach volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "sports beach volleyball guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "vague", "text": "exploring beach volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "beach volleyball guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for sports bodybuilding instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "learn about bodybuilding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "which bodybuilding sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "top bodybuilding sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "sports bodybuilding basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "how does bodybuilding work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "bodybuilding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "how does bodybuilding sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "top sports bodybuilding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "bodybuilding sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "bodybuilding overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "sports bodybuilding options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "compare bodybuilding sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "learn about bodybuilding sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "how does bodybuilding in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "vague", "text": "exploring sports bodybuilding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "compare sports bodybuilding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "vague", "text": "help me choose bodybuilding in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "bodybuilding sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "vague", "text": "exploring bodybuilding in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "best bodybuilding sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "compare bodybuilding in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "discovery", "text": "top bodybuilding in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "vague", "text": "need advice about sports bodybuilding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "how does sports bowling options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "bowling in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "how does sports bowling work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "vague", "text": "looking into bowling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "sports bowling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "how does bowling work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "sports bowling basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "sports bowling options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "which sports bowling is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "compare bowling in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "top bowling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "best bowling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "learn about bowling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "sports bowling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "best bowling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "compare sports bowling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "bowling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "bowling sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "vague", "text": "help me choose bowling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "how does bowling sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "bowling sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "alias", "text": "bowling in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "vague", "text": "exploring bowling in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "vague", "text": "need advice about bowling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "learn about sports boxing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "top boxing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need sports boxing, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "vague", "text": "need advice about sports boxing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "boxing options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "boxing sports rather than auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "vague", "text": "looking into sports boxing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "what is boxing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "vague", "text": "need advice about boxing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "compare sports boxing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "best boxing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "sports boxing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "boxing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "learn about boxing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "sports boxing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "which boxing sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "sports boxing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "boxing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "what is boxing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "learn about boxing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "sports boxing options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "how does boxing sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "compare boxing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "how does sports boxing work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching cheerleading, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "compare cheerleading"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "cheerleading options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "vague", "text": "help me choose sports cheerleading options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "learn about sports cheerleading"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "cheerleading sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "cheerleading in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "top cheerleading"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "best cheerleading sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "cheerleading in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "how does cheerleading sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "which cheerleading is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "compare cheerleading sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "how does cheerleading in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "sports cheerleading options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "top cheerleading in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "best sports cheerleading"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "how does cheerleading work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "sports cheerleading basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "sports cheerleading"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "learn about cheerleading sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "what is sports cheerleading"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "vague", "text": "help me choose cheerleading in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "vague", "text": "need advice about cheerleading in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "learn about college sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "compare sports college sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "sports college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "top college sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "top sports college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "college sports sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "top college sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "sports college sports options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "vague", "text": "need advice about college sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "college sport overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "college sport options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "compare sports college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "which sports college sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "compare college sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "how does college sports sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "vague", "text": "exploring college sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "how does college sports in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "college sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "how does sports college sports options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "college sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "college sports in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "learn about sports college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "alias", "text": "learn about college sport"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "vague", "text": "looking into college sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "vague", "text": "looking into college baseball in college sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Baseball", "negative_iab_path": "Sports > College Sports > College Football", "prompt_family": "contrastive", "text": "need college baseball college sports, not college football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "learn about sports college sports college baseball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Baseball", "negative_iab_path": "Sports > College Sports > College Basketball", "prompt_family": "contrastive", "text": "need college baseball, not college basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "discovery", "text": "compare college baseball college sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "what is sports college baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "discovery", "text": "sports college sports college baseball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "learn about college baseball college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "college sports college baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "sports college sports college baseball basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "alias", "text": "college sports college baseball options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "discovery", "text": "which college baseball is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "college sports college basketball basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "discovery", "text": "best sports college basketball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Basketball", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for college sports college basketball instead of motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "discovery", "text": "top college sports college basketball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "vague", "text": "need advice about college basketball in college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "discovery", "text": "best sports college sports college basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "sports college sports college basketball basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Basketball", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for college basketball instead of motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "vague", "text": "help me choose sports college basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "how does sports college sports college basketball work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "college basketball overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "how does college basketball in college sports work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Football", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "researching college football college sports, not college baseball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Football", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "college football college sports rather than motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "learn about college football"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > College Sports > College Football", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need college football, not motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "college sports college football basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "vague", "text": "looking into college sports college football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "college football college sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "vague", "text": "looking into college football in college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "discovery", "text": "top college football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "college football overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "what is college sports college football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "alias", "text": "how does college sports college football work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for cricket instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports cricket, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching cricket sports, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "best sports cricket options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching cricket sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need cricket, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "top cricket sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "cricket overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "what is cricket in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "vague", "text": "exploring sports cricket options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "cricket options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "best cricket"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "vague", "text": "help me choose cricket in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "cricket sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "cricket in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "cricket sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "how does sports cricket options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "vague", "text": "looking into cricket in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "which cricket sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "what is sports cricket"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "sports cricket options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "learn about cricket"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "how does cricket in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "learn about sports cricket"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching cycling, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "cycling sports rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "sports cycling basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need cycling, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "what is cycling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "which cycling is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "vague", "text": "need advice about sports cycling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "best cycling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "how does cycling work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "what is sports cycling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "cycling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "sports cycling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "compare cycling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "top sports cycling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "top cycling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "sports cycling guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "vague", "text": "exploring cycling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "best cycling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "top cycling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "how does sports cycling work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "what is cycling sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "discovery", "text": "best sports cycling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "vague", "text": "looking into sports cycling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "vague", "text": "looking into cycling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "dart guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "how does darts work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching darts, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching sports darts, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "learn about darts sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "what is dart"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "vague", "text": "need advice about sports darts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "top darts sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "compare dart"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "compare darts sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "how does darts sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "dart basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "best sports darts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "darts sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "what is sports darts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "compare sports darts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "vague", "text": "need advice about darts in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "best darts in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "darts sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "dart overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "darts sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "dart options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "vague", "text": "help me choose darts in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "vague", "text": "looking into sports darts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "how does sports disabled sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "disabled sport basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "best disabled sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "how does disabled sport work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "what is sports disabled sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "disabled sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "vague", "text": "exploring sports disabled sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "disabled sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "vague", "text": "help me choose sports disabled sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "how does disabled sports in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "disabled sport guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "learn about sports disabled sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "top sports disabled sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "compare disabled sport"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "vague", "text": "looking into sports disabled sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "best sports disabled sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "disabled sports sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "vague", "text": "looking into disabled sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "how does disabled sports sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "sports disabled sports options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "how does disabled sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "disabled sport options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "top disabled sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "top sports disabled sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "best sports diving options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "compare sports diving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "compare diving in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "vague", "text": "need advice about diving in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "top diving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "how does sports diving work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "learn about diving sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "best diving in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "which diving is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "compare diving sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "sports diving options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "vague", "text": "help me choose diving in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "what is diving sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "sports diving guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "learn about sports diving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "vague", "text": "exploring diving in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "sports diving basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "vague", "text": "need advice about sports diving options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching equine sports sports, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching equine sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "learn about equine sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports equine sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "what is equine sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "best equine sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "how does equine sport work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "best equine sports sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "equine sports sports rather than baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "equine sports in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "best sports equine sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "equine sports sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "vague", "text": "exploring equine sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "vague", "text": "exploring sports equine sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "equine sport overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "top sports equine sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "which sports equine sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "sports equine sports options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "best equine sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "how does equine sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "equine sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "equine sports sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "what is equine sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "vague", "text": "need advice about equine sports in sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Equine Sports > Horse Racing", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "looking for equine sports horse racing instead of college baseball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Equine Sports > Horse Racing", "negative_iab_path": "Sports > College Sports > College Basketball", "prompt_family": "contrastive", "text": "equine sports horse racing rather than college basketball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Equine Sports > Horse Racing", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "horse racing equine sports rather than motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "horse racing equine sports overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Equine Sports > Horse Racing", "negative_iab_path": "Sports > College Sports > College Football", "prompt_family": "contrastive", "text": "need equine sports horse racing, not college football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "learn about equine sports horse racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "equine sports horse racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "vague", "text": "exploring sports horse racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "horse racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "what is sports horse racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "horse racing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "alias", "text": "sports equine sports horse racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "extreme sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "how does sports extreme sports options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "which extreme sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "vague", "text": "exploring sports extreme sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "best extreme sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "what is extreme sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "what is extreme sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "which sports extreme sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "extreme sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "vague", "text": "looking into extreme sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "compare sports extreme sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "extreme sports sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "sports extreme sports options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "which extreme sport is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "sports extreme sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "what is extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "which extreme sports sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "what is extreme sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "extreme sports sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "extreme sport overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "extreme sport guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "discovery", "text": "compare extreme sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "vague", "text": "help me choose sports extreme sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "vague", "text": "help me choose extreme sports in sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "canoeing and kayaking rather than motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "vague", "text": "looking into canoeing and kayaking in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "discovery", "text": "canoeing and kayaking options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for canoeing and kayaking instead of motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "negative_iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "contrastive", "text": "canoeing and kayaking extreme sports rather than paintball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "what is canoeing and kayaking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need extreme sports canoeing and kayaking, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "discovery", "text": "compare sports canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "canoeing and kayaking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "canoeing and kayaking in extreme sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "discovery", "text": "extreme sports canoeing and kayaking options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "vague", "text": "exploring extreme sports canoeing and kayaking options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "discovery", "text": "top climbing in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "extreme sports climbing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "discovery", "text": "climbing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "how does climbing in extreme sports work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Climbing", "negative_iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "contrastive", "text": "need climbing, not paintball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Climbing", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "need climbing extreme sports, not canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "climbing extreme sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "discovery", "text": "top sports extreme sports climbing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "sports extreme sports climbing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "sports climbing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "alias", "text": "climbing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "vague", "text": "exploring extreme sports climbing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "discovery", "text": "best extreme sports paintball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "vague", "text": "help me choose sports paintball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "learn about sports extreme sports paintball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Paintball", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "extreme sports paintball rather than canoeing and kayaking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Paintball", "negative_iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "contrastive", "text": "paintball extreme sports rather than scuba diving"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "what is paintball in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "vague", "text": "need advice about paintball in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "vague", "text": "looking into extreme sports paintball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "discovery", "text": "top paintball extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "discovery", "text": "paintball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "discovery", "text": "sports extreme sports paintball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "extreme sports paintball guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "scuba diving overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Scuba Diving", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "scuba diving rather than motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "scuba diving in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "what is scuba diving in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "discovery", "text": "scuba diving options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "discovery", "text": "best scuba diving"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "discovery", "text": "best scuba diving in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "vague", "text": "need advice about scuba diving in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "vague", "text": "need advice about sports scuba diving"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "extreme sports scuba diving options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "scuba diving extreme sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "what is extreme sports scuba diving options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "skateboarding extreme sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "vague", "text": "need advice about sports skateboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Skateboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "skateboarding rather than motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "discovery", "text": "top sports skateboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "skateboarding extreme sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "discovery", "text": "compare extreme sports skateboarding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "how does skateboarding in extreme sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "vague", "text": "help me choose extreme sports skateboarding options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "skateboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "skateboarding overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "learn about extreme sports skateboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "alias", "text": "learn about sports extreme sports skateboarding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "discovery", "text": "compare extreme sports snowboarding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "vague", "text": "need advice about sports snowboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Snowboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need snowboarding extreme sports, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Snowboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need extreme sports snowboarding, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "extreme sports snowboarding options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "discovery", "text": "top sports extreme sports snowboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "what is snowboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "extreme sports snowboarding overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "discovery", "text": "best sports extreme sports snowboarding"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "vague", "text": "exploring sports snowboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "snowboarding overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "extreme sports snowboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "sports extreme sports surfing and bodyboarding overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "vague", "text": "looking into sports surfing and bodyboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "negative_iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "contrastive", "text": "looking for extreme sports surfing and bodyboarding instead of climbing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "researching sports extreme sports surfing and bodyboarding, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for extreme sports surfing and bodyboarding instead of motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "what is surfing and bodyboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "what is extreme sports surfing and bodyboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "negative_iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "contrastive", "text": "sports extreme sports surfing and bodyboarding rather than paintball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "extreme sports surfing and bodyboarding overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "discovery", "text": "top extreme sports surfing and bodyboarding options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "discovery", "text": "which sports extreme sports surfing and bodyboarding is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "discovery", "text": "compare surfing and bodyboarding in extreme sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "negative_iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "contrastive", "text": "sports extreme sports waterskiing and wakeboarding rather than climbing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "waterskiing and wakeboarding rather than canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "discovery", "text": "which sports extreme sports waterskiing and wakeboarding is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "vague", "text": "need advice about waterskiing and wakeboarding in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "learn about waterskiing and wakeboarding extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "discovery", "text": "compare extreme sports waterskiing and wakeboarding options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "waterskiing and wakeboarding in extreme sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "how does sports extreme sports waterskiing and wakeboarding work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "waterskiing and wakeboarding extreme sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "extreme sports waterskiing and wakeboarding basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "discovery", "text": "top extreme sports waterskiing and wakeboarding"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "discovery", "text": "compare waterskiing and wakeboarding"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for fantasy sports sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports fantasy sports instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching fantasy sports sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "fantasy sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "fantasy sport basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for fantasy sports sports instead of australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "how does sports fantasy sports options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "fantasy sports sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "sports fantasy sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "fantasy sport guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "what is sports fantasy sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "how does sports fantasy sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "what is fantasy sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "compare fantasy sport"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "fantasy sports in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "top fantasy sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "best fantasy sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "compare sports fantasy sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "top fantasy sports sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "vague", "text": "help me choose fantasy sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "vague", "text": "need advice about fantasy sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "fantasy sports sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "top sports fantasy sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "vague", "text": "help me choose sports fantasy sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "vague", "text": "need advice about field hockey in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "what is field hockey sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "top field hockey in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports field hockey, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "best sports field hockey options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "field hockey rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for field hockey sports instead of badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "top sports field hockey"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "field hockey in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "how does field hockey sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "field hockey sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "compare sports field hockey"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "field hockey guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "compare field hockey in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "sports field hockey basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "field hockey sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "which field hockey is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "field hockey options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "sports field hockey guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "learn about field hockey sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "what is field hockey in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "sports field hockey overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "sports field hockey"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "vague", "text": "looking into sports field hockey options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "figure skating sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching figure skating, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for figure skating instead of basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "figure skating in sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "best figure skating in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "what is sports figure skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "figure skating sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "vague", "text": "exploring sports figure skating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "vague", "text": "help me choose sports figure skating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "sports figure skating guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "vague", "text": "need advice about figure skating in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "figure skating guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "figure skating sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "compare figure skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "which figure skating sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "best figure skating sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "figure skating sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "sports figure skating overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "top figure skating in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "compare figure skating in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "what is sports figure skating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "sports figure skating basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "alias", "text": "how does figure skating sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "discovery", "text": "best sports figure skating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "fishing sport rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need fishing sport, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "how does fishing sport work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "top sports fishing sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "vague", "text": "help me choose sports fishing sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "vague", "text": "looking into fishing sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "fishing sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "vague", "text": "help me choose fishing sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "vague", "text": "need advice about fishing sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "sports fishing sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "top sports fishing sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "best fishing sports sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "best fishing sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "best sports fishing sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "how does sports fishing sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "best fishing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "which fishing sports sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "what is sports fishing sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "what is fishing sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "fishing sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "learn about fishing sports sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "fishing sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "fishing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "what is sports fishing sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching golf sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports golf rather than auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "golf in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "how does golf work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching golf sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "top golf"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "top golf sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "vague", "text": "need advice about sports golf options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "vague", "text": "looking into golf in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "golf sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "top golf in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "which sports golf is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "learn about golf sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "top sports golf"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "sports golf"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "which golf sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "golf sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "how does sports golf options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "how does golf in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "best sports golf"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "golf sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "sports golf basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "golf basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "sports golf overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports gymnastics rather than badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "vague", "text": "looking into gymnastics in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "what is gymnastics in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "sports gymnastics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastic overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastics in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "which sports gymnastics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "sports gymnastics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastics sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "gymnastics sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "what is sports gymnastics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastics overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "best sports gymnastics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "top gymnastics sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "how does gymnastics in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "top gymnastic"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "best sports gymnastics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "gymnastics sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "gymnastic options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "discovery", "text": "compare sports gymnastics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "vague", "text": "help me choose sports gymnastics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "vague", "text": "exploring sports gymnastics options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "hunting and shooting rather than badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "vague", "text": "exploring sports hunting and shooting options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need hunting and shooting, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for sports hunting and shooting instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "what is sports hunting and shooting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "learn about hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "sports hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "best sports hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "sports hunting and shooting guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "what is hunting and shooting in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "compare hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "compare sports hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "what is sports hunting and shooting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "what is hunting and shooting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "vague", "text": "need advice about sports hunting and shooting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "how does hunting and shooting sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "hunting and shooting in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "hunting and shooting sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "sports hunting and shooting basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "which hunting and shooting sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "vague", "text": "need advice about hunting and shooting in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "best hunting and shooting sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "discovery", "text": "best sports hunting and shooting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "vague", "text": "help me choose ice hockey in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "ice hockey sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "ice hockey in sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for ice hockey sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "compare ice hockey sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "what is ice hockey"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for ice hockey instead of basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "ice hockey guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "best ice hockey in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "compare ice hockey in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "what is ice hockey in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "compare sports ice hockey options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need ice hockey sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching ice hockey sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "ice hockey options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "best ice hockey sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "vague", "text": "exploring ice hockey in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "how does ice hockey in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "compare sports ice hockey"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "learn about ice hockey"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "what is ice hockey sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "learn about ice hockey sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "what is sports ice hockey"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "discovery", "text": "best ice hockey"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "best inline skating in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching sports inline skating, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "inline skating rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "inline skating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "vague", "text": "help me choose inline skating in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "compare sports inline skating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "top inline skating in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "learn about inline skating sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "how does sports inline skating options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "compare sports inline skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "inline skating options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "best inline skating sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "what is inline skating in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "vague", "text": "exploring sports inline skating options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "inline skating in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "compare inline skating sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "learn about sports inline skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "what is inline skating sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "how does sports inline skating work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "sports inline skating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "how does inline skating work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "inline skating sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "inline skating overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "alias", "text": "sports inline skating basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need lacrosse, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "sports lacrosse options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "best sports lacrosse options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching lacrosse sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "learn about lacrosse sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching lacrosse sports, not american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "lacrosse sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "best sports lacrosse"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "lacrosse rather than auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "compare sports lacrosse options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "sports lacrosse guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "learn about lacrosse"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "vague", "text": "need advice about sports lacrosse options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "best lacrosse"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "sports lacrosse overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "sports lacrosse basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "lacrosse basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "lacrosse sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "what is sports lacrosse"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "vague", "text": "help me choose lacrosse in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "compare sports lacrosse"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "lacrosse guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "lacrosse in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "sports lacrosse"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need sports martial arts, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching sports martial arts, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "what is sports martial arts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "martial arts sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "which martial arts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "martial art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "learn about martial arts sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "best sports martial arts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "martial arts sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "top martial art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "martial arts sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "top martial arts sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "what is sports martial arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "which sports martial arts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "sports martial arts basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "compare martial arts sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "how does martial arts in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "martial art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "martial arts sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "sports martial arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "martial arts basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "alias", "text": "martial arts sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "vague", "text": "exploring martial arts in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "vague", "text": "exploring sports martial arts options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for olympic sport instead of american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "olympic sport options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "vague", "text": "looking into sports olympic sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "how does sports olympic sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "olympic sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "what is olympic sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "sports olympic sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "sports olympic sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "learn about olympic sports sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "compare olympic sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "learn about olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "which sports olympic sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "what is olympic sports in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "vague", "text": "looking into olympic sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "olympic sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "vague", "text": "need advice about sports olympic sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "top olympic sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "best sports olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "olympic sports sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "vague", "text": "exploring olympic sports in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "olympic sports sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "olympic sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "alias", "text": "what is olympic sports sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "discovery", "text": "top summer olympic sports in olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "discovery", "text": "compare olympic sports summer olympic sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "vague", "text": "looking into sports summer olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "summer olympic sports olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "discovery", "text": "best summer olympic sports in olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "discovery", "text": "top summer olympic sports olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "vague", "text": "exploring summer olympic sports in olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "discovery", "text": "compare sports olympic sports summer olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "learn about summer olympic sports olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "olympic sports summer olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "what is olympic sports summer olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "olympic sports summer olympic sports options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "what is winter olympic sports olympic sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "negative_iab_path": "Sports > College Sports > College Basketball", "prompt_family": "contrastive", "text": "looking for olympic sports winter olympic sports instead of college basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "vague", "text": "looking into sports winter olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "top sports olympic sports winter olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "compare winter olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "best olympic sports winter olympic sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "which winter olympic sport is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "vague", "text": "need advice about winter olympic sports in olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "how does olympic sports winter olympic sports options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "winter olympic sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "winter olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "winter olympic sports olympic sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "how does poker and professional gambling sports work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports poker and professional gambling instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "poker and professional gambling rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "which poker and professional gambling is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "top sports poker and professional gambling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "best poker and professional gambling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "best sports poker and professional gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "compare sports poker and professional gambling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "vague", "text": "looking into poker and professional gambling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "sports poker and professional gambling overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "poker and professional gambling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "what is poker and professional gambling sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "what is sports poker and professional gambling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "which sports poker and professional gambling is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "poker and professional gambling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "top poker and professional gambling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "what is poker and professional gambling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "vague", "text": "help me choose poker and professional gambling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "poker and professional gambling sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "what is poker and professional gambling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "what is sports poker and professional gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "learn about poker and professional gambling sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "sports poker and professional gambling options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "alias", "text": "sports poker and professional gambling basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need sports rodeo, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for rodeo sports instead of australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "vague", "text": "exploring sports rodeo options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "what is sports rodeo options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "sports rodeo options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "what is rodeo sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "top rodeo"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "which rodeo sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "best sports rodeo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "compare rodeo in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "compare sports rodeo options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "discovery", "text": "compare rodeo sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "vague", "text": "help me choose sports rodeo options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "vague", "text": "help me choose rodeo in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "learn about rodeo sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "rodeo sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "vague", "text": "looking into rodeo in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "sports rodeo"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "rodeo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "sports rodeo options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "learn about rodeo"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "how does rodeo sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "how does sports rodeo options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "rodeo overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports rowing, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "rowing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "best sports rowing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "best rowing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "what is sports rowing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "vague", "text": "looking into rowing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "vague", "text": "looking into sports rowing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "how does rowing in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "vague", "text": "need advice about rowing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "best rowing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "top sports rowing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "what is rowing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "which rowing sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "what is rowing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "what is rowing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "compare sports rowing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "discovery", "text": "top rowing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "rowing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "vague", "text": "exploring sports rowing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "how does sports rowing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "rowing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "sports rowing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "sports rowing options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "rowing sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "top rugby"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for rugby sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports rugby, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching rugby sports, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need sports rugby, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "vague", "text": "help me choose sports rugby options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "vague", "text": "exploring sports rugby options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "best rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "sports rugby basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "best rugby in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "which rugby is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "rugby sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "what is rugby sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "vague", "text": "exploring rugby in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "rugby overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "rugby in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "how does sports rugby options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "compare rugby in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "vague", "text": "need advice about rugby in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "sports rugby guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "top sports rugby options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "compare rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "learn about rugby"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "how does rugby in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "discovery", "text": "compare rugby league"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby League", "negative_iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "contrastive", "text": "looking for rugby rugby league instead of rugby union"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "vague", "text": "need advice about sports rugby league"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby League", "negative_iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "contrastive", "text": "need rugby league, not rugby union"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "discovery", "text": "which rugby league is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "discovery", "text": "top rugby rugby league options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "vague", "text": "exploring sports rugby league"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby League", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need rugby rugby league, not motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "learn about rugby league rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "sports rugby rugby league guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "rugby league in rugby guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "rugby league overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "vague", "text": "help me choose sports rugby union"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "rugby union"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "what is rugby rugby union"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby Union", "negative_iab_path": "Sports > College Sports > College Basketball", "prompt_family": "contrastive", "text": "researching rugby rugby union, not college basketball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby Union", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "looking for rugby rugby union instead of college baseball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby Union", "negative_iab_path": "Sports > Rugby > Rugby League", "prompt_family": "contrastive", "text": "rugby union rugby rather than rugby league"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "rugby rugby union"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "sports rugby rugby union guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "discovery", "text": "top sports rugby rugby union"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "discovery", "text": "which sports rugby rugby union is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "discovery", "text": "best rugby rugby union"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "vague", "text": "looking into rugby union in rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "top sailing sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports sailing, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "best sports sailing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "vague", "text": "help me choose sports sailing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "sailing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "top sports sailing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "best sports sailing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "sailing sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "vague", "text": "looking into sailing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "how does sports sailing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "vague", "text": "exploring sailing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "compare sports sailing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "discovery", "text": "compare sailing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "learn about sailing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "how does sailing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "learn about sailing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "how does sports sailing options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "what is sailing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "compare skiing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "skiing sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "best skiing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "vague", "text": "exploring skiing in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "skiing in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "best skiing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "skiing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "what is skiing sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "how does skiing in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "sports skiing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "how does sports skiing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "top sports skiing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "compare sports skiing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "discovery", "text": "top skiing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "learn about skiing sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "vague", "text": "need advice about sports skiing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "vague", "text": "looking into sports skiing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "vague", "text": "need advice about skiing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "sports skiing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "learn about sports skiing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "what is sports skiing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "how does skiing sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "skiing sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "skiing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "vague", "text": "exploring snooker/pool/billiards in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports snooker/pool/billiards, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports snooker/pool/billiards, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "sports snooker/pool/billiards overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "snooker/pool/billiards sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching sports snooker/pool/billiards, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "which snooker/pool/billiard is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "snooker/pool/billiards options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "compare snooker/pool/billiards in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "how does snooker/pool/billiards work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "which sports snooker/pool/billiards is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "how does sports snooker/pool/billiards options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "compare sports snooker/pool/billiards options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "how does sports snooker/pool/billiards work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "how does snooker/pool/billiards sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "compare snooker/pool/billiard"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "discovery", "text": "which snooker/pool/billiards sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "how does snooker/pool/billiard work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "vague", "text": "help me choose snooker/pool/billiards in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "snooker/pool/billiard guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "snooker/pool/billiards overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "snooker/pool/billiards sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "vague", "text": "need advice about snooker/pool/billiards in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "snooker/pool/billiard"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for offside rule instead of basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "vague", "text": "need advice about offside rule"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer rules guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "vague", "text": "looking into soccer rules"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "compare premier league"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "how does soccer tactics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "learn about soccer rules"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "what is soccer tactics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "best soccer in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "which soccer sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer tactics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "what is soccer sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "vague", "text": "help me choose soccer tactics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "best soccer"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "vague", "text": "exploring premier league"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "what is offside rule"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "compare soccer rules"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "compare sports soccer options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "top soccer sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "discovery", "text": "which sports soccer is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "softball sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need softball, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need softball, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "top softball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "which softball is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "vague", "text": "exploring softball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for softball instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "softball sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "compare softball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "which softball sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "what is sports softball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "sports softball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "how does softball in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "vague", "text": "need advice about sports softball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "how does softball sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "sports softball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "best sports softball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "sports softball guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "softball sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "compare sports softball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "sports softball overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "vague", "text": "looking into softball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "softball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "how does softball work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "best sports equipment in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "sports sports equipment options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "vague", "text": "looking into sports equipment in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "vague", "text": "need advice about sports sports equipment options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports sports equipment, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "compare sports equipment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sports sports equipment, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports equipment sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "sports equipment sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports equipment sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "best sports equipment sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "how does sports sports equipment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "how does sports equipment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "how does sports equipment sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports equipment sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "vague", "text": "help me choose sports equipment in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "which sports equipment is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "which sports sports equipment is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "learn about sports sports equipment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "top sports equipment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "learn about sports equipment sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports equipment basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "discovery", "text": "best sports sports equipment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports sports equipment overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "what is squash sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "squash sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "squash basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports squash rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "compare squash"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports squash, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "what is sports squash options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "vague", "text": "need advice about squash in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "learn about squash sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "vague", "text": "looking into sports squash options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "what is squash in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "learn about squash"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "compare sports squash options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "vague", "text": "looking into squash in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "squash overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "top squash sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "top sports squash options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "best squash"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "squash sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "sports squash basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "how does squash sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "best squash in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "discovery", "text": "top squash in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "vague", "text": "exploring sports squash options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "how does swimming in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "vague", "text": "need advice about sports swimming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "what is sports swimming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for swimming sports instead of american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "best swimming in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "what is swimming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "swimming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "which sports swimming is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "swimming in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "sports swimming overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "top swimming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "compare swimming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "what is sports swimming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "how does swimming sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "swimming basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "vague", "text": "exploring sports swimming options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "vague", "text": "exploring swimming in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "sports swimming options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "how does sports swimming options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "swimming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "best sports swimming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "learn about swimming sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "best sports swimming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "alias", "text": "swimming sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "table tenni rather than auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "what is table tennis in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "table tenni overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "table tennis in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "compare table tennis sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "table tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "which table tenni is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "table tennis guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "table tenni basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "vague", "text": "looking into table tennis in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "top table tenni"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "which sports table tennis is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "how does table tennis work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "what is sports table tennis options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "learn about table tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "top table tennis sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "best table tennis"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "vague", "text": "exploring table tennis in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "compare sports table tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "sports table tennis guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "vague", "text": "exploring sports table tennis options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "how does table tennis in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "what is table tennis sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "vague", "text": "help me choose table tennis in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching tenni, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for tenni instead of badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "sports tennis basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "vague", "text": "exploring tennis in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "vague", "text": "looking into sports tennis options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "tenni options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "what is tennis in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "sports tennis guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "sports tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "best tennis sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "sports tennis overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "best sports tennis options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "vague", "text": "looking into tennis in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "compare sports tennis options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "tennis in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "best sports tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "sports tennis options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "what is tenni"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "learn about sports tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "top tenni"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "what is tennis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "which tenni is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "vague", "text": "need advice about tennis in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "tennis in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "best track and field"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "track and field rather than australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "compare track and field in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "track and field sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "sports track and field guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "track and field options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "best sports track and field"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "sports track and field"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "vague", "text": "help me choose track and field in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "how does track and field work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "what is track and field sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "sports track and field options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "sports track and field options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "learn about track and field"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "which track and field is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "track and field"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "sports track and field overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "how does track and field in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "vague", "text": "need advice about sports track and field options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "best track and field in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "top sports track and field"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "discovery", "text": "track and field sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "vague", "text": "exploring track and field in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "vague", "text": "help me choose sports track and field options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching volleyball sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "learn about volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "volleyball sports overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "best sports volleyball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "what is volleyball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "which volleyball is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "what is volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "volleyball sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "how does sports volleyball work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "volleyball in sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "vague", "text": "help me choose sports volleyball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "sports volleyball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "best volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "best volleyball sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "how does volleyball in sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "compare volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "sports volleyball basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "vague", "text": "need advice about volleyball in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "how does volleyball sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "alias", "text": "volleyball sports basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "top sports volleyball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "discovery", "text": "which volleyball sports is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Volleyball", "prompt_family": "vague", "text": "exploring sports volleyball options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "walking rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "sports walking rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "sports walking basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "best walking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "vague", "text": "help me choose walking in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "sports walking guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "sports walking overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "what is walking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "which walking is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "vague", "text": "looking into sports walking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "which sports walking is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "how does walking in sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "walking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "walking sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "walking basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "vague", "text": "need advice about sports walking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "what is sports walking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "compare sports walking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "vague", "text": "exploring sports walking options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "walking in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "walking in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "compare walking sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "top walking sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "best sports walking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "sports water polo"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching water polo, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "water polo sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching water polo sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "best water polo"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "best sports water polo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "what is water polo sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "vague", "text": "help me choose sports water polo options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "how does water polo work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "what is sports water polo options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "vague", "text": "looking into sports water polo options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "vague", "text": "help me choose water polo in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "how does sports water polo work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "which water polo sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "water polo sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "top water polo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "top sports water polo options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "which water polo is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "discovery", "text": "top sports water polo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "vague", "text": "need advice about water polo in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need weightlifting, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports weightlifting, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for weightlifting sports instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports weightlifting, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "compare sports weightlifting options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need weightlifting, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "what is sports weightlifting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "best weightlifting in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "weightlifting sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "weightlifting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "vague", "text": "need advice about weightlifting in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "vague", "text": "help me choose sports weightlifting options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "what is weightlifting in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "how does weightlifting sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "weightlifting sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "sports weightlifting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "learn about weightlifting sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "weightlifting in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "best weightlifting sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "weightlifting sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "best weightlifting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "weightlifting guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "weightlifting in sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "best sports weightlifting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "compare sports wrestling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need wrestling, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sports wrestling, not basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "top sports wrestling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching wrestling sports, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "compare wrestling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "how does wrestling work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "how does sports wrestling work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "top wrestling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "sports wrestling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "what is wrestling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "learn about sports wrestling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "learn about wrestling sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "vague", "text": "need advice about wrestling in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "compare sports wrestling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "discovery", "text": "best wrestling sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "vague", "text": "help me choose wrestling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "wrestling basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "wrestling in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "vague", "text": "need advice about sports wrestling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "wrestling in sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "wrestling sports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "learn about wrestling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "vague", "text": "help me choose sports wrestling options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "exploring style and fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "learn about style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style & fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "need advice about shoe shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "best style & fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "how does style and fashion work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "exploring style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is style picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "compare fashion ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "help me choose outfit help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "best outfit help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "top style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "fashion ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "need advice about fashion ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "help me choose style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need style & fashion, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "exploring fashion ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "compare style & fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "compare style picks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "compare style and fashion"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "looking into style and fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "looking into outfit help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "looking into style picks"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "best style picks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "style and fashion rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style and fashion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "shoe shopping guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "help me choose style and fashion options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "style and fashion rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "exploring style picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "best fashion ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is style and fashion options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for style & fashion instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "which style & fashion is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "how does style picks work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "how does fashion ideas work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "help me choose shoe shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "top style picks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style and fashion overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "fashion ideas guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "need advice about style picks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "how does style & fashion work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "style & fashion rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "top outfit help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "top style & fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "how does shoe shopping work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "compare shoe shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "top shoe shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style & fashion overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need style and fashion, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for style and fashion instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "need advice about style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "help me choose fashion ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "which style and fashion is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "help me choose style picks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "compare outfit help"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "style and fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "top fashion ideas"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for style and fashion instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "best style and fashion"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for style & fashion instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching style & fashion, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "need advice about style and fashion options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for style & fashion instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style & fashion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "which beauty is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "beauty in style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "top style and fashion beauty options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "style and fashion beauty guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "vague", "text": "need advice about beauty in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "vague", "text": "help me choose beauty in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "beauty style and fashion overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "what is style and fashion beauty options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "how does style and fashion beauty options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "best style and fashion beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "compare beauty style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "style and fashion beauty basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "compare style and fashion beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "learn about beauty style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "which beauty style and fashion is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "learn about beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "how does beauty style and fashion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "beauty style and fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "beauty style and fashion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "alias", "text": "beauty in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "top beauty in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "vague", "text": "looking into style and fashion beauty options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "vague", "text": "exploring style and fashion beauty options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "action", "text": "buy hair care beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Hair Care", "negative_iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "contrastive", "text": "looking for beauty hair care instead of nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "hair care overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "hair care beauty overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "action", "text": "buy style and fashion beauty hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "vague", "text": "looking into hair care in beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "beauty hair care guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "what is hair care in beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "style and fashion hair care guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Hair Care", "negative_iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "contrastive", "text": "researching hair care, not nail care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "discovery", "text": "top beauty hair care options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "alias", "text": "style and fashion hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "style and fashion beauty makeup and accessories basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "vague", "text": "help me choose beauty makeup and accessories options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "discovery", "text": "best makeup and accessories in beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "makeup and accessory overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "negative_iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "contrastive", "text": "looking for beauty makeup and accessories instead of natural and organic beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "makeup and accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "negative_iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "contrastive", "text": "need beauty makeup and accessories, not natural and organic beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "style and fashion beauty makeup and accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "vague", "text": "exploring style and fashion makeup and accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "discovery", "text": "makeup and accessory options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "discovery", "text": "style and fashion beauty makeup and accessories options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "discovery", "text": "best makeup and accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "action", "text": "buy style and fashion beauty nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "beauty nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "learn about nail care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "vague", "text": "need advice about beauty nail care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "nail care beauty basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "beauty nail care guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "what is nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "discovery", "text": "top nail care beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "vague", "text": "exploring style and fashion nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "discovery", "text": "which beauty nail care is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "action", "text": "reserve style and fashion beauty nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "alias", "text": "style and fashion beauty nail care guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "discovery", "text": "compare beauty natural and organic beauty options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "what is style and fashion natural and organic beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "need beauty natural and organic beauty, not hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "discovery", "text": "top natural and organic beauty beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "researching natural and organic beauty, not hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "style and fashion beauty natural and organic beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "what is beauty natural and organic beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "discovery", "text": "compare natural and organic beauty in beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "natural and organic beauty guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "negative_iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "contrastive", "text": "researching natural and organic beauty, not nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "how does beauty natural and organic beauty work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "style and fashion natural and organic beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "discovery", "text": "top style and fashion beauty perfume and fragrance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "perfume and fragrance beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "discovery", "text": "compare beauty perfume and fragrance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "what is style and fashion beauty perfume and fragrance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "need perfume and fragrance, not hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "what is perfume and fragrance beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "style and fashion beauty perfume and fragrance basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "discovery", "text": "compare perfume and fragrance beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "negative_iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "contrastive", "text": "need perfume and fragrance beauty, not makeup and accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "style and fashion perfume and fragrance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "vague", "text": "need advice about perfume and fragrance in beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "alias", "text": "perfume and fragrance in beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "action", "text": "get skin care beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Skin Care", "negative_iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "contrastive", "text": "beauty skin care rather than nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "action", "text": "reserve skin care beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "discovery", "text": "top beauty skin care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "discovery", "text": "style and fashion beauty skin care options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "vague", "text": "need advice about beauty skin care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "how does beauty skin care work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "vague", "text": "need advice about style and fashion skin care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "what is beauty skin care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "discovery", "text": "skin care beauty options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "learn about skin care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "beauty skin care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "body art style and fashion overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "need body art style and fashion, not designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "style and fashion body art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "top body art style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "top body art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "vague", "text": "help me choose body art in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "best style and fashion body art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "body art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "best body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "body art guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "best body art style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "what is style and fashion body art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "vague", "text": "need advice about body art in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "vague", "text": "exploring style and fashion body art options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "vague", "text": "help me choose style and fashion body art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "compare body art style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "discovery", "text": "which body art style and fashion is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "style and fashion body art basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "how does body art style and fashion work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "style and fashion body art options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "body art style and fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "style and fashion body art overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "how does body art in style and fashion work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "what is body art in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "vague", "text": "looking into style and fashion children's clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "style and fashion children's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "children's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "top children's clothing style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "children's clothing style and fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "best children's clothing style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "top children's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "vague", "text": "exploring style and fashion children's clothing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "compare style and fashion children's clothing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "top style and fashion children's clothing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "top children's clothing in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "how does children's clothing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "vague", "text": "exploring children's clothing in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "what is style and fashion children's clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "top style and fashion children's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "what is children's clothing in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "style and fashion children's clothing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "how does children's clothing style and fashion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "discovery", "text": "best style and fashion children's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "learn about children's clothing style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "children's clothing style and fashion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "style and fashion children's clothing options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "children's clothing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "children's clothing in style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "researching designer clothing, not beauty"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "researching style and fashion designer clothing, not beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "best designer clothing in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "vague", "text": "looking into style and fashion designer clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "designer clothing style and fashion overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "researching designer clothing style and fashion, not fashion trends"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "vague", "text": "looking into designer clothing in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "designer clothing in style and fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "top style and fashion designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "compare designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "style and fashion designer clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "best style and fashion designer clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "which designer clothing style and fashion is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "vague", "text": "help me choose style and fashion designer clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "what is style and fashion designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "what is designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "how does designer clothing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "what is designer clothing style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "what is designer clothing in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "top designer clothing style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "style and fashion designer clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "designer clothing style and fashion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "designer clothing in style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "fashion trend rather than designer clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "what is fashion trends in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trends style and fashion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trend"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "vague", "text": "need advice about style and fashion fashion trends options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "best fashion trends in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trends"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "compare fashion trends in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "how does fashion trends style and fashion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "which fashion trends style and fashion is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "what is fashion trend"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trends style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trend guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trends basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "which fashion trends is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "style and fashion fashion trends"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "fashion trend options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "fashion trends style and fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "fashion trends in style and fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "style and fashion fashion trends guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "vague", "text": "need advice about fashion trends in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "top fashion trend"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "how does style and fashion fashion trends options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "vague", "text": "help me choose fashion trends in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "what is high fashion style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "top style and fashion high fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "style and fashion high fashion guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "need style and fashion high fashion, not children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "high fashion rather than men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "high fashion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "compare style and fashion high fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "compare high fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "top style and fashion high fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "compare style and fashion high fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "learn about high fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "high fashion style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "best high fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "which high fashion style and fashion is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "learn about high fashion style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "vague", "text": "help me choose style and fashion high fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "high fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "vague", "text": "help me choose high fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "high fashion style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "high fashion style and fashion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "learn about style and fashion high fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "vague", "text": "need advice about style and fashion high fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "vague", "text": "looking into high fashion in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "high fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "men's fashion options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "need style and fashion men's fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "style and fashion men's fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "what is men's fashion style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "men's fashion style and fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "style and fashion men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "top style and fashion men's fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "how does men's fashion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "which style and fashion men's fashion is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "compare style and fashion men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "style and fashion men's fashion options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "men's fashion style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "vague", "text": "looking into men's fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "learn about men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "vague", "text": "need advice about men's fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "what is men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "what is men's fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "top style and fashion men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "men's fashion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "top men's fashion style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "top men's fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "learn about style and fashion men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "vague", "text": "exploring men's fashion in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "vague", "text": "looking into men's accessories in men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "vague", "text": "exploring men's accessories in men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "men's accessories basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "vague", "text": "help me choose men's accessories in men's fashion"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "contrastive", "text": "need men's accessories men's fashion, not men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "discovery", "text": "compare style and fashion men's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "what is men's fashion men's accessories options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "men's accessories men's fashion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "what is style and fashion men's fashion men's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "discovery", "text": "men's accessories men's fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "men's fashion men's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "discovery", "text": "which men's accessory is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "discovery", "text": "compare men's jewelry and watches in men's accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "contrastive", "text": "researching men's jewelry and watche, not men's outerwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "alias", "text": "men's accessories men's jewelry and watches guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "alias", "text": "style and fashion men's fashion men's accessories men's jewelry and watches overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "alias", "text": "what is men's jewelry and watche"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "vague", "text": "looking into style and fashion men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "vague", "text": "looking into men's accessories men's jewelry and watches options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "discovery", "text": "top men's jewelry and watches in men's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "men's clothing men's fashion overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "style and fashion men's fashion men's clothing overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "contrastive", "text": "researching men's fashion men's clothing, not men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "contrastive", "text": "looking for men's clothing instead of men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "style and fashion men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "vague", "text": "need advice about style and fashion men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "discovery", "text": "which men's clothing men's fashion is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "style and fashion men's fashion men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "men's fashion men's clothing options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "discovery", "text": "best style and fashion men's fashion men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "discovery", "text": "compare men's clothing men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "men's fashion men's clothing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "alias", "text": "what is style and fashion men's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "discovery", "text": "men's clothing men's business wear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "alias", "text": "men's business wear guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "alias", "text": "style and fashion men's business wear guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "researching men's business wear men's clothing, not men's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "discovery", "text": "compare style and fashion men's fashion men's clothing men's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "alias", "text": "style and fashion men's fashion men's clothing men's business wear guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "vague", "text": "help me choose style and fashion men's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "alias", "text": "men's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "discovery", "text": "best style and fashion men's fashion men's clothing men's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "alias", "text": "style and fashion men's fashion men's clothing men's casual wear guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "alias", "text": "how does men's casual wear men's clothing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "alias", "text": "men's clothing men's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "alias", "text": "men's casual wear overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "discovery", "text": "best style and fashion men's casual wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "vague", "text": "need advice about men's casual wear in men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "vague", "text": "need advice about style and fashion men's formal wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "discovery", "text": "top men's formal wear in men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "vague", "text": "exploring style and fashion men's formal wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "discovery", "text": "style and fashion men's fashion men's clothing men's formal wear options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "contrastive", "text": "need men's clothing men's formal wear, not men's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "alias", "text": "men's clothing men's formal wear basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "alias", "text": "men's formal wear men's clothing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "alias", "text": "men's formal wear men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "discovery", "text": "compare men's clothing men's outerwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "discovery", "text": "best men's clothing men's outerwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "alias", "text": "men's outerwear in men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "vague", "text": "need advice about men's clothing men's outerwear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "discovery", "text": "which men's outerwear men's clothing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "alias", "text": "men's outerwear men's clothing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "alias", "text": "men's clothing men's outerwear options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "prompt_family": "alias", "text": "men's outerwear in men's clothing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "alias", "text": "what is style and fashion men's sportswear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "vague", "text": "exploring men's sportswear in men's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "researching men's clothing men's sportswear, not men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "discovery", "text": "top men's sportswear in men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "alias", "text": "men's sportswear men's clothing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "vague", "text": "looking into men's clothing men's sportswear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "discovery", "text": "compare men's sportswear men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "discovery", "text": "best men's clothing men's sportswear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "alias", "text": "men's underwear and sleepwear men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "discovery", "text": "compare style and fashion men's underwear and sleepwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "vague", "text": "need advice about men's clothing men's underwear and sleepwear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "alias", "text": "men's clothing men's underwear and sleepwear guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "alias", "text": "how does men's clothing men's underwear and sleepwear work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "discovery", "text": "top men's clothing men's underwear and sleepwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "alias", "text": "men's underwear and sleepwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "discovery", "text": "top style and fashion men's fashion men's clothing men's underwear and sleepwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "style and fashion men's fashion men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "contrastive", "text": "looking for men's shoes and footwear instead of men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "vague", "text": "need advice about men's fashion men's shoes and footwear options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "contrastive", "text": "men's shoes and footwear men's fashion rather than makeup and accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "contrastive", "text": "need men's shoes and footwear men's fashion, not men's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "discovery", "text": "best men's fashion men's shoes and footwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "men's shoes and footwear guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "how does men's fashion men's shoes and footwear options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "style and fashion men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "discovery", "text": "best men's shoes and footwear in men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "how does men's shoes and footwear men's fashion work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "vague", "text": "help me choose style and fashion men's shoes and footwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "compare style and fashion personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "how does style and fashion personal care work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "compare personal care in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "personal care basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "style and fashion personal care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "top personal care in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "best personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "what is style and fashion personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "style and fashion personal care overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "action", "text": "find personal care style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "top style and fashion personal care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "how does personal care work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "action", "text": "find personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "action", "text": "book style and fashion personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "style and fashion personal care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "learn about style and fashion personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "style and fashion personal care guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "personal care style and fashion basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "vague", "text": "looking into style and fashion personal care options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "what is personal care in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "what is personal care style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "vague", "text": "exploring style and fashion personal care options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "vague", "text": "need advice about style and fashion personal care options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "negative_iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "contrastive", "text": "need personal care bath and shower, not deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "negative_iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "contrastive", "text": "need bath and shower personal care, not deodorant and antiperspirant"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "action", "text": "buy bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "discovery", "text": "compare style and fashion personal care bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "style and fashion personal care bath and shower overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "action", "text": "book personal care bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "discovery", "text": "personal care bath and shower options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "what is style and fashion bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "learn about bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "bath and shower overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "style and fashion personal care bath and shower basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "discovery", "text": "best personal care bath and shower options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "negative_iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "contrastive", "text": "researching deodorant and antiperspirant personal care, not shaving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "action", "text": "find deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "style and fashion deodorant and antiperspirant guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "style and fashion personal care deodorant and antiperspirant basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "discovery", "text": "compare deodorant and antiperspirant"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "discovery", "text": "which personal care deodorant and antiperspirant is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "learn about deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "vague", "text": "need advice about personal care deodorant and antiperspirant options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "vague", "text": "help me choose style and fashion deodorant and antiperspirant"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "discovery", "text": "top deodorant and antiperspirant in personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "personal care deodorant and antiperspirant basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Oral care", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "researching oral care, not hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "style and fashion personal care oral care overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "learn about oral care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "action", "text": "reserve oral care personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "personal care oral care guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "oral care guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Oral care", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "personal care oral care rather than hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "action", "text": "find personal care oral care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "personal care oral care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "personal care oral care options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "alias", "text": "what is oral care personal care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "vague", "text": "exploring oral care in personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "shaving personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "shaving overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "action", "text": "buy shaving personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "action", "text": "find shaving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "shaving basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "what is personal care shaving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "personal care shaving overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "discovery", "text": "compare shaving personal care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "vague", "text": "need advice about personal care shaving options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "discovery", "text": "best shaving personal care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "discovery", "text": "compare style and fashion shaving"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "vague", "text": "need advice about shaving in personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "best street style style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "which style and fashion street style is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "what is street style"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "researching street style, not designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "street style basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "style and fashion street style options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "street style overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "how does street style work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "street style style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "need street style style and fashion, not high fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "vague", "text": "help me choose style and fashion street style options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "street style style and fashion rather than body art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "vague", "text": "exploring style and fashion street style options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "learn about style and fashion street style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "street style style and fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "street style guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "how does style and fashion street style work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "vague", "text": "help me choose street style in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "how does street style in style and fashion work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "vague", "text": "looking into street style in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "which street style style and fashion is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "how does style and fashion street style options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "street style options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "compare street style in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion in style and fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion style and fashion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "learn about women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "style and fashion women's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "vague", "text": "need advice about style and fashion women's fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "vague", "text": "help me choose style and fashion women's fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "style and fashion women's fashion options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "compare style and fashion women's fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "which style and fashion women's fashion is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "how does women's fashion in style and fashion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion style and fashion overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "top women's fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "top women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "top style and fashion women's fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "how does style and fashion women's fashion work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "vague", "text": "looking into style and fashion women's fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "top women's fashion style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "which women's fashion is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "vague", "text": "need advice about women's fashion in style and fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "what is style and fashion women's fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "what is women's fashion style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "vague", "text": "exploring women's accessories in women's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "top style and fashion women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "what is style and fashion women's fashion women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "women's fashion women's accessories options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "contrastive", "text": "need style and fashion women's fashion women's accessories, not women's shoes and footwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "best women's accessory"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "compare style and fashion women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "what is women's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "how does women's fashion women's accessories options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "what is women's fashion women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "alias", "text": "what is women's accessories women's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "vague", "text": "exploring style and fashion women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "alias", "text": "learn about women's glasses women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "alias", "text": "women's glasse"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "discovery", "text": "best women's accessories women's glasses options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "style and fashion women's fashion women's accessories women's glasses rather than men's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "discovery", "text": "women's glasses women's accessories options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "alias", "text": "women's glasses women's accessories overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "vague", "text": "looking into style and fashion women's glasses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "alias", "text": "women's glasses overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "alias", "text": "learn about women's handbags and wallets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "discovery", "text": "top women's handbags and wallets in women's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "vague", "text": "need advice about women's accessories women's handbags and wallets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "discovery", "text": "which style and fashion women's fashion women's accessories women's handbags and wallets is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "alias", "text": "what is women's handbags and wallet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "alias", "text": "style and fashion women's fashion women's accessories women's handbags and wallets guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "alias", "text": "how does style and fashion women's handbags and wallets work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "alias", "text": "what is women's accessories women's handbags and wallets options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "discovery", "text": "compare women's accessories women's hats and scarves"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "discovery", "text": "top women's hats and scarves women's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "alias", "text": "what is women's hats and scarves in women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "alias", "text": "what is women's hats and scarves women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "action", "text": "book women's hats and scarves"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "discovery", "text": "women's hats and scarves options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "alias", "text": "women's hats and scarves overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "alias", "text": "style and fashion women's fashion women's accessories women's hats and scarves guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "alias", "text": "how does style and fashion women's jewelry and watches work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "vague", "text": "help me choose women's jewelry and watches in women's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "alias", "text": "how does women's accessories women's jewelry and watches options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "discovery", "text": "top women's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "alias", "text": "women's jewelry and watche overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "alias", "text": "learn about style and fashion women's fashion women's accessories women's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "discovery", "text": "top style and fashion women's fashion women's accessories women's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "alias", "text": "what is women's accessories women's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "women's fashion women's clothing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "vague", "text": "looking into style and fashion women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "discovery", "text": "top style and fashion women's fashion women's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "discovery", "text": "compare style and fashion women's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "vague", "text": "exploring women's fashion women's clothing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "vague", "text": "exploring women's clothing in women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "how does style and fashion women's fashion women's clothing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "what is women's fashion women's clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "what is women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "how does women's clothing women's fashion work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "women's fashion women's clothing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "alias", "text": "what is women's clothing women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "discovery", "text": "compare women's business wear women's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "discovery", "text": "compare women's business wear in women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "alias", "text": "women's clothing women's business wear overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "discovery", "text": "best women's clothing women's business wear options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "vague", "text": "exploring style and fashion women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "alias", "text": "learn about style and fashion women's fashion women's clothing women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "alias", "text": "style and fashion women's fashion women's clothing women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "alias", "text": "what is style and fashion women's fashion women's clothing women's business wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "researching women's casual wear women's clothing, not women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "alias", "text": "learn about style and fashion women's fashion women's clothing women's casual wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "vague", "text": "need advice about style and fashion women's casual wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "alias", "text": "style and fashion women's casual wear guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "alias", "text": "how does style and fashion women's fashion women's clothing women's casual wear work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "discovery", "text": "style and fashion women's fashion women's clothing women's casual wear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "discovery", "text": "which women's casual wear is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "discovery", "text": "best style and fashion women's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "discovery", "text": "which style and fashion women's fashion women's clothing women's formal wear is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "vague", "text": "exploring style and fashion women's formal wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "alias", "text": "what is women's formal wear in women's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "alias", "text": "women's formal wear in women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "discovery", "text": "which women's formal wear is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "alias", "text": "women's formal wear women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "alias", "text": "women's formal wear overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "alias", "text": "women's formal wear in women's clothing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "alias", "text": "women's intimates and sleepwear basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "vague", "text": "exploring women's intimates and sleepwear in women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "alias", "text": "women's intimates and sleepwear guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "alias", "text": "style and fashion women's fashion women's clothing women's intimates and sleepwear overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "discovery", "text": "compare style and fashion women's fashion women's clothing women's intimates and sleepwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "alias", "text": "women's intimates and sleepwear in women's clothing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "discovery", "text": "best style and fashion women's fashion women's clothing women's intimates and sleepwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "discovery", "text": "best women's intimates and sleepwear women's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "vague", "text": "help me choose women's clothing women's outerwear options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "contrastive", "text": "researching women's outerwear, not women's formal wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "discovery", "text": "compare style and fashion women's outerwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "alias", "text": "style and fashion women's fashion women's clothing women's outerwear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "alias", "text": "what is style and fashion women's fashion women's clothing women's outerwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "discovery", "text": "best women's clothing women's outerwear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "alias", "text": "women's outerwear basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "prompt_family": "alias", "text": "what is women's outerwear women's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "need women's sportswear, not women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "discovery", "text": "style and fashion women's fashion women's clothing women's sportswear options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "vague", "text": "help me choose women's sportswear in women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "alias", "text": "women's clothing women's sportswear guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "alias", "text": "what is women's sportswear women's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "alias", "text": "women's clothing women's sportswear basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "alias", "text": "what is women's sportswear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "alias", "text": "style and fashion women's sportswear guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "looking for women's shoes and footwear instead of hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "women's shoes and footwear in women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "women's shoes and footwear overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "contrastive", "text": "looking for women's shoes and footwear instead of women's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "need women's shoes and footwear, not hair care"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "contrastive", "text": "need style and fashion women's fashion women's shoes and footwear, not women's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "women's shoes and footwear women's fashion overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "women's fashion women's shoes and footwear guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "discovery", "text": "top women's shoes and footwear in women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "how does women's shoes and footwear work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "vague", "text": "looking into women's shoes and footwear in women's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "style and fashion women's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for technology and computing instead of attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is technology and computing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for technology and computing instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching technology & computing, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "looking into technology guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "exploring tech buying"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "top technology & computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology & computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "need advice about technology guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "how does technology and computing work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need technology and computing, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology guide guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "need advice about technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "software options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology & computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for technology & computing instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "technology & computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "compare device comparison"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "need advice about software options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "compare technology and computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for technology and computing instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "best technology & computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "compare tech buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "looking into tech buying"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need technology and computing, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "learn about technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is device comparison"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching technology and computing, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching technology and computing, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need technology and computing, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "technology and computing rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology and computing basics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "need advice about technology and computing options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "looking into technology and computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "device comparison"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "compare technology guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology & computing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "need advice about tech buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "exploring technology guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "exploring technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "help me choose technology guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is technology and computing guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "exploring technology and computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "looking into software options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "help me choose technology and computing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for technology & computing instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "top technology and computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "technology & computing rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "how does device comparison work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology and computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching technology & computing, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "best technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "learn about technology & computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "technology and computing rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "technology and computing rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for technology & computing instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "how does software options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "which technology & computing is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "top software options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology & computing basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is software options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "help me choose device comparison"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "top device comparison"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "technology and computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "best technology guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "help me choose software options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "artificial intelligence rather than consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "technology and computing artificial intelligence options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "technology and computing artificial intelligence rather than computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "looking for artificial intelligence instead of robotics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "artificial intelligence technology and computing rather than consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "compare technology and computing artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "compare artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "best technology and computing artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "artificial intelligence options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "compare artificial intelligence technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "artificial intelligence technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "what is artificial intelligence technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "how does artificial intelligence technology and computing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "vague", "text": "help me choose technology and computing artificial intelligence options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "technology and computing artificial intelligence"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "vague", "text": "exploring technology and computing artificial intelligence options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "technology and computing artificial intelligence basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "artificial intelligence technology and computing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "how does technology and computing artificial intelligence work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "what is artificial intelligence"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "vague", "text": "help me choose artificial intelligence in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "artificial intelligence in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "how does artificial intelligence in technology and computing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "vague", "text": "looking into technology and computing artificial intelligence options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "top technology and computing augmented reality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "augmented reality technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "best technology and computing augmented reality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "which technology and computing augmented reality is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "which augmented reality technology and computing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "how does augmented reality work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "augmented reality technology and computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "vague", "text": "exploring augmented reality in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "technology and computing augmented reality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "technology and computing augmented reality overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "top augmented reality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "best augmented reality in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "compare augmented reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "learn about augmented reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "augmented reality guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "learn about augmented reality technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "what is technology and computing augmented reality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "vague", "text": "help me choose technology and computing augmented reality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "what is technology and computing augmented reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "technology and computing augmented reality basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "augmented reality in technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "what is augmented reality in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "vague", "text": "looking into technology and computing augmented reality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "vague", "text": "need advice about technology and computing augmented reality options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "looking for computing technology and computing instead of artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "which computing is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "researching computing technology and computing, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "need technology and computing computing, not robotics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "which technology and computing computing is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "looking for technology and computing computing instead of robotics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "top computing in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "learn about technology and computing computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "top technology and computing computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "top computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "computing technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "best technology and computing computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "vague", "text": "need advice about computing in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "compare computing technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "computing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "technology and computing computing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "what is computing technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "what is computing in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "vague", "text": "help me choose technology and computing computing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "learn about computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "how does computing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "computing technology and computing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "alias", "text": "what is technology and computing computing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "computing computer networking guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Networking", "negative_iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "contrastive", "text": "researching computer networking computing, not data storage and warehousing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "computer networking computing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "technology and computing computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "alias", "text": "learn about computing computer networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Networking", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "computer networking rather than computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "discovery", "text": "best computer networking computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "vague", "text": "help me choose computer networking in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "discovery", "text": "best technology and computing computing computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "discovery", "text": "computer networking options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "vague", "text": "exploring computing computer networking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "computer peripherals basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "discovery", "text": "best computing computer peripherals options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "computer peripherals rather than computer networking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "discovery", "text": "compare computing computer peripherals options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "computer peripherals computing rather than computer networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "negative_iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "contrastive", "text": "looking for computer peripheral instead of data storage and warehousing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "what is computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "computer peripherals computing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "discovery", "text": "best computer peripherals computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "vague", "text": "exploring technology and computing computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "computer peripheral"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "vague", "text": "need advice about technology and computing computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "software and application basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "how does technology and computing computing computer software and applications work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "computing computer software and applications basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "learn about software and application"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "looking for software and application instead of computer peripherals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "discovery", "text": "compare computing computer software and applications options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "discovery", "text": "compare technology and computing computing computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "vague", "text": "looking into computing computer software and applications options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "vague", "text": "looking into computer software and applications in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "discovery", "text": "which computing computer software and applications is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "computing computer software and applications rather than computer networking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "discovery", "text": "best technology and computing computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "discovery", "text": "which 3d graphics is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "action", "text": "book computer software and applications 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "alias", "text": "computer software and applications 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "vague", "text": "looking into 3d graphics in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "alias", "text": "learn about computer software and applications 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "alias", "text": "technology and computing computing computer software and applications 3d graphics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "alias", "text": "computer software and applications 3d graphics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "alias", "text": "3-d graphic overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "action", "text": "get computer software and applications antivirus software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "action", "text": "buy computer software and applications antivirus software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "discovery", "text": "which technology and computing computing computer software and applications antivirus software is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "alias", "text": "how does antivirus software work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "discovery", "text": "compare computer software and applications antivirus software options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "alias", "text": "antivirus software computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "alias", "text": "computer software and applications antivirus software options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "alias", "text": "technology and computing computing computer software and applications antivirus software guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "alias", "text": "learn about browsers computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "alias", "text": "browsers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "discovery", "text": "compare browsers computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "discovery", "text": "compare technology and computing browsers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "discovery", "text": "top browsers computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "alias", "text": "browsers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "alias", "text": "technology and computing computing computer software and applications browsers basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "vague", "text": "exploring browsers in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "alias", "text": "computer software and applications computer animation overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "alias", "text": "technology and computing computing computer software and applications computer animation overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "vague", "text": "looking into technology and computing computer animation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "alias", "text": "how does computer software and applications computer animation work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "discovery", "text": "best computer software and applications computer animation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "action", "text": "book computer animation computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "discovery", "text": "technology and computing computing computer software and applications computer animation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "action", "text": "find computer animation computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "alias", "text": "database guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "action", "text": "book technology and computing computing computer software and applications databases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "alias", "text": "how does databases computer software and applications work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "discovery", "text": "which databases is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "researching databases, not 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "alias", "text": "database basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "alias", "text": "learn about databases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "alias", "text": "databases computer software and applications guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "action", "text": "get technology and computing computing computer software and applications desktop publishing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "vague", "text": "exploring technology and computing desktop publishing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "discovery", "text": "best desktop publishing in computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "alias", "text": "what is technology and computing desktop publishing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "alias", "text": "what is desktop publishing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "alias", "text": "computer software and applications desktop publishing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "alias", "text": "learn about computer software and applications desktop publishing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "alias", "text": "computer software and applications desktop publishing options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "alias", "text": "digital audio in computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "vague", "text": "looking into technology and computing digital audio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "alias", "text": "learn about digital audio computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "action", "text": "get computer software and applications digital audio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "action", "text": "find computer software and applications digital audio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "alias", "text": "how does digital audio work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "alias", "text": "what is technology and computing digital audio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "discovery", "text": "best digital audio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "discovery", "text": "best graphics software computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "alias", "text": "technology and computing computing computer software and applications graphics software guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "discovery", "text": "which graphics software is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "discovery", "text": "computer software and applications graphics software options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "alias", "text": "graphics software guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "alias", "text": "technology and computing computing computer software and applications graphics software overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "alias", "text": "computer software and applications graphics software basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "alias", "text": "learn about technology and computing computing computer software and applications graphics software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "action", "text": "buy technology and computing computing computer software and applications operating systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "alias", "text": "how does operating systems work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "discovery", "text": "compare operating system"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "alias", "text": "operating systems computer software and applications overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "alias", "text": "operating systems in computer software and applications guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "discovery", "text": "top operating system"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "alias", "text": "technology and computing computing computer software and applications operating systems guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "discovery", "text": "which technology and computing computing computer software and applications operating systems is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "vague", "text": "exploring photo editing software in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "action", "text": "get photo editing software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "alias", "text": "learn about technology and computing computing computer software and applications photo editing software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "alias", "text": "what is technology and computing photo editing software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "discovery", "text": "top photo editing software in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "alias", "text": "computer software and applications photo editing software guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "alias", "text": "what is photo editing software computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "alias", "text": "what is photo editing software in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "action", "text": "find computer software and applications shareware and freeware"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "alias", "text": "computer software and applications shareware and freeware overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "discovery", "text": "which computer software and applications shareware and freeware is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "action", "text": "book computer software and applications shareware and freeware"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "alias", "text": "technology and computing computing computer software and applications shareware and freeware basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "alias", "text": "how does shareware and freeware in computer software and applications work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "alias", "text": "what is computer software and applications shareware and freeware"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "alias", "text": "computer software and applications shareware and freeware basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "action", "text": "buy video software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "alias", "text": "how does computer software and applications video software options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "discovery", "text": "computer software and applications video software options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "vague", "text": "help me choose video software in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "action", "text": "book video software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "alias", "text": "technology and computing computing computer software and applications video software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "alias", "text": "video software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "discovery", "text": "best video software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "action", "text": "find computer software and applications web conferencing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "vague", "text": "need advice about web conferencing in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "alias", "text": "learn about technology and computing computing computer software and applications web conferencing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "alias", "text": "what is web conferencing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "discovery", "text": "compare computer software and applications web conferencing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "action", "text": "buy technology and computing computing computer software and applications web conferencing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "alias", "text": "computer software and applications web conferencing options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "alias", "text": "web conferencing in computer software and applications guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "need data storage and warehousing computing, not computer peripherals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "discovery", "text": "top data storage and warehousing in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "data storage and warehousing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "need computing data storage and warehousing, not computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "discovery", "text": "compare technology and computing computing data storage and warehousing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "researching data storage and warehousing computing, not software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "learn about technology and computing computing data storage and warehousing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "discovery", "text": "data storage and warehousing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "what is computing data storage and warehousing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "researching computing data storage and warehousing, not computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "discovery", "text": "top data storage and warehousing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "vague", "text": "looking into data storage and warehousing in computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Desktops", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "looking for desktop instead of computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "gaming desktops"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "what is desktop pcs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "discovery", "text": "compare computing desktops options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "gaming desktops basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "desktops basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "action", "text": "buy computing desktops"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "how does computing desktops options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "discovery", "text": "technology and computing computing desktops options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "discovery", "text": "compare home office desktops"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "learn about technology and computing computing desktops"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "alias", "text": "desktops overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "discovery", "text": "top information and network security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "discovery", "text": "compare information and network security computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "technology and computing computing information and network security guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "how does technology and computing information and network security work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "discovery", "text": "best computing information and network security options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Information and Network Security", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "researching information and network security computing, not computer peripherals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "how does technology and computing computing information and network security work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "technology and computing computing information and network security overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "learn about computing information and network security"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "computing information and network security basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "vague", "text": "exploring information and network security in computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "vague", "text": "help me choose technology and computing information and network security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "computing internet options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "researching computing internet, not computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "what is technology and computing computing internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "learn about internet computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "vague", "text": "exploring technology and computing internet"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "internet in computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "vague", "text": "need advice about internet in computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "discovery", "text": "compare computing internet options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "technology and computing computing internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "discovery", "text": "computing internet options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "discovery", "text": "top internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "technology and computing computing internet basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need cloud computing internet, not 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "discovery", "text": "compare cloud computing in internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "discovery", "text": "technology and computing computing internet cloud computing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "alias", "text": "learn about cloud computing internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "alias", "text": "cloud computing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "alias", "text": "internet cloud computing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "alias", "text": "technology and computing computing internet cloud computing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "vague", "text": "exploring internet cloud computing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "alias", "text": "how does email in internet work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Email", "negative_iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "contrastive", "text": "researching email, not it and internet support"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "alias", "text": "email"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "vague", "text": "exploring technology and computing email"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "alias", "text": "technology and computing computing internet email basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "discovery", "text": "compare internet email"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "discovery", "text": "compare email"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "discovery", "text": "compare email internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "alias", "text": "how does internet for beginner work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "alias", "text": "technology and computing computing internet internet for beginners guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "vague", "text": "need advice about technology and computing internet for beginners"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "alias", "text": "what is internet for beginner"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "looking for internet for beginner instead of 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "discovery", "text": "top internet for beginner"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "alias", "text": "internet for beginners overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "alias", "text": "internet for beginners in internet guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "alias", "text": "technology and computing computing internet internet of things"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "alias", "text": "technology and computing internet of things guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "negative_iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "contrastive", "text": "researching internet of things, not cloud computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "discovery", "text": "internet internet of things options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "alias", "text": "internet of things guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "discovery", "text": "compare internet of things internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "discovery", "text": "which internet of thing is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "vague", "text": "exploring internet internet of things options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "discovery", "text": "internet it and internet support options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "discovery", "text": "top internet it and internet support"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "negative_iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "contrastive", "text": "need it and internet support, not cloud computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "negative_iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "contrastive", "text": "researching it and internet support, not internet for beginners"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "alias", "text": "technology and computing it and internet support guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "alias", "text": "technology and computing computing internet it and internet support basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "alias", "text": "what is technology and computing it and internet support"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "discovery", "text": "compare internet it and internet support options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Search", "negative_iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "contrastive", "text": "need search internet, not it and internet support"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Search", "negative_iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "contrastive", "text": "internet search rather than cloud computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "discovery", "text": "compare search in internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "discovery", "text": "which technology and computing computing internet search is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "alias", "text": "how does search in internet work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "discovery", "text": "compare search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "alias", "text": "how does technology and computing search work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "alias", "text": "technology and computing computing internet search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "alias", "text": "social networking guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "negative_iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "contrastive", "text": "looking for social networking instead of it and internet support"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "negative_iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "contrastive", "text": "looking for internet social networking instead of email"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "discovery", "text": "best technology and computing social networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "negative_iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "contrastive", "text": "researching social networking internet, not cloud computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "alias", "text": "what is social networking internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "alias", "text": "how does technology and computing computing internet social networking work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "discovery", "text": "which social networking is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "negative_iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "contrastive", "text": "need internet web design and html, not email"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "alias", "text": "internet web design and html guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "discovery", "text": "compare web design and html internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "alias", "text": "learn about web design and html"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "vague", "text": "exploring technology and computing web design and html"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "alias", "text": "how does technology and computing computing internet web design and html work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "alias", "text": "learn about internet web design and html"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "alias", "text": "how does internet web design and html options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "alias", "text": "what is web development internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "discovery", "text": "which web development internet is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "negative_iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "contrastive", "text": "need internet web development, not it and internet support"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "vague", "text": "need advice about internet web development options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "negative_iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "contrastive", "text": "researching technology and computing computing internet web development, not email"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "discovery", "text": "best web development internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "alias", "text": "what is technology and computing computing internet web development"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "alias", "text": "what is web development"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "action", "text": "reserve website hosting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "action", "text": "get hosting provider"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "alias", "text": "what is technology and computing computing internet web hosting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "alias", "text": "technology and computing web hosting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "alias", "text": "web hosting internet basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "vague", "text": "need advice about technology and computing web hosting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "discovery", "text": "compare hosting provider"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "discovery", "text": "top web hosting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "vague", "text": "need advice about laptops in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "discovery", "text": "which laptops is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "action", "text": "get computing laptops"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "laptops computing basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "discovery", "text": "compare laptops in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "how does computing laptops work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "action", "text": "get labtops"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "technology and computing laptops"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "action", "text": "get laptop"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "discovery", "text": "which laptops computing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "discovery", "text": "top portable computers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "vague", "text": "exploring laptops in computing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Programming Languages", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "need programming language, not software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "vague", "text": "exploring programming languages in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "programming languages computing guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Programming Languages", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "looking for computing programming languages instead of software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "programming languages overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Programming Languages", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "looking for programming languages instead of computer peripherals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "what is programming languages in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "technology and computing computing programming languages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "programming languages guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "discovery", "text": "top computing programming languages options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "what is programming language"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "vague", "text": "exploring technology and computing programming languages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "need consumer electronics, not computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "need consumer electronics technology and computing, not augmented reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "consumer electronics technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "what is technology and computing consumer electronics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "consumer electronics technology and computing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "learn about consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "top consumer electronic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "how does consumer electronics technology and computing work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "technology and computing consumer electronics rather than artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "consumer electronics technology and computing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "best consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "technology and computing consumer electronics basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "how does consumer electronics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "consumer electronic options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "consumer electronics technology and computing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "consumer electronics overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "best consumer electronic"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "vague", "text": "looking into technology and computing consumer electronics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "compare technology and computing consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "vague", "text": "exploring technology and computing consumer electronics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "vague", "text": "looking into consumer electronics in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "top consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "compare consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "vague", "text": "help me choose technology and computing consumer electronics options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "cameras and camcorders rather than home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "researching cameras and camcorders, not computer networking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "cameras and camcorder"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "discovery", "text": "which technology and computing consumer electronics cameras and camcorders is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "discovery", "text": "top cameras and camcorder"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "discovery", "text": "cameras and camcorders consumer electronics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "learn about consumer electronics cameras and camcorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "how does consumer electronics cameras and camcorders work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "discovery", "text": "compare cameras and camcorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "how does cameras and camcorders in consumer electronics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "vague", "text": "help me choose cameras and camcorders in consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "vague", "text": "need advice about cameras and camcorders in consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "negative_iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "contrastive", "text": "need consumer electronics home entertainment systems, not cameras and camcorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "discovery", "text": "compare home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "home entertainment systems in consumer electronics guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "discovery", "text": "home entertainment systems options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "discovery", "text": "compare technology and computing home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "vague", "text": "help me choose home entertainment systems in consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "vague", "text": "help me choose technology and computing home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "negative_iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "contrastive", "text": "looking for home entertainment system instead of tablets and e-readers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "home entertainment system basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "learn about consumer electronics home entertainment systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "how does home entertainment systems work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "discovery", "text": "compare home entertainment systems in consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "how does technology and computing smartphones work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "learn about technology and computing consumer electronics smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "what is technology and computing consumer electronics smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "discovery", "text": "compare smartphone"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "how does smartphones consumer electronics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "action", "text": "get camera phones"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "vague", "text": "need advice about consumer electronics smartphones options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "what is smartphones"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "looking for camera phones instead of home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "vague", "text": "exploring smartphones in consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "discovery", "text": "which android phones is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "discovery", "text": "compare smartphones in consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "learn about tablets and e-readers consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "negative_iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "contrastive", "text": "need tablets and e-reader, not smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "discovery", "text": "best tablets and e-readers consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "negative_iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "contrastive", "text": "need tablets and e-reader, not cameras and camcorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "discovery", "text": "best tablets and e-readers in consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "how does tablets and e-readers in consumer electronics work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "tablets and e-readers basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "how does consumer electronics tablets and e-readers work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "vague", "text": "help me choose consumer electronics tablets and e-readers options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "tablets and e-reader"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "discovery", "text": "compare tablets and e-readers consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "alias", "text": "tablets and ereaders guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "researching consumer electronics wearable technology, not home entertainment systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "consumer electronics wearable technology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "vague", "text": "exploring consumer electronics wearable technology options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "consumer electronics wearable technology guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "discovery", "text": "best technology and computing wearable technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "consumer electronics wearable technology basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "discovery", "text": "best consumer electronics wearable technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "learn about wearable technology consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "negative_iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "contrastive", "text": "researching consumer electronics wearable technology, not cameras and camcorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "researching wearable technology, not home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "vague", "text": "help me choose technology and computing wearable technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "what is wearable technology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "compare robotics in technology and computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "robotic rather than augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "need robotic, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "robotic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "what is robotics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "top technology and computing robotics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "what is robotics technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "robotics technology and computing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "top technology and computing robotics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "which robotic is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "best robotics in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "which robotics is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "vague", "text": "exploring robotics in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "technology and computing robotics options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "how does robotics technology and computing work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "robotics overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "vague", "text": "exploring technology and computing robotics options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "robotics basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "what is robotics in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "compare robotics technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "learn about robotics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "vague", "text": "need advice about technology and computing robotics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "top robotics in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "vague", "text": "help me choose robotics in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "technology and computing virtual reality options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "virtual reality in technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "vague", "text": "looking into virtual reality in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "top technology and computing virtual reality options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "researching technology and computing virtual reality, not consumer electronics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "top technology and computing virtual reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "top virtual reality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "best virtual reality in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "what is virtual reality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "what is virtual reality in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "technology and computing virtual reality basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "best technology and computing virtual reality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "what is technology and computing virtual reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "technology and computing virtual reality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "virtual reality in technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "discovery", "text": "which virtual reality technology and computing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "virtual reality technology and computing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "virtual reality technology and computing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "technology and computing virtual reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "what is virtual reality technology and computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "how does virtual reality technology and computing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "vague", "text": "exploring technology and computing virtual reality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "vague", "text": "need advice about technology and computing virtual reality options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "vague", "text": "exploring virtual reality in technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "compare trip planning"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for travel instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "top hotel booking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for travel instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "top trip planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "exploring trip planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "what is hotel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "best places to stay"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "what is travel options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "travel rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "learn about travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "what is places to stay"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need travel, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching travel, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "what is travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "help me choose trip planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "travel basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "exploring hotel booking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for travel instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "how does hotel booking work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "looking into trip planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "travel guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need travel, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "trip planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "how does places to stay work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "top travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "places to stay"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "travel rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "trip planning guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "looking into travel guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "looking into travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "places to stay guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "compare places to stay"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "compare travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "what is trip planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "best hotel booking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need travel, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "help me choose hotel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "need advice about travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "best travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "hotel booking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching travel, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "how does travel options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "hotel booking guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "travel rather than attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "researching travel accessory, not travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "travel travel accessories rather than travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "compare travel accessories in travel"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "researching travel accessories, not travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "travel accessories rather than travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "vague", "text": "looking into travel accessories in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel accessories travel overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "compare travel accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "compare travel accessory"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel travel accessories"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "travel accessory rather than travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel accessory guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "top travel accessory"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "best travel travel accessories options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "top travel accessories travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "best travel accessory"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "best travel accessories travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel accessories basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel accessories in travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel accessory"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel accessories travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "discovery", "text": "compare travel travel accessories options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "vague", "text": "need advice about travel accessories in travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "vague", "text": "looking into travel travel accessories options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel location guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel locations overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "compare travel locations travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "travel location options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel location basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "contrastive", "text": "need travel locations, not travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "vague", "text": "need advice about travel travel locations options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "contrastive", "text": "researching travel travel locations, not travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "compare travel locations in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel travel locations guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "how does travel locations in travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel location"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel locations travel basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "best travel locations in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel locations travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel location overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "which travel location is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "learn about travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "compare travel travel locations options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "top travel travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "top travel locations travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "discovery", "text": "best travel location"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "vague", "text": "exploring travel travel locations options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "vague", "text": "exploring travel locations in travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Africa Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "looking for travel locations africa travel instead of australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "vague", "text": "looking into africa travel in travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "how does travel travel locations africa travel work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Africa Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "researching travel locations africa travel, not australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "discovery", "text": "top travel locations africa travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "learn about africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "learn about africa travel travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "travel locations africa travel basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "africa travel in travel locations guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "what is africa travel in travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "discovery", "text": "best travel locations africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "discovery", "text": "compare travel locations africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Asia Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "researching asia travel, not australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "discovery", "text": "best asia travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Asia Travel", "negative_iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "contrastive", "text": "asia travel travel locations rather than europe travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Asia Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "asia travel travel locations rather than australia and oceania travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "travel locations asia travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "discovery", "text": "best travel travel locations asia travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "discovery", "text": "top asia travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "discovery", "text": "which asia travel travel locations is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "learn about asia travel travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "vague", "text": "need advice about travel asia travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "what is travel locations asia travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "asia travel travel locations guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "negative_iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "contrastive", "text": "travel locations australia and oceania travel rather than europe travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "discovery", "text": "compare australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "vague", "text": "exploring travel locations australia and oceania travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "what is australia and oceania travel in travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "travel travel locations australia and oceania travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "australia and oceania travel basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "negative_iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "contrastive", "text": "researching australia and oceania travel, not europe travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "australia and oceania travel travel locations rather than africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "how does travel travel locations australia and oceania travel work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "discovery", "text": "top travel locations australia and oceania travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "discovery", "text": "top australia and oceania travel travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "discovery", "text": "best australia and oceania travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "travel europe travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "travel locations europe travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "europe travel basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Europe Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "need europe travel, not asia travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "what is travel travel locations europe travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "how does europe travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "how does travel locations europe travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "learn about travel locations europe travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "discovery", "text": "compare travel locations europe travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "discovery", "text": "compare travel travel locations europe travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "vague", "text": "help me choose europe travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "vague", "text": "help me choose travel locations europe travel options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > North America Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "researching north america travel, not asia travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "discovery", "text": "compare travel travel locations north america travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "vague", "text": "need advice about travel locations north america travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "discovery", "text": "which travel travel locations north america travel is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "vague", "text": "need advice about north america travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "travel north america travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "vague", "text": "need advice about travel north america travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "north america travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "how does travel locations north america travel options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > North America Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "need north america travel travel locations, not asia travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "travel locations north america travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "discovery", "text": "best travel locations north america travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "polar travel travel locations basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "travel locations polar travel basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "discovery", "text": "best polar travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Polar Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "polar travel rather than australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "vague", "text": "exploring polar travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Polar Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for polar travel travel locations instead of africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "discovery", "text": "best travel travel locations polar travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "discovery", "text": "compare travel polar travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "learn about polar travel travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "polar travel overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "what is polar travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "polar travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "south america travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "what is south america travel in travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "discovery", "text": "compare south america travel travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > South America Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "looking for south america travel instead of asia travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "travel south america travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > South America Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need travel locations south america travel, not africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "travel locations south america travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "south america travel overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "how does travel locations south america travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "discovery", "text": "compare travel travel locations south america travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "vague", "text": "help me choose south america travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "vague", "text": "help me choose travel locations south america travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel preparation and advice travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel travel preparation and advice basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "compare travel travel preparation and advice options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "looking for travel travel preparation and advice instead of travel accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "how does travel preparation and advice travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "travel preparation and advice options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel preparation and advice guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "researching travel preparation and advice, not travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel travel preparation and advice overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "need travel preparation and advice travel, not travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "travel preparation and advice travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "which travel preparation and advice travel is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "best travel travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "how does travel preparation and advice in travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "top travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "top travel preparation and advice in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "how does travel preparation and advice work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "learn about travel travel preparation and advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel preparation and advice travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "vague", "text": "need advice about travel preparation and advice in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel preparation and advice overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "how does travel travel preparation and advice work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "vague", "text": "need advice about travel travel preparation and advice options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "vague", "text": "help me choose travel preparation and advice in travel"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "researching travel type travel, not travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "contrastive", "text": "need travel type travel, not travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "vague", "text": "need advice about travel type in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "travel type basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "how does travel travel type work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "top travel type in travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "how does travel type in travel work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "vague", "text": "need advice about travel travel type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "top travel type"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "looking for travel type instead of travel accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "which travel travel type is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "best travel travel type options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "contrastive", "text": "travel type rather than travel preparation and advice"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "researching travel travel type, not travel accessories"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "researching travel type, not travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "learn about travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "best travel type travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "travel type travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "what is travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "how does travel travel type options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "top travel travel type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "travel travel type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "travel type travel basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "vague", "text": "exploring travel travel type options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Adventure Travel", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "looking for adventure travel instead of beach travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Adventure Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "looking for travel travel type adventure travel instead of air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "discovery", "text": "best adventure travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "discovery", "text": "best travel adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "adventure travel travel type overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "vague", "text": "help me choose travel type adventure travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "discovery", "text": "compare travel adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "how does travel travel type adventure travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "learn about travel type adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "how does adventure travel travel type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "learn about adventure travel travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "alias", "text": "adventure travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Air Travel", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "looking for air travel instead of adventure travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "vague", "text": "need advice about travel air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "discovery", "text": "which air travel is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "discovery", "text": "best travel air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "travel type air travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "what is travel type air travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "discovery", "text": "which air travel travel type is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "how does travel air travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "learn about air travel travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "travel travel type air travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "travel air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "alias", "text": "how does air travel in travel type work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Beach Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "researching beach travel, not air travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Beach Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for beach travel travel type instead of africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "discovery", "text": "best beach travel in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "discovery", "text": "travel type beach travel options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Beach Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "travel travel type beach travel rather than air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "how does beach travel travel type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "how does travel type beach travel work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "travel type beach travel options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "how does beach travel in travel type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "alias", "text": "how does beach travel work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "vague", "text": "help me choose travel type beach travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "vague", "text": "exploring travel type beach travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "discovery", "text": "best travel type bed and breakfasts options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "bed and breakfasts travel type rather than adventure travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "vague", "text": "exploring travel type bed and breakfasts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "travel type bed and breakfasts overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "discovery", "text": "which bed and breakfasts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "discovery", "text": "which bed and breakfasts travel type is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "vague", "text": "help me choose travel type bed and breakfasts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "discovery", "text": "best travel travel type bed and breakfasts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "travel bed and breakfasts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "learn about travel type bed and breakfasts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "bed & breakfast basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "travel travel type bed and breakfasts basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Budget Travel", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "budget travel travel type rather than beach travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Budget Travel", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "need travel travel type budget travel, not adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "discovery", "text": "best budget travel travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "travel travel type budget travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "how does budget travel travel type work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "vague", "text": "looking into travel type budget travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "how does budget travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "budget travel travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "discovery", "text": "top budget travel travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "travel type budget travel options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "discovery", "text": "compare travel type budget travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "discovery", "text": "compare travel type budget travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "discovery", "text": "best business travel travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "travel type business travel overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Business Travel", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "travel travel type business travel rather than beach travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "travel travel type business travel basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "discovery", "text": "compare travel type business travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "business travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Business Travel", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "business travel rather than adventure travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Business Travel", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "researching travel travel type business travel, not adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "how does travel travel type business travel work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "how does travel type business travel work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "vague", "text": "need advice about business travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "vague", "text": "exploring business travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "vague", "text": "need advice about camping in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "camping basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "travel type camping guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Camping", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "travel travel type camping rather than africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Camping", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "looking for travel travel type camping instead of air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "discovery", "text": "top travel type camping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "discovery", "text": "compare travel type camping options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "how does camping in travel type work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "discovery", "text": "which camping is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "camping in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "vague", "text": "looking into camping in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "how does travel type camping work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Cruises", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need cruises, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Cruises", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "looking for cruises travel type instead of air travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Cruises", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "need cruise, not beach travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "vague", "text": "need advice about travel cruises"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Cruises", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "researching cruises, not beach travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "travel cruises guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "what is travel travel type cruises"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "discovery", "text": "which travel travel type cruises is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "what is travel type cruises options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "discovery", "text": "travel type cruises options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "travel type cruises guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "alias", "text": "learn about travel type cruises"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Day Trips", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "need day trips travel type, not beach travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "travel day trips"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "how does day trips work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Day Trips", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "looking for day trip instead of air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "vague", "text": "need advice about travel day trips"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "travel type day trips overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "vague", "text": "looking into day trips in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "travel travel type day trips guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Day Trips", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need day trips travel type, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "what is travel type day trips options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "discovery", "text": "best travel day trips"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "travel travel type day trips"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Family Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need family travel travel type, not africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "what is family travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "travel type family travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "discovery", "text": "compare family travel travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "family travel in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "family travel travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "discovery", "text": "compare travel travel type family travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "discovery", "text": "top travel type family travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "discovery", "text": "top travel travel type family travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "discovery", "text": "compare family travel in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "travel travel type family travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "alias", "text": "travel travel type family travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "travel travel type honeymoons and getaways overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "learn about honeymoons and getaways"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "discovery", "text": "which travel type honeymoons and getaways is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "honeymoons and getaways travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "how does honeymoons and getaways in travel type work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "honeymoons and getaways in travel type guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "discovery", "text": "top travel travel type honeymoons and getaways"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "researching honeymoons and getaways, not africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "vague", "text": "exploring travel type honeymoons and getaways options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "how does honeymoons and getaway work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "discovery", "text": "compare travel travel type honeymoons and getaways"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "alias", "text": "travel travel type honeymoons and getaways guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Hotels and Motels", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "researching hotel stay, not air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "discovery", "text": "best hotel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "discovery", "text": "top hotels and motels in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "hotel stay"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "learn about travel type hotels and motels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "need a hotel in chicago for two nights"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "discovery", "text": "compare hotels and motels in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "action", "text": "find motel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "hotels and motels in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "action", "text": "book travel type hotels and motels"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "how does hotels and motels in travel type work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "vague", "text": "exploring travel type hotels and motels options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "travel travel type rail travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "vague", "text": "help me choose travel type rail travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "discovery", "text": "which rail travel travel type is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "discovery", "text": "top rail travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Rail Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "need rail travel travel type, not air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "travel rail travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "rail travel basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "learn about rail travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "rail travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "vague", "text": "need advice about rail travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "discovery", "text": "compare travel rail travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "discovery", "text": "compare travel type rail travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "road trips in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "what is travel road trips"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Road Trips", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "need road trips travel type, not beach travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "travel travel type road trips"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "vague", "text": "help me choose travel road trips"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "discovery", "text": "road trips options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Road Trips", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "need road trip, not adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "discovery", "text": "compare road trips travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "discovery", "text": "top travel road trips"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "road trips basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "travel type road trips overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "vague", "text": "exploring travel type road trips options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Spas", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need spa, not africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "travel travel type spas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "vague", "text": "need advice about spas in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "discovery", "text": "best travel type spas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "what is spa"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "vague", "text": "looking into travel type spas options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Spas", "negative_iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "contrastive", "text": "researching spa, not adventure travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "travel travel type spas basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "spas travel type guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "discovery", "text": "compare spas in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "discovery", "text": "best travel travel type spas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "discovery", "text": "which spas is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for video gaming instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching video gaming, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching video gaming, not attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "help me choose video gaming guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "exploring video gaming options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "video gaming rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "video gaming overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "discovery", "text": "video gaming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "how does video gaming work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "need advice about video gaming options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need video gaming, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "discovery", "text": "which video gaming is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "exploring video gaming guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "looking into video gaming guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "what is video gaming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "video gaming"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need video gaming, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "discovery", "text": "best video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "video gaming guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "what is video gaming"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "help me choose video gaming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "discovery", "text": "compare video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "alias", "text": "video gaming basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for video gaming instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "how does console games video gaming work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "best console games in video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "researching console games video gaming, not esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "what is video gaming console games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "video gaming console games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "best console games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "how does console games in video gaming work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "best console game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "video gaming console games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "console games video gaming overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "console game basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "console games in video gaming guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "learn about console game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "console games video gaming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "which console game is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "discovery", "text": "compare video gaming console games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "console games basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "video gaming console games options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "video gaming console games basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "vague", "text": "looking into video gaming console games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "video gaming console games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "console games overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "vague", "text": "need advice about video gaming console games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "vague", "text": "need advice about console games in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "esports video gaming overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "need video gaming esports, not pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "esports video gaming rather than console games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "learn about esports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "compare video gaming esports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "how does esports video gaming work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "which video gaming esports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "best esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "esport options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "esports in video gaming guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "what is esports in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "top video gaming esports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "vague", "text": "need advice about esports in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "top esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "discovery", "text": "compare esport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "esports basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "video gaming esports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "esport guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "how does esports in video gaming work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "what is esports video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "how does video gaming esports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "vague", "text": "exploring esports in video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "vague", "text": "looking into esports in video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "mobile games rather than esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "which video gaming mobile games is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "vague", "text": "exploring video gaming mobile games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "vague", "text": "exploring mobile games in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile games guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "what is video gaming mobile games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile game guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "best video gaming mobile games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile games in video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "top mobile games in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "top video gaming mobile games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "best mobile games video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile games overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "video gaming mobile games guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "video gaming mobile games options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "learn about mobile games video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile games in video gaming guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "alias", "text": "mobile game overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "compare video gaming mobile games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "vague", "text": "looking into mobile games in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "compare mobile games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "which mobile games is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "vague", "text": "need advice about mobile games in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "what is video gaming pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "researching pc games, not mobile games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "need pc games, not esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "video gaming pc games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "compare pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "video gaming pc games rather than esports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "looking for pc game instead of video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "best video gaming pc games options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "looking for video gaming pc games instead of video game genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "video gaming pc games rather than console games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "vague", "text": "help me choose video gaming pc games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "what is video gaming pc games options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "looking for pc game instead of esports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "how does pc games in video gaming work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "how does pc games video gaming work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "video gaming pc games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "compare pc games video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "compare pc games in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "pc games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "how does video gaming pc games work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "pc games video gaming overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "compare pc game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "vague", "text": "help me choose pc games in video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "vague", "text": "exploring pc games in video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "video game genre rather than console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "need video gaming video game genres, not mobile games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "top video game genres video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "best video game genres video gaming"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "researching video gaming video game genres, not console games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "how does video game genres in video gaming work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video game genre basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video game genres video gaming basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video game genre guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video gaming video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "which video game genres is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "what is video gaming video game genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "how does video gaming video game genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "vague", "text": "help me choose video gaming video game genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "compare video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "compare video gaming video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video game genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "what is video game genres video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video game genres video gaming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "vague", "text": "need advice about video game genres in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "what is video game genre"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "vague", "text": "help me choose video game genres in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "compare video game genre"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "best video game genres in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "what is action video game"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for action video games instead of action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "researching action video game, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "discovery", "text": "compare video game genres action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "action video games rather than action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "learn about action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "discovery", "text": "top video game genres action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "how does video gaming video game genres action video games work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "discovery", "text": "top video game genres action video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "action video games in video game genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "alias", "text": "action video game guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "contrastive", "text": "action-adventure video games rather than adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "discovery", "text": "top video game genres action-adventure video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "video gaming action-adventure video games guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "vague", "text": "exploring action-adventure video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "what is action-adventure video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "vague", "text": "exploring video gaming action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "discovery", "text": "top action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "learn about action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "video game genres action-adventure video games options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "video gaming video game genres action-adventure video games overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "action-adventure video games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "alias", "text": "action-adventure video game"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "contrastive", "text": "looking for adult video games instead of adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "adult video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "discovery", "text": "compare video gaming video game genres adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "discovery", "text": "compare adult video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "adult video games video game genres rather than action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "what is video gaming adult video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "vague", "text": "looking into video gaming adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "adult video games video game genres rather than action video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "how does video game genres adult video games options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "vague", "text": "need advice about video game genres adult video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "video gaming adult video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "alias", "text": "video game genres adult video games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "what is adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "looking for adventure video games video game genres instead of action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for adventure video games video game genres instead of action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "researching adventure video games, not action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "discovery", "text": "video game genres adventure video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "discovery", "text": "top adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "how does adventure video games in video game genres work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "what is video game genres adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "vague", "text": "help me choose video game genres adventure video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "discovery", "text": "best video game genres adventure video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "adventure video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "alias", "text": "how does video game genres adventure video games work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "discovery", "text": "compare video game genres casino and gambling video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "what is video game genres casino and gambling video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "video game genres casino and gambling video games overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "looking for casino and gambling video games instead of action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "discovery", "text": "compare casino and gambling video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "vague", "text": "help me choose casino and gambling video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "video game genres casino and gambling video games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "discovery", "text": "which casino and gambling video games is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "discovery", "text": "top video game genres casino and gambling video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "casino and gambling video game basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "discovery", "text": "video gaming video game genres casino and gambling video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "vague", "text": "exploring video gaming casino and gambling video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "how does casual games work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "casual games in video game genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "how does video game genres casual games options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "casual game rather than action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "researching casual game, not adult video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "vague", "text": "help me choose video game genres casual games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "learn about casual games video game genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "looking for casual game instead of action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "discovery", "text": "best video game genres casual games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "discovery", "text": "top video game genres casual games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "discovery", "text": "video game genres casual games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "discovery", "text": "top video gaming video game genres casual games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "looking for educational video game instead of action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "looking for educational video games video game genres instead of action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "researching educational video games, not action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "educational video games video game genres rather than action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "vague", "text": "looking into educational video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "educational video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "how does video game genres educational video games work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "educational video game basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "learn about video game genres educational video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "discovery", "text": "best educational video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "discovery", "text": "educational video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "discovery", "text": "compare video gaming educational video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "exercise and fitness video games video game genres rather than action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "looking for exercise and fitness video games video game genres instead of adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "discovery", "text": "exercise and fitness video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "discovery", "text": "best video game genres exercise and fitness video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "exercise and fitness video games video game genres basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need exercise and fitness video games, not adult video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "vague", "text": "exploring video game genres exercise and fitness video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "exercise and fitness video games video game genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "learn about exercise and fitness video game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "how does exercise and fitness video game work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "vague", "text": "help me choose video gaming exercise and fitness video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "video gaming exercise and fitness video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "video gaming video game genres family video games overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "need family video games, not action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for family video games video game genres instead of action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "what is family video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "vague", "text": "looking into video game genres family video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "discovery", "text": "top family video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "how does video game genres family video games work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "family video game rather than action video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "vague", "text": "need advice about family video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "discovery", "text": "family video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "video gaming family video games guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "vague", "text": "exploring video game genres family video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "horror video games video game genres basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need horror video game, not action video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "what is video gaming horror video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "how does video gaming video game genres horror video games work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "horror video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "horror video game guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "what is horror video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "discovery", "text": "best horror video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "horror video games guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "researching horror video games, not action video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "vague", "text": "exploring video game genres horror video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "discovery", "text": "compare horror video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "discovery", "text": "compare video gaming mmos"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "video gaming mmos guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "mmo overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "discovery", "text": "top mmo"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "vague", "text": "looking into mmos in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "what is mmos"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "discovery", "text": "best mmos video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "what is video game genres mmos options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "how does mmos work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "mmos video game genres overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > MMOs", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need mmos video game genres, not action video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "vague", "text": "exploring video gaming mmos"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "vague", "text": "exploring music and party video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "discovery", "text": "top video game genres music and party video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "music and party video game overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "discovery", "text": "compare music and party video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "discovery", "text": "compare video gaming music and party video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "music and party video game guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "vague", "text": "looking into music and party video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "what is video game genres music and party video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "vague", "text": "need advice about music and party video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "video game genres music and party video games options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "music and party video games basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "researching music and party video games, not adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "discovery", "text": "which puzzle video games is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "discovery", "text": "top video game genres puzzle video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "researching puzzle video games, not adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "discovery", "text": "compare puzzle video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for puzzle video games video game genres instead of action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "vague", "text": "need advice about video gaming puzzle video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "what is puzzle video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "vague", "text": "help me choose video game genres puzzle video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "vague", "text": "need advice about video game genres puzzle video games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "need puzzle video games video game genres, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "puzzle video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "learn about video game genres puzzle video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "discovery", "text": "which video gaming video game genres racing video games is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "vague", "text": "help me choose video game genres racing video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "video gaming video game genres racing video games basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for racing video games video game genres instead of action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "discovery", "text": "best video game genres racing video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "discovery", "text": "top video gaming video game genres racing video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "vague", "text": "looking into video gaming racing video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "video game genres racing video games options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "video game genres racing video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "racing video games video game genres overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "what is racing video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "prompt_family": "alias", "text": "video gaming racing video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "how does role-playing video games video game genres work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need role-playing video games, not adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "role-playing video games video game genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "discovery", "text": "compare role-playing video game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "role-playing video games basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "learn about video game genres role-playing video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "video gaming video game genres role-playing video games guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "what is video game genres role-playing video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "role-playing video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "discovery", "text": "top video game genres role-playing video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "vague", "text": "help me choose video game genres role-playing video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "vague", "text": "help me choose video gaming role-playing video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "vague", "text": "help me choose video gaming simulation video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "discovery", "text": "video game genres simulation video games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need simulation video game, not action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "how does simulation video games video game genres work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "discovery", "text": "best video gaming simulation video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "simulation video games video game genres overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "looking for simulation video games video game genres instead of adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "looking for simulation video game instead of adult video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "discovery", "text": "top video gaming simulation video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "what is simulation video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "what is video gaming simulation video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "learn about video gaming video game genres simulation video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "how does video game genres sports video games options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "what is sports video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "discovery", "text": "best video gaming video game genres sports video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "sports video games guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "looking for sports video games instead of adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "learn about sports video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "discovery", "text": "sports video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "what is video game genres sports video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "alias", "text": "what is sports video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "vague", "text": "need advice about video game genres sports video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "discovery", "text": "top video gaming video game genres sports video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "prompt_family": "vague", "text": "need advice about sports video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need strategy video game, not action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "how does video gaming video game genres strategy video games work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "vague", "text": "need advice about video gaming strategy video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "strategy video games rather than action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "discovery", "text": "top video game genres strategy video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "looking for strategy video games video game genres instead of adult video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "discovery", "text": "strategy video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "strategy video game overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "strategy video game guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "learn about strategy video games video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "discovery", "text": "top strategy video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "vague", "text": "exploring video game genres strategy video games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need war and conflicts, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflicts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need war and conflict, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching war and conflicts, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "help me choose war and conflicts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "learn about war and conflict"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for war and conflict instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflicts guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "looking into war and conflicts options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "war and conflict rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "which war and conflicts is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflicts basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "best war and conflicts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need war and conflict, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "war and conflicts rather than books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "war and conflicts rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "what is war and conflicts guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "war and conflicts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "how does war and conflict work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching war and conflict, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "war and conflict rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "exploring war and conflicts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "which war and conflict is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "need advice about war and conflicts guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for war and conflicts instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "war and conflict options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need war and conflict, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflicts overview"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "help me choose war and conflicts options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching war and conflict, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for war and conflicts instead of automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "looking into war and conflicts guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "war and conflict rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching war and conflict, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "learn about war and conflicts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflict guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for war and conflicts instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for war and conflict instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching war and conflicts, not automotive"} diff --git a/data/iab/val.jsonl b/data/iab/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c2e5f3ebd872a1b4b6ce029b8c3cc06acfe2b62d --- /dev/null +++ b/data/iab/val.jsonl @@ -0,0 +1,3282 @@ +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching attractions, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "which attractions is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "looking into attractions guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching attraction, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Attractions", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need attractions, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "vague", "text": "exploring attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "discovery", "text": "attractions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions", "prompt_family": "alias", "text": "attraction overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "looking for amusement and theme parks instead of historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "alias", "text": "how does attractions amusement and theme parks work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "amusement and theme parks attractions rather than casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "attractions amusement and theme parks rather than museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "looking for amusement and theme parks attractions instead of nightclubs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Amusement and Theme Parks", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "looking for attractions amusement and theme parks instead of nightclubs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Bars & Restaurants", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "need bars & restaurant, not malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "action", "text": "book bars & restaurant"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "what is attractions bars and restaurants options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "alias", "text": "learn about attractions bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "best bars and restaurants"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Bars & Restaurants", "prompt_family": "discovery", "text": "top attractions bars and restaurants options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "researching casinos & gambling, not malls and shopping centers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "discovery", "text": "top attractions casinos and gambling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "casinos and gambling rather than malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for casinos and gambling instead of amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Casinos & Gambling", "prompt_family": "alias", "text": "attractions casinos and gambling guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Casinos & Gambling", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "attractions casinos and gambling rather than amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "historic site and landmark tours attractions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "historic site and landmark tours in attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "historic site and landmark tours rather than bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "researching attractions historic site and landmark tours, not bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Historic Site and Landmark Tours", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for historic site and landmark tour instead of amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "alias", "text": "historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "malls and shopping centers rather than museums and galleries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "malls and shopping centers in attractions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "alias", "text": "what is malls and shopping centers attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "vague", "text": "looking into malls and shopping centers in attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Malls & Shopping Centers", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "looking for malls and shopping centers instead of historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "discovery", "text": "top malls & shopping center"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "need attractions museums and galleries, not amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "museums & gallery basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for museums and galleries attractions instead of amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Museums & Galleries", "negative_iab_path": "Attractions > Nightclubs", "prompt_family": "contrastive", "text": "researching museums & gallery, not nightclubs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "alias", "text": "attractions museums and galleries basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Museums & Galleries", "prompt_family": "vague", "text": "exploring attractions museums and galleries options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "looking for attractions nightclubs instead of historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "compare nightclub"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Nightclubs", "prompt_family": "discovery", "text": "top attractions nightclubs options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "nightclubs attractions rather than malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "researching nightclub, not museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Nightclubs", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "nightclubs rather than amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "need attractions outdoor activities, not amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "looking for outdoor activities instead of malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Outdoor Activities", "negative_iab_path": "Attractions > Malls & Shopping Centers", "prompt_family": "contrastive", "text": "outdoor activities attractions rather than malls and shopping centers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "alias", "text": "outdoor activities attractions guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "vague", "text": "exploring outdoor activities in attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Outdoor Activities", "prompt_family": "discovery", "text": "compare attractions outdoor activities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "researching attractions parks and nature, not bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "researching parks and nature, not museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Bars & Restaurants", "prompt_family": "contrastive", "text": "researching parks and nature attractions, not bars and restaurants"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Parks & Nature", "prompt_family": "alias", "text": "parks and nature attractions overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Historic Site and Landmark Tours", "prompt_family": "contrastive", "text": "researching parks & nature, not historic site and landmark tours"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Parks & Nature", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "looking for parks & nature instead of casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "theater venues rather than amusement and theme parks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "which theater venues is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "looking for theater venues attractions instead of casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "which theater venue is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Theater Venues", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "need attractions theater venues, not casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Theater Venues", "prompt_family": "discovery", "text": "best theater venues attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "attractions zoos and aquariums"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "discovery", "text": "compare attractions zoos and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Museums & Galleries", "prompt_family": "contrastive", "text": "zoos and aquariums attractions rather than museums and galleries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Casinos & Gambling", "prompt_family": "contrastive", "text": "researching zoos and aquariums, not casinos and gambling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Attractions > Zoos & Aquariums", "prompt_family": "alias", "text": "zoos & aquarium guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Attractions > Zoos & Aquariums", "negative_iab_path": "Attractions > Amusement and Theme Parks", "prompt_family": "contrastive", "text": "looking for zoos and aquariums attractions instead of amusement and theme parks"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "help me choose automotive options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "looking into vehicle shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for automotive instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "which automotive is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "top used cars"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is automotive guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "discovery", "text": "automotive options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "looking into automotive options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "help me choose used cars"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "need advice about automotive guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "looking into car buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "vague", "text": "help me choose auto advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive", "prompt_family": "alias", "text": "what is automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "discovery", "text": "best automotive auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles", "prompt_family": "alias", "text": "auto body styles overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "auto body style rather than auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for auto body styles instead of auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "auto body styles rather than auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "need auto body style, not auto rentals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "discovery", "text": "top auto body styles commercial trucks options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "need auto body styles commercial trucks, not convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "discovery", "text": "which auto body styles commercial trucks is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "discovery", "text": "which convertible is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Convertible", "negative_iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "contrastive", "text": "need convertible, not crossover"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "alias", "text": "convertible guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Coupe", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "need auto body styles coupe, not convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "automotive auto body styles coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "alias", "text": "auto body styles coupe"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "vague", "text": "help me choose auto body styles crossover options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Crossover", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "automotive auto body styles crossover rather than coupe"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Crossover", "prompt_family": "discovery", "text": "compare auto body styles crossover options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Hatchback", "negative_iab_path": "Automotive > Auto Body Styles > Convertible", "prompt_family": "contrastive", "text": "auto body styles hatchback rather than convertible"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "discovery", "text": "compare auto body styles hatchback"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Hatchback", "prompt_family": "discovery", "text": "compare automotive hatchback"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "alias", "text": "how does automotive microcar work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "vague", "text": "looking into microcar in auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Microcar", "prompt_family": "action", "text": "book automotive auto body styles microcar"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Minivan", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching automotive auto body styles minivan, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "discovery", "text": "minivan options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Minivan", "prompt_family": "alias", "text": "how does automotive auto body styles minivan work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "learn about auto body styles off-road vehicles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "discovery", "text": "off-road vehicles options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Off-Road Vehicles", "prompt_family": "alias", "text": "auto body styles off-road vehicles basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "pickup trucks auto body styles overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "alias", "text": "learn about pickup trucks auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Pickup Trucks", "prompt_family": "discovery", "text": "top pickup truck"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "sedan auto body styles guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "discovery", "text": "top sedan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Sedan", "prompt_family": "alias", "text": "what is sedan in auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "alias", "text": "how does auto body styles station wagon options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "prompt_family": "vague", "text": "looking into auto body styles station wagon options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Station Wagon", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "need automotive auto body styles station wagon, not coupe"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > SUV", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "auto body styles suv rather than commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > SUV", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "need automotive auto body styles suv, not commercial trucks"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > SUV", "prompt_family": "alias", "text": "how does suv in auto body styles work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Body Styles > Van", "negative_iab_path": "Automotive > Auto Body Styles > Coupe", "prompt_family": "contrastive", "text": "need van, not coupe"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "alias", "text": "automotive auto body styles van basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Body Styles > Van", "prompt_family": "discovery", "text": "best van auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "action", "text": "reserve auto buying and selling automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "compare auto buying and selling in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "compare automotive auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "discovery", "text": "which automotive auto buying and selling is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "vague", "text": "exploring automotive auto buying and selling options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "alias", "text": "what is automotive auto buying and selling options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "what is auto insurance automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "learn about automotive auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Insurance", "prompt_family": "alias", "text": "automotive auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "auto insurance automotive rather than auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching auto insurance automotive, not auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Insurance", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need automotive auto insurance, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "learn about auto parts automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "vague", "text": "exploring automotive auto parts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "what is auto part"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "alias", "text": "auto parts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Parts", "prompt_family": "vague", "text": "need advice about automotive auto parts options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Parts", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for automotive auto parts instead of auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for auto recalls instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "looking for auto recalls instead of auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need auto recalls automotive, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Recalls", "prompt_family": "discovery", "text": "compare automotive auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "auto recalls rather than auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Recalls", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "auto recalls automotive rather than auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "vague", "text": "exploring automotive auto rentals options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "compare auto rentals automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "discovery", "text": "top auto rentals in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "alias", "text": "auto rentals automotive basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "action", "text": "get auto rentals automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Rentals", "prompt_family": "action", "text": "buy auto rental"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "vague", "text": "need advice about automotive auto repair options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto repair rather than auto parts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "looking for auto repair instead of auto parts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "researching auto repair automotive, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Repair", "prompt_family": "alias", "text": "automotive auto repair overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Repair", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need auto repair, not auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "discovery", "text": "compare auto safety in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "need auto safety automotive, not auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "automotive auto safety basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "automotive auto safety rather than auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Safety", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for automotive auto safety instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Safety", "prompt_family": "alias", "text": "learn about auto safety"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need auto shows, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "auto shows automotive rather than auto body styles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need auto shows, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Shows", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "auto shows automotive rather than auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "discovery", "text": "compare auto shows automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Shows", "prompt_family": "alias", "text": "what is automotive auto shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "alias", "text": "automotive auto technology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "top auto technology automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "automotive auto technology rather than auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "auto technology rather than auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology", "prompt_family": "discovery", "text": "compare auto technology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Technology", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "researching auto technology automotive, not auto parts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "contrastive", "text": "researching auto infotainment technology, not auto navigation systems"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "alias", "text": "how does automotive auto infotainment technologies work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "discovery", "text": "best auto technology auto infotainment technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "alias", "text": "auto navigation system overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "prompt_family": "discovery", "text": "compare automotive auto technology auto navigation systems"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Navigation Systems", "negative_iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "contrastive", "text": "auto navigation systems auto technology rather than auto infotainment technologies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "alias", "text": "automotive auto technology auto safety technologies basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "prompt_family": "discovery", "text": "top auto safety technologies auto technology"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Technology > Auto Safety Technologies", "negative_iab_path": "Automotive > Auto Technology > Auto Infotainment Technologies", "prompt_family": "contrastive", "text": "looking for auto safety technologies auto technology instead of auto infotainment technologies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "compare automotive auto type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "alias", "text": "auto type"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "looking for automotive auto type instead of auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "auto type rather than auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type", "prompt_family": "discovery", "text": "best auto type automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Auto Type", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "researching auto type, not auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "vague", "text": "exploring automotive budget cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "action", "text": "book budget cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "alias", "text": "auto type budget cars options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching auto type certified pre-owned cars, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "discovery", "text": "best auto type certified pre-owned cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Certified Pre-Owned Cars", "prompt_family": "alias", "text": "how does certified pre-owned car work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "alias", "text": "what is classic cars in auto type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "discovery", "text": "best automotive classic cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "vague", "text": "need advice about classic cars in auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "alias", "text": "auto type concept cars guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "action", "text": "buy concept car"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Concept Cars", "prompt_family": "action", "text": "book automotive auto type concept cars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Driverless Cars", "negative_iab_path": "Automotive > Auto Type > Budget Cars", "prompt_family": "contrastive", "text": "need automotive auto type driverless cars, not budget cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "alias", "text": "how does auto type driverless cars options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Driverless Cars", "prompt_family": "action", "text": "reserve automotive auto type driverless cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "discovery", "text": "top green vehicle"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Green Vehicles", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching automotive auto type green vehicles, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Green Vehicles", "prompt_family": "alias", "text": "learn about green vehicles"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Luxury Cars", "negative_iab_path": "Automotive > Auto Type > Classic Cars", "prompt_family": "contrastive", "text": "need luxury car, not classic cars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "action", "text": "book automotive auto type luxury cars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Auto Type > Luxury Cars", "prompt_family": "discovery", "text": "compare auto type luxury cars options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "action", "text": "buy performance cars auto type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Auto Type > Performance Cars", "prompt_family": "discovery", "text": "which auto type performance cars is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Automotive > Auto Type > Performance Cars", "negative_iab_path": "Automotive > Auto Body Styles > Commercial Trucks", "prompt_family": "contrastive", "text": "researching automotive auto type performance cars, not commercial trucks"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Car Culture", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need automotive car culture, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "discovery", "text": "which car culture automotive is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Car Culture", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "need automotive car culture, not auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "alias", "text": "car culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "vague", "text": "need advice about car culture in automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Car Culture", "prompt_family": "action", "text": "get car culture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "vague", "text": "looking into dash cam videos in automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "vague", "text": "need advice about dash cam videos in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "need dash cam video, not auto recalls"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "alias", "text": "dash cam videos"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Dash Cam Videos", "prompt_family": "vague", "text": "looking into automotive dash cam videos options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Dash Cam Videos", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "looking for dash cam videos automotive instead of auto body styles"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "how does motorcycle work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for motorcycles instead of auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for automotive motorcycles instead of auto rentals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "need motorcycle, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Motorcycles", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need motorcycle, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Motorcycles", "prompt_family": "alias", "text": "motorcycles overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Parts", "prompt_family": "contrastive", "text": "looking for automotive road-side assistance instead of auto parts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "compare road-side assistance automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Body Styles", "prompt_family": "contrastive", "text": "need road-side assistance automotive, not auto body styles"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "alias", "text": "what is road-side assistance in automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Road-Side Assistance", "negative_iab_path": "Automotive > Auto Rentals", "prompt_family": "contrastive", "text": "looking for road-side assistance automotive instead of auto rentals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Road-Side Assistance", "prompt_family": "discovery", "text": "road-side assistance automotive options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Recalls", "prompt_family": "contrastive", "text": "looking for scooters instead of auto recalls"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "researching automotive scooters, not auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "need scooters, not auto insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Buying and Selling", "prompt_family": "contrastive", "text": "looking for scooters automotive instead of auto buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Automotive > Scooters", "prompt_family": "discovery", "text": "best scooter"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Automotive > Scooters", "negative_iab_path": "Automotive > Auto Insurance", "prompt_family": "contrastive", "text": "looking for scooter instead of auto insurance"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "need advice about books and literature guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "how does reading ideas work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Books and Literature", "negative_iab_path": "Business and Finance", "prompt_family": "contrastive", "text": "looking for books and literature instead of business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "exploring books to read"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "looking into fiction books"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "books to read guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "help me choose reading ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "need advice about reading ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "what is book recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "vague", "text": "need advice about book recommendations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "best books to read"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "alias", "text": "reading ideas guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature", "prompt_family": "discovery", "text": "compare reading ideas"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "art and photography books and literature rather than poetry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "researching art and photography books and literature, not comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "looking for art and photography books and literature instead of fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Art and Photography", "prompt_family": "alias", "text": "art and photography guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "looking for art and photography books and literature instead of poetry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Art and Photography", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "looking for art and photography instead of fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "alias", "text": "books and literature comics and graphic novels"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "discovery", "text": "compare books and literature comics and graphic novels options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "looking for comics and graphic novel instead of art and photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "vague", "text": "need advice about books and literature comics and graphic novels options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Fiction", "prompt_family": "contrastive", "text": "looking for comics and graphic novels books and literature instead of fiction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Comics and Graphic Novels", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "looking for comics and graphic novel instead of poetry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "top fiction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "fiction books and literature basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "discovery", "text": "which fiction is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "looking for fiction instead of art and photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Fiction", "prompt_family": "alias", "text": "fiction in books and literature guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Fiction", "negative_iab_path": "Books and Literature > Poetry", "prompt_family": "contrastive", "text": "looking for fiction books and literature instead of poetry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "poetry rather than art and photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "poetry books and literature basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Comics and Graphic Novels", "prompt_family": "contrastive", "text": "researching poetry, not comics and graphic novels"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "alias", "text": "poetry guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Books and Literature > Poetry", "negative_iab_path": "Books and Literature > Art and Photography", "prompt_family": "contrastive", "text": "need books and literature poetry, not art and photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Books and Literature > Poetry", "prompt_family": "vague", "text": "help me choose poetry in books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "top sales and marketing"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "help me choose business and finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "how does company operations work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "need advice about business and finance guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need business and finance, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "top company operations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "compare company operations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "discovery", "text": "top business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "need advice about company operations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "looking into company operations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "vague", "text": "help me choose business software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "company operations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance", "prompt_family": "alias", "text": "business software guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "vague", "text": "exploring business and finance business options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "need business business and finance, not economy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Industries", "prompt_family": "contrastive", "text": "looking for business instead of industries"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "business business and finance rather than economy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Business", "negative_iab_path": "Business and Finance > Industries", "prompt_family": "contrastive", "text": "researching business, not industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business", "prompt_family": "alias", "text": "business business and finance basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "looking for business accounting and finance instead of business administration"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "researching business accounting and finance, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "vague", "text": "need advice about business business accounting and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "discovery", "text": "best business administration business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "discovery", "text": "business business administration options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "alias", "text": "business administration in business guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "discovery", "text": "business and finance business business banking and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "alias", "text": "what is business business banking and finance options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "vague", "text": "help me choose business business banking and finance options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "alias", "text": "how does business banking and finance angel investment work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "alias", "text": "how does business and finance business business banking and finance angel investment work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "vague", "text": "exploring business banking and finance bankruptcy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", "prompt_family": "discovery", "text": "compare bankruptcy in business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "discovery", "text": "top business banking and finance business loans options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "alias", "text": "how does business banking and finance business loans options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "prompt_family": "vague", "text": "exploring business banking and finance debt factoring and invoice discounting options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Business Loans", "prompt_family": "contrastive", "text": "looking for business and finance business business banking and finance debt factoring and invoice discounting instead of business loans"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "mergers and acquisitions business banking and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", "prompt_family": "alias", "text": "learn about business banking and finance mergers and acquisitions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance > Angel Investment", "prompt_family": "contrastive", "text": "researching business banking and finance private equity, not angel investment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Private Equity", "prompt_family": "alias", "text": "business banking and finance private equity"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "alias", "text": "what is sale and lease back"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", "prompt_family": "discovery", "text": "business and finance business business banking and finance sale and lease back options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "vague", "text": "need advice about business banking and finance venture capital options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Banking & Finance > Venture Capital", "prompt_family": "vague", "text": "exploring business banking and finance venture capital options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "business i.t. guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "business it business basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business I.T.", "prompt_family": "alias", "text": "what is identity management"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "alias", "text": "business operations business overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "discovery", "text": "which business business operations is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Operations", "prompt_family": "vague", "text": "need advice about business business operations options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Business Utilities", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "looking for business utilities instead of business administration"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "vague", "text": "looking into business utilities in business"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Business Utilities", "prompt_family": "vague", "text": "help me choose business business utilities options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "learn about business and finance business consumer issues"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "vague", "text": "help me choose consumer issues in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues", "prompt_family": "alias", "text": "consumer issues guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "discovery", "text": "best consumer issues recalls options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Consumer Issues > Recalls", "prompt_family": "discovery", "text": "which recalls consumer issues is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "need business and finance business executive leadership and management, not business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "looking for business and finance business executive leadership and management instead of business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Executive Leadership & Management", "prompt_family": "discovery", "text": "executive leadership and management business options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Government Business", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need government business, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Government Business", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "looking for business government business instead of business administration"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Government Business", "prompt_family": "alias", "text": "government business guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "discovery", "text": "best business green solutions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "discovery", "text": "compare green solutions business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Green Solutions", "prompt_family": "alias", "text": "business and finance business green solutions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "vague", "text": "help me choose human resources in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "how does business human resources work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Human Resources", "prompt_family": "alias", "text": "business and finance business human resources overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "business large business basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Large Business", "prompt_family": "alias", "text": "business and finance business large business"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Large Business", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching business large business, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "discovery", "text": "which logistics business is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Logistics", "prompt_family": "alias", "text": "business logistics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Logistics", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance business logistics rather than business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "alias", "text": "marketing tools guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "discovery", "text": "best business marketing and advertising options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Marketing and Advertising", "prompt_family": "discovery", "text": "top marketing and advertising in business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "learn about business and finance business sales"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "what is business sales options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Sales", "prompt_family": "alias", "text": "learn about sales"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "need business small and medium-sized business, not business administration"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "negative_iab_path": "Business and Finance > Business > Business Administration", "prompt_family": "contrastive", "text": "researching business small and medium-sized business, not business administration"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Business > Small and Medium-sized Business", "negative_iab_path": "Business and Finance > Business > Business Banking & Finance", "prompt_family": "contrastive", "text": "business and finance business small and medium-sized business rather than business banking and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "discovery", "text": "top business startups options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "discovery", "text": "best business and finance business startups"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Business > Startups", "prompt_family": "discovery", "text": "startups options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "vague", "text": "help me choose business and finance economy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Economy", "negative_iab_path": "Business and Finance > Industries", "prompt_family": "contrastive", "text": "need business and finance economy, not industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "alias", "text": "what is economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "best business and finance economy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "top business and finance economy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy", "prompt_family": "discovery", "text": "best economy in business and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "discovery", "text": "best economy commodities options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "discovery", "text": "top commodities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Commodities", "prompt_family": "discovery", "text": "best commodities economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "alias", "text": "learn about business and finance economy currencies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "vague", "text": "looking into currencies in economy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Currencies", "negative_iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "contrastive", "text": "researching business and finance economy currencies, not financial reform"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "economy financial crisis options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "alias", "text": "what is business and finance financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Crisis", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need financial crisi, not business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Reform", "prompt_family": "discovery", "text": "top financial reform"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Reform", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "need financial reform, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Financial Reform", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "financial reform rather than financial crisis"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "financial regulation economy overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "alias", "text": "business and finance economy financial regulation guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Financial Regulation", "prompt_family": "discovery", "text": "compare financial regulation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "how does gasoline price work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Gasoline Prices", "negative_iab_path": "Business and Finance > Economy > Currencies", "prompt_family": "contrastive", "text": "gasoline price rather than currencies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Gasoline Prices", "prompt_family": "alias", "text": "business and finance gasoline prices guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "vague", "text": "help me choose business and finance housing market"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "discovery", "text": "housing market options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Housing Market", "prompt_family": "vague", "text": "exploring economy housing market options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "interest rates in economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "alias", "text": "interest rates economy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Economy > Interest Rates", "prompt_family": "discovery", "text": "compare interest rates economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Economy > Job Market", "prompt_family": "vague", "text": "need advice about business and finance job market"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Job Market", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "looking for business and finance economy job market instead of financial crisis"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Economy > Job Market", "negative_iab_path": "Business and Finance > Economy > Financial Crisis", "prompt_family": "contrastive", "text": "business and finance economy job market rather than financial crisis"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "need business and finance industries, not business"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "looking for industries business and finance instead of economy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "researching industry, not business"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Economy", "prompt_family": "contrastive", "text": "business and finance industries rather than economy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries", "prompt_family": "vague", "text": "help me choose business and finance industries options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Business and Finance > Industries", "negative_iab_path": "Business and Finance > Business", "prompt_family": "contrastive", "text": "looking for industries instead of business"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "alias", "text": "advertising industry guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Advertising Industry", "negative_iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "contrastive", "text": "need business and finance industries advertising industry, not automotive industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "discovery", "text": "business and finance industries advertising industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "vague", "text": "help me choose agriculture in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "alias", "text": "what is agriculture in industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Agriculture", "negative_iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "contrastive", "text": "business and finance industries agriculture rather than automotive industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Apparel Industry", "negative_iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "contrastive", "text": "need business and finance industries apparel industry, not automotive industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "vague", "text": "looking into business and finance apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "discovery", "text": "apparel industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Automotive Industry", "prompt_family": "vague", "text": "help me choose business and finance automotive industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Automotive Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for automotive industry industries instead of agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Automotive Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "business and finance industries automotive industry rather than advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "vague", "text": "help me choose aviation industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Aviation Industry", "prompt_family": "alias", "text": "learn about business and finance industries aviation industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Aviation Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need business and finance industries aviation industry, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "discovery", "text": "best business and finance biotech and biomedical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "prompt_family": "alias", "text": "biotech and biomedical industry industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Biotech and Biomedical Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need business and finance industries biotech and biomedical industry, not advertising industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "prompt_family": "alias", "text": "civil engineering industry in industries guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for civil engineering industry industries instead of apparel industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Civil Engineering Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "researching civil engineering industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "discovery", "text": "business and finance industries construction industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "what is industries construction industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Construction Industry", "prompt_family": "alias", "text": "business and finance industries construction industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "discovery", "text": "compare business and finance industries defense industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Defense Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "researching business and finance industries defense industry, not apparel industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Defense Industry", "prompt_family": "alias", "text": "what is business and finance defense industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "vague", "text": "need advice about business and finance education industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Education industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need education industry industries, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Education industry", "prompt_family": "alias", "text": "business and finance industries education industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "what is entertainment industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "industries entertainment industry basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Entertainment Industry", "prompt_family": "alias", "text": "business and finance industries entertainment industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching environmental services industry industries, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need environmental services industry industries, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Environmental Services Industry", "prompt_family": "alias", "text": "environmental services industry industries overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "discovery", "text": "compare industries financial industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Financial Industry", "prompt_family": "discovery", "text": "financial industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Financial Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "need financial industry industries, not agriculture"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Food Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for food industry industries instead of apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Food Industry", "prompt_family": "discovery", "text": "which food industry industries is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Food Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "researching food industry industries, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "healthcare industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "alias", "text": "what is healthcare industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Healthcare Industry", "prompt_family": "discovery", "text": "best business and finance healthcare industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Hospitality Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "researching business and finance industries hospitality industry, not apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Hospitality Industry", "prompt_family": "discovery", "text": "top business and finance industries hospitality industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Hospitality Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "hospitality industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Information Services Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for business and finance industries information services industry instead of business accounting and finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Information Services Industry", "prompt_family": "alias", "text": "how does industries information services industry work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Information Services Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "information services industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Legal Services Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "researching industries legal services industry, not agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "discovery", "text": "legal services industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Legal Services Industry", "prompt_family": "discovery", "text": "best industries legal services industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "discovery", "text": "which logistics and transportation industry industries is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "logistics and transportation industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Logistics and Transportation Industry", "prompt_family": "alias", "text": "what is business and finance logistics and transportation industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "discovery", "text": "compare industries management consulting industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for business and finance industries management consulting industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Management Consulting Industry", "prompt_family": "discovery", "text": "which management consulting industry industries is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "vague", "text": "help me choose industries manufacturing industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "alias", "text": "business and finance manufacturing industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Manufacturing Industry", "prompt_family": "vague", "text": "need advice about manufacturing industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "vague", "text": "help me choose mechanical and industrial engineering industry in industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "alias", "text": "business and finance mechanical and industrial engineering industry guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", "prompt_family": "vague", "text": "looking into industries mechanical and industrial engineering industry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "vague", "text": "exploring industries media industry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "learn about industries media industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Media Industry", "prompt_family": "alias", "text": "learn about business and finance industries media industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Metals Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance industries metals industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Metals Industry", "negative_iab_path": "Business and Finance > Industries > Apparel Industry", "prompt_family": "contrastive", "text": "looking for metals industry instead of apparel industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Metals Industry", "prompt_family": "discovery", "text": "best metals industry industries"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "looking for non-profit organization instead of business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "discovery", "text": "compare industries non-profit organizations options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Non-Profit Organizations", "prompt_family": "alias", "text": "how does non-profit organizations in industries work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "discovery", "text": "best business and finance industries pharmaceutical industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "prompt_family": "alias", "text": "business and finance industries pharmaceutical industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Pharmaceutical Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "researching pharmaceutical industry, not business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "vague", "text": "need advice about business and finance power and energy industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "negative_iab_path": "Business and Finance > Business > Business Accounting & Finance", "prompt_family": "contrastive", "text": "business and finance industries power and energy industry rather than business accounting and finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Power and Energy Industry", "prompt_family": "alias", "text": "what is business and finance power and energy industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "vague", "text": "looking into business and finance publishing industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Publishing Industry", "prompt_family": "discovery", "text": "best industries publishing industry options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Publishing Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "need publishing industry, not advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "alias", "text": "industries real estate industry"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Real Estate Industry", "negative_iab_path": "Business and Finance > Industries > Advertising Industry", "prompt_family": "contrastive", "text": "looking for business and finance industries real estate industry instead of advertising industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Real Estate Industry", "prompt_family": "action", "text": "get industries real estate industry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "discovery", "text": "best retail industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "industries retail industry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Retail Industry", "prompt_family": "alias", "text": "learn about retail industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "learn about industries technology industry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "alias", "text": "learn about technology industry industries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Business and Finance > Industries > Technology Industry", "prompt_family": "vague", "text": "need advice about technology industry in industries"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "alias", "text": "business and finance industries telecommunications industry guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "negative_iab_path": "Business and Finance > Industries > Agriculture", "prompt_family": "contrastive", "text": "looking for telecommunications industry instead of agriculture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Business and Finance > Industries > Telecommunications Industry", "prompt_family": "discovery", "text": "which industries telecommunications industry is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "careers rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "alias", "text": "learn about career"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need careers, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "reserve careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "get career"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "get careers"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Careers", "prompt_family": "vague", "text": "need advice about careers options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Careers", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "career rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "discovery", "text": "best careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "buy career"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers", "prompt_family": "action", "text": "book careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "apprenticeships in careers guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "how does careers apprenticeships options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "apprenticeship"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "action", "text": "buy apprenticeship"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Apprenticeships", "negative_iab_path": "Careers > Vocational Training", "prompt_family": "contrastive", "text": "need apprenticeship, not vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Apprenticeships", "prompt_family": "alias", "text": "what is apprenticeships careers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Advice", "negative_iab_path": "Careers > Career Planning", "prompt_family": "contrastive", "text": "researching career advice careers, not career planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "action", "text": "buy career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "action", "text": "find career advice"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Advice", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "need career advice careers, not apprenticeships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "vague", "text": "exploring career advice in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Advice", "prompt_family": "discovery", "text": "career advice careers options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Planning", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "researching career planning careers, not apprenticeships"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Planning", "negative_iab_path": "Careers > Career Advice", "prompt_family": "contrastive", "text": "career planning rather than career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "alias", "text": "career planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "action", "text": "find careers career planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Career Planning", "negative_iab_path": "Careers > Apprenticeships", "prompt_family": "contrastive", "text": "looking for careers career planning instead of apprenticeships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Career Planning", "prompt_family": "action", "text": "book career planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Job Search", "negative_iab_path": "Careers > Remote Working", "prompt_family": "contrastive", "text": "researching job search, not remote working"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "job search careers basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "job search guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Job Search", "negative_iab_path": "Careers > Vocational Training", "prompt_family": "contrastive", "text": "job search rather than vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "what is job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search", "prompt_family": "alias", "text": "careers job search basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "job fair overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "alias", "text": "how does job fairs in job search work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Job Fairs", "prompt_family": "discovery", "text": "top job search job fairs options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "vague", "text": "exploring resume writing and advice in job search"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "action", "text": "buy resume writing and advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Job Search > Resume Writing and Advice", "prompt_family": "alias", "text": "careers job search resume writing and advice overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "vague", "text": "need advice about careers remote working options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Careers > Remote Working", "negative_iab_path": "Careers > Career Advice", "prompt_family": "contrastive", "text": "remote working careers rather than career advice"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "action", "text": "get remote working careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "what is careers remote working options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "what is remote working careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Remote Working", "prompt_family": "alias", "text": "learn about remote working careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "vague", "text": "need advice about vocational training in careers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "action", "text": "find vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "action", "text": "get vocational training"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "which vocational training careers is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "alias", "text": "vocational training careers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Careers > Vocational Training", "prompt_family": "discovery", "text": "top vocational training in careers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "contrastive", "text": "need communication computer software and applications, not browsers"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "prompt_family": "discovery", "text": "compare communication software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for crime instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "crime rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Crime", "prompt_family": "discovery", "text": "top crime"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching crime, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Crime", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for crime instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "what is disasters"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disaster overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disaster guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "help me choose disasters options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "vague", "text": "looking into disasters guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "disasters overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "what is disaster"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "learn about disaster"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Disasters", "prompt_family": "alias", "text": "what is disasters guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for education instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "school guidance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "help me choose study options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "which education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "exploring study options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need education, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "learn about education"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "what is education guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "need advice about study options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "education rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education", "prompt_family": "discovery", "text": "compare education programs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education", "prompt_family": "alias", "text": "education guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Education", "prompt_family": "vague", "text": "help me choose education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "learn about adult education education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "looking for adult education instead of educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "researching education adult education, not language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Adult Education", "prompt_family": "alias", "text": "education adult education overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "researching education adult education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Adult Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "looking for adult education education instead of homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "looking for college education instead of adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "college education rather than early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "looking for education college education instead of homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "compare college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > College Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "college education rather than homework and study"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education", "prompt_family": "discovery", "text": "top education college education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "alias", "text": "college planning college education guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > College Planning", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "college planning college education rather than postgraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > College Planning", "prompt_family": "discovery", "text": "best education college education college planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "discovery", "text": "which college education postgraduate education is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "alias", "text": "college education postgraduate education guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "discovery", "text": "which postgraduate education is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "learn about professional school"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Postgraduate Education > Professional School", "prompt_family": "alias", "text": "what is postgraduate education professional school options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "discovery", "text": "best undergraduate education in college education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "discovery", "text": "compare undergraduate education in college education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > College Education > Undergraduate Education", "negative_iab_path": "Education > College Education > College Planning", "prompt_family": "contrastive", "text": "education college education undergraduate education rather than college planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "researching early childhood education education, not language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "discovery", "text": "compare early childhood education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "learn about early childhood education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Early Childhood Education", "prompt_family": "alias", "text": "early childhood education overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "education early childhood education rather than educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Early Childhood Education", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "education early childhood education rather than college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "looking for education educational assessment instead of homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "which educational assessment education is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "vague", "text": "looking into education educational assessment options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "need educational assessment, not language learning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Educational Assessment", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "researching educational assessment, not homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment", "prompt_family": "discovery", "text": "compare educational assessment"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > Educational Assessment > Standardized Testing", "negative_iab_path": "Education > College Education > Postgraduate Education", "prompt_family": "contrastive", "text": "standardized testing rather than postgraduate education"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Education > Educational Assessment > Standardized Testing", "negative_iab_path": "Education > College Education > Undergraduate Education", "prompt_family": "contrastive", "text": "looking for education educational assessment standardized testing instead of undergraduate education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Educational Assessment > Standardized Testing", "prompt_family": "discovery", "text": "best standardized testing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "education homeschooling rather than homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "need education homeschooling, not educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "looking for homeschooling instead of language learning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need homeschooling, not adult education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homeschooling", "prompt_family": "discovery", "text": "compare education homeschooling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homeschooling", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "researching homeschooling, not homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > College Education", "prompt_family": "contrastive", "text": "homework and study rather than college education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Language Learning", "prompt_family": "contrastive", "text": "need education homework and study, not language learning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "how does education homework and study work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "researching homework and study, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Homework and Study", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "homework and study education rather than homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Homework and Study", "prompt_family": "alias", "text": "homework and study in education guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need education language learning, not adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Language Learning", "prompt_family": "alias", "text": "language learning education basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "researching language learning, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "looking for language learning instead of early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "need language learning education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Language Learning", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "researching education language learning, not educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "need education online education, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "researching online education, not adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "researching education online education, not homeschooling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "discovery", "text": "compare online education in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Online Education", "prompt_family": "alias", "text": "how does online education in education work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Online Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "looking for online education instead of early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "compare primary education education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "alias", "text": "primary education education basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Primary Education", "prompt_family": "discovery", "text": "top primary education education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "need primary education, not homework and study"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "looking for education primary education instead of adult education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Primary Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "researching education primary education, not adult education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "vague", "text": "help me choose education private school options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "private school education overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "private school options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "which private school is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "discovery", "text": "compare private school in education"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Education > Private School", "prompt_family": "alias", "text": "what is education private school options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "need secondary education education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Homeschooling", "prompt_family": "contrastive", "text": "looking for secondary education education instead of homeschooling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "education secondary education"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Early Childhood Education", "prompt_family": "contrastive", "text": "need secondary education, not early childhood education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Secondary Education", "prompt_family": "alias", "text": "secondary education guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Secondary Education", "negative_iab_path": "Education > Homework and Study", "prompt_family": "contrastive", "text": "secondary education education rather than homework and study"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "special education education basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "special education rather than educational assessment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Adult Education", "prompt_family": "contrastive", "text": "special education education rather than adult education"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "alias", "text": "special education basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Education > Special Education", "negative_iab_path": "Education > Educational Assessment", "prompt_family": "contrastive", "text": "education special education rather than educational assessment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Education > Special Education", "prompt_family": "discovery", "text": "special education options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "entertainment guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "need advice about entertainment ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "entertainment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "help me choose entertainment ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "top entertainment ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "watch tonight guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "looking into entertainment options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "entertainment overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "exploring entertainment ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "vague", "text": "exploring movies to watch"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for entertainment instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "discovery", "text": "best watch tonight"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment", "prompt_family": "alias", "text": "what is entertainment ideas"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "entertainment movies rather than music"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Music", "prompt_family": "contrastive", "text": "researching movies, not music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "entertainment movies basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "what is movy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Movies", "prompt_family": "alias", "text": "how does movie night work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Movies", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "researching movie night, not television"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "vague", "text": "exploring entertainment music options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Movies", "prompt_family": "contrastive", "text": "researching music, not movies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "music entertainment guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "entertainment music guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Entertainment > Music", "negative_iab_path": "Entertainment > Television", "prompt_family": "contrastive", "text": "researching music, not television"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music", "prompt_family": "alias", "text": "music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "television entertainment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "television options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "which entertainment television is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "discovery", "text": "compare entertainment television options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "alias", "text": "learn about entertainment television"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Television", "prompt_family": "vague", "text": "exploring entertainment television options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "exploring events guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Events", "prompt_family": "vague", "text": "help me choose events options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "events overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "which events is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for events instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "event basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "how does event work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "discovery", "text": "best event"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events", "prompt_family": "alias", "text": "event guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "looking for awards show instead of business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "awards shows events rather than fan conventions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "vague", "text": "exploring events awards shows options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "researching awards show, not fan conventions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Awards Shows", "prompt_family": "discovery", "text": "events awards shows options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Awards Shows", "negative_iab_path": "Events > Business Expos & Conferences", "prompt_family": "contrastive", "text": "researching awards shows, not business expos and conferences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "need business expos and conferences, not fan conventions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "looking for events business expos and conferences instead of fan conventions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "looking for business expos and conferences events instead of awards shows"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Business Expos & Conferences", "negative_iab_path": "Events > Fan Conventions", "prompt_family": "contrastive", "text": "need events business expos and conferences, not fan conventions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "discovery", "text": "which business expos and conferences events is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Events > Business Expos & Conferences", "prompt_family": "alias", "text": "what is events business expos and conferences options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "events fan conventions basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "fan conventions events overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Events > Fan Conventions", "negative_iab_path": "Events > Awards Shows", "prompt_family": "contrastive", "text": "looking for fan convention instead of awards shows"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "how does fan conventions work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "learn about fan convention"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Events > Fan Conventions", "prompt_family": "alias", "text": "events fan conventions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for family and relationship instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "looking into raising kids"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "exploring family advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "how does raising kids work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "need advice about raising kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "family and relationship guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "need advice about relationship guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "family and relationships rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "discovery", "text": "best relationship guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "what is family and relationship"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "raising kids"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "exploring family and relationships options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "alias", "text": "parenting help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "exploring raising kids"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "family and relationship rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Family and Relationships", "prompt_family": "vague", "text": "exploring family and relationships guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "looking for bereavement family and relationships instead of marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "looking for family and relationships bereavement instead of dating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "alias", "text": "bereavement overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "bereavement rather than marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Bereavement", "prompt_family": "discovery", "text": "which bereavement family and relationships is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Bereavement", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "bereavement rather than divorce"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "dating rather than single life"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "dating guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "vague", "text": "need advice about dating in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "discovery", "text": "best dating in family and relationships"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Dating", "prompt_family": "alias", "text": "what is family and relationships dating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Dating", "negative_iab_path": "Family and Relationships > Divorce", "prompt_family": "contrastive", "text": "looking for family and relationships dating instead of divorce"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Divorce", "prompt_family": "discovery", "text": "best family and relationships divorce options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "looking for family and relationships divorce instead of dating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "researching family and relationships divorce, not parenting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "looking for divorce family and relationships instead of marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "family and relationships divorce rather than bereavement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Divorce", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "need family and relationships divorce, not marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Eldercare", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "need family and relationships eldercare, not bereavement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "family and relationships eldercare guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "family and relationships eldercare overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "action", "text": "book eldercare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "discovery", "text": "compare family and relationships eldercare options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Eldercare", "prompt_family": "alias", "text": "how does family and relationships eldercare work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "alias", "text": "marriage and civil union"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "need marriage and civil union, not bereavement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "need marriage and civil unions, not single life"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "family and relationships marriage and civil unions rather than parenting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "researching marriage and civil union, not parenting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Marriage and Civil Unions", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "researching marriage and civil unions family and relationships, not dating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "which teen parenting is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Single Life", "prompt_family": "contrastive", "text": "need parenting advice, not single life"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting", "prompt_family": "discovery", "text": "best teen parenting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Marriage and Civil Unions", "prompt_family": "contrastive", "text": "looking for parenting advice instead of marriage and civil unions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "researching family and relationships parenting, not eldercare"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Parenting", "negative_iab_path": "Family and Relationships > Dating", "prompt_family": "contrastive", "text": "need parenting, not dating"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "alias", "text": "how does parenting adoption and fostering options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "prompt_family": "discovery", "text": "compare adoption and fostering in parenting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Adoption and Fostering", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "adoption and fostering parenting rather than internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "daycare and pre-school parenting basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "alias", "text": "daycare and pre-school overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "negative_iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "contrastive", "text": "need family and relationships parenting daycare and pre-school, not internet safety"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Internet Safety", "negative_iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "contrastive", "text": "looking for internet safety parenting instead of daycare and pre-school"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "discovery", "text": "top family and relationships internet safety"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Internet Safety", "prompt_family": "alias", "text": "learn about internet safety parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "discovery", "text": "which parenting babies and toddlers parenting is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "parenting babies and toddlers guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Babies and Toddlers", "prompt_family": "alias", "text": "learn about teen parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "what is family and relationships parenting children aged 4-11"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "prompt_family": "alias", "text": "family and relationships parenting parenting children aged 4-11 overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Family and Relationships > Parenting > Parenting Children Aged 4-11", "negative_iab_path": "Family and Relationships > Parenting > Daycare and Pre-School", "prompt_family": "contrastive", "text": "need family and relationships parenting parenting children aged 4-11, not daycare and pre-school"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "family and relationships parenting parenting teens"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "alias", "text": "what is parenting teens parenting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Parenting Teens", "prompt_family": "discovery", "text": "top family and relationships parenting teens"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "alias", "text": "special needs kids parenting guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "vague", "text": "help me choose special needs kids in parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Parenting > Special Needs Kids", "prompt_family": "discovery", "text": "top family and relationships parenting special needs kids"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "alias", "text": "single life family and relationships basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Parenting", "prompt_family": "contrastive", "text": "family and relationships single life rather than parenting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "discovery", "text": "best single life"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Bereavement", "prompt_family": "contrastive", "text": "researching single life family and relationships, not bereavement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Family and Relationships > Single Life", "prompt_family": "vague", "text": "need advice about family and relationships single life options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Family and Relationships > Single Life", "negative_iab_path": "Family and Relationships > Eldercare", "prompt_family": "contrastive", "text": "single life rather than eldercare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "fine art rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "alias", "text": "fine art basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for fine art instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art", "prompt_family": "discovery", "text": "which fine art is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Fine Art", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching fine art, not automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "need costume, not modern art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "discovery", "text": "best fine art costume options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "researching costume fine art, not opera"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Costume", "prompt_family": "alias", "text": "fine art costume options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "need costume, not opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Costume", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "costume rather than modern art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "vague", "text": "looking into fine art dance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "dance rather than opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "looking for dance fine art instead of costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "learn about dance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Dance", "prompt_family": "alias", "text": "how does dance work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Dance", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "looking for dance fine art instead of modern art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "looking for fine art design instead of modern art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "researching fine art design, not digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "what is fine art design"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Design", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "looking for fine art design instead of digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "design overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Design", "prompt_family": "alias", "text": "what is design"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "top fine art digital arts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "discovery", "text": "compare fine art digital arts options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Digital Arts", "prompt_family": "alias", "text": "how does fine art digital arts options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "researching digital arts, not modern art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Modern Art", "prompt_family": "contrastive", "text": "digital art rather than modern art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Digital Arts", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "fine art digital arts rather than opera"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "need fine art photography fine art, not digital arts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "researching fine art photography fine art, not dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "researching fine art photography, not dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Fine Art Photography", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "fine art photography rather than design"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "how does fine art photography work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Fine Art Photography", "prompt_family": "alias", "text": "what is fine art fine art photography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "alias", "text": "modern art basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "need fine art modern art, not dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Opera", "prompt_family": "contrastive", "text": "modern art fine art rather than opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Modern Art", "prompt_family": "discovery", "text": "which modern art fine art is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Design", "prompt_family": "contrastive", "text": "looking for fine art modern art instead of design"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Modern Art", "negative_iab_path": "Fine Art > Digital Arts", "prompt_family": "contrastive", "text": "modern art fine art rather than digital arts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "top opera fine art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "opera fine art options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "fine art opera basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "discovery", "text": "best fine art opera"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Opera", "prompt_family": "alias", "text": "opera fine art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Opera", "negative_iab_path": "Fine Art > Dance", "prompt_family": "contrastive", "text": "need opera, not dance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "looking for fine art theater instead of fine art photography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Costume", "prompt_family": "contrastive", "text": "theater rather than costume"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "alias", "text": "theater fine art overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Fine Art > Theater", "prompt_family": "vague", "text": "need advice about fine art theater options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "need theater fine art, not fine art photography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Fine Art > Theater", "negative_iab_path": "Fine Art > Fine Art Photography", "prompt_family": "contrastive", "text": "theater fine art rather than fine art photography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "restaurant ideas guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "how does food and drink work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for food & drink instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food & drink overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "compare places to eat"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "best restaurant ideas"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "food and drink rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching food and drink, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "exploring food recommendations"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is food and drink options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "need advice about food and drink options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "looking into restaurant ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "vague", "text": "need advice about places to eat"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "food and drink overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Food & Drink", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need food and drink, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "alias", "text": "what is drinks to try"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink", "prompt_family": "discovery", "text": "which food & drink is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "food and drink alcoholic beverages rather than desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "spirits to try"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "whiskey cocktails"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "alcoholic beverages overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "alias", "text": "alcoholic beverage basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Alcoholic Beverages", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "food and drink alcoholic beverages rather than barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "alias", "text": "learn about barbecues and grilling food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "researching barbecues and grilling, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for food and drink barbecues and grilling instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "looking for barbecues and grilling instead of dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "looking for barbecues and grilling food and drink instead of desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Barbecues and Grilling", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "looking for barbecues and grilling food and drink instead of food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "food and drink cooking rather than food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "cooking food and drink rather than barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "cooking food and drink rather than food movements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "discovery", "text": "cooking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Cooking", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "looking for cooking instead of barbecues and grilling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Cooking", "prompt_family": "vague", "text": "looking into cooking in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "compare desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "food and drink desserts and baking rather than food allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "discovery", "text": "top desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "looking for food and drink desserts and baking instead of alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "need food and drink desserts and baking, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Desserts and Baking", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "need food and drink desserts and baking, not dining out"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "what is food and drink dining out options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Dining Out", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "need places to eat, not cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "places to eat guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Dining Out", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "food and drink dining out rather than food movements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "alias", "text": "what is places to eat"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Dining Out", "prompt_family": "discovery", "text": "top places to eat"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "need food and drink food allergies, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "researching food and drink food allergies, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "how does food allergy work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Allergies", "prompt_family": "alias", "text": "how does food allergies in food and drink work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Food Movements", "prompt_family": "contrastive", "text": "looking for food and drink food allergies instead of food movements"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Allergies", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "researching food allergies food and drink, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "food movement rather than desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "need food movements, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "alias", "text": "how does food and drink food movements work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "need food and drink food movements, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Food Movements", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "researching food movement, not cooking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Food Movements", "prompt_family": "discovery", "text": "best food and drink food movements options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "researching healthy cooking and eating food and drink, not food allergies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "researching healthy cooking and eating food and drink, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "best healthy cooking and eating food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Healthy Cooking and Eating", "prompt_family": "discovery", "text": "which healthy cooking and eating is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "researching food and drink healthy cooking and eating, not cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Healthy Cooking and Eating", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "looking for healthy cooking and eating food and drink instead of cooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "discovery", "text": "which non-alcoholic beverages is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "vague", "text": "looking into food and drink non-alcoholic beverages options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "researching food and drink non-alcoholic beverages, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "non-alcoholic beverage"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "alias", "text": "how does non-alcoholic beverages work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Non-Alcoholic Beverages", "prompt_family": "vague", "text": "exploring non-alcoholic beverages in food and drink"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "alias", "text": "food and drink vegan diets overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "best vegan diets in food and drink"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegan Diets", "prompt_family": "discovery", "text": "compare food and drink vegan diets options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "need vegan diets, not cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "looking for vegan diets instead of dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegan Diets", "negative_iab_path": "Food & Drink > Alcoholic Beverages", "prompt_family": "contrastive", "text": "researching vegan diets, not alcoholic beverages"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "learn about food and drink vegetarian diets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "how does vegetarian diets work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "discovery", "text": "top vegetarian diets in food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "looking for vegetarian diets instead of barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > Vegetarian Diets", "negative_iab_path": "Food & Drink > Barbecues and Grilling", "prompt_family": "contrastive", "text": "researching vegetarian diet, not barbecues and grilling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > Vegetarian Diets", "prompt_family": "alias", "text": "vegetarian diets food and drink guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "best world cuisines food and drink"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Desserts and Baking", "prompt_family": "contrastive", "text": "need world cuisines, not desserts and baking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Cooking", "prompt_family": "contrastive", "text": "researching world cuisines food and drink, not cooking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Dining Out", "prompt_family": "contrastive", "text": "world cuisines rather than dining out"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Food & Drink > World Cuisines", "negative_iab_path": "Food & Drink > Food Allergies", "prompt_family": "contrastive", "text": "need food and drink world cuisines, not food allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Food & Drink > World Cuisines", "prompt_family": "discovery", "text": "top food and drink world cuisines"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "help me choose genres options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "what is genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "genre guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching genre, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "discovery", "text": "compare genre"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "what is genre"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "vague", "text": "need advice about genres guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Genres", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need genre, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Genres", "prompt_family": "alias", "text": "what is genres guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "genres nature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "best genres nature options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for nature instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Nature", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching genres nature, not documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "discovery", "text": "compare nature genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Nature", "prompt_family": "alias", "text": "genres nature overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "looking for genres action/adventure instead of factual"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "action/adventure guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching genres action/adventure, not comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "genres action/adventure guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Action/Adventure", "prompt_family": "alias", "text": "learn about genres action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Action/Adventure", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for action/adventure genres instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "animation and anime genres rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for animation & anime instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Animation & Anime", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need animation and anime genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "genres animation and anime basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "animation and anime genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Animation & Anime", "prompt_family": "alias", "text": "learn about animation and anime genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "discovery", "text": "compare biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "how does genres biographies options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "researching genres biographies, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching biographies, not comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Biographies", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching biographies genres, not drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Biographies", "prompt_family": "alias", "text": "biographies guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "compare comedy genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "best comedy genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "discovery", "text": "compare comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching comedy, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Comedy", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching comedy genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Comedy", "prompt_family": "alias", "text": "learn about genres comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "compare genres documentary options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "vague", "text": "need advice about documentary in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "alias", "text": "documentary in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "documentary genres options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Documentary", "prompt_family": "discovery", "text": "best genres documentary options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Documentary", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching documentary genres, not comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "discovery", "text": "best drama genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Factual", "prompt_family": "contrastive", "text": "need drama genres, not factual"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need genres drama, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching drama, not animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Drama", "prompt_family": "alias", "text": "genres drama options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Drama", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching drama genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "factual genres rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "genres factual"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "vague", "text": "help me choose genres factual options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for factual genres instead of drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Factual", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching factual, not comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Factual", "prompt_family": "alias", "text": "factual in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "discovery", "text": "top family/children genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Family/Children", "prompt_family": "vague", "text": "exploring family/children in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for family/children instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "family/children genres rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need family/children genres, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Family/Children", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "family/children rather than biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for genres fantasy instead of animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "vague", "text": "need advice about genres fantasy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "discovery", "text": "top fantasy in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need fantasy, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Fantasy", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need genres fantasy, not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Fantasy", "prompt_family": "alias", "text": "what is fantasy genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "how does history in genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "researching genres history, not documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > History", "prompt_family": "alias", "text": "what is history in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need history genres, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for history genres instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > History", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "history rather than comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching genres holiday, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need holiday, not documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "genres holiday rather than documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching holiday genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Holiday", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "genres holiday rather than animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Holiday", "prompt_family": "discovery", "text": "compare genres holiday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Horror", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need genres horror, not drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "best horror in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "top horror in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "compare horror"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "discovery", "text": "top genres horror options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Horror", "prompt_family": "alias", "text": "horror genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "vague", "text": "need advice about lifestyle in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching lifestyle, not comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need lifestyle, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for genres lifestyle instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Lifestyle", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need lifestyle genres, not documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Lifestyle", "prompt_family": "vague", "text": "help me choose lifestyle in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "music video overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "how does genres music video options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "vague", "text": "help me choose music video in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "what is music video in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Music Video", "prompt_family": "alias", "text": "what is music video genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Music Video", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for music video genres instead of biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "researching musical, not biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "musical rather than biographies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching musicals, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Musical", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "musical rather than documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "best musical in genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Musical", "prompt_family": "discovery", "text": "top musical in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "looking for genres mystery instead of documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "mystery genres rather than biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "discovery", "text": "top mystery"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Mystery", "prompt_family": "vague", "text": "help me choose genres mystery options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for mystery instead of comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Mystery", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "genres mystery rather than documentary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "learn about reality tv"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "reality tv rather than comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "reality tv genres overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Reality TV", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need reality tv genres, not drama"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "what is genres reality tv"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Reality TV", "prompt_family": "alias", "text": "how does reality tv in genres work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need genres romance, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need romance genres, not drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "vague", "text": "help me choose genres romance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need romance genres, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Romance", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching romance genres, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Romance", "prompt_family": "alias", "text": "romance genres guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need genres science fiction, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for science fiction genres instead of biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "alias", "text": "genres science fiction basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Science Fiction", "prompt_family": "discovery", "text": "compare science fiction genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need science fiction genres, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Science Fiction", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "researching genres science fiction, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching soap opera, not drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Soap Opera", "prompt_family": "vague", "text": "looking into genres soap opera options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "need soap opera genres, not action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "soap opera genres rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "genres soap opera rather than documentary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Soap Opera", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for soap opera instead of biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "vague", "text": "looking into genres special interest (indie/art house) options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for special interest (indie/art house) genres instead of animation and anime"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "vague", "text": "looking into special interest (indie/art house) in genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Special Interest (Indie/Art House)", "prompt_family": "alias", "text": "what is genres special interest (indie/art house)"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "looking for special interest (indie/art house) genres instead of action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Special Interest (Indie/Art House)", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "need genres special interest (indie/art house), not biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "genres sports radio guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "vague", "text": "need advice about sports radio in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "looking for sports radio instead of comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "alias", "text": "how does genres sports radio options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Sports Radio", "negative_iab_path": "Genres > Documentary", "prompt_family": "contrastive", "text": "need sports radio, not documentary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Sports Radio", "prompt_family": "discovery", "text": "best genres sports radio options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "talk radio rather than comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "talk radio genres rather than biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "learn about genres talk radio"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Radio", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "talk radio genres rather than drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "what is genres talk radio options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio", "prompt_family": "alias", "text": "talk radio overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "discovery", "text": "top public radio in talk radio"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "vague", "text": "help me choose public radio in talk radio"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Radio > Public Radio", "prompt_family": "alias", "text": "genres talk radio public radio"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "researching talk show genres, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "need talk show, not animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "alias", "text": "talk show guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Talk Show", "prompt_family": "discovery", "text": "which talk show genres is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "talk show rather than drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Talk Show", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "genres talk show rather than comedy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "genres true crime options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "alias", "text": "what is true crime"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "need true crime, not comedy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > True Crime", "prompt_family": "discovery", "text": "top true crime in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "true crime genres rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > True Crime", "negative_iab_path": "Genres > Comedy", "prompt_family": "contrastive", "text": "researching true crime genres, not comedy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Action/Adventure", "prompt_family": "contrastive", "text": "western genres rather than action/adventure"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Animation & Anime", "prompt_family": "contrastive", "text": "looking for western instead of animation and anime"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "alias", "text": "western overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for western instead of biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Western", "prompt_family": "discovery", "text": "compare western in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Western", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for western genres instead of biographies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "young adult overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "need young adult, not drama"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Drama", "prompt_family": "contrastive", "text": "looking for young adult instead of drama"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "what is genres young adult options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Genres > Young Adult", "prompt_family": "alias", "text": "young adult in genres"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Genres > Young Adult", "negative_iab_path": "Genres > Biographies", "prompt_family": "contrastive", "text": "looking for young adult instead of biographies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "help me choose fitness ideas"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "healthy living overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching healthy living, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "exploring running advice"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "help me choose healthy living guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "what is fitness ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "how does exercise guidance work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "help me choose exercise guidance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "which healthy living is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "looking into fitness ideas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "vague", "text": "help me choose running advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "alias", "text": "healthy habits guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living", "prompt_family": "discovery", "text": "healthy living options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "researching children's health, not weight loss"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "vague", "text": "need advice about children's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Nutrition", "prompt_family": "contrastive", "text": "need healthy living children's health, not nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "looking for healthy living children's health instead of wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Children's Health", "prompt_family": "discovery", "text": "compare healthy living children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Children's Health", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "researching healthy living children's health, not senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "learn about fitness and exercise"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "healthy living fitness and exercise options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "researching fitness and exercise healthy living, not weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "discovery", "text": "which fitness and exercise is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "fitness and exercise rather than children's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "alias", "text": "learn about healthy living fitness and exercise"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "vague", "text": "looking into fitness and exercise participant sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "alias", "text": "healthy living fitness and exercise participant sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "discovery", "text": "which participant sport is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "how does 10k training work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "alias", "text": "running and jogging"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "contrastive", "text": "researching 10k training, not alternative medicine"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "researching men's health healthy living, not weight loss"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "alias", "text": "healthy living men's health options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "compare men's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "need men's health healthy living, not weight loss"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Men's Health", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "researching men's health healthy living, not wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Men's Health", "prompt_family": "discovery", "text": "which men's health healthy living is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "looking for nutrition healthy living instead of weight loss"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "best nutrition in healthy living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "discovery", "text": "compare healthy living nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "researching nutrition healthy living, not wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Nutrition", "prompt_family": "alias", "text": "learn about nutrition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Nutrition", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "nutrition healthy living rather than wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "discovery", "text": "best senior health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "healthy living senior health rather than men's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "senior health overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Senior Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "need senior health, not fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "how does senior health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Senior Health", "prompt_family": "alias", "text": "what is healthy living senior health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "weight loss healthy living basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "looking for healthy living weight loss instead of men's health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "alias", "text": "weight loss guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "discovery", "text": "best weight loss"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Weight Loss", "prompt_family": "vague", "text": "need advice about weight loss in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Weight Loss", "negative_iab_path": "Healthy Living > Wellness", "prompt_family": "contrastive", "text": "need weight loss healthy living, not wellness"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Children's Health", "prompt_family": "contrastive", "text": "need wellness, not children's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Men's Health", "prompt_family": "contrastive", "text": "researching wellness, not men's health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Wellness", "negative_iab_path": "Healthy Living > Weight Loss", "prompt_family": "contrastive", "text": "healthy living wellness rather than weight loss"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "alias", "text": "wellness healthy living guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "best wellness"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness", "prompt_family": "discovery", "text": "healthy living wellness options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "alias", "text": "alternative medicine wellness guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "negative_iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "contrastive", "text": "alternative medicine wellness rather than physical therapy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Alternative Medicine", "negative_iab_path": "Healthy Living > Wellness > Smoking Cessation", "prompt_family": "contrastive", "text": "looking for healthy living wellness alternative medicine instead of smoking cessation"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "discovery", "text": "best herbs and supplements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", "prompt_family": "alias", "text": "learn about herbs and supplements"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "discovery", "text": "which healthy living wellness alternative medicine holistic health is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", "prompt_family": "discovery", "text": "compare alternative medicine holistic health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "alias", "text": "physical therapy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "vague", "text": "exploring wellness physical therapy options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Physical Therapy", "negative_iab_path": "Healthy Living > Wellness > Alternative Medicine", "prompt_family": "contrastive", "text": "looking for physical therapy instead of alternative medicine"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "negative_iab_path": "Healthy Living > Wellness > Physical Therapy", "prompt_family": "contrastive", "text": "researching smoking cessation wellness, not physical therapy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "negative_iab_path": "Healthy Living > Fitness and Exercise > Participant Sports", "prompt_family": "contrastive", "text": "need smoking cessation, not participant sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Healthy Living > Wellness > Smoking Cessation", "negative_iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "prompt_family": "contrastive", "text": "need smoking cessation wellness, not running and jogging"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "compare women's health healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "looking for women's health instead of senior health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "compare women's health in healthy living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Fitness and Exercise", "prompt_family": "contrastive", "text": "researching women's health, not fitness and exercise"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Healthy Living > Women's Health", "prompt_family": "discovery", "text": "women's health healthy living options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Healthy Living > Women's Health", "negative_iab_path": "Healthy Living > Senior Health", "prompt_family": "contrastive", "text": "looking for women's health healthy living instead of senior health"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "help me choose hobbies and interests options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "what is hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "learn about hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "how does hobbies & interest work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching hobbies and interests, not books and literature"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "alias", "text": "what is hobbies and interests options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Hobbies & Interests", "prompt_family": "vague", "text": "exploring hobbies and interests options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need hobbies and interests, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "hobbies and interests rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need antiquing and antiques hobbies and interests, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "researching hobbies and interests antiquing and antiques, not cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "antiquing and antique rather than cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "looking for hobbies and interests antiquing and antiques instead of cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for antiquing and antique instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Antiquing and Antiques", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "researching antiquing and antiques hobbies and interests, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for hobbies and interests arts and crafts instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "researching hobbies and interests arts and crafts, not content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "hobbies and interests arts and crafts rather than collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "arts and crafts hobbies and interests overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "vague", "text": "help me choose hobbies and interests arts and crafts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "alias", "text": "what is arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "vague", "text": "exploring beadwork in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "alias", "text": "arts and crafts beadwork basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "discovery", "text": "compare beadwork arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "discovery", "text": "compare candle and soap making arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "discovery", "text": "best candle and soap making in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "discovery", "text": "compare arts and crafts candle and soap making"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "discovery", "text": "compare hobbies and interests arts and crafts drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "arts and crafts drawing and sketching rather than candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "alias", "text": "what is arts and crafts drawing and sketching options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "what is jewelry making in arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "prompt_family": "alias", "text": "learn about arts and crafts jewelry making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Jewelry Making", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "researching arts and crafts jewelry making, not drawing and sketching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "discovery", "text": "hobbies and interests arts and crafts needlework options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "discovery", "text": "which hobbies and interests arts and crafts needlework is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Needlework", "prompt_family": "discovery", "text": "needlework arts and crafts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "alias", "text": "what is painting arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "prompt_family": "vague", "text": "exploring arts and crafts painting options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Painting", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", "prompt_family": "contrastive", "text": "hobbies and interests arts and crafts painting rather than candle and soap making"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "looking for hobbies and interests arts and crafts photography instead of beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "prompt_family": "alias", "text": "how does photography work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Arts and Crafts > Photography", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", "prompt_family": "contrastive", "text": "researching arts and crafts photography, not drawing and sketching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "alias", "text": "what is hobbies and interests scrapbooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "discovery", "text": "compare scrapbooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Scrapbooking", "prompt_family": "action", "text": "reserve hobbies and interests arts and crafts scrapbooking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "which woodworking is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "discovery", "text": "compare woodworking in arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Arts and Crafts > Woodworking", "prompt_family": "vague", "text": "looking into arts and crafts woodworking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "looking for beekeeping hobbies and interests instead of content production"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "beekeeping hobbies and interests rather than cigars"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "alias", "text": "learn about beekeeping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "discovery", "text": "hobbies and interests beekeeping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "need beekeeping, not cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Beekeeping", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "hobbies and interests beekeeping rather than birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for hobbies and interests birdwatching instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "birdwatching rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching birdwatching, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "birdwatching rather than collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Birdwatching", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "researching birdwatching hobbies and interests, not cigars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "vague", "text": "help me choose hobbies and interests birdwatching options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "researching cigars hobbies and interests, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need cigars, not collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "researching cigars, not antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "need cigars hobbies and interests, not collecting"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Cigars", "prompt_family": "alias", "text": "how does hobbies and interests cigars work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Cigars", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need cigars hobbies and interests, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Content Production", "prompt_family": "contrastive", "text": "need collecting, not content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "alias", "text": "how does collecting in hobbies and interests work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for collecting instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting", "prompt_family": "discovery", "text": "compare collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "hobbies and interests collecting rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for collecting hobbies and interests instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "comic books overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "negative_iab_path": "Hobbies & Interests > Arts and Crafts > Beadwork", "prompt_family": "contrastive", "text": "need comic books, not beadwork"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Comic Books", "prompt_family": "alias", "text": "how does hobbies and interests collecting comic books work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "collecting stamps and coins basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "stamps and coin"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Collecting > Stamps and Coins", "prompt_family": "alias", "text": "how does stamps and coins collecting work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "compare content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "alias", "text": "content production hobbies and interests overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "content production hobbies and interests rather than beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production", "prompt_family": "discovery", "text": "best content production in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "content production rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "content production hobbies and interests rather than arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "negative_iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "contrastive", "text": "need audio production, not freelance writing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "discovery", "text": "top audio production in content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "alias", "text": "what is hobbies and interests content production audio production"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "negative_iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "contrastive", "text": "looking for freelance writing content production instead of screenwriting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "negative_iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "contrastive", "text": "need freelance writing, not audio production"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "negative_iab_path": "Hobbies & Interests > Content Production > Audio Production", "prompt_family": "contrastive", "text": "freelance writing rather than audio production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "discovery", "text": "best screenwriting content production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "prompt_family": "vague", "text": "looking into content production screenwriting options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Content Production > Screenwriting", "negative_iab_path": "Hobbies & Interests > Content Production > Freelance Writing", "prompt_family": "contrastive", "text": "looking for content production screenwriting instead of freelance writing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "discovery", "text": "best content production video production"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "discovery", "text": "top content production video production options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Content Production > Video Production", "prompt_family": "discovery", "text": "compare video production in content production"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "discovery", "text": "top games and puzzles"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need games and puzzles hobbies and interests, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "researching games and puzzles, not collecting"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles", "prompt_family": "vague", "text": "need advice about games and puzzles in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "need hobbies and interests games and puzzles, not birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "researching games and puzzle, not collecting"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "contrastive", "text": "looking for board games and puzzles games and puzzles instead of roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "prompt_family": "alias", "text": "how does board games and puzzles work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", "negative_iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "contrastive", "text": "need board games and puzzle, not roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "alias", "text": "how does hobbies and interests games and puzzles card games work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "vague", "text": "exploring games and puzzles card games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Card Games", "prompt_family": "action", "text": "reserve card games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "discovery", "text": "compare roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "discovery", "text": "compare hobbies and interests games and puzzles roleplaying games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", "prompt_family": "alias", "text": "learn about roleplaying game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "genealogy and ancestry overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "hobbies and interests genealogy and ancestry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "alias", "text": "genealogy and ancestry in hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "looking for hobbies and interests genealogy and ancestry instead of beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for hobbies and interests genealogy and ancestry instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Genealogy and Ancestry", "prompt_family": "discovery", "text": "genealogy and ancestry hobbies and interests options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "looking for hobbies and interests magic and illusion instead of collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "hobbies and interests magic and illusion rather than beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Magic and Illusion", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "researching magic and illusion, not antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "hobbies and interests magic and illusion basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "alias", "text": "magic and illusion hobbies and interests guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Magic and Illusion", "prompt_family": "discovery", "text": "compare magic and illusion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for model toys hobbies and interests instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "alias", "text": "model toys basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Model Toys", "prompt_family": "vague", "text": "exploring hobbies and interests model toys options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for model toys hobbies and interests instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "looking for model toys instead of birdwatching"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Model Toys", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "need model toys hobbies and interests, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "hobbies and interests musical instruments rather than beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "discovery", "text": "best hobbies and interests musical instruments options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "musical instruments hobbies and interests rather than birdwatching"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Musical Instruments", "prompt_family": "alias", "text": "learn about musical instrument"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching hobbies and interests musical instruments, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Musical Instruments", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "hobbies and interests musical instruments rather than cigars"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "prompt_family": "alias", "text": "paranormal phenomena in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "researching paranormal phenomena hobbies and interests, not antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "researching paranormal phenomena hobbies and interests, not collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "looking for paranormal phenomena hobbies and interests instead of antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "need hobbies and interests paranormal phenomena, not cigars"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Paranormal Phenomena", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "need paranormal phenomena hobbies and interests, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "hobbies and interests radio control rather than antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "looking for hobbies and interests radio control instead of beekeeping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "vague", "text": "looking into hobbies and interests radio control options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Radio Control", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "need radio control hobbies and interests, not arts and crafts"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "alias", "text": "radio control in hobbies and interests"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Radio Control", "prompt_family": "vague", "text": "looking into radio control in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "researching sci-fi and fantasy hobbies and interests, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "alias", "text": "sci-fi and fantasy overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Antiquing and Antiques", "prompt_family": "contrastive", "text": "sci-fi and fantasy hobbies and interests rather than antiquing and antiques"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Beekeeping", "prompt_family": "contrastive", "text": "need sci-fi and fantasy hobbies and interests, not beekeeping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "negative_iab_path": "Hobbies & Interests > Birdwatching", "prompt_family": "contrastive", "text": "researching sci-fi and fantasy hobbies and interests, not birdwatching"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Sci-fi and Fantasy", "prompt_family": "vague", "text": "looking into hobbies and interests sci-fi and fantasy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "vague", "text": "looking into workshops and classes in hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "discovery", "text": "top workshops and classes hobbies and interests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Hobbies & Interests > Workshops and Classes", "prompt_family": "alias", "text": "workshops and classes basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Collecting", "prompt_family": "contrastive", "text": "workshops and classes hobbies and interests rather than collecting"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Arts and Crafts", "prompt_family": "contrastive", "text": "need hobbies and interests workshops and classes, not arts and crafts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Hobbies & Interests > Workshops and Classes", "negative_iab_path": "Hobbies & Interests > Cigars", "prompt_family": "contrastive", "text": "researching workshops and classes, not cigars"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching holiday, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "what is holidays"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "holiday"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "what is holidays guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "holiday rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "discovery", "text": "top holiday"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "alias", "text": "what is holidays options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Holidays", "prompt_family": "vague", "text": "looking into holidays guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Holidays", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "holidays rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "best national & civic holiday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "vague", "text": "looking into holidays national and civic holidays options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "discovery", "text": "top holidays national and civic holidays options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national & civic holiday guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "national and civic holidays holidays guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Holidays > National & Civic Holidays", "prompt_family": "alias", "text": "holidays national and civic holidays basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "top home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "garden advice guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for home & garden instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "help me choose house updates"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "home and garden options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "best home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "exploring garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "what is home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "help me choose garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "backyard ideas guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "house updates"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "alias", "text": "home & garden guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "looking into home projects"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "discovery", "text": "top garden advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "need advice about backyard ideas"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Home & Garden", "prompt_family": "vague", "text": "looking into home and garden options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Home & Garden", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching home & garden, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "what is home and garden gardening options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "how does plant care work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "need gardening tips, not home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "gardening home and garden rather than home appliances"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Gardening", "prompt_family": "alias", "text": "how does gardening in home and garden work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Gardening", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "balcony garden rather than home appliances"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching home appliances home and garden, not gardening"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "looking for home appliances instead of home improvement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "what is home and garden home appliances options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Appliances", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "need home appliances, not indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "learn about home and garden home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Appliances", "prompt_family": "alias", "text": "how does home and garden home appliances work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "looking for home entertaining instead of home improvement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "need home entertaining, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Entertaining", "prompt_family": "alias", "text": "what is home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "need home and garden home entertaining, not home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "home and garden home entertaining rather than home improvement"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Entertaining", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "researching home and garden home entertaining, not home security"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "top home and garden home improvement options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "looking for home and garden home improvement instead of home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "discovery", "text": "compare home improvement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home improvement home and garden"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Improvement", "prompt_family": "alias", "text": "home improvement in home and garden guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Improvement", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "home and garden home improvement rather than home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "need home security, not indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "how does home security in home and garden work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "discovery", "text": "home security options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "researching home security home and garden, not indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Home Security", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "researching home security, not indoor environmental quality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Home Security", "prompt_family": "alias", "text": "what is home and garden home security options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "home and garden indoor environmental quality guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "looking for indoor environmental quality instead of home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "need indoor environmental quality, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "alias", "text": "what is indoor environmental quality home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "looking for indoor environmental quality home and garden instead of home entertaining"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Indoor Environmental Quality", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "need home and garden indoor environmental quality, not home improvement"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "vague", "text": "need advice about home and garden interior decorating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Home Improvement", "prompt_family": "contrastive", "text": "interior decorating rather than home improvement"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "interior decorating basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "discovery", "text": "home and garden interior decorating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Interior Decorating", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching home and garden interior decorating, not gardening"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Interior Decorating", "prompt_family": "alias", "text": "interior decorating in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "how does landscaping work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "compare home and garden landscaping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "home and garden landscaping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "discovery", "text": "best home and garden landscaping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Landscaping", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching landscaping, not gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Landscaping", "prompt_family": "alias", "text": "home and garden landscaping guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "compare outdoor decorating home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "compare outdoor decorating"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Outdoor Decorating", "negative_iab_path": "Home & Garden > Home Appliances", "prompt_family": "contrastive", "text": "researching outdoor decorating home and garden, not home appliances"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "top home and garden outdoor decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "discovery", "text": "best home and garden outdoor decorating"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Outdoor Decorating", "prompt_family": "alias", "text": "outdoor decorating basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "remodeling and construction"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "discovery", "text": "best remodeling & construction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Indoor Environmental Quality", "prompt_family": "contrastive", "text": "researching remodeling and construction home and garden, not indoor environmental quality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "looking for remodeling and construction home and garden instead of gardening"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Remodeling & Construction", "prompt_family": "alias", "text": "learn about remodeling & construction"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Remodeling & Construction", "negative_iab_path": "Home & Garden > Home Entertaining", "prompt_family": "contrastive", "text": "researching home and garden remodeling and construction, not home entertaining"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "discovery", "text": "best smart home in home and garden"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "alias", "text": "smart home overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Home & Garden > Smart Home", "prompt_family": "vague", "text": "need advice about smart home in home and garden"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching smart home home and garden, not gardening"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Home Security", "prompt_family": "contrastive", "text": "need home and garden smart home, not home security"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Home & Garden > Smart Home", "negative_iab_path": "Home & Garden > Gardening", "prompt_family": "contrastive", "text": "researching smart home, not gardening"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "need advice about law options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "alias", "text": "learn about law"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Law", "prompt_family": "vague", "text": "exploring law options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Law", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for law instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Law", "prompt_family": "discovery", "text": "top law"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "vague", "text": "looking into computer software and applications maps and navigation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", "prompt_family": "alias", "text": "maps and navigation computer software and applications overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "best symptom help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "looking into medical advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "discovery", "text": "best doctor guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "help me choose health questions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "how does medical advice work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "exploring medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "medical advice guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need medical health, not automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "help me choose medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "vague", "text": "need advice about doctor guidance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "medical health rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "medical health rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health", "prompt_family": "alias", "text": "what is doctor guidance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "looking for cosmetic medical service instead of diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "alias", "text": "what is cosmetic medical services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "discovery", "text": "top cosmetic medical service"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching cosmetic medical services, not vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "researching cosmetic medical service, not surgery"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Cosmetic Medical Services", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching cosmetic medical services medical health, not vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "looking for medical health diseases and conditions instead of vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "medical health diseases and conditions rather than vaccines"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "vague", "text": "looking into medical health diseases and conditions options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Cosmetic Medical Services", "prompt_family": "contrastive", "text": "looking for diseases and conditions medical health instead of cosmetic medical services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "vague", "text": "exploring diseases and conditions in medical health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "looking for diseases and conditions medical health instead of medical tests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "allergies guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "discovery", "text": "allergies options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "alias", "text": "diseases and conditions allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "blood disorders diseases and conditions rather than allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "contrastive", "text": "blood disorder rather than brain and nervous system disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "researching blood disorders, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "alias", "text": "bone and joint condition overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for bone and joint conditions diseases and conditions instead of allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "discovery", "text": "best medical health brain and nervous system disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need brain and nervous system disorder, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", "prompt_family": "alias", "text": "medical health brain and nervous system disorders guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for cancer diseases and conditions instead of bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "prompt_family": "alias", "text": "diseases and conditions cancer options guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cancer", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "cancer diseases and conditions rather than allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "vague", "text": "looking into cold and flu in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "prompt_family": "vague", "text": "need advice about diseases and conditions cold and flu options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Cold and Flu", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching cold and flu, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for diseases and conditions dental health instead of bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "dental health rather than blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Dental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need dental health diseases and conditions, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "discovery", "text": "diabete options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "vague", "text": "looking into diabetes in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Diabetes", "prompt_family": "alias", "text": "how does diabetes in diseases and conditions work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "prompt_family": "vague", "text": "help me choose digestive disorders in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching digestive disorders diseases and conditions, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Digestive Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need digestive disorder, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "prompt_family": "discovery", "text": "best diseases and conditions ear, nose and throat conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need ear, nose and throat conditions, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "diseases and conditions ear, nose and throat conditions rather than bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for endocrine and metabolic diseases instead of allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching diseases and conditions endocrine and metabolic diseases, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", "prompt_family": "discovery", "text": "compare medical health endocrine and metabolic diseases"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "contrastive", "text": "looking for hormonal disorders instead of thyroid disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "alias", "text": "endocrine and metabolic diseases hormonal disorders options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "alias", "text": "how does menopause in endocrine and metabolic diseases work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions endocrine and metabolic diseases menopause, not hormonal disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "alias", "text": "what is thyroid disorder"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", "prompt_family": "vague", "text": "exploring thyroid disorders in endocrine and metabolic diseases"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching eye and vision condition, not blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "eye and vision condition rather than blood disorders"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", "prompt_family": "discovery", "text": "top medical health eye and vision conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "discovery", "text": "top foot health diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "alias", "text": "what is diseases and conditions foot health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Foot Health", "prompt_family": "discovery", "text": "top diseases and conditions foot health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "how does diseases and conditions heart and cardiovascular diseases options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "need heart and cardiovascular diseases, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", "prompt_family": "alias", "text": "heart and cardiovascular diseases diseases and conditions guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "discovery", "text": "top infectious diseases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "prompt_family": "alias", "text": "what is infectious diseases"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Infectious Diseases", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching diseases and conditions infectious diseases, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "discovery", "text": "compare diseases and conditions injuries options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "vague", "text": "looking into medical health injuries"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries", "prompt_family": "vague", "text": "need advice about injuries in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "injuries first aid options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Injuries > First Aid", "prompt_family": "alias", "text": "injuries first aid guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "alias", "text": "what is diseases and conditions lung and respiratory health"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "need diseases and conditions lung and respiratory health, not allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", "prompt_family": "discovery", "text": "diseases and conditions lung and respiratory health options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "need mental health, not allergies"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for diseases and conditions mental health instead of allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Mental Health", "prompt_family": "vague", "text": "looking into diseases and conditions mental health options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "looking for reproductive health instead of allergies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "prompt_family": "alias", "text": "reproductive health diseases and conditions overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions reproductive health, not allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "prompt_family": "discovery", "text": "top reproductive health birth control options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", "negative_iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "contrastive", "text": "looking for birth control instead of infertility"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "alias", "text": "how does infertility in reproductive health work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", "prompt_family": "alias", "text": "what is infertility reproductive health"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "vague", "text": "need advice about reproductive health pregnancy options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", "prompt_family": "alias", "text": "reproductive health pregnancy"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "need medical health diseases and conditions sexual health, not bone and joint conditions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "discovery", "text": "top diseases and conditions sexual health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health", "prompt_family": "discovery", "text": "sexual health diseases and conditions options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "prompt_family": "alias", "text": "what is sexual conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", "negative_iab_path": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", "prompt_family": "contrastive", "text": "sexual conditions rather than menopause"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "prompt_family": "vague", "text": "help me choose skin and dermatology in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "medical health diseases and conditions skin and dermatology rather than bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Skin and Dermatology", "negative_iab_path": "Medical Health > Diseases and Conditions > Allergies", "prompt_family": "contrastive", "text": "skin and dermatology rather than allergies"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "prompt_family": "vague", "text": "need advice about sleep disorders in diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "sleep disorder rather than blood disorders"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Sleep Disorders", "negative_iab_path": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", "prompt_family": "contrastive", "text": "looking for sleep disorder instead of bone and joint conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "what is medical health substance abuse"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "prompt_family": "alias", "text": "diseases and conditions substance abuse overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Medical Health > Diseases and Conditions > Substance Abuse", "negative_iab_path": "Medical Health > Diseases and Conditions > Blood Disorders", "prompt_family": "contrastive", "text": "researching medical health diseases and conditions substance abuse, not blood disorders"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching medical tests, not vaccines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "what is medical tests medical health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Surgery", "prompt_family": "contrastive", "text": "researching medical tests medical health, not surgery"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "looking for medical tests medical health instead of vaccines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Medical Tests", "prompt_family": "alias", "text": "learn about medical tests"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Medical Tests", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "researching medical test, not vaccines"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Vaccines", "prompt_family": "contrastive", "text": "need pharmaceutical drug, not vaccines"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "pharmaceutical drug guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "discovery", "text": "which pharmaceutical drugs medical health is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "pharmaceutical drug"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Pharmaceutical Drugs", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "researching medical health pharmaceutical drugs, not medical tests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Pharmaceutical Drugs", "prompt_family": "alias", "text": "learn about pharmaceutical drugs medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "how does medical health surgery work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "vague", "text": "looking into medical health surgery options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "surgery medical health guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "vague", "text": "exploring surgery in medical health"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Surgery", "prompt_family": "alias", "text": "medical health surgery guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Surgery", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "need surgery medical health, not diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Medical Tests", "prompt_family": "contrastive", "text": "need vaccines medical health, not medical tests"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "discovery", "text": "top vaccines medical health"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "looking for vaccine instead of diseases and conditions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "medical health vaccines rather than diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Medical Health > Vaccines", "prompt_family": "alias", "text": "vaccines in medical health guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Medical Health > Vaccines", "negative_iab_path": "Medical Health > Diseases and Conditions", "prompt_family": "contrastive", "text": "vaccine rather than diseases and conditions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "vague", "text": "looking into music adult album alternative options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "alias", "text": "adult album alternative in music guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "discovery", "text": "which entertainment music adult album alternative is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "vague", "text": "exploring music adult contemporary music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "alias", "text": "what is adult contemporary music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "discovery", "text": "top music adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "discovery", "text": "which adult contemporary music soft ac music is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "negative_iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "contrastive", "text": "looking for entertainment music adult contemporary music soft ac music instead of album-oriented rock"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "prompt_family": "alias", "text": "how does adult contemporary music urban ac music options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", "negative_iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "contrastive", "text": "looking for entertainment music adult contemporary music urban ac music instead of alternative rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Alternative Music", "negative_iab_path": "Entertainment > Music > Blues", "prompt_family": "contrastive", "text": "alternative music music rather than blues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "alias", "text": "music alternative music basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Alternative Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need alternative music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "blues in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "blue guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Blues", "prompt_family": "alias", "text": "learn about music blues"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Children's Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for children's music music instead of adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Children's Music", "prompt_family": "discovery", "text": "which music children's music is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Children's Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching children's music music, not adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "discovery", "text": "classic hits options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Classic Hits", "prompt_family": "discovery", "text": "compare entertainment classic hits"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classic Hits", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need classic hits, not alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Classical Music", "prompt_family": "alias", "text": "entertainment music classical music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classical Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for classical music music instead of adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Classical Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for classical music instead of alternative music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > College Radio", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching college radio, not alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "how does music college radio work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > College Radio", "prompt_family": "alias", "text": "how does entertainment college radio work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "discovery", "text": "best entertainment music comedy (music and audio)"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "comedy (music and audio) rather than adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Comedy (Music and Audio)", "prompt_family": "discovery", "text": "entertainment music comedy (music and audio) options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "alias", "text": "learn about contemporary hits/pop/top 40"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "researching contemporary hits/pop/top 40 music, not alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Contemporary Hits/Pop/Top 40", "prompt_family": "discovery", "text": "best contemporary hits/pop/top 40 music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "learn about music country music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "alias", "text": "how does music country music options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Country Music", "prompt_family": "vague", "text": "exploring entertainment country music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Dance and Electronic Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "need entertainment music dance and electronic music, not adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "discovery", "text": "best dance and electronic music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Dance and Electronic Music", "prompt_family": "discovery", "text": "top dance and electronic music in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "alias", "text": "gospel music music overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "discovery", "text": "top gospel music in music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Gospel Music", "prompt_family": "vague", "text": "need advice about entertainment gospel music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "what is music hip hop music options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Hip Hop Music", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "entertainment music hip hop music rather than adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Hip Hop Music", "prompt_family": "alias", "text": "how does entertainment hip hop music work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "alias", "text": "inspirational/new age music basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "prompt_family": "discovery", "text": "best music inspirational/new age music options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Inspirational/New Age Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for inspirational/new age music music instead of alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "alias", "text": "jazz"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Jazz", "prompt_family": "vague", "text": "need advice about jazz in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Jazz", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching jazz, not adult album alternative"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "oldies/adult standard guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "oldies/adult standards music basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Oldies/Adult Standards", "prompt_family": "alias", "text": "learn about oldies/adult standards music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "r and b/soul/funk music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "researching music r and b/soul/funk, not adult contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > R&B/Soul/Funk", "prompt_family": "alias", "text": "learn about r and b/soul/funk"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "vague", "text": "exploring entertainment reggae"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Reggae", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "researching entertainment music reggae, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Reggae", "prompt_family": "discovery", "text": "top reggae in music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "religious (music and audio) basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "alias", "text": "entertainment music religious (music and audio) basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Religious (Music and Audio)", "prompt_family": "discovery", "text": "religious (music and audio) options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need music rock music, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "looking for rock music instead of alternative music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music", "prompt_family": "vague", "text": "need advice about entertainment rock music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "alias", "text": "what is album-oriented rock in rock music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Album-oriented Rock", "prompt_family": "alias", "text": "album-oriented rock rock music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "alias", "text": "rock music alternative rock basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "alias", "text": "how does rock music alternative rock work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "prompt_family": "discovery", "text": "top classic rock in rock music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Classic Rock", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", "prompt_family": "contrastive", "text": "classic rock rock music rather than soft ac music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "alias", "text": "entertainment music rock music hard rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Hard Rock", "prompt_family": "alias", "text": "hard rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "prompt_family": "alias", "text": "entertainment music rock music soft rock"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Rock Music > Soft Rock", "negative_iab_path": "Entertainment > Music > Rock Music > Alternative Rock", "prompt_family": "contrastive", "text": "rock music soft rock rather than alternative rock"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "alias", "text": "entertainment music songwriters/folk overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Songwriters/Folk", "prompt_family": "vague", "text": "exploring songwriters/folk in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Songwriters/Folk", "negative_iab_path": "Entertainment > Music > Adult Album Alternative", "prompt_family": "contrastive", "text": "need entertainment music songwriters/folk, not adult album alternative"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "vague", "text": "need advice about soundtracks, tv and showtunes in music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "negative_iab_path": "Entertainment > Music > Adult Contemporary Music", "prompt_family": "contrastive", "text": "looking for music soundtracks, tv and showtunes instead of adult contemporary music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Soundtracks, TV and Showtunes", "prompt_family": "vague", "text": "looking into music soundtracks, tv and showtunes options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "discovery", "text": "compare entertainment world/international music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "discovery", "text": "top entertainment music world/international music"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > World/International Music", "prompt_family": "vague", "text": "help me choose music world/international music options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "alias", "text": "entertainment urban contemporary music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Urban Contemporary Music", "prompt_family": "discovery", "text": "compare urban contemporary music"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Entertainment > Music > Urban Contemporary Music", "negative_iab_path": "Entertainment > Music > Alternative Music", "prompt_family": "contrastive", "text": "need urban contemporary music, not alternative music"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "music variety (music and audio) basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "discovery", "text": "compare entertainment music variety (music and audio)"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Entertainment > Music > Variety (Music and Audio)", "prompt_family": "alias", "text": "music variety (music and audio) overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "learn about personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "alias", "text": "personal celebrations & life event basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for personal celebrations & life event instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "personal celebrations & life event options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "vague", "text": "looking into personal celebrations and life events guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events", "prompt_family": "discovery", "text": "which personal celebrations and life events is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching personal celebrations & life event, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need personal celebrations & life event, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching personal celebrations & life event, not attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "looking for anniversary personal celebrations and life events instead of birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "personal celebrations and life events anniversary rather than birthday"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "which anniversary is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "discovery", "text": "top anniversary in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "researching anniversary personal celebrations and life events, not funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Anniversary", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "looking for anniversary instead of bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "looking for baby shower personal celebrations and life events instead of birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "researching personal celebrations and life events baby shower, not birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "looking for baby shower personal celebrations and life events instead of birthday"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "vague", "text": "need advice about baby shower in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "discovery", "text": "best baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Baby Shower", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events baby shower instead of bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "bachelor party personal celebrations and life events rather than birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "need bachelor party personal celebrations and life events, not funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "personal celebrations and life events bachelor party rather than funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "need personal celebrations and life events bachelor party, not baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "researching personal celebrations and life events bachelor party, not funeral"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "alias", "text": "bachelor party basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "researching bachelorette party personal celebrations and life events, not anniversary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "discovery", "text": "compare bachelorette party in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "bachelorette party personal celebrations and life events rather than anniversary"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "alias", "text": "learn about bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "looking for bachelorette party personal celebrations and life events instead of baby shower"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "vague", "text": "need advice about personal celebrations and life events bachelorette party options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "alias", "text": "what is personal celebrations and life events birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "researching personal celebrations and life events birth, not funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "contrastive", "text": "need birth, not funeral"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birth", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "researching birth personal celebrations and life events, not bachelorette party"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "vague", "text": "looking into personal celebrations and life events birth options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "discovery", "text": "compare birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "looking for birthday personal celebrations and life events instead of bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "researching birthday, not bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "birthday rather than birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "birthday personal celebrations and life events rather than birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "researching birthday, not birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Birthday", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "birthday rather than anniversary"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "funeral rather than bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "looking for personal celebrations and life events funeral instead of birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Funeral", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "funeral rather than baby shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "alias", "text": "what is personal celebrations and life events funeral"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "which personal celebrations and life events funeral is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Funeral", "prompt_family": "discovery", "text": "compare funeral personal celebrations and life events"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "discovery", "text": "best personal celebrations and life events graduation options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Graduation", "prompt_family": "alias", "text": "what is personal celebrations and life events graduation"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "graduation rather than birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "need graduation personal celebrations and life events, not bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "graduation personal celebrations and life events rather than bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Graduation", "negative_iab_path": "Personal Celebrations & Life Events > Bachelorette Party", "prompt_family": "contrastive", "text": "researching personal celebrations and life events graduation, not bachelorette party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Anniversary", "prompt_family": "contrastive", "text": "prom rather than anniversary"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "prom in personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "how does prom personal celebrations and life events work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Prom", "prompt_family": "alias", "text": "prom personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Birthday", "prompt_family": "contrastive", "text": "need prom personal celebrations and life events, not birthday"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Prom", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "prom personal celebrations and life events rather than baby shower"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "personal celebrations and life events wedding rather than birth"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Birth", "prompt_family": "contrastive", "text": "wedding personal celebrations and life events rather than birth"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "alias", "text": "learn about wedding personal celebrations and life events"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Celebrations & Life Events > Wedding", "prompt_family": "discovery", "text": "top personal celebrations and life events wedding"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Bachelor Party", "prompt_family": "contrastive", "text": "researching wedding, not bachelor party"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Celebrations & Life Events > Wedding", "negative_iab_path": "Personal Celebrations & Life Events > Baby Shower", "prompt_family": "contrastive", "text": "looking for wedding personal celebrations and life events instead of baby shower"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "need advice about saving money"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "exploring retirement planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "exploring saving money"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "discovery", "text": "which personal finance is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "need advice about financial guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "what is budget planning"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "help me choose personal finance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "budget planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "retirement planning guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "how does retirement planning work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "budget planning guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "alias", "text": "personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance", "prompt_family": "vague", "text": "exploring financial guidance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "vague", "text": "looking into personal finance consumer banking options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "personal finance consumer banking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "alias", "text": "learn about personal finance consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Consumer Banking", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "researching consumer banking personal finance, not frugal living"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "vague", "text": "help me choose consumer banking in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Consumer Banking", "prompt_family": "discovery", "text": "compare personal finance consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "looking for financial assistance instead of personal debt"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "looking for financial assistance instead of financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "vague", "text": "exploring financial assistance in personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "looking for personal finance financial assistance instead of financial planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "researching financial assistance, not home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance", "prompt_family": "discovery", "text": "top personal finance financial assistance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "negative_iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "contrastive", "text": "researching financial assistance government support and welfare, not gas and electric"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "alias", "text": "learn about financial assistance government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "discovery", "text": "compare financial assistance government support and welfare options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "how does financial assistance student financial aid work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "discovery", "text": "compare student financial aid in financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Financial Assistance > Student Financial Aid", "prompt_family": "alias", "text": "personal finance student financial aid"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "need financial planning personal finance, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "researching personal finance financial planning, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "looking for financial planning instead of frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "looking for personal finance financial planning instead of financial assistance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "personal finance financial planning rather than home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Financial Planning", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "need financial planning, not home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "best frugal living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "discovery", "text": "best personal finance frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "looking for personal finance frugal living instead of insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "need frugal living, not financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Frugal Living", "prompt_family": "vague", "text": "need advice about personal finance frugal living options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Frugal Living", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "need personal finance frugal living, not financial assistance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "researching personal finance home utilities, not financial planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "researching home utility, not financial planning"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "how does home utility work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "alias", "text": "how does personal finance home utilities options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "looking for home utilities instead of consumer banking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities", "prompt_family": "discovery", "text": "compare home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "gas and electric home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "prompt_family": "alias", "text": "learn about gas and electric"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Gas and Electric", "negative_iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "contrastive", "text": "researching home utilities gas and electric, not phone services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "discovery", "text": "personal finance home utilities internet service providers options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "vague", "text": "looking into home utilities internet service providers options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "alias", "text": "home utilities internet service providers options guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "vague", "text": "looking into home utilities phone services options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "top phone services home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Phone Services", "prompt_family": "discovery", "text": "compare phone services"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "discovery", "text": "compare personal finance home utilities water services"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Home Utilities > Water Services", "prompt_family": "alias", "text": "what is home utilities water services options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Home Utilities > Water Services", "negative_iab_path": "Personal Finance > Home Utilities > Internet Service Providers", "prompt_family": "contrastive", "text": "researching water service, not internet service providers"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Personal Debt", "prompt_family": "contrastive", "text": "personal finance insurance rather than personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "insurance personal finance guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "looking for personal finance insurance instead of consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Insurance", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "personal finance insurance rather than financial assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "insurance basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance", "prompt_family": "alias", "text": "what is insurance in personal finance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "personal finance insurance health insurance overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "discovery", "text": "which personal finance insurance health insurance is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "alias", "text": "health insurance in insurance guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "discovery", "text": "best insurance home insurance options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Home Insurance", "negative_iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "contrastive", "text": "home insurance rather than life insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Home Insurance", "prompt_family": "alias", "text": "what is personal finance insurance home insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Life Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "life insurance insurance rather than government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "vague", "text": "exploring life insurance in insurance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "alias", "text": "insurance life insurance basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Motor Insurance", "negative_iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "contrastive", "text": "looking for insurance motor insurance instead of health insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Motor Insurance", "negative_iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "contrastive", "text": "looking for motor insurance insurance instead of health insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Motor Insurance", "negative_iab_path": "Personal Finance > Insurance > Health Insurance", "prompt_family": "contrastive", "text": "need motor insurance, not health insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "alias", "text": "pet insurance in insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Pet Insurance", "prompt_family": "vague", "text": "need advice about personal finance pet insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Pet Insurance", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for insurance pet insurance instead of government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "alias", "text": "how does travel insurance work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Insurance > Travel Insurance", "prompt_family": "discovery", "text": "top personal finance insurance travel insurance"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Insurance > Travel Insurance", "negative_iab_path": "Personal Finance > Insurance > Life Insurance", "prompt_family": "contrastive", "text": "looking for travel insurance instead of life insurance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "researching personal debt personal finance, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "need personal debt personal finance, not financial assistance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "need personal debt personal finance, not consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "looking for personal finance personal debt instead of frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt", "negative_iab_path": "Personal Finance > Insurance", "prompt_family": "contrastive", "text": "looking for personal finance personal debt instead of insurance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt", "prompt_family": "discovery", "text": "best personal debt in personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "alias", "text": "credit cards in personal debt guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "action", "text": "buy credit cards personal debt"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Credit Cards", "prompt_family": "action", "text": "find credit cards personal debt"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Debt > Home Financing", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for personal debt home financing instead of government support and welfare"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "alias", "text": "personal finance personal debt home financing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Home Financing", "prompt_family": "discovery", "text": "which home financing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "discovery", "text": "top personal loan"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "action", "text": "buy personal debt personal loans"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Personal Loans", "prompt_family": "vague", "text": "exploring personal debt personal loans options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "discovery", "text": "which personal finance personal debt student loans is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "discovery", "text": "best personal debt student loans options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Debt > Student Loans", "prompt_family": "discovery", "text": "top personal debt student loans options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing", "prompt_family": "discovery", "text": "personal investing personal finance options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Consumer Banking", "prompt_family": "contrastive", "text": "personal investing rather than consumer banking"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "looking for personal finance personal investing instead of home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "researching personal investing personal finance, not financial planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "need personal investing, not financial planning"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "personal investing personal finance rather than financial assistance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "prompt_family": "alias", "text": "what is personal finance hedge funds"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "negative_iab_path": "Personal Finance > Financial Assistance > Government Support and Welfare", "prompt_family": "contrastive", "text": "looking for hedge funds personal investing instead of government support and welfare"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Hedge Funds", "negative_iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "contrastive", "text": "researching hedge funds personal investing, not stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "learn about mutual fund"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "negative_iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "contrastive", "text": "mutual funds rather than stocks and bonds"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Mutual Funds", "prompt_family": "alias", "text": "what is mutual funds personal investing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "personal finance options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "options personal investing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "alias", "text": "personal finance personal investing options overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "alias", "text": "how does personal investing stocks and bonds options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "prompt_family": "vague", "text": "help me choose personal investing stocks and bonds options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Personal Finance > Personal Investing > Stocks and Bonds", "negative_iab_path": "Personal Finance > Personal Investing > Options", "prompt_family": "contrastive", "text": "looking for personal finance personal investing stocks and bonds instead of options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "need personal finance personal taxes, not home utilities"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "discovery", "text": "top personal taxes personal finance"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "personal taxes personal finance rather than frugal living"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Personal Taxes", "prompt_family": "alias", "text": "how does personal finance personal taxes work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Home Utilities", "prompt_family": "contrastive", "text": "researching personal taxes personal finance, not home utilities"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Personal Taxes", "negative_iab_path": "Personal Finance > Financial Planning", "prompt_family": "contrastive", "text": "researching personal taxes, not financial planning"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "personal finance retirement planning options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "looking for retirement planning instead of frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Frugal Living", "prompt_family": "contrastive", "text": "researching retirement planning, not frugal living"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Personal Finance > Retirement Planning", "negative_iab_path": "Personal Finance > Financial Assistance", "prompt_family": "contrastive", "text": "researching retirement planning personal finance, not financial assistance"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "what is retirement planning personal finance"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Personal Finance > Retirement Planning", "prompt_family": "alias", "text": "what is personal finance retirement planning options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "alias", "text": "pet overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching pets, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "which pet is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "pets rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "looking into pets options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pets", "prompt_family": "vague", "text": "help me choose pets guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pets", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for pets instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets", "prompt_family": "discovery", "text": "top pet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "learn about birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "researching birds pets, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "need birds pets, not large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "need bird, not pet adoptions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Birds", "prompt_family": "alias", "text": "pets birds basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Birds", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "birds rather than dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Cats", "prompt_family": "alias", "text": "pets cats overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "researching cats, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "researching cats, not pet supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "need cats pets, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "looking for pets cats instead of dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Cats", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "researching cats pets, not pet adoptions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "vague", "text": "exploring dogs in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "discovery", "text": "best dog"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "looking for dog instead of pet supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "looking for dog instead of pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Dogs", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "need dogs, not large animals"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Dogs", "prompt_family": "alias", "text": "dogs pets guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "researching fish and aquarium, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "researching fish and aquarium, not cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "pets fish and aquariums guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "fish and aquarium rather than large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Fish and Aquariums", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "need fish and aquariums, not cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Fish and Aquariums", "prompt_family": "alias", "text": "what is fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "looking for pets large animals instead of pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "large animals pets rather than dogs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "alias", "text": "what is large animals pets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "pets large animals rather than birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Large Animals", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "large animals rather than dogs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Large Animals", "prompt_family": "discovery", "text": "top large animals in pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "learn about pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Fish and Aquariums", "prompt_family": "contrastive", "text": "need pet adoptions pets, not fish and aquariums"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "pet adoption rather than pet supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Adoptions", "negative_iab_path": "Pets > Pet Supplies", "prompt_family": "contrastive", "text": "researching pet adoptions, not pet supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "alias", "text": "how does pet adoptions pets work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Pet Adoptions", "prompt_family": "discovery", "text": "compare pets pet adoptions options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "need pets pet supplies, not birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "need pet supplies, not cats"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "need pet supplies pets, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Birds", "prompt_family": "contrastive", "text": "looking for pet supply instead of birds"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "need pet supplies pets, not cats"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Pet Supplies", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "need pets pet supplies, not large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Large Animals", "prompt_family": "contrastive", "text": "looking for reptiles instead of large animals"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Dogs", "prompt_family": "contrastive", "text": "need pets reptiles, not dogs"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "reptiles pets rather than pet adoptions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Pet Adoptions", "prompt_family": "contrastive", "text": "looking for reptiles pets instead of pet adoptions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Reptiles", "prompt_family": "discovery", "text": "compare reptiles pets"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pets > Reptiles", "negative_iab_path": "Pets > Cats", "prompt_family": "contrastive", "text": "need reptile, not cats"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "best veterinary medicine pets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "best pets veterinary medicine"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "vague", "text": "exploring veterinary medicine in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "vague", "text": "exploring pets veterinary medicine options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "discovery", "text": "best veterinary medicine in pets"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pets > Veterinary Medicine", "prompt_family": "alias", "text": "what is pets veterinary medicine options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "discovery", "text": "top politic"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politic overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for politic instead of attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "politics guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching politics, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "politics rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics", "prompt_family": "alias", "text": "learn about politic"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for politic instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Politics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need politics, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "civic affairs"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "alias", "text": "how does civic affairs in politics work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "vague", "text": "need advice about civic affairs in politics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "top civic affairs in politics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "best politics civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Civic affairs", "prompt_family": "discovery", "text": "which civic affairs is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "alias", "text": "how does politics elections work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "which politics elections is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "discovery", "text": "which elections politics is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Elections", "prompt_family": "vague", "text": "exploring politics elections options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Political Issues & policy", "prompt_family": "contrastive", "text": "need elections politics, not political issues and policy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Elections", "negative_iab_path": "Politics > Political Issues & policy", "prompt_family": "contrastive", "text": "need election, not political issues and policy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Elections", "prompt_family": "contrastive", "text": "looking for political issues and policy politics instead of elections"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "political issues and policy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "vague", "text": "need advice about politics political issues and policy options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Politics > Political Issues & policy", "negative_iab_path": "Politics > Civic affairs", "prompt_family": "contrastive", "text": "researching political issues and policy, not civic affairs"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "learn about politics political issues and policy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Politics > Political Issues & policy", "prompt_family": "alias", "text": "what is political issues and policy politics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for pop culture instead of automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "alias", "text": "pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "discovery", "text": "which pop culture is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Pop Culture", "prompt_family": "vague", "text": "looking into pop culture options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Pop Culture", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching pop culture, not automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "researching pop culture celebrity deaths, not celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "celebrity deaths overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "looking for celebrity death instead of celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "how does celebrity deaths pop culture work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "alias", "text": "pop culture celebrity deaths overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Deaths", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "need celebrity deaths pop culture, not celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "looking for celebrity families pop culture instead of celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "alias", "text": "what is celebrity family"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "celebrity families rather than celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "top pop culture celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Families", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "looking for celebrity family instead of celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Families", "prompt_family": "discovery", "text": "which celebrity family is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "best celebrity homes pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "need pop culture celebrity homes, not celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "researching pop culture celebrity homes, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "top celebrity homes pop culture"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "discovery", "text": "pop culture celebrity homes options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Homes", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "researching celebrity homes, not celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "discovery", "text": "top celebrity pregnancy"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "pop culture celebrity pregnancy options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "contrastive", "text": "looking for pop culture celebrity pregnancy instead of celebrity relationships"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "alias", "text": "learn about celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "pop culture celebrity pregnancy rather than celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Pregnancy", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "need pop culture celebrity pregnancy, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "researching celebrity relationship, not celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "need celebrity relationships pop culture, not celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "what is celebrity relationships pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "researching celebrity relationships pop culture, not celebrity homes"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Relationships", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "looking for celebrity relationships pop culture instead of celebrity scandal"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Relationships", "prompt_family": "alias", "text": "celebrity relationships in pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "celebrity scandal pop culture overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "which celebrity scandal pop culture is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Deaths", "prompt_family": "contrastive", "text": "looking for pop culture celebrity scandal instead of celebrity deaths"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "discovery", "text": "best pop culture celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Scandal", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "looking for pop culture celebrity scandal instead of celebrity families"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "alias", "text": "how does celebrity scandal in pop culture work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "celebrity style in pop culture"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Homes", "prompt_family": "contrastive", "text": "celebrity style pop culture rather than celebrity homes"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "celebrity style basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "need celebrity style, not celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Celebrity Style", "prompt_family": "alias", "text": "celebrity style pop culture overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Celebrity Style", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "looking for celebrity style instead of celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "researching pop culture humor and satire, not celebrity families"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Scandal", "prompt_family": "contrastive", "text": "researching humor and satire, not celebrity scandal"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Pregnancy", "prompt_family": "contrastive", "text": "researching pop culture humor and satire, not celebrity pregnancy"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Pop Culture > Humor and Satire", "negative_iab_path": "Pop Culture > Celebrity Families", "prompt_family": "contrastive", "text": "looking for humor and satire instead of celebrity families"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "alias", "text": "humor and satire in pop culture guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Pop Culture > Humor and Satire", "prompt_family": "discovery", "text": "which humor and satire is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "contrastive", "text": "productivity computer software and applications rather than antivirus software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Productivity", "prompt_family": "action", "text": "book productivity"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "help me choose renting advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "compare apartment search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "top renting advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "exploring housing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "real estate rather than automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching real estate, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "top real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "alias", "text": "renting advice guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "action", "text": "book real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "compare home buying"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Real Estate", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need real estate, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "discovery", "text": "compare housing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate", "prompt_family": "vague", "text": "help me choose apartment search"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "alias", "text": "apartments in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "vague", "text": "help me choose apartments in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "top apartments in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "action", "text": "get apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "action", "text": "reserve apartments real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Apartments", "prompt_family": "discovery", "text": "top apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "learn about real estate developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "action", "text": "get real estate developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "discovery", "text": "best developmental site"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "how does real estate developmental sites options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "action", "text": "buy developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Developmental Sites", "prompt_family": "alias", "text": "real estate developmental sites"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "compare real estate hotel properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "discovery", "text": "best real estate hotel properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "how does real estate hotel properties work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "action", "text": "get hotel property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Hotel Properties", "prompt_family": "alias", "text": "real estate hotel properties overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Hotel Properties", "negative_iab_path": "Real Estate > Office Property", "prompt_family": "contrastive", "text": "need hotel property, not office property"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Houses", "negative_iab_path": "Real Estate > Industrial Property", "prompt_family": "contrastive", "text": "need houses real estate, not industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "action", "text": "book real estate houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "compare houses real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "discovery", "text": "top real estate houses"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "alias", "text": "houses real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Houses", "prompt_family": "action", "text": "book house"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "action", "text": "buy industrial property real estate"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Industrial Property", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "looking for industrial property instead of developmental sites"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "discovery", "text": "best industrial property in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "real estate industrial property guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "industrial property basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Industrial Property", "prompt_family": "alias", "text": "industrial property real estate overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "action", "text": "reserve land and farm"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Land and Farms", "negative_iab_path": "Real Estate > Hotel Properties", "prompt_family": "contrastive", "text": "looking for land and farms instead of hotel properties"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "alias", "text": "how does real estate land and farms work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Land and Farms", "negative_iab_path": "Real Estate > Office Property", "prompt_family": "contrastive", "text": "need land and farms real estate, not office property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "discovery", "text": "land and farms options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Land and Farms", "prompt_family": "action", "text": "book land and farms real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "vague", "text": "exploring real estate office property options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "alias", "text": "office property real estate overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Office Property", "negative_iab_path": "Real Estate > Industrial Property", "prompt_family": "contrastive", "text": "need office property real estate, not industrial property"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Office Property", "prompt_family": "action", "text": "buy office property"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Office Property", "negative_iab_path": "Real Estate > Developmental Sites", "prompt_family": "contrastive", "text": "looking for office property real estate instead of developmental sites"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Office Property", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "need real estate office property, not land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "compare real estate buying and selling in real estate"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Real Estate Buying and Selling", "negative_iab_path": "Real Estate > Apartments", "prompt_family": "contrastive", "text": "looking for real estate buying and selling instead of apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "action", "text": "book real estate real estate buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "discovery", "text": "best real estate buying and selling"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "action", "text": "find real estate buying and selling"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Real Estate Buying and Selling", "prompt_family": "alias", "text": "real estate buying and selling in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "learn about real estate renting and leasing real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "action", "text": "get real estate renting and leasing real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "discovery", "text": "which real estate renting and leasing is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "action", "text": "reserve rental listings"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "alias", "text": "real estate renting and leasing overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Real Estate Renting and Leasing", "prompt_family": "action", "text": "book real estate real estate renting and leasing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Retail Property", "negative_iab_path": "Real Estate > Apartments", "prompt_family": "contrastive", "text": "researching real estate retail property, not apartments"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "discovery", "text": "which real estate retail property is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "real estate retail property basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "alias", "text": "what is real estate retail property options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Real Estate > Retail Property", "negative_iab_path": "Real Estate > Land and Farms", "prompt_family": "contrastive", "text": "researching retail property, not land and farms"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Retail Property", "prompt_family": "vague", "text": "need advice about retail property in real estate"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "what is vacation properties in real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "vacation properties real estate guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "compare vacation properties real estate"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "action", "text": "get vacation properties"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "alias", "text": "how does vacation properties in real estate work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Real Estate > Vacation Properties", "prompt_family": "discovery", "text": "compare vacation properties"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "what is religion and spirituality options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "discovery", "text": "top religion & spirituality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "looking for religion and spirituality instead of attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "religion & spirituality rather than attractions"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "what is religion and spirituality guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching religion and spirituality, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "alias", "text": "religion & spirituality guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Religion & Spirituality", "prompt_family": "vague", "text": "need advice about religion and spirituality options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Religion & Spirituality", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need religion and spirituality, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "best agnosticism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "discovery", "text": "best religion and spirituality agnosticism options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "agnosticism rather than atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "need agnosticism, not hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for agnosticism instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Agnosticism", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "looking for religion and spirituality agnosticism instead of christianity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "researching astrology religion and spirituality, not islam"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "vague", "text": "exploring astrology in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "astrology religion and spirituality rather than hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "religion and spirituality astrology rather than islam"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Astrology", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching religion and spirituality astrology, not hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Astrology", "prompt_family": "discovery", "text": "compare astrology religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "need atheism religion and spirituality, not islam"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching religion and spirituality atheism, not hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching atheism, not hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "need atheism religion and spirituality, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Atheism", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "need atheism, not buddhism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Atheism", "prompt_family": "alias", "text": "learn about atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "looking for buddhism religion and spirituality instead of atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "buddhism rather than atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Christianity", "prompt_family": "contrastive", "text": "researching buddhism, not christianity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "researching buddhism, not astrology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Buddhism", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching religion and spirituality buddhism, not hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "alias", "text": "buddhism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "learn about religion and spirituality christianity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for christianity religion and spirituality instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "alias", "text": "christianity religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "need christianity, not hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Christianity", "prompt_family": "discovery", "text": "best christianity religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Christianity", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for religion and spirituality christianity instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "religion and spirituality hinduism rather than atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "alias", "text": "what is hinduism in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "discovery", "text": "hinduism options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "need religion and spirituality hinduism, not astrology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "looking for hinduism instead of buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Hinduism", "negative_iab_path": "Religion & Spirituality > Islam", "prompt_family": "contrastive", "text": "need religion and spirituality hinduism, not islam"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "researching islam religion and spirituality, not atheism"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "compare islam in religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "alias", "text": "religion and spirituality islam guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Religion & Spirituality > Islam", "prompt_family": "discovery", "text": "best religion and spirituality islam options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "religion and spirituality islam rather than atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Islam", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "looking for islam religion and spirituality instead of buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "religion and spirituality judaism rather than agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "looking for judaism instead of agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "judaism religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "alias", "text": "judaism basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Judaism", "prompt_family": "discovery", "text": "best religion and spirituality judaism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Judaism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "researching judaism religion and spirituality, not astrology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "religion and spirituality sikhism guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "researching religion and spirituality sikhism, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Sikhism", "prompt_family": "alias", "text": "sikhism religion and spirituality overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Atheism", "prompt_family": "contrastive", "text": "need sikhism religion and spirituality, not atheism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Astrology", "prompt_family": "contrastive", "text": "looking for religion and spirituality sikhism instead of astrology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Sikhism", "negative_iab_path": "Religion & Spirituality > Buddhism", "prompt_family": "contrastive", "text": "need religion and spirituality sikhism, not buddhism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "looking for religion and spirituality spirituality instead of hinduism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "best spirituality religion and spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "alias", "text": "religion and spirituality spirituality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Religion & Spirituality > Spirituality", "prompt_family": "discovery", "text": "compare spirituality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Agnosticism", "prompt_family": "contrastive", "text": "need spirituality, not agnosticism"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Religion & Spirituality > Spirituality", "negative_iab_path": "Religion & Spirituality > Hinduism", "prompt_family": "contrastive", "text": "researching spirituality, not hinduism"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Science", "prompt_family": "vague", "text": "need advice about science options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science", "prompt_family": "discovery", "text": "which science is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need science, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for science instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Science", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "science rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "need biological sciences science, not geology"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "learn about biological sciences science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "researching science biological sciences, not genetics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "what is biological sciences in science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Biological Sciences", "prompt_family": "alias", "text": "biological sciences overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Biological Sciences", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "biological sciences science rather than chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "science chemistry overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "vague", "text": "looking into science chemistry options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "alias", "text": "what is science chemistry options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Chemistry", "prompt_family": "discovery", "text": "top chemistry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "researching science chemistry, not geography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Chemistry", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "science chemistry rather than environment"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "alias", "text": "how does science environment options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "researching science environment, not genetics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "vague", "text": "need advice about science environment options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "need environment, not genetics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Environment", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "science environment rather than geology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Environment", "prompt_family": "vague", "text": "help me choose environment in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "looking for genetics instead of geology"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "looking for genetics science instead of chemistry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "genetics rather than biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Genetics", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "science genetics rather than geography"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "alias", "text": "genetics in science guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Genetics", "prompt_family": "discovery", "text": "genetics science options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "need geography, not physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Genetics", "prompt_family": "contrastive", "text": "researching science geography, not genetics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "looking for geography science instead of chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "discovery", "text": "compare geography in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geography", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "looking for science geography instead of biological sciences"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Geography", "prompt_family": "vague", "text": "need advice about science geography options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "need geology, not chemistry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "looking for geology instead of physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Geology", "negative_iab_path": "Science > Physics", "prompt_family": "contrastive", "text": "need geology science, not physics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "geology science overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "alias", "text": "geology science"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Geology", "prompt_family": "discovery", "text": "top science geology"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "science physics options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "need science physics, not geography"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Physics", "prompt_family": "alias", "text": "what is physics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "need science physics, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Geography", "prompt_family": "contrastive", "text": "looking for science physics instead of geography"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Physics", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "looking for physic instead of chemistry"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "discovery", "text": "compare space and astronomy in science"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "science space and astronomy rather than biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "looking for space and astronomy instead of chemistry"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Chemistry", "prompt_family": "contrastive", "text": "looking for science space and astronomy instead of chemistry"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Space and Astronomy", "prompt_family": "alias", "text": "science space and astronomy overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Space and Astronomy", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "need space and astronomy science, not environment"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "weather science basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Science > Weather", "prompt_family": "alias", "text": "how does weather science work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Environment", "prompt_family": "contrastive", "text": "looking for science weather instead of environment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "need weather, not biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Biological Sciences", "prompt_family": "contrastive", "text": "weather rather than biological sciences"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Science > Weather", "negative_iab_path": "Science > Geology", "prompt_family": "contrastive", "text": "researching weather science, not geology"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching sensitive topic, not automotive"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "sensitive topics rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "learn about sensitive topics"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "vague", "text": "help me choose sensitive topics guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "sensitive topics rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "alias", "text": "how does sensitive topic work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "sensitive topics rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics", "prompt_family": "discovery", "text": "top sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sensitive Topics", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for sensitive topics instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "looking for adult and explicit sexual content instead of arms and ammunition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "best sensitive topics adult and explicit sexual content options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "looking for adult and explicit sexual content instead of illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "discovery", "text": "top adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "looking for adult and explicit sexual content sensitive topics instead of illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "adult and explicit sexual content rather than debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "need sensitive topics arms and ammunition, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "learn about sensitive topics arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "discovery", "text": "compare arms & ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "looking for sensitive topics arms and ammunition instead of adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "alias", "text": "how does sensitive topics arms and ammunition work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Arms & Ammunition", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "looking for arms & ammunition instead of death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "how does sensitive topics crime and harmful acts to individuals, society and human right violations work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "looking for crime and harmful acts to individuals, society and human right violations instead of adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "looking for crime and harmful acts to individuals, society and human right violations instead of death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "discovery", "text": "crime and harmful acts to individuals, society and human right violations sensitive topics options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "alias", "text": "what is sensitive topics crime and harmful acts to individuals, society and human right violations options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "need crime and harmful acts to individuals, society and human right violations sensitive topics, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "sensitive topics death, injury, or military conflict rather than illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "death, injury, or military conflict basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "alias", "text": "what is sensitive topics death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "death, injury, or military conflict sensitive topics rather than adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "looking for death, injury, or military conflict instead of debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "looking for sensitive topics death, injury, or military conflict instead of debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "discovery", "text": "top debated sensitive social issue"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "need debated sensitive social issue, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "researching debated sensitive social issue, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "researching debated sensitive social issues, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "contrastive", "text": "researching sensitive topics debated sensitive social issues, not illegal drugs, tobacco, ecigarettes, vaping, alcohol"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "researching debated sensitive social issues sensitive topics, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "best hate speech and acts of aggression"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "compare sensitive topics hate speech and acts of aggression options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "alias", "text": "hate speech and acts of aggression sensitive topics overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "need hate speech and acts of aggression, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "discovery", "text": "top sensitive topics hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "looking for sensitive topics hate speech and acts of aggression instead of arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "prompt_family": "alias", "text": "how does illegal drugs, tobacco, ecigarettes, vaping, alcohol in sensitive topics work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol rather than crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "researching illegal drugs, tobacco, ecigarettes, vaping, alcohol sensitive topics, not arms and ammunition"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching sensitive topics illegal drugs, tobacco, ecigarettes, vaping, alcohol, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "need illegal drugs, tobacco, ecigarettes, vaping, alcohol, not hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching obscenity and profanity sensitive topics, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "alias", "text": "obscenity and profanity"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "obscenity and profanity rather than debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "researching sensitive topics obscenity and profanity, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Obscenity and Profanity", "prompt_family": "vague", "text": "exploring sensitive topics obscenity and profanity options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Obscenity and Profanity", "negative_iab_path": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", "prompt_family": "contrastive", "text": "researching obscenity and profanity, not crime and harmful acts to individuals, society and human right violations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "vague", "text": "exploring sensitive topics online piracy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "top online piracy in sensitive topics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "top sensitive topics online piracy options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Online Piracy", "prompt_family": "discovery", "text": "compare online piracy in sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "need sensitive topics online piracy, not adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Online Piracy", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "online piracy sensitive topics rather than adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "alias", "text": "spam or harmful content basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "researching sensitive topics spam or harmful content, not debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Spam or Harmful Content", "prompt_family": "discovery", "text": "which spam or harmful content is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Hate Speech and Acts of Aggression", "prompt_family": "contrastive", "text": "researching sensitive topics spam or harmful content, not hate speech and acts of aggression"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Adult & Explicit Sexual Content", "prompt_family": "contrastive", "text": "sensitive topics spam or harmful content rather than adult and explicit sexual content"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Spam or Harmful Content", "negative_iab_path": "Sensitive Topics > Death, Injury, or Military Conflict", "prompt_family": "contrastive", "text": "need spam or harmful content sensitive topics, not death, injury, or military conflict"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "alias", "text": "sensitive topics terrorism"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "top terrorism sensitive topics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Debated Sensitive Social Issues", "prompt_family": "contrastive", "text": "terrorism rather than debated sensitive social issues"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sensitive Topics > Terrorism", "negative_iab_path": "Sensitive Topics > Arms & Ammunition", "prompt_family": "contrastive", "text": "need terrorism, not arms and ammunition"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "vague", "text": "looking into sensitive topics terrorism options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sensitive Topics > Terrorism", "prompt_family": "discovery", "text": "which terrorism is best"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "what is shopping guide"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "vague", "text": "exploring shopping options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "alias", "text": "shopping guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Shopping", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need shopping, not automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping", "prompt_family": "discovery", "text": "which shopping is best"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "vague", "text": "need advice about children's games and toys in shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "looking for children's games and toys shopping instead of gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "need children's games and toys shopping, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Children's Games and Toys", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "shopping children's games and toys rather than coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "discovery", "text": "which children's games and toy is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Children's Games and Toys", "prompt_family": "alias", "text": "shopping children's games and toys guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "need coupons and discount, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "researching coupons and discount, not children's games and toys"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "researching coupons and discounts shopping, not flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Coupons and Discounts", "prompt_family": "discovery", "text": "which coupons and discounts is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "researching coupons and discounts shopping, not children's games and toys"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Coupons and Discounts", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "looking for shopping coupons and discounts instead of children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "learn about flower shopping shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "shopping flower shopping rather than gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "researching shopping flower shopping, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "flower shopping shopping rather than household supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Flower Shopping", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "flower shopping rather than holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Flower Shopping", "prompt_family": "alias", "text": "learn about flower shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Gifts and Greetings Cards", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "gifts and greetings cards rather than household supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "shopping gifts and greetings cards overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Gifts and Greetings Cards", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "looking for gifts and greetings cards shopping instead of holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "action", "text": "book gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "alias", "text": "learn about gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "discovery", "text": "top shopping gifts and greetings cards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "grocery shopping in shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "alias", "text": "learn about shopping grocery shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "looking for grocery shopping shopping instead of household supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Grocery Shopping", "negative_iab_path": "Shopping > Household Supplies", "prompt_family": "contrastive", "text": "researching shopping grocery shopping, not household supplies"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "discovery", "text": "compare grocery shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Grocery Shopping", "prompt_family": "vague", "text": "need advice about shopping grocery shopping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Flower Shopping", "prompt_family": "contrastive", "text": "holiday shopping rather than flower shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "discovery", "text": "holiday shopping shopping options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Gifts and Greetings Cards", "prompt_family": "contrastive", "text": "need holiday shopping shopping, not gifts and greetings cards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "holiday shopping shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Holiday Shopping", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "looking for holiday shopping instead of grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Holiday Shopping", "prompt_family": "alias", "text": "holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "looking for household supply instead of grocery shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "shopping household supplies rather than grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supplies"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Grocery Shopping", "prompt_family": "contrastive", "text": "researching household supplies, not grocery shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Household Supplies", "prompt_family": "alias", "text": "household supplies shopping guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Household Supplies", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "household supplies rather than holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Lotteries and Scratchcards", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "need lotteries and scratchcards shopping, not holiday shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "compare lotteries and scratchcards"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "discovery", "text": "which lotteries and scratchcards shopping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "action", "text": "book lotteries and scratchcard"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "action", "text": "buy lotteries and scratchcard"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Lotteries and Scratchcards", "prompt_family": "alias", "text": "lotteries and scratchcard basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "discovery", "text": "top party supplies and decorations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "looking for party supplies and decorations shopping instead of children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Party Supplies and Decorations", "prompt_family": "alias", "text": "learn about party supplies and decoration"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "need party supplies and decorations, not coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Holiday Shopping", "prompt_family": "contrastive", "text": "looking for shopping party supplies and decorations instead of holiday shopping"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Party Supplies and Decorations", "negative_iab_path": "Shopping > Coupons and Discounts", "prompt_family": "contrastive", "text": "researching party supplies and decorations shopping, not coupons and discounts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "sales and promotions shopping basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "discovery", "text": "top shopping sales and promotions options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "how does shopping sales and promotions options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Shopping > Sales and Promotions", "negative_iab_path": "Shopping > Children's Games and Toys", "prompt_family": "contrastive", "text": "looking for sales and promotions shopping instead of children's games and toys"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "sales and promotions shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Shopping > Sales and Promotions", "prompt_family": "alias", "text": "learn about sales and promotions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sport basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is soccer advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "vague", "text": "exploring sports rules"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "how does sport work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "top sport"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "looking for sports instead of automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "best game tactics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need sports, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "what is sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "sports options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "how does sports rules work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports", "prompt_family": "discovery", "text": "top game tactics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need sport, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "sport rather than automotive"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "how does sports work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports", "prompt_family": "alias", "text": "sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need american football sports, not basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "vague", "text": "need advice about sports american football options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "discovery", "text": "which american football sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "american football sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > American Football", "prompt_family": "alias", "text": "how does american football work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > American Football", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports american football instead of basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "which sports australian rules football is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "alias", "text": "how does australian rules football sports work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "top sports australian rules football options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "best sports australian rules football options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Australian Rules Football", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for australian rules football instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Australian Rules Football", "prompt_family": "discovery", "text": "best australian rules football in sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "vague", "text": "need advice about auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "sports auto racing basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports auto racing, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Auto Racing", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching auto racing, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "auto racing in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing", "prompt_family": "alias", "text": "sports auto racing overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "sports motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "alias", "text": "auto racing motorcycle sports basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Auto Racing > Motorcycle Sports", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "researching auto racing motorcycle sports, not college baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "badminton rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for badminton sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports badminton, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching badminton, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Badminton", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports badminton rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Badminton", "prompt_family": "alias", "text": "what is badminton sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need baseball sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Beach Volleyball", "prompt_family": "contrastive", "text": "looking for sports baseball instead of beach volleyball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Beach Volleyball", "prompt_family": "contrastive", "text": "looking for baseball sports instead of beach volleyball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need baseball sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Baseball", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for baseball sports instead of american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Baseball", "prompt_family": "alias", "text": "what is sports baseball options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "vague", "text": "need advice about sports basketball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "what is basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "basketball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Basketball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for basketball instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Basketball", "prompt_family": "alias", "text": "what is basketball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "beach volleyball rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "alias", "text": "beach volleyball sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "discovery", "text": "best sports beach volleyball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Beach Volleyball", "prompt_family": "vague", "text": "looking into sports beach volleyball options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching beach volleyball, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Beach Volleyball", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "beach volleyball sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need bodybuilding sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching bodybuilding sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "sports bodybuilding overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Bodybuilding", "prompt_family": "alias", "text": "what is sports bodybuilding"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching bodybuilding sports, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bodybuilding", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching bodybuilding, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need bowling sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for bowling sports instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports bowling rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "bowling sports rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Bowling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need sports bowling, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Bowling", "prompt_family": "discovery", "text": "best sports bowling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need boxing, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "discovery", "text": "compare boxing sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching boxing sports, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching boxing sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Boxing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need boxing sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Boxing", "prompt_family": "alias", "text": "boxing sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "cheerleading basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports cheerleading instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need cheerleading, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "alias", "text": "how does sports cheerleading options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cheerleading", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for cheerleading sports instead of american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cheerleading", "prompt_family": "discovery", "text": "cheerleading sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for college sports instead of american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "college sports sports rather than american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "vague", "text": "looking into sports college sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "college sport rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > College Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for college sports instead of badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports", "prompt_family": "discovery", "text": "best college sport"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "vague", "text": "exploring college baseball in college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "discovery", "text": "best college sports college baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Baseball", "prompt_family": "vague", "text": "help me choose college sports college baseball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "college basketball guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "alias", "text": "sports college basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Basketball", "prompt_family": "discovery", "text": "which college basketball college sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "discovery", "text": "best college sports college football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "discovery", "text": "best college football college sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > College Sports > College Football", "prompt_family": "discovery", "text": "compare college sports college football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "top sports cricket options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching cricket sports, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "vague", "text": "exploring cricket in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cricket", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports cricket, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "alias", "text": "what is sports cricket options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cricket", "prompt_family": "discovery", "text": "best sports cricket"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "learn about cycling sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "what is cycling in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "cycling sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for cycling sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Cycling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need cycling sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Cycling", "prompt_family": "alias", "text": "cycling basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "discovery", "text": "compare darts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for dart instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for sports darts instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for dart instead of american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Darts", "prompt_family": "alias", "text": "how does dart work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Darts", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for darts sports instead of american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "discovery", "text": "disabled sports sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching disabled sport, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "disabled sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Disabled Sports", "prompt_family": "alias", "text": "sports disabled sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "sports disabled sports rather than basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Disabled Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports disabled sports instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports diving, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "alias", "text": "diving in sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need sports diving, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Diving", "prompt_family": "discovery", "text": "which diving sports is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for diving sports instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Diving", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for diving instead of baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "discovery", "text": "best sports equine sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching equine sports sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for equine sport instead of badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "equine sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Equine Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "equine sport rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports", "prompt_family": "alias", "text": "what is sports equine sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "vague", "text": "exploring horse racing in equine sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Equine Sports > Horse Racing", "prompt_family": "discovery", "text": "best horse racing equine sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Equine Sports > Horse Racing", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for equine sports horse racing instead of motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports extreme sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports", "prompt_family": "alias", "text": "learn about extreme sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for sports extreme sports instead of american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for extreme sport instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching extreme sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Extreme Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching extreme sport, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "discovery", "text": "best sports canoeing and kayaking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "how does sports canoeing and kayaking work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "alias", "text": "learn about sports extreme sports canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "discovery", "text": "compare climbing extreme sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "vague", "text": "help me choose extreme sports climbing options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Climbing", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "climbing rather than motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "discovery", "text": "best sports paintball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "discovery", "text": "top extreme sports paintball options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "alias", "text": "paintball overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Scuba Diving", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "looking for scuba diving instead of motorcycle sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Scuba Diving", "prompt_family": "alias", "text": "sports extreme sports scuba diving"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Scuba Diving", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "scuba diving extreme sports rather than canoeing and kayaking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Skateboarding", "negative_iab_path": "Sports > Extreme Sports > Climbing", "prompt_family": "contrastive", "text": "looking for skateboarding instead of climbing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "discovery", "text": "which sports extreme sports skateboarding is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Skateboarding", "prompt_family": "discovery", "text": "top extreme sports skateboarding"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Snowboarding", "negative_iab_path": "Sports > Extreme Sports > Canoeing and Kayaking", "prompt_family": "contrastive", "text": "looking for snowboarding instead of canoeing and kayaking"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "discovery", "text": "sports extreme sports snowboarding options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Snowboarding", "prompt_family": "alias", "text": "how does sports extreme sports snowboarding work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "how does sports extreme sports surfing and bodyboarding work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "prompt_family": "alias", "text": "how does sports surfing and bodyboarding work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Surfing and Bodyboarding", "negative_iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "contrastive", "text": "need surfing and bodyboarding, not paintball"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "need waterskiing and wakeboarding, not motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "negative_iab_path": "Sports > Extreme Sports > Paintball", "prompt_family": "contrastive", "text": "need waterskiing and wakeboarding, not paintball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Extreme Sports > Waterskiing and Wakeboarding", "prompt_family": "alias", "text": "how does waterskiing and wakeboarding work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "learn about fantasy sports sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "discovery", "text": "sports fantasy sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "alias", "text": "sports fantasy sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching sports fantasy sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fantasy Sports", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports fantasy sports, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Fantasy Sports", "prompt_family": "vague", "text": "looking into sports fantasy sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports field hockey rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "discovery", "text": "best field hockey"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for field hockey sports instead of basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "alias", "text": "sports field hockey options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Field Hockey", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need field hockey sports, not american football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Field Hockey", "prompt_family": "vague", "text": "need advice about sports field hockey options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need sports figure skating, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for figure skating sports instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Figure Skating", "prompt_family": "vague", "text": "need advice about sports figure skating options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need figure skating, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need figure skating sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Figure Skating", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching figure skating, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "learn about fishing sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for fishing sports sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "alias", "text": "fishing sport guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Fishing Sports", "prompt_family": "discovery", "text": "compare fishing sport"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports fishing sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Fishing Sports", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching fishing sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "golf sports rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "learn about sports golf"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Golf", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "golf sports rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "discovery", "text": "compare golf"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "vague", "text": "exploring golf in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Golf", "prompt_family": "alias", "text": "sports golf guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need gymnastic, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching gymnastics, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "vague", "text": "exploring gymnastics in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Gymnastics", "prompt_family": "alias", "text": "sports gymnastics basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need gymnastic, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Gymnastics", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching gymnastics, not auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "vague", "text": "help me choose sports hunting and shooting options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Hunting and Shooting", "prompt_family": "alias", "text": "hunting and shooting sports basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching sports hunting and shooting, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching sports hunting and shooting, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching hunting and shooting sports, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Hunting and Shooting", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching hunting and shooting, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "ice hockey in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Ice Hockey", "prompt_family": "alias", "text": "ice hockey"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sports ice hockey instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need sports ice hockey, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "ice hockey rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Ice Hockey", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for ice hockey instead of badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "discovery", "text": "which inline skating is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "inline skating sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for inline skating sports instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports inline skating instead of basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Inline Skating", "prompt_family": "vague", "text": "looking into inline skating in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Inline Skating", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need sports inline skating, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need lacrosse sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching lacrosse, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Lacrosse", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for lacrosse instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "alias", "text": "what is lacrosse sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "vague", "text": "exploring sports lacrosse options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Lacrosse", "prompt_family": "discovery", "text": "top sports lacrosse options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "vague", "text": "looking into sports martial arts options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for martial arts sports instead of american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for martial arts instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Martial Arts", "prompt_family": "discovery", "text": "compare martial arts"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports martial arts, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Martial Arts", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for martial arts sports instead of australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "compare sports olympic sports options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "compare olympic sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "which olympic sports is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports", "prompt_family": "discovery", "text": "olympic sports options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need olympic sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Olympic Sports", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "olympic sports sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "discovery", "text": "compare summer olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "summer olympic sports in olympic sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Summer Olympic Sports", "prompt_family": "alias", "text": "learn about summer olympic sport"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "alias", "text": "olympic sports winter olympic sports basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "negative_iab_path": "Sports > College Sports > College Baseball", "prompt_family": "contrastive", "text": "need winter olympic sport, not college baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Olympic Sports > Winter Olympic Sports", "prompt_family": "discovery", "text": "best sports olympic sports winter olympic sports"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "vague", "text": "need advice about poker and professional gambling in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports poker and professional gambling rather than american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for poker and professional gambling sports instead of badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Poker and Professional Gambling", "prompt_family": "discovery", "text": "compare sports poker and professional gambling options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "sports poker and professional gambling rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Poker and Professional Gambling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "looking for poker and professional gambling instead of american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need sports rodeo, not american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "how does rodeo work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "rodeo guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rodeo", "prompt_family": "alias", "text": "sports rodeo guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports rodeo, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rodeo", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "sports rodeo rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching rowing, not badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rowing", "prompt_family": "alias", "text": "what is sports rowing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for sports rowing instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports rowing, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "rowing rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rowing", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching rowing sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "rugby sports rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "how does rugby work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for sports rugby instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "discovery", "text": "top sports rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby", "prompt_family": "alias", "text": "sports rugby"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Rugby", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for sports rugby instead of badminton"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "rugby league rugby overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "discovery", "text": "best sports rugby rugby league"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby League", "prompt_family": "alias", "text": "what is rugby league rugby"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Rugby > Rugby Union", "prompt_family": "alias", "text": "rugby rugby union overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby Union", "negative_iab_path": "Sports > Auto Racing > Motorcycle Sports", "prompt_family": "contrastive", "text": "rugby rugby union rather than motorcycle sports"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Sports > Rugby > Rugby Union", "negative_iab_path": "Sports > Rugby > Rugby League", "prompt_family": "contrastive", "text": "rugby union rather than rugby league"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sailing sports, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "vague", "text": "help me choose sailing in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for sailing instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "sports sailing rather than basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sailing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports sailing instead of basketball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Sailing", "prompt_family": "alias", "text": "sailing in sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "skiing rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching skiing sports, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for skiing sports instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "sports skiing rather than australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Skiing", "prompt_family": "alias", "text": "skiing in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Skiing", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching skiing sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need snooker/pool/billiards sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "snooker/pool/billiards sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Snooker/Pool/Billiards", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "snooker/pool/billiards rather than basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "snooker/pool/billiards"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "vague", "text": "exploring sports snooker/pool/billiards options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Snooker/Pool/Billiards", "prompt_family": "alias", "text": "sports snooker/pool/billiards options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "soccer sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need premier league, not american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer rules basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching offside rule, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Soccer", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "offside rule rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Soccer", "prompt_family": "alias", "text": "soccer overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need softball, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "discovery", "text": "best sports softball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "alias", "text": "what is softball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Softball", "prompt_family": "vague", "text": "need advice about softball in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "researching sports softball, not badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Softball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need softball sports, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports equipment sports overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching sports sports equipment, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "looking for sports equipment sports instead of basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching sports equipment, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Sports Equipment", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "sports equipment sports rather than baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Sports Equipment", "prompt_family": "alias", "text": "sports sports equipment"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "squash rather than baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "squash sports guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "how does sports squash options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "researching squash, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Squash", "prompt_family": "alias", "text": "squash"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Squash", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "squash sports rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for sports swimming instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "swimming sports rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports swimming, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Swimming", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need swimming sports, not baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "vague", "text": "help me choose swimming in sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Swimming", "prompt_family": "discovery", "text": "best swimming"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "discovery", "text": "best table tennis in sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "researching table tennis sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "need sports table tennis, not badminton"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "sports table tennis options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Table Tennis", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "looking for table tennis sports instead of australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Table Tennis", "prompt_family": "alias", "text": "table tennis sports guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "tenni"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "what is tennis sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for tennis sports instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "alias", "text": "how does sports tennis options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Tennis", "prompt_family": "discovery", "text": "top sports tennis options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Tennis", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for tenni instead of baseball"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "how does sports track and field options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "looking for sports track and field instead of badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need track and field sports, not australian rules football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Track and Field", "prompt_family": "alias", "text": "track and field sports overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "need sports track and field, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Track and Field", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching track and field sports, not baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for volleyball sports instead of auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "sports volleyball rather than baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "sports volleyball rather than australian rules football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "volleyball rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "need sports volleyball, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Volleyball", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need volleyball, not basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for sports walking instead of baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "alias", "text": "walking overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "sports walking rather than auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "looking for walking instead of auto racing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Walking", "prompt_family": "discovery", "text": "top sports walking options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Walking", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching walking, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "what is water polo"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "need water polo sports, not basketball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo sports guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "looking for sports water polo instead of baseball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Water Polo", "negative_iab_path": "Sports > Baseball", "prompt_family": "contrastive", "text": "researching sports water polo, not baseball"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Water Polo", "prompt_family": "alias", "text": "water polo sports overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "alias", "text": "how does weightlifting work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Weightlifting", "prompt_family": "discovery", "text": "compare weightlifting sports"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "researching sports weightlifting, not auto racing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Basketball", "prompt_family": "contrastive", "text": "weightlifting sports rather than basketball"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "researching weightlifting, not american football"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Weightlifting", "negative_iab_path": "Sports > Badminton", "prompt_family": "contrastive", "text": "sports weightlifting rather than badminton"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > Auto Racing", "prompt_family": "contrastive", "text": "need wrestling, not auto racing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "what is wrestling"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > Australian Rules Football", "prompt_family": "contrastive", "text": "need sports wrestling, not australian rules football"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "how does sports wrestling options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Sports > Wrestling", "negative_iab_path": "Sports > American Football", "prompt_family": "contrastive", "text": "sports wrestling rather than american football"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Sports > Wrestling", "prompt_family": "alias", "text": "wrestling sports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "style and fashion guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for style and fashion instead of books and literature"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "looking into shoe shopping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "style & fashion rather than attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "discovery", "text": "style & fashion options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "need style and fashion, not automotive"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is outfit help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "need style & fashion, not books and literature"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need style and fashion, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is style & fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "outfit help"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "style and fashion rather than attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "vague", "text": "exploring outfit help"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "what is shoe shopping"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "shoe shopping"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion", "prompt_family": "alias", "text": "learn about style & fashion"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "researching style and fashion, not automotive"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "style and fashion beauty rather than designer clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "researching beauty style and fashion, not fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "need beauty style and fashion, not children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "beauty rather than high fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Beauty", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "researching beauty style and fashion, not high fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty", "prompt_family": "discovery", "text": "compare beauty in style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "discovery", "text": "style and fashion beauty hair care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "action", "text": "find hair care beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "discovery", "text": "best hair care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "alias", "text": "how does beauty makeup and accessories options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "negative_iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "contrastive", "text": "need makeup and accessories beauty, not natural and organic beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "vague", "text": "help me choose makeup and accessories in beauty"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Nail Care", "negative_iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "contrastive", "text": "need beauty nail care, not natural and organic beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "action", "text": "book nail care beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "discovery", "text": "top style and fashion beauty nail care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "alias", "text": "learn about beauty natural and organic beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "vague", "text": "need advice about beauty natural and organic beauty options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Natural and Organic Beauty", "prompt_family": "discovery", "text": "which style and fashion beauty natural and organic beauty is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "negative_iab_path": "Style & Fashion > Beauty > Nail Care", "prompt_family": "contrastive", "text": "researching perfume and fragrance, not nail care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "prompt_family": "discovery", "text": "best beauty perfume and fragrance options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Beauty > Perfume and Fragrance", "negative_iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "contrastive", "text": "beauty perfume and fragrance rather than makeup and accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "action", "text": "find skin care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "alias", "text": "skin care beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Beauty > Skin Care", "prompt_family": "discovery", "text": "best skin care beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "what is body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "need body art style and fashion, not fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "looking for body art instead of fashion trends"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Body Art", "prompt_family": "alias", "text": "style and fashion body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Body Art", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "looking for style and fashion body art instead of children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "need style and fashion children's clothing, not men's fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "researching style and fashion children's clothing, not fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Children's Clothing", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "need style and fashion children's clothing, not beauty"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "vague", "text": "help me choose style and fashion children's clothing options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "style and fashion children's clothing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "alias", "text": "children's clothing overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "designer clothing rather than body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "looking for designer clothing style and fashion instead of men's fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "style and fashion designer clothing rather than body art"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "discovery", "text": "top style and fashion designer clothing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "alias", "text": "style and fashion designer clothing options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Designer Clothing", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "researching style and fashion designer clothing, not men's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "best fashion trend"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "looking for style and fashion fashion trends instead of children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "fashion trends rather than body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "discovery", "text": "best style and fashion fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Fashion Trends", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "need fashion trend, not men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "alias", "text": "style and fashion fashion trends options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Beauty", "prompt_family": "contrastive", "text": "researching style and fashion high fashion, not beauty"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "alias", "text": "how does high fashion style and fashion work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > High Fashion", "prompt_family": "discovery", "text": "best style and fashion high fashion options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Fashion Trends", "prompt_family": "contrastive", "text": "high fashion rather than fashion trends"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "contrastive", "text": "style and fashion high fashion rather than men's fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > High Fashion", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "need high fashion, not body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "men's fashion style and fashion rather than children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "looking for men's fashion style and fashion instead of high fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "looking for men's fashion instead of children's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "vague", "text": "need advice about style and fashion men's fashion options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "discovery", "text": "compare style and fashion men's fashion options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion", "prompt_family": "alias", "text": "how does men's fashion style and fashion work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "men's accessory rather than hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "alias", "text": "what is men's fashion men's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "discovery", "text": "best men's accessories men's fashion"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "discovery", "text": "best men's jewelry and watches in men's accessories"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "alias", "text": "style and fashion men's jewelry and watches guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "alias", "text": "how does men's clothing in men's fashion work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "contrastive", "text": "researching men's clothing men's fashion, not men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing", "prompt_family": "discovery", "text": "top style and fashion men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "alias", "text": "men's business wear men's clothing basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "discovery", "text": "best men's clothing men's business wear options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", "prompt_family": "contrastive", "text": "researching men's clothing men's casual wear, not men's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "discovery", "text": "compare style and fashion men's fashion men's clothing men's casual wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "alias", "text": "men's formal wear in men's clothing guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", "prompt_family": "discovery", "text": "top men's formal wear men's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", "prompt_family": "contrastive", "text": "men's outerwear men's clothing rather than men's casual wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "looking for men's outerwear instead of men's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "alias", "text": "men's sportswear men's clothing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", "prompt_family": "alias", "text": "men's sportswear in men's clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "prompt_family": "alias", "text": "style and fashion men's fashion men's clothing men's underwear and sleepwear overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "need men's underwear and sleepwear men's clothing, not men's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "discovery", "text": "style and fashion men's fashion men's shoes and footwear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "prompt_family": "alias", "text": "learn about style and fashion men's fashion men's shoes and footwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories", "prompt_family": "contrastive", "text": "researching men's fashion men's shoes and footwear, not men's accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "which style and fashion personal care is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "compare personal care style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "discovery", "text": "compare personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "action", "text": "buy style and fashion personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "action", "text": "reserve personal care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care", "prompt_family": "alias", "text": "what is style and fashion personal care options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "action", "text": "get personal care bath and shower"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "vague", "text": "help me choose style and fashion bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Bath and Shower", "prompt_family": "alias", "text": "style and fashion personal care bath and shower"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "action", "text": "book style and fashion personal care deodorant and antiperspirant"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "prompt_family": "alias", "text": "how does style and fashion personal care deodorant and antiperspirant work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", "negative_iab_path": "Style & Fashion > Beauty > Hair Care", "prompt_family": "contrastive", "text": "researching deodorant and antiperspirant, not hair care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "discovery", "text": "top oral care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "discovery", "text": "top style and fashion personal care oral care"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Oral care", "prompt_family": "vague", "text": "looking into oral care in personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "action", "text": "find style and fashion personal care shaving"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "alias", "text": "learn about shaving personal care"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Personal Care > Shaving", "prompt_family": "discovery", "text": "top personal care shaving"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "street style in style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "street style rather than body art"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "learn about street style style and fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "discovery", "text": "compare style and fashion street style"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Street Style", "prompt_family": "alias", "text": "learn about street style"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Street Style", "negative_iab_path": "Style & Fashion > Designer Clothing", "prompt_family": "contrastive", "text": "looking for style and fashion street style instead of designer clothing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "alias", "text": "women's fashion guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "compare style and fashion women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion", "prompt_family": "discovery", "text": "compare women's fashion style and fashion"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > Children's Clothing", "prompt_family": "contrastive", "text": "researching women's fashion style and fashion, not children's clothing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > Body Art", "prompt_family": "contrastive", "text": "looking for women's fashion style and fashion instead of body art"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion", "negative_iab_path": "Style & Fashion > High Fashion", "prompt_family": "contrastive", "text": "looking for women's fashion instead of high fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "top women's accessories women's fashion"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "negative_iab_path": "Style & Fashion > Beauty > Makeup and Accessories", "prompt_family": "contrastive", "text": "style and fashion women's fashion women's accessories rather than makeup and accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "discovery", "text": "women's accessories options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "negative_iab_path": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", "prompt_family": "contrastive", "text": "looking for women's accessories women's glasses instead of men's jewelry and watches"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", "prompt_family": "vague", "text": "looking into women's accessories women's glasses options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "vague", "text": "looking into style and fashion women's handbags and wallets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "discovery", "text": "compare women's handbags and wallet"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "contrastive", "text": "women's hats and scarve rather than women's jewelry and watches"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", "prompt_family": "action", "text": "buy women's hats and scarve"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "prompt_family": "discovery", "text": "compare women's jewelry and watches in women's accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", "prompt_family": "contrastive", "text": "women's jewelry and watche rather than women's handbags and wallets"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "discovery", "text": "women's clothing options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "prompt_family": "discovery", "text": "best style and fashion women's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Accessories", "prompt_family": "contrastive", "text": "need style and fashion women's fashion women's clothing, not women's accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "contrastive", "text": "women's business wear rather than women's casual wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "alias", "text": "learn about women's clothing women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "alias", "text": "learn about women's casual wear women's clothing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "style and fashion women's fashion women's clothing women's casual wear rather than women's business wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "contrastive", "text": "researching women's formal wear, not women's intimates and sleepwear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", "prompt_family": "contrastive", "text": "researching women's clothing women's formal wear, not women's casual wear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "vague", "text": "need advice about style and fashion women's intimates and sleepwear"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", "prompt_family": "alias", "text": "how does women's intimates and sleepwear in women's clothing work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "women's outerwear rather than women's business wear"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", "prompt_family": "contrastive", "text": "looking for women's clothing women's outerwear instead of women's formal wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "prompt_family": "discovery", "text": "women's sportswear options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", "negative_iab_path": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", "prompt_family": "contrastive", "text": "researching women's sportswear, not women's business wear"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "alias", "text": "style and fashion women's fashion women's shoes and footwear overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "vague", "text": "help me choose women's fashion women's shoes and footwear options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "prompt_family": "discovery", "text": "top women's shoes and footwear women's fashion"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "technology and computing overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "researching technology & computing, not books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "which technology and computing is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need technology & computing, not attractions"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "looking into device comparison"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "help me choose tech buying"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "tech buying guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is technology & computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "exploring software options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "help me choose technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "what is technology guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "how does technology & computing work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "how does tech buying work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "top technology guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "discovery", "text": "compare software options"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "vague", "text": "looking into technology and computing guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing", "prompt_family": "alias", "text": "how does technology guide work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "top artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "learn about artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "discovery", "text": "which technology and computing artificial intelligence is best"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "artificial intelligence rather than augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Artificial Intelligence", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "artificial intelligence rather than virtual reality"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "alias", "text": "how does technology and computing artificial intelligence options work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "discovery", "text": "best augmented reality technology and computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "need augmented reality, not robotics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "looking for augmented reality technology and computing instead of consumer electronics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "need augmented reality technology and computing, not virtual reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Augmented Reality", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "need augmented reality technology and computing, not artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "alias", "text": "what is augmented reality technology and computing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "top technology and computing computing options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "computing technology and computing rather than artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Robotics", "prompt_family": "contrastive", "text": "computing rather than robotics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing", "prompt_family": "discovery", "text": "best computing in technology and computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "looking for computing instead of virtual reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Computing", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "need technology and computing computing, not augmented reality"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Networking", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "researching computing computer networking, not software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "discovery", "text": "compare computing computer networking options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Networking", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "looking for computer networking computing instead of software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "alias", "text": "computing computer peripherals"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "negative_iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "contrastive", "text": "researching computer peripherals computing, not data storage and warehousing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Peripherals", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "researching computer peripheral, not software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "learn about technology and computing computing computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "action", "text": "book computing computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "alias", "text": "computing computer software and applications options guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "discovery", "text": "which 3d graphics computer software and applications is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "contrastive", "text": "researching 3-d graphic, not antivirus software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need computer software and applications antivirus software, not 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "vague", "text": "need advice about computer software and applications antivirus software options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "action", "text": "buy browser"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Browsers", "prompt_family": "alias", "text": "technology and computing computing computer software and applications browsers guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "looking for computer software and applications computer animation instead of 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", "prompt_family": "discovery", "text": "top computer animation in computer software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "discovery", "text": "compare databases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Databases", "prompt_family": "action", "text": "buy technology and computing computing computer software and applications databases"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "discovery", "text": "compare technology and computing computing computer software and applications desktop publishing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", "prompt_family": "action", "text": "reserve computer software and applications desktop publishing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "prompt_family": "alias", "text": "computer software and applications digital audio guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "contrastive", "text": "need digital audio computer software and applications, not antivirus software"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "vague", "text": "need advice about technology and computing graphics software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", "prompt_family": "action", "text": "find graphics software computer software and applications"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", "prompt_family": "contrastive", "text": "need operating systems, not antivirus software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", "prompt_family": "action", "text": "book computer software and applications operating systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "discovery", "text": "which photo editing software is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", "prompt_family": "discovery", "text": "best technology and computing computing computer software and applications photo editing software"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "discovery", "text": "which technology and computing computing computer software and applications shareware and freeware is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", "prompt_family": "discovery", "text": "best computer software and applications shareware and freeware"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "prompt_family": "discovery", "text": "compare video software"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Video Software", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "looking for computer software and applications video software instead of 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need web conferencing, not 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", "prompt_family": "discovery", "text": "compare computer software and applications web conferencing"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "vague", "text": "need advice about technology and computing data storage and warehousing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "computing data storage and warehousing basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Data Storage and Warehousing", "prompt_family": "alias", "text": "what is data storage and warehousing"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Desktops", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications", "prompt_family": "contrastive", "text": "need desktop computers, not software and applications"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "action", "text": "get desktops"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Desktops", "prompt_family": "vague", "text": "help me choose computing desktops options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "discovery", "text": "top computing information and network security options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Information and Network Security", "prompt_family": "alias", "text": "information and network security"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Information and Network Security", "negative_iab_path": "Technology & Computing > Computing > Computer Peripherals", "prompt_family": "contrastive", "text": "information and network security rather than computer peripherals"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "discovery", "text": "top technology and computing internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet", "prompt_family": "alias", "text": "internet computing overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "computing internet rather than computer networking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "discovery", "text": "top cloud computing in internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Cloud Computing", "prompt_family": "alias", "text": "how does cloud computing internet work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "alias", "text": "email in internet"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Email", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "looking for internet email instead of 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "prompt_family": "discovery", "text": "best internet internet for beginners options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Internet for Beginners", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need internet for beginner, not 3d graphics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "negative_iab_path": "Technology & Computing > Computing > Internet > Email", "prompt_family": "contrastive", "text": "looking for internet of thing instead of email"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Internet of Things", "prompt_family": "alias", "text": "internet of things internet"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "vague", "text": "need advice about internet it and internet support options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > IT and Internet Support", "prompt_family": "vague", "text": "need advice about technology and computing it and internet support"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Search", "prompt_family": "alias", "text": "how does internet search work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Search", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "internet search rather than 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "discovery", "text": "compare technology and computing computing internet social networking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Social Networking", "prompt_family": "alias", "text": "how does internet social networking options work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "need web design and html, not 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Design and HTML", "prompt_family": "discovery", "text": "web design and html options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "negative_iab_path": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", "prompt_family": "contrastive", "text": "looking for web development instead of 3d graphics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Development", "prompt_family": "alias", "text": "web development internet"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "alias", "text": "managed hosting guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "prompt_family": "discovery", "text": "which technology and computing computing internet web hosting is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "student laptops guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "computing laptops basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Laptops", "prompt_family": "alias", "text": "laptops overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "discovery", "text": "best programming language"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "discovery", "text": "best programming languages in computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Computing > Programming Languages", "prompt_family": "alias", "text": "programming language basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "alias", "text": "consumer electronics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "looking for consumer electronic instead of computing"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "discovery", "text": "best technology and computing consumer electronics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "looking for consumer electronic instead of augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "consumer electronics rather than augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "researching consumer electronic, not augmented reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "learn about cameras and camcorders consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "prompt_family": "alias", "text": "what is consumer electronics cameras and camcorders options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", "negative_iab_path": "Technology & Computing > Computing > Computer Networking", "prompt_family": "contrastive", "text": "cameras and camcorders consumer electronics rather than computer networking"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "negative_iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "contrastive", "text": "researching consumer electronics home entertainment systems, not tablets and e-readers"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "alias", "text": "what is consumer electronics home entertainment systems options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "negative_iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "contrastive", "text": "researching home entertainment systems, not smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "alias", "text": "learn about android phones"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "budget phones rather than home entertainment systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "prompt_family": "action", "text": "reserve consumer electronics smartphones"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "prompt_family": "discovery", "text": "compare tablets and e-readers"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "need tablets and e-reader, not home entertainment systems"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Tablets and E-readers", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "looking for tablets and e-readers instead of home entertainment systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "discovery", "text": "best technology and computing consumer electronics wearable technology"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "negative_iab_path": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", "prompt_family": "contrastive", "text": "technology and computing consumer electronics wearable technology rather than home entertainment systems"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Consumer Electronics > Wearable Technology", "prompt_family": "alias", "text": "what is wearable technology consumer electronics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "robotics technology and computing rather than computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "contrastive", "text": "researching robotic, not virtual reality"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "discovery", "text": "top robotics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "technology and computing robotics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Robotics", "prompt_family": "alias", "text": "technology and computing robotics basics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Robotics", "negative_iab_path": "Technology & Computing > Augmented Reality", "prompt_family": "contrastive", "text": "looking for robotics technology and computing instead of augmented reality"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "need virtual reality technology and computing, not consumer electronics"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "virtual reality technology and computing rather than artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Artificial Intelligence", "prompt_family": "contrastive", "text": "looking for technology and computing virtual reality instead of artificial intelligence"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Technology & Computing > Virtual Reality", "prompt_family": "alias", "text": "learn about virtual reality technology and computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Computing", "prompt_family": "contrastive", "text": "need virtual reality technology and computing, not computing"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Technology & Computing > Virtual Reality", "negative_iab_path": "Technology & Computing > Consumer Electronics", "prompt_family": "contrastive", "text": "technology and computing virtual reality rather than consumer electronics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "exploring travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "best travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "top places to stay"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "need advice about places to stay"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "what is travel guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "researching travel, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "which travel is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "alias", "text": "how does travel work"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "exploring travel guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "compare hotel booking"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel", "prompt_family": "vague", "text": "exploring places to stay"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel", "prompt_family": "discovery", "text": "top travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "how does travel accessories travel work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "travel accessories travel rather than travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "alias", "text": "travel travel accessories basics"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Accessories", "prompt_family": "vague", "text": "help me choose travel travel accessories options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "need travel accessories, not travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Accessories", "negative_iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "contrastive", "text": "travel travel accessories rather than travel preparation and advice"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "travel locations travel rather than travel accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel locations travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "travel locations guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "vague", "text": "looking into travel travel locations options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations", "prompt_family": "alias", "text": "how does travel travel locations work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Locations", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "looking for travel travel locations instead of travel accessories"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Africa Travel", "negative_iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "contrastive", "text": "africa travel rather than asia travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Africa Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "need africa travel travel locations, not australia and oceania travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "alias", "text": "how does travel locations africa travel work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "vague", "text": "looking into asia travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > Asia Travel", "negative_iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "contrastive", "text": "looking for travel locations asia travel instead of australia and oceania travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Asia Travel", "prompt_family": "alias", "text": "how does asia travel in travel locations work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "travel travel locations australia and oceania travel guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "australia and oceania travel guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Australia and Oceania Travel", "prompt_family": "alias", "text": "what is travel locations australia and oceania travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "alias", "text": "europe travel travel locations basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "discovery", "text": "travel travel locations europe travel options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Europe Travel", "prompt_family": "discovery", "text": "compare travel locations europe travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "alias", "text": "travel travel locations north america travel overview"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > North America Travel", "prompt_family": "discovery", "text": "best north america travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Locations > North America Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "need north america travel, not africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "alias", "text": "what is polar travel travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "vague", "text": "looking into travel locations polar travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > Polar Travel", "prompt_family": "discovery", "text": "top travel locations polar travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "discovery", "text": "top south america travel in travel locations"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "alias", "text": "how does south america travel in travel locations work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Locations > South America Travel", "prompt_family": "discovery", "text": "best south america travel travel locations"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Accessories", "prompt_family": "contrastive", "text": "researching travel travel preparation and advice, not travel accessories"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "discovery", "text": "compare travel preparation and advice"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "how does travel travel preparation and advice options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Preparation and Advice", "negative_iab_path": "Travel > Travel Type", "prompt_family": "contrastive", "text": "travel travel preparation and advice rather than travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "travel preparation and advice in travel guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Preparation and Advice", "prompt_family": "alias", "text": "what is travel preparation and advice in travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "which travel type travel is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "what is travel type travel"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Travel > Travel Type", "negative_iab_path": "Travel > Travel Locations", "prompt_family": "contrastive", "text": "travel type travel rather than travel locations"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "discovery", "text": "travel type options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "vague", "text": "looking into travel travel type options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type", "prompt_family": "alias", "text": "how does travel type work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Adventure Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "need adventure travel, not air travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "discovery", "text": "top adventure travel travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Adventure Travel", "prompt_family": "vague", "text": "looking into adventure travel in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "vague", "text": "help me choose air travel in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "discovery", "text": "best air travel travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Air Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for air travel travel type instead of africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "discovery", "text": "which beach travel is best"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Beach Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "beach travel travel type rather than africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "discovery", "text": "top travel type beach travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "travel type bed and breakfasts basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "discovery", "text": "compare bed and breakfasts"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Bed & Breakfasts", "prompt_family": "alias", "text": "how does bed and breakfasts travel type work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Budget Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "budget travel rather than air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "vague", "text": "need advice about travel type budget travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Budget Travel", "prompt_family": "alias", "text": "travel travel type budget travel basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "discovery", "text": "top travel travel type business travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "discovery", "text": "best travel type business travel options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Business Travel", "prompt_family": "alias", "text": "business travel guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Camping", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for camping instead of africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "discovery", "text": "which travel type camping is best"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Camping", "prompt_family": "alias", "text": "camping"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Cruises", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for cruises instead of africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "discovery", "text": "compare travel travel type cruises"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Cruises", "prompt_family": "vague", "text": "looking into cruises in travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "alias", "text": "day trips travel type guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Day Trips", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "day trips rather than air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Day Trips", "prompt_family": "discovery", "text": "top day trips in travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Family Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "family travel travel type rather than africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Family Travel", "prompt_family": "vague", "text": "looking into travel family travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Family Travel", "negative_iab_path": "Travel > Travel Type > Air Travel", "prompt_family": "contrastive", "text": "looking for family travel instead of air travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "discovery", "text": "best travel type honeymoons and getaways options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for honeymoons and getaways travel type instead of africa travel"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Honeymoons and Getaways", "prompt_family": "vague", "text": "need advice about travel type honeymoons and getaways options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "alias", "text": "hotels and motels guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "discovery", "text": "compare travel type hotels and motels options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Hotels and Motels", "prompt_family": "vague", "text": "help me choose hotels and motels in travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Rail Travel", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "looking for travel travel type rail travel instead of africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "alias", "text": "rail travel travel type"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Rail Travel", "prompt_family": "discovery", "text": "best travel type rail travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Road Trips", "prompt_family": "alias", "text": "what is road trips travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Road Trips", "negative_iab_path": "Travel > Travel Type > Beach Travel", "prompt_family": "contrastive", "text": "road trips travel type rather than beach travel"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Travel > Travel Type > Road Trips", "negative_iab_path": "Travel > Travel Locations > Africa Travel", "prompt_family": "contrastive", "text": "researching road trips, not africa travel"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "spas"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "alias", "text": "spas in travel type"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Travel > Travel Type > Spas", "prompt_family": "vague", "text": "help me choose spas in travel type"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need video gaming, not attractions"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "video gaming rather than books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "discovery", "text": "top video gaming"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "Video Gaming", "prompt_family": "vague", "text": "need advice about video gaming guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "video gaming rather than attractions"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "researching console game, not mobile games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "researching video gaming console games, not pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "looking for console games instead of pc games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "alias", "text": "console games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Console Games", "prompt_family": "vague", "text": "help me choose video gaming console games options"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Console Games", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "console games rather than mobile games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "need video gaming esports, not mobile games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "researching video gaming esports, not console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "esport rather than video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > eSports", "prompt_family": "alias", "text": "how does video gaming esports options work"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "esports rather than console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > eSports", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "researching esports video gaming, not pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > Console Games", "prompt_family": "contrastive", "text": "need video gaming mobile games, not console games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "mobile games video gaming rather than pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "researching mobile games video gaming, not pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > PC Games", "prompt_family": "contrastive", "text": "need video gaming mobile games, not pc games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Mobile Games", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "researching mobile game, not video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Mobile Games", "prompt_family": "discovery", "text": "best video gaming mobile games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "video gaming pc games options guide"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > Mobile Games", "prompt_family": "contrastive", "text": "pc games video gaming rather than mobile games"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > PC Games", "negative_iab_path": "Video Gaming > Video Game Genres", "prompt_family": "contrastive", "text": "looking for pc games video gaming instead of video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "pc games video gaming options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "discovery", "text": "compare video gaming pc games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > PC Games", "prompt_family": "alias", "text": "how does pc games work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video game genres video gaming overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "discovery", "text": "video game genres video gaming options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "video gaming video game genres overview"} +{"evidence_strength": "strong", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres", "negative_iab_path": "Video Gaming > eSports", "prompt_family": "contrastive", "text": "video gaming video game genres rather than esports"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "alias", "text": "learn about video gaming video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres", "prompt_family": "vague", "text": "looking into video game genres in video gaming"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "discovery", "text": "video gaming video game genres action video games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for action video game instead of action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "discovery", "text": "best video gaming video game genres action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need action-adventure video games, not adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "contrastive", "text": "need action-adventure video games, not adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "discovery", "text": "best video gaming video game genres action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "researching adult video games video game genres, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "discovery", "text": "top adult video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "discovery", "text": "top video game genres adult video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "discovery", "text": "best adventure video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "prompt_family": "vague", "text": "need advice about video gaming adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Adventure Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "adventure video games rather than action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "how does video game genres casino and gambling video games options work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "how does video gaming casino and gambling video games work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", "prompt_family": "alias", "text": "learn about video gaming video game genres casino and gambling video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "what is video game genres casual games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "what is casual games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Casual Games", "prompt_family": "alias", "text": "casual games video game genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "what is educational video games in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "how does video gaming video game genres educational video games work"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Educational Video Games", "prompt_family": "alias", "text": "educational video games video game genres basics"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "what is exercise and fitness video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "alias", "text": "exercise and fitness video games in video game genres guide"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", "prompt_family": "discovery", "text": "best video game genres exercise and fitness video games options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "discovery", "text": "family video game options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "family video games overview"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Family Video Games", "prompt_family": "alias", "text": "family video game"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "discovery", "text": "top horror video games video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "what is horror video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Horror Video Games", "prompt_family": "alias", "text": "video gaming horror video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "alias", "text": "how does video gaming video game genres mmos work"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "discovery", "text": "compare mmos in video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > MMOs", "prompt_family": "discovery", "text": "top video game genres mmos"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "video game genres music and party video games guide"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "prompt_family": "alias", "text": "how does video gaming video game genres music and party video games work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Music and Party Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "music and party video game rather than adult video games"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "discovery", "text": "top puzzle video games in video game genres"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "prompt_family": "alias", "text": "how does puzzle video games in video game genres work"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Puzzle Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "researching puzzle video games, not action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need racing video games, not adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need racing video games video game genres, not action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Racing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "racing video games video game genres rather than adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "role-playing video games rather than action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "role-playing video game rather than action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Role-Playing Video Games", "prompt_family": "alias", "text": "what is role-playing video game"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "alias", "text": "what is video game genres simulation video games options"} +{"evidence_strength": "moderate", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "prompt_family": "vague", "text": "help me choose video game genres simulation video games options"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Simulation Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need simulation video games, not action video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "looking for sports video games instead of action-adventure video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Adult Video Games", "prompt_family": "contrastive", "text": "need sports video game, not adult video games"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Sports Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action-Adventure Video Games", "prompt_family": "contrastive", "text": "researching sports video game, not action-adventure video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "alias", "text": "strategy video games video game genres basics"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "negative_iab_path": "Video Gaming > Video Game Genres > Action Video Games", "prompt_family": "contrastive", "text": "need strategy video games video game genres, not action video games"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "Video Gaming > Video Game Genres > Strategy Video Games", "prompt_family": "discovery", "text": "best strategy video games video game genres"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "top war and conflicts"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "vague", "text": "exploring war and conflicts guide"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Automotive", "prompt_family": "contrastive", "text": "war and conflicts rather than automotive"} +{"evidence_strength": "weak", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "what is war and conflicts options"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "discovery", "text": "best war and conflict"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Books and Literature", "prompt_family": "contrastive", "text": "looking for war and conflict instead of books and literature"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "war and conflict overview"} +{"evidence_strength": "moderate", "hard_negative": true, "iab_path": "War and Conflicts", "negative_iab_path": "Attractions", "prompt_family": "contrastive", "text": "need war and conflicts, not attractions"} +{"evidence_strength": "strong", "hard_negative": false, "iab_path": "War and Conflicts", "prompt_family": "alias", "text": "what is war and conflicts"} diff --git a/data/iab_benchmark.jsonl b/data/iab_benchmark.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1c8d40aecb210c6a3c442ed9d621a378be22be11 --- /dev/null +++ b/data/iab_benchmark.jsonl @@ -0,0 +1,156 @@ +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "best vehicles"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "which car should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "mazda cx-5 vs subaru forester"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "car buying guide"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "best car for a first-time buyer"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "compare mazda cx-5 and subaru forester before buying"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "affordable vehicles for a first-time buyer"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "what vehicles are worth considering for a first-time buyer"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i am replacing my current car and need the right option for a first-time buyer"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "help me narrow down vehicles for a first-time buyer without wasting money"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "which option makes more sense between mazda cx-5 and subaru forester for a first-time buyer"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i need a shortlist of vehicles that fit safety and price"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "best sales tools for small revenue teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "what is crm platform"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "copper vs salesforce essentials"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "crm platform for managing leads"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "compare copper and salesforce essentials for small revenue teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "best sales tools for managing leads"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "how does crm platform work for small revenue teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "which crm platform should a small revenue teams choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "i am evaluating software for managing leads and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "what tools should i shortlist before picking between copper and salesforce essentials"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "we need a platform for managing leads and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "help me assess copper versus other options for small revenue teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best marketing tools for brand teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what is marketing platform"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "moz vs se ranking"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "marketing platform for search visibility"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "compare moz and se ranking for brand teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best marketing tools for search visibility"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "how does marketing platform work for brand teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "which marketing platform should a brand teams choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "i am evaluating software for search visibility and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what tools should i shortlist before picking between moz and se ranking"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "we need a platform for search visibility and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "help me assess moz versus other options for brand teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "how do i reset my password"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "business login security tools"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "identity management software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "rippling vs jumpcloud for access management"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "best software for employee password resets"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "how does single sign-on work for a small company"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "access management platform for remote employees"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "compare rippling and jumpcloud for workforce identity"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "our team keeps getting locked out and we need better identity software"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "what category covers employee account security and access provisioning"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "we need business software for login, permissions, and access control"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "help me evaluate identity tooling for company account security"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "book a table for dinner"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "best restaurants for date night"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "where should i eat tonight"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "reserve a table for two"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "uptown restaurant options for a birthday dinner"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "family friendly restaurants near me"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "compare brunch spots for a weekend meetup"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "where can i book dinner for four tonight"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "i need a place to eat and want something i can reserve tonight"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "what category covers restaurants and booking a table"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "help me find a dinner spot for a client meeting"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "i want dining options, not recipes"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "best vodka drink to try"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "whiskey cocktail ideas"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "what is a martini"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "bourbon vs rye for beginners"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "best whiskey cocktail for a dinner party"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "vodka drinks for beginners"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "compare bourbon and scotch flavor profiles"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "how does gin differ from vodka in cocktails"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "i want alcoholic drink recommendations, not restaurant suggestions"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "help me understand beginner-friendly cocktails with bourbon"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "what should i try if i want a spirit-forward drink"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "compare vodka cocktails with tequila cocktails"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "what is intent classification in nlp"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "machine learning basics"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "how does natural language processing work"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "what are large language models"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "best ai methods for text classification"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "nlp model comparison for intent detection"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "how do llms handle classification tasks"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "ai tools for labeling text data"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "i want the ai concept behind intent models, not software shopping"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "help me understand the machine learning side of nlp classification"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "compare transformer-based approaches for intent detection"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "what branch covers language-model research topics"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best productivity apps for small teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what is workflow software"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "basecamp vs asana"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "workflow software for organizing work"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "compare basecamp and asana for small teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best productivity apps for organizing work"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "how does workflow software work for small teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "which workflow software should a small teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "i am evaluating software for organizing work and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what tools should i shortlist before picking between basecamp and asana"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "we need a platform for organizing work and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "help me assess basecamp versus other options for small teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best team messaging tools for engineering teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what is communication platform"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "mattermost vs slack"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "communication platform for workplace communication"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "compare mattermost and slack for engineering teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best team messaging tools for workplace communication"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "how does communication platform work for engineering teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "which communication platform should a engineering teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "i am evaluating software for workplace communication and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what tools should i shortlist before picking between mattermost and slack"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "we need a platform for workplace communication and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "help me assess mattermost versus other options for engineering teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting platforms for product builders"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what is web hosting service"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "fly.io vs render"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "web hosting service for deploying websites"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "compare fly.io and render for product builders"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting platforms for deploying websites"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "how does web hosting service work for product builders"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "which web hosting service should a product builders choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "i am evaluating software for deploying websites and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what tools should i shortlist before picking between fly.io and render"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "we need a platform for deploying websites and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "help me assess fly.io versus other options for product builders"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best portable computers"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which laptop should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "surface laptop vs framework laptop"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "laptop buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best laptop for knowledge workers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "compare surface laptop and framework laptop before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "affordable portable computers for knowledge workers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "what portable computers are worth considering for knowledge workers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i am replacing my current laptop and need the right option for knowledge workers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "help me narrow down portable computers for knowledge workers without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which option makes more sense between surface laptop and framework laptop for knowledge workers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i need a shortlist of portable computers that fit portability and repairability"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best desktop pcs"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which desktop computer should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "mac studio vs hp omen 45l"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "desktop computer buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best desktop computer for creators"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "compare mac studio and hp omen 45l before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "affordable desktop pcs for creators"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "what desktop pcs are worth considering for creators"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i am replacing my current desktop computer and need the right option for creators"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "help me narrow down desktop pcs for creators without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which option makes more sense between mac studio and hp omen 45l for creators"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i need a shortlist of desktop pcs that fit performance and reliability"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best mobile phones"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which smartphone should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "nothing phone 4 vs pixel 10 pro"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "smartphone buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best smartphone for everyday buyers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "compare nothing phone 4 and pixel 10 pro before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "affordable mobile phones for everyday buyers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "what mobile phones are worth considering for everyday buyers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i am replacing my current smartphone and need the right option for everyday buyers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "help me narrow down mobile phones for everyday buyers without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which option makes more sense between nothing phone 4 and pixel 10 pro for everyday buyers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i need a shortlist of mobile phones that fit camera and battery performance"} diff --git a/data/iab_cross_vertical_benchmark.jsonl b/data/iab_cross_vertical_benchmark.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..df06ea3ff7a7bf084f23e978628a144401ffff6f --- /dev/null +++ b/data/iab_cross_vertical_benchmark.jsonl @@ -0,0 +1,90 @@ +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "source": "iab_cross_vertical_benchmark", "text": "Which car should I buy for commuting?"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "source": "iab_cross_vertical_benchmark", "text": "Best used SUV for a family of four"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "source": "iab_cross_vertical_benchmark", "text": "I need a shortlist of practical cars before making a purchase this month"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "source": "iab_cross_vertical_benchmark", "text": "What is CRM software?"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "source": "iab_cross_vertical_benchmark", "text": "HubSpot vs Zoho for a small team"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "source": "iab_cross_vertical_benchmark", "text": "Need software to manage leads and pipeline for a startup sales team"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "source": "iab_cross_vertical_benchmark", "text": "Best SEO tools for content teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "source": "iab_cross_vertical_benchmark", "text": "How should I compare ad attribution platforms?"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "source": "iab_cross_vertical_benchmark", "text": "Need software to measure channel performance across paid and organic campaigns"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "source": "iab_cross_vertical_benchmark", "text": "How do I reset my work password?"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "source": "iab_cross_vertical_benchmark", "text": "My employees keep getting locked out of their accounts"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "source": "iab_cross_vertical_benchmark", "text": "Need identity and access software for login, permissions, and account security"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "source": "iab_cross_vertical_benchmark", "text": "Book a table for six tonight"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "source": "iab_cross_vertical_benchmark", "text": "Good restaurants for a client dinner downtown"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "source": "iab_cross_vertical_benchmark", "text": "Need a place to eat tonight where I can make a reservation online"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "source": "iab_cross_vertical_benchmark", "text": "Which whiskey cocktail should I order?"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "source": "iab_cross_vertical_benchmark", "text": "Best vodka drinks for beginners"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "source": "iab_cross_vertical_benchmark", "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "source": "iab_cross_vertical_benchmark", "text": "What is intent classification in NLP?"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "source": "iab_cross_vertical_benchmark", "text": "How do large language models handle text classification?"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "source": "iab_cross_vertical_benchmark", "text": "Need the machine learning concept behind language understanding, not software to buy"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "source": "iab_cross_vertical_benchmark", "text": "Best workflow software for a small operations team"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "source": "iab_cross_vertical_benchmark", "text": "Need project management software for a distributed team"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "source": "iab_cross_vertical_benchmark", "text": "Looking for a business software platform to organize internal workflows"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "source": "iab_cross_vertical_benchmark", "text": "Best communication software for remote teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "source": "iab_cross_vertical_benchmark", "text": "Slack vs Teams for internal messaging"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "source": "iab_cross_vertical_benchmark", "text": "Need a workplace chat tool for cross-functional collaboration"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "source": "iab_cross_vertical_benchmark", "text": "Vercel vs Netlify for website hosting"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "source": "iab_cross_vertical_benchmark", "text": "Best hosting platform for a startup website"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "source": "iab_cross_vertical_benchmark", "text": "Need a managed hosting provider to deploy and run our marketing site"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "source": "iab_cross_vertical_benchmark", "text": "Which laptop should I buy for college?"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "source": "iab_cross_vertical_benchmark", "text": "Best laptop for work and study under 1200"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "source": "iab_cross_vertical_benchmark", "text": "Need a portable computer with good battery life for everyday work"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "source": "iab_cross_vertical_benchmark", "text": "Best desktop for video editing"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "source": "iab_cross_vertical_benchmark", "text": "Which desktop computer should I buy for a home office?"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "source": "iab_cross_vertical_benchmark", "text": "Need a desktop PC with strong performance for creative work"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "source": "iab_cross_vertical_benchmark", "text": "Best phone with a good camera under 700"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "source": "iab_cross_vertical_benchmark", "text": "Should I buy an iPhone or Pixel this year?"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "source": "iab_cross_vertical_benchmark", "text": "Need a new smartphone with strong battery life and a clean software experience"} +{"difficulty": "easy", "iab_path": "Style & Fashion", "source": "iab_cross_vertical_benchmark", "text": "Best shoes under 100 dollars"} +{"difficulty": "medium", "iab_path": "Style & Fashion", "source": "iab_cross_vertical_benchmark", "text": "Affordable fashion accessories for everyday wear"} +{"difficulty": "hard", "iab_path": "Style & Fashion", "source": "iab_cross_vertical_benchmark", "text": "Need style recommendations for clothing and footwear without a specific brand in mind"} +{"difficulty": "easy", "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "source": "iab_cross_vertical_benchmark", "text": "Best women's running shoes under 100 dollars"} +{"difficulty": "medium", "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "source": "iab_cross_vertical_benchmark", "text": "Comfortable women's sneakers for walking all day"} +{"difficulty": "hard", "iab_path": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", "source": "iab_cross_vertical_benchmark", "text": "Need women's footwear for commuting that looks polished but feels comfortable"} +{"difficulty": "easy", "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "source": "iab_cross_vertical_benchmark", "text": "Best men's sneakers for daily wear"} +{"difficulty": "medium", "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "source": "iab_cross_vertical_benchmark", "text": "Good men's dress shoes for office use"} +{"difficulty": "hard", "iab_path": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", "source": "iab_cross_vertical_benchmark", "text": "Need men's footwear that works for workdays and weekend walking"} +{"difficulty": "easy", "iab_path": "Travel > Travel Type > Hotels and Motels", "source": "iab_cross_vertical_benchmark", "text": "Need a hotel in Chicago for two nights"} +{"difficulty": "medium", "iab_path": "Travel > Travel Type > Hotels and Motels", "source": "iab_cross_vertical_benchmark", "text": "Best hotels near Times Square for a weekend trip"} +{"difficulty": "hard", "iab_path": "Travel > Travel Type > Hotels and Motels", "source": "iab_cross_vertical_benchmark", "text": "Looking for a place to stay during a work trip, not general travel advice"} +{"difficulty": "easy", "iab_path": "Real Estate > Real Estate Renting and Leasing", "source": "iab_cross_vertical_benchmark", "text": "Apartments for rent near downtown Austin"} +{"difficulty": "medium", "iab_path": "Real Estate > Real Estate Renting and Leasing", "source": "iab_cross_vertical_benchmark", "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle"} +{"difficulty": "hard", "iab_path": "Real Estate > Real Estate Renting and Leasing", "source": "iab_cross_vertical_benchmark", "text": "Need rental listings for a short move, not home-buying advice"} +{"difficulty": "easy", "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "source": "iab_cross_vertical_benchmark", "text": "Best running plan for a first 10k"} +{"difficulty": "medium", "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "source": "iab_cross_vertical_benchmark", "text": "How should I train for a half marathon as a beginner?"} +{"difficulty": "hard", "iab_path": "Healthy Living > Fitness and Exercise > Running and Jogging", "source": "iab_cross_vertical_benchmark", "text": "Need guidance on building a weekly jogging routine without getting injured"} +{"difficulty": "easy", "iab_path": "Sports > Soccer", "source": "iab_cross_vertical_benchmark", "text": "How do offside rules work in soccer?"} +{"difficulty": "medium", "iab_path": "Sports > Soccer", "source": "iab_cross_vertical_benchmark", "text": "Best soccer drills for beginner players"} +{"difficulty": "hard", "iab_path": "Sports > Soccer", "source": "iab_cross_vertical_benchmark", "text": "Need help understanding football tactics for the Premier League, not fantasy sports"} +{"difficulty": "easy", "iab_path": "Books and Literature > Fiction", "source": "iab_cross_vertical_benchmark", "text": "Recommend a good fantasy novel to read"} +{"difficulty": "medium", "iab_path": "Books and Literature > Fiction", "source": "iab_cross_vertical_benchmark", "text": "Best fiction books for a long flight"} +{"difficulty": "hard", "iab_path": "Books and Literature > Fiction", "source": "iab_cross_vertical_benchmark", "text": "Looking for a character-driven novel, not comics or poetry"} +{"difficulty": "easy", "iab_path": "Home & Garden > Home Improvement", "source": "iab_cross_vertical_benchmark", "text": "How much does a kitchen remodel usually cost?"} +{"difficulty": "medium", "iab_path": "Home & Garden > Home Improvement", "source": "iab_cross_vertical_benchmark", "text": "Best tools for a DIY bathroom renovation"} +{"difficulty": "hard", "iab_path": "Home & Garden > Home Improvement", "source": "iab_cross_vertical_benchmark", "text": "Need practical advice for upgrading an older house, not interior decor inspiration"} +{"difficulty": "easy", "iab_path": "Education > Online Education", "source": "iab_cross_vertical_benchmark", "text": "Best online courses for learning Python"} +{"difficulty": "medium", "iab_path": "Education > Online Education", "source": "iab_cross_vertical_benchmark", "text": "What are good platforms for remote professional classes?"} +{"difficulty": "hard", "iab_path": "Education > Online Education", "source": "iab_cross_vertical_benchmark", "text": "Need internet-based training options I can finish after work hours"} +{"difficulty": "easy", "iab_path": "Education > College Education > Postgraduate Education", "source": "iab_cross_vertical_benchmark", "text": "best universities to study masters"} +{"difficulty": "medium", "iab_path": "Education > College Education > Postgraduate Education", "source": "iab_cross_vertical_benchmark", "text": "which graduate schools have strong data science programs"} +{"difficulty": "hard", "iab_path": "Education > College Education > Postgraduate Education", "source": "iab_cross_vertical_benchmark", "text": "need postgraduate options for a master's degree, not short online courses"} +{"difficulty": "easy", "iab_path": "Medical Health", "source": "iab_cross_vertical_benchmark", "text": "what do these allergy symptoms mean"} +{"difficulty": "medium", "iab_path": "Medical Health", "source": "iab_cross_vertical_benchmark", "text": "when should i see a doctor for persistent knee pain"} +{"difficulty": "hard", "iab_path": "Medical Health", "source": "iab_cross_vertical_benchmark", "text": "need medical advice about symptoms, not wellness or fitness tips"} +{"difficulty": "easy", "iab_path": "Careers > Job Search", "source": "iab_cross_vertical_benchmark", "text": "best remote jobs for data analysts"} +{"difficulty": "medium", "iab_path": "Careers > Job Search", "source": "iab_cross_vertical_benchmark", "text": "where should i look for product manager openings"} +{"difficulty": "hard", "iab_path": "Careers > Job Search", "source": "iab_cross_vertical_benchmark", "text": "need help finding a new role and preparing for interviews"} +{"difficulty": "easy", "iab_path": "Personal Finance > Financial Planning", "source": "iab_cross_vertical_benchmark", "text": "how much should i save each month"} +{"difficulty": "medium", "iab_path": "Personal Finance > Financial Planning", "source": "iab_cross_vertical_benchmark", "text": "best budgeting approach for a growing family"} +{"difficulty": "hard", "iab_path": "Personal Finance > Financial Planning", "source": "iab_cross_vertical_benchmark", "text": "need help planning savings and retirement, not business finance advice"} +{"difficulty": "easy", "iab_path": "Family and Relationships > Parenting", "source": "iab_cross_vertical_benchmark", "text": "tips for parenting a toddler"} +{"difficulty": "medium", "iab_path": "Family and Relationships > Parenting", "source": "iab_cross_vertical_benchmark", "text": "how do i help my teenager spend less time online"} +{"difficulty": "hard", "iab_path": "Family and Relationships > Parenting", "source": "iab_cross_vertical_benchmark", "text": "need parenting advice for a child starting preschool"} +{"difficulty": "easy", "iab_path": "Home & Garden > Gardening", "source": "iab_cross_vertical_benchmark", "text": "best plants for a small balcony garden"} +{"difficulty": "medium", "iab_path": "Home & Garden > Gardening", "source": "iab_cross_vertical_benchmark", "text": "how often should i water tomato plants"} +{"difficulty": "hard", "iab_path": "Home & Garden > Gardening", "source": "iab_cross_vertical_benchmark", "text": "need gardening advice for a shady backyard, not interior decor ideas"} +{"difficulty": "easy", "iab_path": "Entertainment > Movies", "source": "iab_cross_vertical_benchmark", "text": "What movie should we watch tonight?"} +{"difficulty": "medium", "iab_path": "Entertainment > Movies", "source": "iab_cross_vertical_benchmark", "text": "Best thriller movies from the last few years"} +{"difficulty": "hard", "iab_path": "Entertainment > Movies", "source": "iab_cross_vertical_benchmark", "text": "Looking for film recommendations, not TV shows or music"} diff --git a/data/iab_difficulty/test.jsonl b/data/iab_difficulty/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..95807910622836c9fd3d3e1517c69eed2c538dcb --- /dev/null +++ b/data/iab_difficulty/test.jsonl @@ -0,0 +1,62 @@ +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "best cars"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "which car should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "toyota corolla vs honda civic"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "car buying guide"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "best car for a commuter"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "compare toyota corolla and honda civic before buying"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "best crm tools for small sales teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "what is crm software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "hubspot vs zoho"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "crm software for lead management"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "compare hubspot and zoho for small sales teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "best crm tools for lead management"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best marketing tools for content teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what is marketing software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "semrush vs ahrefs"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "marketing software for organic growth"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "compare semrush and ahrefs for content teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best marketing tools for organic growth"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "how do i reset my password"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "business login security tools"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "book a table for dinner"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "best restaurants for date night"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "best vodka drink to try"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "whiskey cocktail ideas"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "what is intent classification in nlp"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "machine learning basics"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software applications for operations teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what is software platform"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "notion vs airtable"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "software platform for workflow management"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "compare notion and airtable for operations teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software applications for workflow management"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best communication tools for remote teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what is communication software"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "slack vs microsoft teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "communication software for team communication"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "compare slack and microsoft teams for remote teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best communication tools for team communication"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting providers for startup launch teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what is web hosting"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "vercel vs netlify"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "web hosting for site hosting"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "compare vercel and netlify for startup launch teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting providers for site hosting"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best laptops"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which laptop should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "macbook air vs dell xps 13"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "laptop buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best laptop for work and study"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "compare macbook air and dell xps 13 before buying"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best desktops"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which desktop should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "imac vs dell inspiron desktop"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "desktop buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best desktop for home offices"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "compare imac and dell inspiron desktop before buying"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best smartphones"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which smartphone should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "iphone 17 vs samsung galaxy s26"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "smartphone buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best smartphone for everyday users"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "compare iphone 17 and samsung galaxy s26 before buying"} diff --git a/data/iab_difficulty/train.jsonl b/data/iab_difficulty/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e2b2b0c70dba0885c04e7d3b00db43c4e477b5e3 --- /dev/null +++ b/data/iab_difficulty/train.jsonl @@ -0,0 +1,254 @@ +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "best suvs"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "which suv should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "toyota rav4 vs honda cr-v"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "suv buying guide"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "best suv for a growing family"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "compare toyota rav4 and honda cr-v before buying"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "affordable suvs for a growing family"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "what suvs are worth considering for a growing family"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i am replacing my current suv and need the right option for a growing family"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "help me narrow down suvs for a growing family without wasting money"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "which option makes more sense between toyota rav4 and honda cr-v for a growing family"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i need a shortlist of suvs that fit daily driving and storage needs"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "best electric cars"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "which electric car should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "tesla model 3 vs hyundai ioniq 5"} +{"difficulty": "easy", "iab_path": "Automotive > Auto Buying and Selling", "text": "electric car buying guide"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "best electric car for a first-time ev buyer"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "compare tesla model 3 and hyundai ioniq 5 before buying"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "affordable electric cars for a first-time ev buyer"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "what electric cars are worth considering for a first-time ev buyer"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i am replacing my current electric car and need the right option for a first-time ev buyer"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "help me narrow down electric cars for a first-time ev buyer without wasting money"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "which option makes more sense between tesla model 3 and hyundai ioniq 5 for a first-time ev buyer"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i need a shortlist of electric cars that fit reasonable range and price"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "best sales platforms for outbound teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "what is sales engagement software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "apollo vs outreach"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "sales engagement software for pipeline generation"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "compare apollo and outreach for outbound teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "best sales platforms for pipeline generation"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "how does sales engagement software work for outbound teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "which sales engagement software should a outbound teams choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "i am evaluating software for pipeline generation and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "what tools should i shortlist before picking between apollo and outreach"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "we need a platform for pipeline generation and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "help me assess apollo versus other options for outbound teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "best crm systems for growing startups"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "what is customer relationship management software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "pipedrive vs freshsales"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Sales", "text": "customer relationship management software for deal tracking"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "compare pipedrive and freshsales for growing startups"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "best crm systems for deal tracking"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "how does customer relationship management software work for growing startups"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "which customer relationship management software should a growing startups choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "i am evaluating software for deal tracking and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "what tools should i shortlist before picking between pipedrive and freshsales"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "we need a platform for deal tracking and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "help me assess pipedrive versus other options for growing startups"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best seo tools for editorial teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what is seo platform"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "surfer vs clearscope"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "seo platform for content optimization"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "compare surfer and clearscope for editorial teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best seo tools for content optimization"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "how does seo platform work for editorial teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "which seo platform should a editorial teams choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "i am evaluating software for content optimization and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what tools should i shortlist before picking between surfer and clearscope"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "we need a platform for content optimization and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "help me assess surfer versus other options for editorial teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best marketing analytics tools for performance marketers"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what is advertising analytics software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "triple whale vs northbeam"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "advertising analytics software for campaign measurement"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "compare triple whale and northbeam for performance marketers"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "best marketing analytics tools for campaign measurement"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "how does advertising analytics software work for performance marketers"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "which advertising analytics software should a performance marketers choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "i am evaluating software for campaign measurement and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what tools should i shortlist before picking between triple whale and northbeam"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "we need a platform for campaign measurement and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "help me assess triple whale versus other options for performance marketers"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "best software for employee password resets"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "how does single sign-on work for a small company"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "access management platform for remote employees"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "compare okta and microsoft entra for workforce identity"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "our team keeps getting locked out and we need better identity software"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "what category covers employee account security and access provisioning"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "we need business software for login, permissions, and access control"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Business I.T.", "text": "help me evaluate identity tooling for company account security"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "jumpcloud vs okta for access management"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "compare jumpcloud and okta for workforce identity"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "duo vs onelogin for access management"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Business I.T.", "text": "compare duo and onelogin for workforce identity"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "downtown restaurant options for a birthday dinner"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "family friendly restaurants near me"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "compare brunch spots for a weekend meetup"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "where can i book dinner for four tonight"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "i need a place to eat and want something i can reserve tonight"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "what category covers restaurants and booking a table"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "help me find a dinner spot for a client meeting"} +{"difficulty": "hard", "iab_path": "Food & Drink > Dining Out", "text": "i want dining options, not recipes"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "midtown restaurant options for a birthday dinner"} +{"difficulty": "medium", "iab_path": "Food & Drink > Dining Out", "text": "the waterfront restaurant options for a birthday dinner"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "best whiskey cocktail for a dinner party"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "vodka drinks for beginners"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "compare bourbon and scotch flavor profiles"} +{"difficulty": "medium", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "how does gin differ from vodka in cocktails"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "i want alcoholic drink recommendations, not restaurant suggestions"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "help me understand beginner-friendly cocktails with bourbon"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "what should i try if i want a spirit-forward drink"} +{"difficulty": "hard", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "compare vodka cocktails with tequila cocktails"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "best ai methods for text classification"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "nlp model comparison for intent detection"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "how do llms handle classification tasks"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "ai tools for labeling text data"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "i want the ai concept behind intent models, not software shopping"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "help me understand the machine learning side of nlp classification"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "compare transformer-based approaches for intent detection"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "what branch covers language-model research topics"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software tools for remote teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what is project management software"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "asana vs clickup"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "project management software for project planning"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "compare asana and clickup for remote teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software tools for project planning"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "how does project management software work for remote teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "which project management software should a remote teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "i am evaluating software for project planning and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what tools should i shortlist before picking between asana and clickup"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "we need a platform for project planning and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "help me assess asana versus other options for remote teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software products for startup operators"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what is business software"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "monday.com vs notion"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "business software for team coordination"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "compare monday.com and notion for startup operators"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "best software products for team coordination"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "how does business software work for startup operators"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "which business software should a startup operators choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "i am evaluating software for team coordination and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what tools should i shortlist before picking between monday.com and notion"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "we need a platform for team coordination and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "help me assess monday.com versus other options for startup operators"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best messaging platforms for distributed startups"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what is team chat software"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "slack vs discord"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "team chat software for internal collaboration"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "compare slack and discord for distributed startups"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best messaging platforms for internal collaboration"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "how does team chat software work for distributed startups"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "which team chat software should a distributed startups choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "i am evaluating software for internal collaboration and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what tools should i shortlist before picking between slack and discord"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "we need a platform for internal collaboration and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "help me assess slack versus other options for distributed startups"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best communication apps for cross-functional teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what is workplace communication platform"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "google chat vs microsoft teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "workplace communication platform for company messaging"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "compare google chat and microsoft teams for cross-functional teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "best communication apps for company messaging"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "how does workplace communication platform work for cross-functional teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "which workplace communication platform should a cross-functional teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "i am evaluating software for company messaging and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what tools should i shortlist before picking between google chat and microsoft teams"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "we need a platform for company messaging and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "help me assess google chat versus other options for cross-functional teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting services for developers"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what is hosting platform"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "cloudflare pages vs render"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "hosting platform for website deployment"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "compare cloudflare pages and render for developers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting services for website deployment"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "how does hosting platform work for developers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "which hosting platform should a developers choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "i am evaluating software for website deployment and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what tools should i shortlist before picking between cloudflare pages and render"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "we need a platform for website deployment and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "help me assess cloudflare pages versus other options for developers"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting options for content teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what is managed hosting"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "wp engine vs kinsta"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "managed hosting for site performance"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "compare wp engine and kinsta for content teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "best hosting options for site performance"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "how does managed hosting work for content teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "which managed hosting should a content teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "i am evaluating software for site performance and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what tools should i shortlist before picking between wp engine and kinsta"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "we need a platform for site performance and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "help me assess wp engine versus other options for content teams"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best gaming laptops"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which gaming laptop should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "asus rog zephyrus vs lenovo legion slim"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "gaming laptop buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best gaming laptop for gamers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "compare asus rog zephyrus and lenovo legion slim before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "affordable gaming laptops for gamers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "what gaming laptops are worth considering for gamers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i am replacing my current gaming laptop and need the right option for gamers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "help me narrow down gaming laptops for gamers without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which option makes more sense between asus rog zephyrus and lenovo legion slim for gamers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i need a shortlist of gaming laptops that fit performance under a reasonable budget"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best student laptops"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which student laptop should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "acer swift go vs hp pavilion aero"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Laptops", "text": "student laptop buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "best student laptop for college students"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "compare acer swift go and hp pavilion aero before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "affordable student laptops for college students"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "what student laptops are worth considering for college students"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i am replacing my current student laptop and need the right option for college students"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "help me narrow down student laptops for college students without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which option makes more sense between acer swift go and hp pavilion aero for college students"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i need a shortlist of student laptops that fit price and portability"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best gaming desktops"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which gaming desktop should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "alienware aurora vs lenovo legion tower"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "gaming desktop buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best gaming desktop for pc gamers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "compare alienware aurora and lenovo legion tower before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "affordable gaming desktops for pc gamers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "what gaming desktops are worth considering for pc gamers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i am replacing my current gaming desktop and need the right option for pc gamers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "help me narrow down gaming desktops for pc gamers without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which option makes more sense between alienware aurora and lenovo legion tower for pc gamers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i need a shortlist of gaming desktops that fit strong graphics performance"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best desktop computers"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which desktop pc should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "hp envy desktop vs acer aspire tc"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Computing > Desktops", "text": "desktop pc buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "best desktop pc for families"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "compare hp envy desktop and acer aspire tc before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "affordable desktop computers for families"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "what desktop computers are worth considering for families"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i am replacing my current desktop pc and need the right option for families"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "help me narrow down desktop computers for families without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which option makes more sense between hp envy desktop and acer aspire tc for families"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i need a shortlist of desktop computers that fit value for money"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best budget smartphones"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which budget phone should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "pixel 10a vs galaxy a57"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "budget phone buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best budget phone for budget-conscious buyers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "compare pixel 10a and galaxy a57 before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "affordable budget smartphones for budget-conscious buyers"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "what budget smartphones are worth considering for budget-conscious buyers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i am replacing my current budget phone and need the right option for budget-conscious buyers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "help me narrow down budget smartphones for budget-conscious buyers without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which option makes more sense between pixel 10a and galaxy a57 for budget-conscious buyers"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i need a shortlist of budget smartphones that fit under midrange pricing"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best android phones"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which android phone should i buy in 2026"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "oneplus 15 vs pixel 10"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "android phone buying guide"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "best android phone for power users"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "compare oneplus 15 and pixel 10 before buying"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "affordable android phones for power users"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "what android phones are worth considering for power users"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i am replacing my current android phone and need the right option for power users"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "help me narrow down android phones for power users without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which option makes more sense between oneplus 15 and pixel 10 for power users"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i need a shortlist of android phones that fit performance and clean software"} diff --git a/data/iab_difficulty/val.jsonl b/data/iab_difficulty/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..de334cb73a0081a59ac429ae924475e378edcecf --- /dev/null +++ b/data/iab_difficulty/val.jsonl @@ -0,0 +1,62 @@ +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "affordable cars for a commuter"} +{"difficulty": "medium", "iab_path": "Automotive > Auto Buying and Selling", "text": "what cars are worth considering for a commuter"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i am replacing my current car and need the right option for a commuter"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "help me narrow down cars for a commuter without wasting money"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "which option makes more sense between toyota corolla and honda civic for a commuter"} +{"difficulty": "hard", "iab_path": "Automotive > Auto Buying and Selling", "text": "i need a shortlist of cars that fit a practical budget"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "how does crm software work for small sales teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Sales", "text": "which crm software should a small sales teams choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "i am evaluating software for lead management and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "what tools should i shortlist before picking between hubspot and zoho"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "we need a platform for lead management and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Sales", "text": "help me assess hubspot versus other options for small sales teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "how does marketing software work for content teams"} +{"difficulty": "medium", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "which marketing software should a content teams choose"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "i am evaluating software for organic growth and need the right category"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "what tools should i shortlist before picking between semrush and ahrefs"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "we need a platform for organic growth and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Business and Finance > Business > Marketing and Advertising", "text": "help me assess semrush versus other options for content teams"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "identity management software"} +{"difficulty": "easy", "iab_path": "Business and Finance > Business > Business I.T.", "text": "okta vs microsoft entra for access management"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "where should i eat tonight"} +{"difficulty": "easy", "iab_path": "Food & Drink > Dining Out", "text": "reserve a table for two"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "what is a martini"} +{"difficulty": "easy", "iab_path": "Food & Drink > Alcoholic Beverages", "text": "bourbon vs rye for beginners"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "how does natural language processing work"} +{"difficulty": "easy", "iab_path": "Technology & Computing > Artificial Intelligence", "text": "what are large language models"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "how does software platform work for operations teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "which software platform should a operations teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "i am evaluating software for workflow management and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "what tools should i shortlist before picking between notion and airtable"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "we need a platform for workflow management and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications", "text": "help me assess notion versus other options for operations teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "how does communication software work for remote teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "which communication software should a remote teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "i am evaluating software for team communication and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "what tools should i shortlist before picking between slack and microsoft teams"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "we need a platform for team communication and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Computer Software and Applications > Communication", "text": "help me assess slack versus other options for remote teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "how does web hosting work for startup launch teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "which web hosting should a startup launch teams choose"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "i am evaluating software for site hosting and need the right category"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "what tools should i shortlist before picking between vercel and netlify"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "we need a platform for site hosting and are not sure which branch this falls into"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Internet > Web Hosting", "text": "help me assess vercel versus other options for startup launch teams"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "affordable laptops for work and study"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Laptops", "text": "what laptops are worth considering for work and study"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i am replacing my current laptop and need the right option for work and study"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "help me narrow down laptops for work and study without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "which option makes more sense between macbook air and dell xps 13 for work and study"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Laptops", "text": "i need a shortlist of laptops that fit battery life and portability"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "affordable desktops for home offices"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Computing > Desktops", "text": "what desktops are worth considering for home offices"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i am replacing my current desktop and need the right option for home offices"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "help me narrow down desktops for home offices without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "which option makes more sense between imac and dell inspiron desktop for home offices"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Computing > Desktops", "text": "i need a shortlist of desktops that fit everyday productivity"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "affordable smartphones for everyday users"} +{"difficulty": "medium", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "what smartphones are worth considering for everyday users"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i am replacing my current smartphone and need the right option for everyday users"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "help me narrow down smartphones for everyday users without wasting money"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "which option makes more sense between iphone 17 and samsung galaxy s26 for everyday users"} +{"difficulty": "hard", "iab_path": "Technology & Computing > Consumer Electronics > Smartphones", "text": "i need a shortlist of smartphones that fit camera quality and battery life"} diff --git a/data/intent_type_benchmark.jsonl b/data/intent_type_benchmark.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4e2f0e748b0aedb6ce7f2af316e95c38b96de3a1 --- /dev/null +++ b/data/intent_type_benchmark.jsonl @@ -0,0 +1,150 @@ +{"difficulty": "easy", "intent_type": "informational", "source": "intent_type_benchmark", "text": "What is help desk software?"} +{"difficulty": "easy", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Explain help desk software in simple terms."} +{"difficulty": "easy", "intent_type": "informational", "source": "intent_type_benchmark", "text": "How does help desk platform work?"} +{"difficulty": "easy", "intent_type": "informational", "source": "intent_type_benchmark", "text": "What does Zendesk do?"} +{"difficulty": "easy", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Give me the basics of help desk software."} +{"difficulty": "medium", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Can you break down how smartphones works for travel planning?"} +{"difficulty": "medium", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Help me understand what problem iPhone solves."} +{"difficulty": "medium", "intent_type": "informational", "source": "intent_type_benchmark", "text": "What should a beginner know about smartphones?"} +{"difficulty": "medium", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Before I compare options, what is a smartphone exactly?"} +{"difficulty": "medium", "intent_type": "informational", "source": "intent_type_benchmark", "text": "What does a smartphone actually help with?"} +{"difficulty": "hard", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Before I decide anything, what is the role of web hosting in a startup launch?"} +{"difficulty": "hard", "intent_type": "informational", "source": "intent_type_benchmark", "text": "I keep hearing about Vercel; what does it actually do?"} +{"difficulty": "hard", "intent_type": "informational", "source": "intent_type_benchmark", "text": "What category does Vercel belong to?"} +{"difficulty": "hard", "intent_type": "informational", "source": "intent_type_benchmark", "text": "Can you clarify what people mean by web hosting in practice?"} +{"difficulty": "hard", "intent_type": "informational", "source": "intent_type_benchmark", "text": "I am not shopping yet, just tell me what web hosting is."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "What help desk tools should I explore for a support team?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "Show me help desk tools to consider for handle tickets faster."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "Help me explore options before picking a help desk platform."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "Where should I start with help desk tools?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "What kinds of help desk tools are worth looking into?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "I am researching smartphones for travel planning; where should I start?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "Give me a shortlist of smartphones worth exploring."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "What options should be on my radar before choosing a smartphone?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "I am early in the process and want to explore smartphones."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "What directions should I investigate for choose a new phone?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "I am not ready to buy yet, but what paths should I explore for ship a new website?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "What categories of hosting providers are worth researching before I narrow down?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "I need a landscape view of hosting providers, not a recommendation yet."} +{"difficulty": "hard", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "How would you scope the market for hosting providers in a startup launch?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "intent_type_benchmark", "text": "What should I research first if I am only beginning to look at hosting providers?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Best help desk platform for a support team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Zendesk vs Freshdesk."} +{"difficulty": "easy", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Which help desk platform should I buy for handle tickets faster?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Top help desk tools for a support team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "What is the best help desk platform this year?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Compare iPhone and Pixel for choose a new phone."} +{"difficulty": "medium", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "I need the best smartphone option for travel planning."} +{"difficulty": "medium", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Which smartphone is worth paying for right now?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "Help me evaluate the best smartphones for choose a new phone."} +{"difficulty": "medium", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "What should I choose if I want a strong smartphone for travel planning?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "I am leaning toward buying soon; which hosting platform looks strongest for a startup launch?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "If price is not the only factor, which Vercel/Netlify style option should I favor?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "What would you recommend if I need to commit to a hosting platform soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "I have done some research, now which hosting platform should make the shortlist?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "intent_type_benchmark", "text": "What seems like the best-fit hosting platform if I need to make a purchase decision soon?"} +{"difficulty": "easy", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Start a free trial of Zendesk."} +{"difficulty": "easy", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Book a demo with Zendesk."} +{"difficulty": "easy", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Create an account for Zendesk."} +{"difficulty": "easy", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Download the help desk buyer guide."} +{"difficulty": "easy", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Buy Zendesk now."} +{"difficulty": "medium", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Get me signed up for iPhone."} +{"difficulty": "medium", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "I want to purchase iPhone today."} +{"difficulty": "medium", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Reserve my spot with iPhone."} +{"difficulty": "medium", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Send me the download for the phone comparison sheet."} +{"difficulty": "medium", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Take me to checkout for iPhone."} +{"difficulty": "hard", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "I am ready to move forward now, where do I start the purchase for Vercel?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Help me complete the signup flow for Vercel."} +{"difficulty": "hard", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "I want to act on this now and get access to Vercel."} +{"difficulty": "hard", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "Can you help me finish the order for Vercel?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "intent_type_benchmark", "text": "I have decided, now let me complete the next step for Vercel."} +{"difficulty": "easy", "intent_type": "support", "source": "intent_type_benchmark", "text": "I cannot log into my billing portal."} +{"difficulty": "easy", "intent_type": "support", "source": "intent_type_benchmark", "text": "How do I reset my password?"} +{"difficulty": "easy", "intent_type": "support", "source": "intent_type_benchmark", "text": "My billing portal is not working."} +{"difficulty": "easy", "intent_type": "support", "source": "intent_type_benchmark", "text": "I need help with a billing issue."} +{"difficulty": "easy", "intent_type": "support", "source": "intent_type_benchmark", "text": "Why is my billing portal failing?"} +{"difficulty": "medium", "intent_type": "support", "source": "intent_type_benchmark", "text": "Can you help me fix a shipping update?"} +{"difficulty": "medium", "intent_type": "support", "source": "intent_type_benchmark", "text": "I am stuck because my trade-in order keeps breaking."} +{"difficulty": "medium", "intent_type": "support", "source": "intent_type_benchmark", "text": "My invoice looks wrong for iPhone."} +{"difficulty": "medium", "intent_type": "support", "source": "intent_type_benchmark", "text": "I need support with my trade-in order."} +{"difficulty": "medium", "intent_type": "support", "source": "intent_type_benchmark", "text": "Why is iPhone not syncing correctly?"} +{"difficulty": "hard", "intent_type": "support", "source": "intent_type_benchmark", "text": "I am not evaluating tools, I just need help fixing my deployment."} +{"difficulty": "hard", "intent_type": "support", "source": "intent_type_benchmark", "text": "Something is wrong after signup and I need support, not advice."} +{"difficulty": "hard", "intent_type": "support", "source": "intent_type_benchmark", "text": "Please help me resolve a live problem with Vercel."} +{"difficulty": "hard", "intent_type": "support", "source": "intent_type_benchmark", "text": "I cannot continue because my deployment is broken."} +{"difficulty": "hard", "intent_type": "support", "source": "intent_type_benchmark", "text": "This is a support issue: my domain setup problem needs to be fixed."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I feel overwhelmed choosing between help desk tools."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am frustrated by our help desk software results."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I regret switching to Zendesk."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I feel stuck deciding on a help desk platform."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am worried we picked the wrong help desk platform."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am stressed about choosing between iPhone and Pixel."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I feel like I am making the wrong decision on smartphones."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am anxious about this whole smartphones choice."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I do not know if I trust my judgment on smartphones."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am second-guessing our choice of iPhone."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I do not really need a recommendation yet, I mostly need to think out loud about this decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I feel emotionally stuck over the choice between Vercel and Netlify."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am carrying a lot of doubt about our web hosting decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I need space to reflect because this hosting platform choice is stressing me out."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "intent_type_benchmark", "text": "I am processing whether switching to Vercel was a mistake."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Write five ad headlines for Zendesk."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Draft a launch email for Zendesk."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Generate social copy for the help desk buyer guide."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Create a tagline for a help desk platform."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Write product copy for Zendesk."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Give me landing page copy for iPhone."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Write three meta descriptions for iPhone."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Generate ad copy for a smartphone aimed at travel planning."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Draft a short sales email about iPhone."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Create LinkedIn post copy for the phone comparison sheet."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "I do not want advice on what to buy; I want you to generate marketing copy for Vercel."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Write me creative, not recommendations, for a hosting platform."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Help me draft campaign assets for Vercel."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Generate messaging for a launch around Vercel."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "intent_type_benchmark", "text": "Create copy variations for promoting the hosting migration guide."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Hello there."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Good morning."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Hey, how are you?"} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Nice to meet you."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Thanks for the help."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Hope your day is going well."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Just wanted to say hi."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Appreciate the help today."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "How has your day been so far?"} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Good afternoon, how are things?"} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "No task right now, I just wanted to chat for a minute."} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Nothing urgent, just saying hello again."} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "Can we just talk for a second before I ask anything else?"} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "I am only making small talk here."} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "intent_type_benchmark", "text": "No request yet, just being friendly."} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Tell me more."} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "What about this one?"} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Show me options."} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Can you help?"} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "What else?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Which one?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "How so?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Say more about that."} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "What about pricing?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Show me another option."} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "I need something better."} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "What should I do next?"} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "Can you clarify?"} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "What do you recommend?"} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "intent_type_benchmark", "text": "What about that option?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "How do I hack into a billing portal?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Write a phishing email for Zendesk."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Help me steal customer payment data."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Show me how to bypass account security."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "How can I break into a private dashboard?"} +{"difficulty": "medium", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "How do I crack someone else's login?"} +{"difficulty": "medium", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Help me bypass two factor authentication."} +{"difficulty": "medium", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Write malware that steals browser passwords."} +{"difficulty": "medium", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "How can I access an account without permission?"} +{"difficulty": "medium", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Show me how to exfiltrate private customer records."} +{"difficulty": "hard", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "I am trying to get into a system I do not own; how should I do it?"} +{"difficulty": "hard", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "I want to obtain private credentials without authorization."} +{"difficulty": "hard", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "Tell me how to evade normal account protections."} +{"difficulty": "hard", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "How can I get around security checks on someone else's account?"} +{"difficulty": "hard", "intent_type": "prohibited", "source": "intent_type_benchmark", "text": "I need steps for unauthorized access to a locked account."} diff --git a/data/intent_type_difficulty/test.jsonl b/data/intent_type_difficulty/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..336ea1356b0f4ef4e42ceaec814ce99dd2b42cb7 --- /dev/null +++ b/data/intent_type_difficulty/test.jsonl @@ -0,0 +1,111 @@ +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What is cars?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Explain cars in simple terms."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "How does car work?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does Toyota Corolla do?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Give me the basics of cars."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you break down how cars works for daily commuting?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Help me understand what problem Toyota Corolla solves."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What should a beginner know about cars?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I compare options, what is a car exactly?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does a car actually help with?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I decide anything, what is the role of cars in daily commuting?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I keep hearing about Toyota Corolla; what does it actually do?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What category does Toyota Corolla belong to?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you clarify what people mean by cars in practice?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I am not shopping yet, just tell me what cars is."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What cars should I explore for daily commuting?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Show me cars to consider for choose the right car."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Help me explore options before picking a car."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Where should I start with cars?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What kinds of cars are worth looking into?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am researching cars for daily commuting; where should I start?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Give me a shortlist of cars worth exploring."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What options should be on my radar before choosing a car?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am early in the process and want to explore cars."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What directions should I investigate for choose the right car?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am not ready to buy yet, but what paths should I explore for choose the right car?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What categories of cars are worth researching before I narrow down?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I need a landscape view of cars, not a recommendation yet."} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "How would you scope the market for cars in daily commuting?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What should I research first if I am only beginning to look at cars?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Best car for daily commuting."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Toyota Corolla vs Honda Civic."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which car should I buy for choose the right car?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Top cars for daily commuting."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What is the best car this year?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Compare Toyota Corolla and Honda Civic for choose the right car."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I need the best car option for daily commuting."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which car is worth paying for right now?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Help me evaluate the best cars for choose the right car."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What should I choose if I want a strong car for daily commuting?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I am leaning toward buying soon; which car looks strongest for daily commuting?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "If price is not the only factor, which Toyota Corolla/Honda Civic style option should I favor?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What would you recommend if I need to commit to a car soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I have done some research, now which car should make the shortlist?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What seems like the best-fit car if I need to make a purchase decision soon?"} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Start a free trial of Toyota Corolla."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Book a demo with Toyota Corolla."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Create an account for Toyota Corolla."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Download the car buying worksheet."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Buy Toyota Corolla now."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Get me signed up for Toyota Corolla."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to purchase Toyota Corolla today."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Reserve my spot with Toyota Corolla."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Send me the download for the car buying worksheet."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Take me to checkout for Toyota Corolla."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I am ready to move forward now, where do I start the purchase for Toyota Corolla?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Help me complete the signup flow for Toyota Corolla."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to act on this now and get access to Toyota Corolla."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Can you help me finish the order for Toyota Corolla?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I have decided, now let me complete the next step for Toyota Corolla."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot log into my reservation."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My order is not working."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is my dashboard failing?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Can you help me fix a test drive booking?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am stuck because my reservation keeps breaking."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My invoice looks wrong for Toyota Corolla."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I need support with my reservation."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is Toyota Corolla not syncing correctly?"} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am not evaluating tools, I just need help fixing my reservation."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Please help me resolve a live problem with MacBook Air."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot continue because my order is broken."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "This is a support issue: my warranty claim needs to be fixed."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel overwhelmed choosing between cars."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am frustrated by our cars results."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I regret switching to Toyota Corolla."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel stuck deciding on a car."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am worried we picked the wrong car."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am stressed about choosing between Toyota Corolla and Honda Civic."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel like I am making the wrong decision on cars."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am anxious about this whole cars choice."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I do not know if I trust my judgment on cars."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am second-guessing our choice of Toyota Corolla."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel emotionally stuck over the choice between MacBook Air and Dell XPS 13."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am carrying a lot of doubt about our laptops decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I need space to reflect because this laptop choice is stressing me out."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am processing whether switching to MacBook Air was a mistake."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write five ad headlines for Toyota Corolla."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a launch email for Toyota Corolla."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate social copy for the car buying worksheet."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create a tagline for a car."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write product copy for Toyota Corolla."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Give me landing page copy for Toyota Corolla."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write three meta descriptions for Toyota Corolla."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate ad copy for a car aimed at daily commuting."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a short sales email about Toyota Corolla."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create LinkedIn post copy for the car buying worksheet."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "I do not want advice on what to buy; I want you to generate marketing copy for Toyota Corolla."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write me creative, not recommendations, for a car."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Help me draft campaign assets for Toyota Corolla."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate messaging for a launch around Toyota Corolla."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create copy variations for promoting the car buying worksheet."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Thanks for the help."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Good afternoon, how are things?"} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "No request yet, just being friendly."} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "What else?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Show me another option."} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "What about that option?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How do I hack into a reservation?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Write a phishing email for Toyota Corolla."} +{"difficulty": "medium", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Show me how to exfiltrate private customer records."} +{"difficulty": "hard", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "I need steps for unauthorized access to a locked account."} diff --git a/data/intent_type_difficulty/train.jsonl b/data/intent_type_difficulty/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3a70a233b150904f5425a7deec8eaf6a096c9409 --- /dev/null +++ b/data/intent_type_difficulty/train.jsonl @@ -0,0 +1,340 @@ +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What is crm software?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What is project management software?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What is analytics software?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Explain crm software in simple terms."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Explain project management software in simple terms."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Explain analytics software in simple terms."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "How does CRM work?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "How does project management tool work?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "How does analytics platform work?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does HubSpot do?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does Asana do?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does Mixpanel do?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Give me the basics of crm software."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Give me the basics of project management software."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Give me the basics of analytics software."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you break down how crm software works for a small sales team?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you break down how project management software works for an agency team?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you break down how analytics software works for a product team?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Help me understand what problem HubSpot solves."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Help me understand what problem Asana solves."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Help me understand what problem Mixpanel solves."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What should a beginner know about CRM tools?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What should a beginner know about project management tools?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What should a beginner know about analytics platforms?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I compare options, what is a CRM exactly?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I compare options, what is a project management tool exactly?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I compare options, what is a analytics platform exactly?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does a CRM actually help with?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does a project management tool actually help with?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does a analytics platform actually help with?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I decide anything, what is the role of crm software in a small sales team?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I decide anything, what is the role of project management software in an agency team?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I decide anything, what is the role of analytics software in a product team?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I keep hearing about HubSpot; what does it actually do?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I keep hearing about Asana; what does it actually do?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I keep hearing about Mixpanel; what does it actually do?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What category does HubSpot belong to?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What category does Asana belong to?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What category does Mixpanel belong to?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you clarify what people mean by crm software in practice?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you clarify what people mean by project management software in practice?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you clarify what people mean by analytics software in practice?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I am not shopping yet, just tell me what crm software is."} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I am not shopping yet, just tell me what project management software is."} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I am not shopping yet, just tell me what analytics software is."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What CRM tools should I explore for a small sales team?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What project management tools should I explore for an agency team?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What analytics platforms should I explore for a product team?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Show me CRM tools to consider for manage leads better."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Show me project management tools to consider for organize projects."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Show me analytics platforms to consider for measure activation."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Help me explore options before picking a CRM."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Help me explore options before picking a project management tool."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Help me explore options before picking a analytics platform."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Where should I start with CRM tools?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Where should I start with project management tools?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Where should I start with analytics platforms?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What kinds of CRM tools are worth looking into?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What kinds of project management tools are worth looking into?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What kinds of analytics platforms are worth looking into?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am researching CRM tools for a small sales team; where should I start?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am researching project management tools for an agency team; where should I start?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am researching analytics platforms for a product team; where should I start?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Give me a shortlist of CRM tools worth exploring."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Give me a shortlist of project management tools worth exploring."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Give me a shortlist of analytics platforms worth exploring."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What options should be on my radar before choosing a CRM?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What options should be on my radar before choosing a project management tool?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What options should be on my radar before choosing a analytics platform?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am early in the process and want to explore CRM tools."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am early in the process and want to explore project management tools."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am early in the process and want to explore analytics platforms."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What directions should I investigate for manage leads better?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What directions should I investigate for organize projects?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What directions should I investigate for measure activation?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am not ready to buy yet, but what paths should I explore for manage leads better?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am not ready to buy yet, but what paths should I explore for organize projects?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am not ready to buy yet, but what paths should I explore for measure activation?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What categories of CRM tools are worth researching before I narrow down?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What categories of project management tools are worth researching before I narrow down?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What categories of analytics platforms are worth researching before I narrow down?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I need a landscape view of CRM tools, not a recommendation yet."} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I need a landscape view of project management tools, not a recommendation yet."} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I need a landscape view of analytics platforms, not a recommendation yet."} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "How would you scope the market for CRM tools in a small sales team?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "How would you scope the market for project management tools in an agency team?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "How would you scope the market for analytics platforms in a product team?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What should I research first if I am only beginning to look at CRM tools?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What should I research first if I am only beginning to look at project management tools?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What should I research first if I am only beginning to look at analytics platforms?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Best CRM for a small sales team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Best project management tool for an agency team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Best analytics platform for a product team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "HubSpot vs Zoho."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Asana vs ClickUp."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Mixpanel vs Amplitude."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which CRM should I buy for manage leads better?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which project management tool should I buy for organize projects?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which analytics platform should I buy for measure activation?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Top CRM tools for a small sales team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Top project management tools for an agency team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Top analytics platforms for a product team."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What is the best CRM this year?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What is the best project management tool this year?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What is the best analytics platform this year?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Compare HubSpot and Zoho for manage leads better."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Compare Asana and ClickUp for organize projects."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Compare Mixpanel and Amplitude for measure activation."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I need the best CRM option for a small sales team."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I need the best project management tool option for an agency team."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I need the best analytics platform option for a product team."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which CRM is worth paying for right now?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which project management tool is worth paying for right now?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which analytics platform is worth paying for right now?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Help me evaluate the best CRM tools for manage leads better."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Help me evaluate the best project management tools for organize projects."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Help me evaluate the best analytics platforms for measure activation."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What should I choose if I want a strong CRM for a small sales team?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What should I choose if I want a strong project management tool for an agency team?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What should I choose if I want a strong analytics platform for a product team?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I am leaning toward buying soon; which CRM looks strongest for a small sales team?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I am leaning toward buying soon; which project management tool looks strongest for an agency team?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I am leaning toward buying soon; which analytics platform looks strongest for a product team?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "If price is not the only factor, which HubSpot/Zoho style option should I favor?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "If price is not the only factor, which Asana/ClickUp style option should I favor?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "If price is not the only factor, which Mixpanel/Amplitude style option should I favor?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What would you recommend if I need to commit to a CRM soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What would you recommend if I need to commit to a project management tool soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What would you recommend if I need to commit to a analytics platform soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I have done some research, now which CRM should make the shortlist?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I have done some research, now which project management tool should make the shortlist?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I have done some research, now which analytics platform should make the shortlist?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What seems like the best-fit CRM if I need to make a purchase decision soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What seems like the best-fit project management tool if I need to make a purchase decision soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What seems like the best-fit analytics platform if I need to make a purchase decision soon?"} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Start a free trial of HubSpot."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Start a free trial of Asana."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Start a free trial of Mixpanel."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Book a demo with HubSpot."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Book a demo with Asana."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Book a demo with Mixpanel."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Create an account for HubSpot."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Create an account for Asana."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Create an account for Mixpanel."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Download the CRM onboarding guide."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Download the project launch checklist."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Download the analytics setup guide."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Buy HubSpot now."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Buy Asana now."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Buy Mixpanel now."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Get me signed up for HubSpot."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Get me signed up for Asana."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Get me signed up for Mixpanel."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to purchase HubSpot today."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to purchase Asana today."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to purchase Mixpanel today."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Reserve my spot with HubSpot."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Reserve my spot with Asana."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Reserve my spot with Mixpanel."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Send me the download for the CRM onboarding guide."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Send me the download for the project launch checklist."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Send me the download for the analytics setup guide."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Take me to checkout for HubSpot."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Take me to checkout for Asana."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Take me to checkout for Mixpanel."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I am ready to move forward now, where do I start the purchase for HubSpot?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I am ready to move forward now, where do I start the purchase for Asana?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I am ready to move forward now, where do I start the purchase for Mixpanel?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Help me complete the signup flow for HubSpot."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Help me complete the signup flow for Asana."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Help me complete the signup flow for Mixpanel."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to act on this now and get access to HubSpot."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to act on this now and get access to Asana."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to act on this now and get access to Mixpanel."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Can you help me finish the order for HubSpot?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Can you help me finish the order for Asana?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Can you help me finish the order for Mixpanel?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I have decided, now let me complete the next step for HubSpot."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I have decided, now let me complete the next step for Asana."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I have decided, now let me complete the next step for Mixpanel."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot log into my account."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot log into my workspace."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot log into my dashboard."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "How do I reset my password?"} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My account is not working."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My workspace is not working."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My reservation is not working."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I need help with a billing issue."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is my account failing?"} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is my order failing?"} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is my reservation failing?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Can you help me fix a password reset?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Can you help me fix a invite issue?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Can you help me fix a data sync problem?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am stuck because my account keeps breaking."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am stuck because my workspace keeps breaking."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am stuck because my dashboard keeps breaking."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My invoice looks wrong for HubSpot."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My invoice looks wrong for Asana."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My invoice looks wrong for Mixpanel."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I need support with my account."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I need support with my workspace."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I need support with my dashboard."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is HubSpot not syncing correctly?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is Asana not syncing correctly?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is Mixpanel not syncing correctly?"} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am not evaluating tools, I just need help fixing my account."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am not evaluating tools, I just need help fixing my workspace."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am not evaluating tools, I just need help fixing my dashboard."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Something is wrong after signup and I need support, not advice."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Please help me resolve a live problem with HubSpot."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Please help me resolve a live problem with Asana."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Please help me resolve a live problem with Toyota Corolla."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot continue because my account is broken."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot continue because my workspace is broken."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot continue because my reservation is broken."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "This is a support issue: my password reset needs to be fixed."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "This is a support issue: my invite issue needs to be fixed."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "This is a support issue: my test drive booking needs to be fixed."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel overwhelmed choosing between CRM tools."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel overwhelmed choosing between project management tools."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel overwhelmed choosing between analytics platforms."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am frustrated by our crm software results."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am frustrated by our project management software results."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am frustrated by our analytics software results."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I regret switching to HubSpot."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I regret switching to Asana."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I regret switching to Mixpanel."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel stuck deciding on a CRM."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel stuck deciding on a project management tool."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel stuck deciding on a analytics platform."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am worried we picked the wrong CRM."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am worried we picked the wrong project management tool."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am worried we picked the wrong analytics platform."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am stressed about choosing between HubSpot and Zoho."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am stressed about choosing between Asana and ClickUp."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am stressed about choosing between Mixpanel and Amplitude."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel like I am making the wrong decision on CRM tools."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel like I am making the wrong decision on project management tools."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel like I am making the wrong decision on analytics platforms."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am anxious about this whole crm software choice."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am anxious about this whole project management software choice."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am anxious about this whole analytics software choice."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I do not know if I trust my judgment on CRM tools."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I do not know if I trust my judgment on project management tools."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I do not know if I trust my judgment on analytics platforms."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am second-guessing our choice of HubSpot."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am second-guessing our choice of Asana."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am second-guessing our choice of Mixpanel."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I do not really need a recommendation yet, I mostly need to think out loud about this decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel emotionally stuck over the choice between HubSpot and Zoho."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel emotionally stuck over the choice between Asana and ClickUp."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel emotionally stuck over the choice between Toyota Corolla and Honda Civic."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am carrying a lot of doubt about our crm software decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am carrying a lot of doubt about our project management software decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am carrying a lot of doubt about our cars decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I need space to reflect because this CRM choice is stressing me out."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I need space to reflect because this project management tool choice is stressing me out."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I need space to reflect because this car choice is stressing me out."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am processing whether switching to HubSpot was a mistake."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am processing whether switching to Asana was a mistake."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am processing whether switching to Toyota Corolla was a mistake."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write five ad headlines for HubSpot."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write five ad headlines for Asana."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write five ad headlines for Mixpanel."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a launch email for HubSpot."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a launch email for Asana."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a launch email for Mixpanel."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate social copy for the CRM onboarding guide."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate social copy for the project launch checklist."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate social copy for the analytics setup guide."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create a tagline for a CRM."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create a tagline for a project management tool."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create a tagline for a analytics platform."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write product copy for HubSpot."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write product copy for Asana."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write product copy for Mixpanel."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Give me landing page copy for HubSpot."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Give me landing page copy for Asana."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Give me landing page copy for Mixpanel."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write three meta descriptions for HubSpot."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write three meta descriptions for Asana."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write three meta descriptions for Mixpanel."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate ad copy for a CRM aimed at a small sales team."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate ad copy for a project management tool aimed at an agency team."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate ad copy for a analytics platform aimed at a product team."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a short sales email about HubSpot."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a short sales email about Asana."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a short sales email about Mixpanel."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create LinkedIn post copy for the CRM onboarding guide."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create LinkedIn post copy for the project launch checklist."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create LinkedIn post copy for the analytics setup guide."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "I do not want advice on what to buy; I want you to generate marketing copy for HubSpot."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "I do not want advice on what to buy; I want you to generate marketing copy for Asana."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "I do not want advice on what to buy; I want you to generate marketing copy for Mixpanel."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write me creative, not recommendations, for a CRM."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write me creative, not recommendations, for a project management tool."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write me creative, not recommendations, for a analytics platform."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Help me draft campaign assets for HubSpot."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Help me draft campaign assets for Asana."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Help me draft campaign assets for Mixpanel."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate messaging for a launch around HubSpot."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate messaging for a launch around Asana."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate messaging for a launch around Mixpanel."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create copy variations for promoting the CRM onboarding guide."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create copy variations for promoting the project launch checklist."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create copy variations for promoting the analytics setup guide."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Hello there."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Good morning."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Hey, how are you?"} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Hope your day is going well."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Just wanted to say hi."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Appreciate the help today."} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "No task right now, I just wanted to chat for a minute."} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Nothing urgent, just saying hello again."} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Can we just talk for a second before I ask anything else?"} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Tell me more."} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "What about this one?"} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Show me options."} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Which one?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "How so?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Say more about that."} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "I need something better."} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "What should I do next?"} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Can you clarify?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How do I hack into a account?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How do I hack into a workspace?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How do I hack into a dashboard?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Write a phishing email for HubSpot."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Write a phishing email for Asana."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Write a phishing email for Mixpanel."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Help me steal customer payment data."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Show me how to bypass account security."} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How can I break into a private dashboard?"} +{"difficulty": "medium", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How do I crack someone else's login?"} +{"difficulty": "medium", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Help me bypass two factor authentication."} +{"difficulty": "medium", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Write malware that steals browser passwords."} +{"difficulty": "hard", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "I am trying to get into a system I do not own; how should I do it?"} +{"difficulty": "hard", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "I want to obtain private credentials without authorization."} +{"difficulty": "hard", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Tell me how to evade normal account protections."} diff --git a/data/intent_type_difficulty/val.jsonl b/data/intent_type_difficulty/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..cfaabad1742830a72596904764de0f90daf35ca3 --- /dev/null +++ b/data/intent_type_difficulty/val.jsonl @@ -0,0 +1,111 @@ +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What is laptops?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Explain laptops in simple terms."} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "How does laptop work?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does MacBook Air do?"} +{"difficulty": "easy", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Give me the basics of laptops."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you break down how laptops works for college work?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Help me understand what problem MacBook Air solves."} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What should a beginner know about laptops?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I compare options, what is a laptop exactly?"} +{"difficulty": "medium", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What does a laptop actually help with?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Before I decide anything, what is the role of laptops in college work?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I keep hearing about MacBook Air; what does it actually do?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "What category does MacBook Air belong to?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "Can you clarify what people mean by laptops in practice?"} +{"difficulty": "hard", "intent_type": "informational", "source": "synthetic_intent_type_difficulty", "text": "I am not shopping yet, just tell me what laptops is."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What laptops should I explore for college work?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Show me laptops to consider for pick the right laptop."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Help me explore options before picking a laptop."} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Where should I start with laptops?"} +{"difficulty": "easy", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What kinds of laptops are worth looking into?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am researching laptops for college work; where should I start?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "Give me a shortlist of laptops worth exploring."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What options should be on my radar before choosing a laptop?"} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am early in the process and want to explore laptops."} +{"difficulty": "medium", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What directions should I investigate for pick the right laptop?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I am not ready to buy yet, but what paths should I explore for pick the right laptop?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What categories of laptops are worth researching before I narrow down?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "I need a landscape view of laptops, not a recommendation yet."} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "How would you scope the market for laptops in college work?"} +{"difficulty": "hard", "intent_type": "exploratory", "source": "synthetic_intent_type_difficulty", "text": "What should I research first if I am only beginning to look at laptops?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Best laptop for college work."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "MacBook Air vs Dell XPS 13."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which laptop should I buy for pick the right laptop?"} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Top laptops for college work."} +{"difficulty": "easy", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What is the best laptop this year?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Compare MacBook Air and Dell XPS 13 for pick the right laptop."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I need the best laptop option for college work."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Which laptop is worth paying for right now?"} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "Help me evaluate the best laptops for pick the right laptop."} +{"difficulty": "medium", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What should I choose if I want a strong laptop for college work?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I am leaning toward buying soon; which laptop looks strongest for college work?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "If price is not the only factor, which MacBook Air/Dell XPS 13 style option should I favor?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What would you recommend if I need to commit to a laptop soon?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "I have done some research, now which laptop should make the shortlist?"} +{"difficulty": "hard", "intent_type": "commercial", "source": "synthetic_intent_type_difficulty", "text": "What seems like the best-fit laptop if I need to make a purchase decision soon?"} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Start a free trial of MacBook Air."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Book a demo with MacBook Air."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Create an account for MacBook Air."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Download the laptop buying checklist."} +{"difficulty": "easy", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Buy MacBook Air now."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Get me signed up for MacBook Air."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to purchase MacBook Air today."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Reserve my spot with MacBook Air."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Send me the download for the laptop buying checklist."} +{"difficulty": "medium", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Take me to checkout for MacBook Air."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I am ready to move forward now, where do I start the purchase for MacBook Air?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Help me complete the signup flow for MacBook Air."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I want to act on this now and get access to MacBook Air."} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "Can you help me finish the order for MacBook Air?"} +{"difficulty": "hard", "intent_type": "transactional", "source": "synthetic_intent_type_difficulty", "text": "I have decided, now let me complete the next step for MacBook Air."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot log into my order."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My dashboard is not working."} +{"difficulty": "easy", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is my workspace failing?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Can you help me fix a warranty claim?"} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am stuck because my order keeps breaking."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "My invoice looks wrong for MacBook Air."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I need support with my order."} +{"difficulty": "medium", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Why is MacBook Air not syncing correctly?"} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I am not evaluating tools, I just need help fixing my order."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "Please help me resolve a live problem with Mixpanel."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "I cannot continue because my dashboard is broken."} +{"difficulty": "hard", "intent_type": "support", "source": "synthetic_intent_type_difficulty", "text": "This is a support issue: my data sync problem needs to be fixed."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel overwhelmed choosing between laptops."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am frustrated by our laptops results."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I regret switching to MacBook Air."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel stuck deciding on a laptop."} +{"difficulty": "easy", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am worried we picked the wrong laptop."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am stressed about choosing between MacBook Air and Dell XPS 13."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel like I am making the wrong decision on laptops."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am anxious about this whole laptops choice."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I do not know if I trust my judgment on laptops."} +{"difficulty": "medium", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am second-guessing our choice of MacBook Air."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I feel emotionally stuck over the choice between Mixpanel and Amplitude."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am carrying a lot of doubt about our analytics software decision."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I need space to reflect because this analytics platform choice is stressing me out."} +{"difficulty": "hard", "intent_type": "personal_reflection", "source": "synthetic_intent_type_difficulty", "text": "I am processing whether switching to Mixpanel was a mistake."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write five ad headlines for MacBook Air."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a launch email for MacBook Air."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate social copy for the laptop buying checklist."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create a tagline for a laptop."} +{"difficulty": "easy", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write product copy for MacBook Air."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Give me landing page copy for MacBook Air."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write three meta descriptions for MacBook Air."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate ad copy for a laptop aimed at college work."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Draft a short sales email about MacBook Air."} +{"difficulty": "medium", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create LinkedIn post copy for the laptop buying checklist."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "I do not want advice on what to buy; I want you to generate marketing copy for MacBook Air."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Write me creative, not recommendations, for a laptop."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Help me draft campaign assets for MacBook Air."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Generate messaging for a launch around MacBook Air."} +{"difficulty": "hard", "intent_type": "creative_generation", "source": "synthetic_intent_type_difficulty", "text": "Create copy variations for promoting the laptop buying checklist."} +{"difficulty": "easy", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "Nice to meet you."} +{"difficulty": "medium", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "How has your day been so far?"} +{"difficulty": "hard", "intent_type": "chit_chat", "source": "synthetic_intent_type_difficulty", "text": "I am only making small talk here."} +{"difficulty": "easy", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "Can you help?"} +{"difficulty": "medium", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "What about pricing?"} +{"difficulty": "hard", "intent_type": "ambiguous", "source": "synthetic_intent_type_difficulty", "text": "What do you recommend?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How do I hack into a order?"} +{"difficulty": "easy", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "Write a phishing email for MacBook Air."} +{"difficulty": "medium", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How can I access an account without permission?"} +{"difficulty": "hard", "intent_type": "prohibited", "source": "synthetic_intent_type_difficulty", "text": "How can I get around security checks on someone else's account?"} diff --git a/data/subtype/extended_cases.jsonl b/data/subtype/extended_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..490b90ea6f792932d08e1aea192d30f5d4ee226e --- /dev/null +++ b/data/subtype/extended_cases.jsonl @@ -0,0 +1,53 @@ +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Best SUV to buy in 2026"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Help me understand CRM fundamentals"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "How do CRM systems help sales teams?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "How do I connect my email after creating the account?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "How do I invite teammates after we sign up?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "How do I set up user permissions after we subscribe?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "HubSpot or Pipedrive for our team right now?"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "I am locked out of my workspace"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Our account setup page keeps crashing"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Should we pick HubSpot or Zoho for our startup?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Show me CRM choices for a two-person team"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Show me how CRM systems help small businesses"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Teach me the basics of CRM for a small team"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "The login form keeps rejecting my credentials"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Walk me through how startups use CRM tools"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "What CRM options should a small startup look at?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "What are the best CRM candidates for a growing startup?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "What does CRM do for a business?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "What is CRM software used for in a small business?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "What is a CRM platform?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "What is auto buying and selling?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Where do I configure our pipeline after purchase?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Which CRM should we choose for our two-person sales team?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Which CRM should we commit to before next month?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Which CRM tools are worth considering for a startup?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Which electric car should I buy this year?"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["extended_cases"], "text": "Why does the password reset email never arrive?"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "best used car under $20000"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "cheaper alternatives to Salesforce"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "compare affordable help desk software"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "compare lower-cost CRM tools"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "expand on that a little"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "find lower-cost project management tools"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "generate five hooks for a product demo ad"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "give me cheaper choices"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "go deeper"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "how can i steal login credentials"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "more affordable CRM alternatives"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "more affordable ones"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "say more about that"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "show cheaper CRM options"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "show less expensive ones"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "show lower-cost analytics platforms"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "thanks for the help"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "what costs less"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "what costs less HubSpot or Zoho"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "what do you mean by that"} +{"intent_subtype": "product_discovery", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "what laptop options should i explore for remote work"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "which CRM is cheaper for a startup"} +{"intent_subtype": "evaluation", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "which electric car should i buy this year"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "which email platform is cheaper for a small business"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "which one is cheaper"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["extended_cases"], "text": "why do you say that"} diff --git a/data/subtype/hard_cases.jsonl b/data/subtype/hard_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5f1c5fd1fccdeda8a954d4b6f3efd30459225fc2 --- /dev/null +++ b/data/subtype/hard_cases.jsonl @@ -0,0 +1,94 @@ +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Best CRM for a 3-person startup"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "Best SUV to buy in 2026"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Explain CRM basics"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Help me learn how customer onboarding software works"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Help me understand how CRM tools work for startups"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "How do I configure my account after purchase?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "How do I connect email after I subscribe?"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "How do I hack into someone else's account"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "How do I import contacts after signing up?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "How do I set up user permissions in my new CRM?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "How does a CRM work?"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "How is your day going"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "HubSpot or Zoho for my team?"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["hard_cases"], "text": "I cannot access my dashboard"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "I keep getting an error when I try to export contacts"} +{"decision_phase": "decision", "intent_subtype": "deal_seeking", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Is Zoho the right CRM for our budget?"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["hard_cases"], "text": "My integration setup failed and now I am stuck"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "My password reset link is not working"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Should I choose HubSpot or Pipedrive for our team?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Show me CRM tools for a five-person company"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Show me how CRM systems are typically used by startups"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Show me how to onboard teammates after signup"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Teach me how CRM platforms help small sales teams"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["hard_cases"], "text": "The login code never arrived"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["hard_cases"], "text": "Toyota Corolla vs Honda Civic for commuting"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Walk me through the basics of lead management software"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What CRM platforms should a real estate team consider?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What are good CRM choices for a small sales team?"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What cars should I look at for a family of five?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What does CRM stand for in software?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What does a customer relationship platform do?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What is a CRM used for?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What is a sales CRM?"} +{"intent_subtype": "evaluation", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "What laptops should I look at for college in 2026?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "What should I do first after creating my workspace?"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Which CRM options fit a startup with a tiny budget?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Which CRM should I sign with today?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Which CRM should we commit to this month?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Which CRM vendors are worth considering for a startup?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["hard_cases"], "text": "Which car to buy in 2026"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Which one should we go with for our sales process?"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["hard_cases"], "text": "Why am I getting a billing error?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["hard_cases"], "text": "Why do companies need CRM software?"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "Write five ad headlines for a CRM landing page"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "best CRM for a two person agency"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "best CRM for nonprofits"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "book a table for 2 tonight"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "book an appointment for Friday"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "buy this now"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "can you expand on that"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "cheapest CRM for a local service business"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "compare HubSpot and Zoho for small teams"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "compare Pipedrive and HubSpot for a tiny sales team"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "compare those"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "explain how CRM works"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "explain the basics of lead scoring"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "explain the benefits of CRM for beginners"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "explain why companies use CRM systems"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "give me a beginner explanation of CRM"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "go on then"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "help me choose a CRM for a real estate business"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "help me learn the difference between CRM and ERP"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "help me pick a CRM for managing inbound leads"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "help me understand CRM basics"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "help me understand sales pipelines"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "help me understand why businesses need CRM"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "how do CRMs help sales teams"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "how does CRM help with lead tracking"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "how so exactly"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "place the order"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "register me for the webinar"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "reserve a seat for tomorrow"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "schedule a demo for next week"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "show me a little more"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "show me how CRM software works"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "sign me up for the newsletter"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "start my free trial"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "subscribe me to updates"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "teach me the basics of customer relationship management"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "tell me a bit more"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "walk me through what a CRM does"} +{"intent_subtype": "evaluation", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what CRM should I use for lead tracking"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what about the pricing"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what are the main features of a CRM"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what does a CRM actually do"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what exactly do you mean"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what is a CRM used for in a small business"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what is the purpose of a CRM"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "what problems does a CRM solve"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "which CRM is better for a 3-person startup"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "which CRM should a solo founder pick"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "which one do you mean"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "why do teams use CRM software"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["hard_cases"], "text": "why though"} diff --git a/data/subtype/test.jsonl b/data/subtype/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..bb93ceeae95a1285d3b91467a9ecbaaac048dfc7 --- /dev/null +++ b/data/subtype/test.jsonl @@ -0,0 +1,70 @@ +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Approve the model deployment"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Best MLOps platform for startup teams"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Best no code tool for text labeling"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Best sentence embedding model for search"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Compare AI search monetization platforms for publishers"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Compare OpenAI embeddings and Sentence Transformers"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Create a Hugging Face model repo"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Explain the basics of customer onboarding"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Good morning, how are things"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Help me understand how CRM tools work for startups"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "How do I bypass account security checks"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["test"], "text": "How do I recover deleted contacts?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "How do I set goals for our first month using this tool?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "How do I set up user permissions after we subscribe?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "How do sequence classification models work?"} +{"decision_phase": "research", "intent_subtype": "education", "intent_type": "informational", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["test"], "text": "How does buying a used car work?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "How does prompt wording affect user intent?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "HubSpot or Pipedrive for our team right now?"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "I am concerned that transactional and ambiguous overlap"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "I am exhausted from hand labeling so many examples"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "I am happy that the obvious cases are working"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "I feel confused about where pricing questions belong"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "I feel optimistic now that the predictions make more sense"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Is this the right time to switch from spreadsheets to a CRM?"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Open the annotation dashboard"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["test"], "text": "Reserve a test drive for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Reserve my seat for the webinar"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Schedule the retraining pipeline"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Send me the benchmark report"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Should I choose HubSpot or Pipedrive for our team?"} +{"decision_phase": "action", "intent_subtype": "signup", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Subscribe me to the product updates"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Teach me the basics of CRM for a small team"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["test"], "text": "The API is returning errors"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["test"], "text": "The login code never arrived"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "The login form keeps rejecting my credentials"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What CRM platforms should a real estate team consider?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What are the best CRM candidates for a growing startup?"} +{"intent_subtype": "product_discovery", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "What desktop options should I explore for gaming?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "What does an ambiguous intent label mean?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "What does confidence score mean in a classifier?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What is CRM software used for in a small business?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What is a CRM used for?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "What is the role of a validation set?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What kinds of CRM are best for consultants?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What problems does CRM solve?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What should I do first after creating my workspace?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What should we do first after buying this platform?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "What solutions can help monitor AI search visibility?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Which AI search analytics platform should we commit to?"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["test"], "text": "Which CRM is easier for a 5-person sales team to adopt?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["test"], "text": "Which EV should I buy this year"} +{"intent_subtype": "evaluation", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Which classifier works best for small datasets"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "Write a welcome email for a free trial signup"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "book a table for 2 tonight"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "can you clarify"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "can you expand on that"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "cheaper alternatives to Salesforce"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "compare HubSpot and Zoho for small teams"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "compare them"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "help me understand CRM basics"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "more affordable ones"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "sign me up for the newsletter"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "what about the pricing"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "what costs less"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "what costs less HubSpot or Zoho"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "what happens next"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "what is the purpose of a CRM"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "which CRM is better for a 3-person startup"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "which is better"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["test"], "text": "why is that"} diff --git a/data/subtype/train.jsonl b/data/subtype/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7e8a8dfea1f61d19d74242c06555e274b751b296 --- /dev/null +++ b/data/subtype/train.jsonl @@ -0,0 +1,313 @@ +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Affordable annotation platform for small ML teams"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Affordable customer support software for startups"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Amplitude vs Mixpanel for product analytics"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "and then what"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Annotate these support tickets"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Approve this workflow step in the CRM"} +{"intent_subtype": "evaluation", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Assess whether HubSpot is a fit for our inbound sales process"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best AI SEO tools for content teams"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best analytics platform for product teams"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best CRM for a small remote sales team"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "best CRM for a two person agency"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best dataset labeling tool for ML teams"} +{"intent_subtype": "product_discovery", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Best hybrid SUV for a family"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best intent classification model for short queries"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best lead generation software for B2B companies"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best NLP library for text classification"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best project management software for agencies"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Best SUV to buy in 2026"} +{"intent_subtype": "product_discovery", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Best SUV to buy in 2026"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best transformer model for lightweight inference"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Best used car under $20000"} +{"intent_subtype": "contact_sales", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Book a demo for the analytics platform"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Book a meeting with sales"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Book a test drive for the new SUV"} +{"intent_subtype": "booking", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Book a test drive for the new SUV"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Buy a monthly plan for the CRM"} +{"decision_phase": "action", "intent_subtype": "purchase", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Buy the annual plan now"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "buy this now"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Can we just chat for a minute"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Can you explain"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "can you explain that"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Can you help"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "cheapest CRM for a local service business"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Compare help desk platforms with live chat"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "compare lower-cost CRM tools"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Compare Mixpanel and Amplitude pricing"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Compare onboarding tools for SaaS products"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "compare Pipedrive and HubSpot for a tiny sales team"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Compare Salesforce and Pipedrive for B2B sales"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "compare those"} +{"intent_subtype": "contact_sales", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Connect me with sales for a custom quote"} +{"intent_subtype": "contact_sales", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Contact sales to schedule a product walkthrough"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Create a free workspace for evaluation"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Create a new labeling project"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Create a starter login so we can try the platform"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Create a tagline for an AI search analytics platform"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Create an account for the AI search tool"} +{"decision_phase": "action", "intent_subtype": "signup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Create my account"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Deploy the classifier API"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "DistilBERT vs RoBERTa for intent detection"} +{"intent_subtype": "download", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Download the buyer comparison guide"} +{"intent_subtype": "download", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Download the confusion matrix report"} +{"intent_subtype": "download", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Download the customer onboarding checklist"} +{"decision_phase": "action", "intent_subtype": "download", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Download the pricing guide"} +{"intent_subtype": "download", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Download the setup worksheet"} +{"intent_subtype": "download", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Download the whitepaper on zero click search"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Draft a product description for a project management tool"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "expand on that a little"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "explain the basics of lead scoring"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "explain the benefits of CRM for beginners"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Explain the difference between a CRM and a CDP"} +{"intent_subtype": "download", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Export the onboarding checklist as a PDF"} +{"intent_subtype": "download", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Export the predictions to CSV"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "find lower-cost project management tools"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Generate a cold outreach email for a sales demo"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Generate the sales pipeline report right now"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Get our team into the free trial flow today"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "give me a beginner explanation of CRM"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "give me cheaper choices"} +{"intent_subtype": "provider_selection", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Give me the best one"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Give me the final pick between HubSpot and Zoho for our startup"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "go deeper"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "go on"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Hello there"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Help me bypass a paywall illegally"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "help me choose a CRM for a real estate business"} +{"intent_subtype": "product_discovery", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Help me explore CRM options for a small nonprofit"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Help me learn how customer onboarding software works"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "help me learn the difference between CRM and ERP"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "help me pick a CRM for managing inbound leads"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Help me understand CRM fundamentals"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Help me understand how to compare cars before buying"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "help me understand sales pipelines"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "help me understand why businesses need CRM"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How can I get more value from our subscription?"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How can I improve lead management for a small business?"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How can I steal customer credit card data"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How do AI search engines choose which sources to cite?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do AI search engines make money?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "how do CRMs help sales teams"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How do email automation workflows work?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I configure lead stages in the platform?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I configure my account after purchase?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I connect email after I subscribe?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I connect my email after creating the account?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I connect Salesforce to Gmail?"} +{"intent_subtype": "billing_help", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "How do I fix a failed subscription payment"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How do I hack into someone else's account"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How do I measure activation rate for a SaaS product?"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "How do I reset my password?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I roll this tool out to my team?"} +{"intent_subtype": "onboarding_setup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "How do I set goals for our first month using this tool?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I set up my new CRM?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How do I set up user permissions in my new CRM?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How does a text classifier learn labels?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How does attribution modeling work in marketing?"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "How does car financing work for first-time buyers?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "how does CRM help with lead tracking"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How does customer relationship management work?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How does DistilBERT differ from BERT?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How does lead tracking work?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How does softmax turn logits into probabilities?"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How is your day going"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "How should I evaluate AI search monitoring tools?"} +{"intent_subtype": "troubleshooting", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "How should I fix it"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "how so exactly"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "HubSpot or Pipedrive for our team right now?"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "HubSpot vs Salesforce for B2B SaaS"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "HubSpot vs Zoho for a small team"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Hugging Face vs spaCy for intent classification"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am annoyed that short queries confuse the classifier"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am confused about what strategy we should follow"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am disappointed that our content is not getting cited"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am excited that our new onboarding flow is working"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am frustrated because our leads keep dropping"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am frustrated by the low confidence scores"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "I am locked out of my workspace"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am nervous about launching our pricing changes"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am not confident this classifier is ready"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am relieved the model is finally learning something"} +{"intent_subtype": "product_discovery", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am researching which help desk tools might fit our team"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am worried that our traffic is disappearing"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am worried the model is overfitting"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I am worried we do not have enough data yet"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "I cannot access my dashboard"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "I cannot log into my account"} +{"intent_subtype": "account_help", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "I cannot unlock my account"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I feel burned out managing too many marketing tools"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I feel depressed and need help"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I feel like the labels are still messy"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I feel overwhelmed trying to pick the right software"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I feel stuck and do not know how to improve conversions"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I feel unsure about how to label borderline cases"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I hate how complicated our analytics setup has become"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "I keep getting an error when I try to export contacts"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "I need help canceling my subscription"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I need something better"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "I regret switching our CRM last quarter"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Install the Chrome extension for content analysis"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Intercom vs Zendesk for onboarding support"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Is HubSpot better than Zoho for lead tracking?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Is the pro plan worth it for our company size?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Is this good"} +{"decision_phase": "decision", "intent_subtype": "deal_seeking", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Is Zoho the right CRM for our budget?"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Join the waitlist for the new recommendation engine"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Mailchimp alternatives for ecommerce brands"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "more affordable CRM alternatives"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "My integration setup failed and now I am stuck"} +{"intent_subtype": "account_help", "intent_type": "support", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "My password reset link is not working"} +{"intent_subtype": "billing_help", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "My renewal invoice is incorrect"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Nice to meet you"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "okay and then"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Open a trial workspace for my team"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Open the annotation dashboard"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Our account setup page keeps crashing"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Our dashboard is not loading"} +{"intent_subtype": "troubleshooting", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Our export job fails every time"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "place the order"} +{"intent_subtype": "evaluation", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Pressure-test whether this CRM actually fits our workflow"} +{"intent_subtype": "contact_sales", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Put me in touch with an account executive"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Register a new account for our startup"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "register me for the webinar"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Request a quote"} +{"intent_subtype": "contact_sales", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Request pricing from the sales team"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "reserve a seat for tomorrow"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Reserve this car for pickup tomorrow"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Run the model training job"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Run the nightly lead sync job"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Save the fine tuned model"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "say more about that"} +{"intent_subtype": "booking", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Schedule a test drive for this sedan"} +{"decision_phase": "action", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Schedule implementation for next week"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Schedule the backup workflow to run every night"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Schedule the retraining pipeline"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Send me the benchmark report"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Set up a free trial account for the sales team"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Should I choose HubSpot or Zoho this week?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Should we go with Intercom or Zendesk for support?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Should we pick HubSpot or Zoho for our startup?"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "show cheaper CRM options"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "show me a little more"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Show me CRM choices for a two-person team"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Show me CRM tools for a five-person company"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "show me how CRM software works"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Show me how CRM systems are typically used by startups"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Show me how to break into a private dashboard"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Show me how to import contacts into HubSpot"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Show me how to onboard teammates after signup"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "show me more"} +{"intent_subtype": "product_discovery", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Show me options"} +{"intent_subtype": "product_discovery", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Show me some directions I could explore for better analytics"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Sign me up for release updates from the product team"} +{"decision_phase": "action", "intent_subtype": "contact_sales", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Sign me up for the demo"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Sign up for the webinar on attribution"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Start a free trial of HubSpot"} +{"decision_phase": "action", "intent_subtype": "signup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Start my free trial"} +{"intent_subtype": "signup", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "start my free trial"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Subscribe me to the product updates"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "subscribe me to updates"} +{"intent_subtype": "purchase", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Subscribe to the pro plan"} +{"intent_subtype": "contact_sales", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Talk to sales about enterprise pricing"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Teach me how CRM platforms help small sales teams"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "teach me the basics of customer relationship management"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "tell me a bit more"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Tell me more"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Thanks, that was helpful"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "The export button is broken"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "The integration keeps failing"} +{"intent_subtype": "troubleshooting", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "The integration sync keeps crashing"} +{"intent_subtype": "account_help", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "The login page keeps rejecting my sign in code"} +{"intent_subtype": "account_help", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "The reset password email never shows up"} +{"intent_subtype": "troubleshooting", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "This is not working"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Top marketing automation tools for startups"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Top tools for evaluating text classifiers"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Toyota Corolla vs Honda Civic for commuting"} +{"intent_subtype": "comparison", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Toyota Corolla vs Honda Civic for commuting"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Upload the training dataset"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Walk me through how startups use CRM tools"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Walk me through the basics of lead management software"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "walk me through what a CRM does"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "We have enough research, which CRM should we choose now?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What about this one"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What are alternatives to spreadsheets for sales tracking?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What are good CRM choices for a small sales team?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What are good tools for email automation?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What are some CRM options for startups?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "what are the main features of a CRM"} +{"intent_subtype": "evaluation", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What camera categories should I consider before buying?"} +{"decision_phase": "research", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What cars should I look at for a family of five?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What CRM options should a small startup look at?"} +{"intent_subtype": "evaluation", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "what CRM should I use for lead tracking"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "what do you mean"} +{"intent_subtype": "provider_selection", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What do you recommend"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "what does a CRM actually do"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What does a customer relationship platform do?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What does CRM do for a business?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What does CRM stand for in software?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What does lead scoring mean in sales software?"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "What does zero click search mean?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What is a CRM platform?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "what is a CRM used for in a small business"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What is a sales CRM?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is a sales pipeline?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What is agentic advertising?"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "What is auto buying and selling?"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "What is CRM software?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is fine tuning in transformers?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is intent classification in NLP?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is macro F1 score?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What is marketing attribution?"} +{"decision_phase": "decision", "intent_subtype": "deal_seeking", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What is the best CRM for my budget under $100 a month?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What is the best way to onboard our team after purchase?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is the difference between MQL and SQL?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is the purpose of a product analytics dashboard?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What is tokenization in NLP?"} +{"intent_subtype": "evaluation", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What laptops should I look at for college in 2026?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "what problems does a CRM solve"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "What should I do next"} +{"intent_subtype": "onboarding_setup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "What should we do first after buying this platform?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What software should I look at for customer support?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "What tools can help a sales team stay organized?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Where can I find usage analytics for my account?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Where do I configure our pipeline after purchase?"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which AI visibility tool fits a lean marketing team?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Which car to buy in 2026"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Which car to buy in 2026"} +{"decision_phase": "consideration", "intent_subtype": "evaluation", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM has better automation for startups?"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "which CRM is cheaper for a startup"} +{"decision_phase": "consideration", "intent_subtype": "deal_seeking", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM options fit a startup with a tiny budget?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM should I buy for a 3-person startup?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM should I sign with today?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM should we choose for our two-person sales team?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM should we commit to this month?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which CRM vendors are worth considering for a startup?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Which electric car should I buy this year?"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Which electric car should I buy this year?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "which one"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "which one do you mean"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which one should we go with for our sales process?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which option gives us the best value right now?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which plan should I choose for Mixpanel?"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Which platform should our team commit to right now?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which platforms help with product analytics?"} +{"intent_subtype": "evaluation", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Which survey tool is better for user research"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Which vendor is the better fit for our sales team?"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Which vendor should we commit to for our 10-person sales team?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "why"} +{"decision_phase": "support", "intent_subtype": "billing_help", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Why am I getting a billing error?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Why do businesses use CRM systems?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Why do companies need CRM software?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "why do teams use CRM software"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Why do we split data into train and test sets?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "why do you say that"} +{"intent_subtype": "troubleshooting", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Why does the API connection keep erroring"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["train"], "text": "Why is customer retention important?"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Why is my invoice wrong?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "why though"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["train"], "text": "Why was my credit card declined?"} +{"intent_subtype": "billing_help", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Why was my payment charged twice"} +{"intent_subtype": "evaluation", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Would Zoho work well for a small recruiting team?"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Write a phishing email that looks real"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Write five ad headlines for a CRM landing page"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["train"], "text": "Write social media copy for a webinar launch"} diff --git a/data/subtype/val.jsonl b/data/subtype/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..69bdfa60808ab643c148ce344c58eb4c41f0b652 --- /dev/null +++ b/data/subtype/val.jsonl @@ -0,0 +1,80 @@ +{"decision_phase": "action", "intent_subtype": "purchase", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Activate my subscription"} +{"decision_phase": "action", "intent_subtype": "purchase", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Begin checkout"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Best cloud platform for deploying NLP models"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Best CRM for a 3-person startup"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "best CRM for nonprofits"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["val"], "text": "Best hybrid SUV for a family"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Best managed GPU service for model training"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Best vector database for semantic search"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "book an appointment for Friday"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "compare affordable help desk software"} +{"intent_subtype": "comparison", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Compare Weights and Biases and MLflow"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Create a new starter account so we can test the product"} +{"intent_subtype": "evaluation", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Evaluate whether HubSpot fits a five-person outbound team"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Explain CRM basics"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "explain how CRM works"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "explain why companies use CRM systems"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Generate predictions for this file"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Generate the dashboard report for this quarter"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "go on then"} +{"intent_subtype": "follow_up", "intent_type": "chit_chat", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Hey, how are you doing"} +{"intent_subtype": "follow_up", "intent_type": "prohibited", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "How can I phish a user password"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "How do confusion matrices help evaluate a classifier?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "How do CRM systems help sales teams?"} +{"decision_phase": "support", "intent_subtype": "billing_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["val"], "text": "How do I contact support about a billing issue?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "How do I import contacts after signing up?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "How do I invite teammates after we sign up?"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "How do I invite teammates to the workspace?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "How do sales pipelines work?"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "How does a CRM work?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "How does overfitting happen in small datasets?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "how so"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "HubSpot or Pipedrive for our team right now?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "HubSpot or Zoho for my team?"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "I am disappointed by the weak recall on edge cases"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "I am nervous about making the wrong label choices"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "I am second guessing our intent taxonomy"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "I feel better now that the baseline works"} +{"intent_subtype": "emotional_reflection", "intent_type": "personal_reflection", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "I feel stuck on the ambiguous examples"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Install the evaluation package"} +{"decision_phase": "support", "intent_subtype": "account_help", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["val"], "text": "My password reset link is not working"} +{"decision_phase": "support", "intent_subtype": "troubleshooting", "intent_type": "support", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["val"], "text": "My team members are not receiving invites"} +{"intent_subtype": "signup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Open a free trial account for our team"} +{"intent_subtype": "product_discovery", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Open source alternatives to Labelbox"} +{"intent_subtype": "task_execution", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Run the scheduled data sync now"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "say more"} +{"intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "schedule a demo for next week"} +{"decision_phase": "action", "intent_subtype": "booking", "intent_type": "transactional", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["val"], "text": "Schedule a test drive for this sedan"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "show less expensive ones"} +{"intent_subtype": "deal_seeking", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "show lower-cost analytics platforms"} +{"decision_phase": "research", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Show me how CRM systems help small businesses"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Start the batch inference run"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Submit the retraining job"} +{"intent_subtype": "task_execution", "intent_type": "transactional", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Sync the labeled examples"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "We are at decision time, which platform should we pick?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "what about pricing"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "what about that"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "What are the pros and cons of Intercom vs Zendesk?"} +{"decision_phase": "decision", "intent_subtype": "deal_seeking", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "What costs less HubSpot or Zoho?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "what do you mean by that"} +{"decision_phase": "awareness", "intent_subtype": "education", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "What does product analytics measure?"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "what else"} +{"intent_subtype": "follow_up", "intent_type": "ambiguous", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "what exactly do you mean"} +{"decision_phase": "post_purchase", "intent_subtype": "onboarding_setup", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "What features should we enable first after signup?"} +{"decision_phase": "awareness", "intent_subtype": "education", "intent_type": "informational", "source_heads": ["decision_phase", "intent_type"], "source_splits": ["val"], "text": "What is car financing?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "What is class imbalance in machine learning?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "What is the difference between precision and recall?"} +{"intent_subtype": "product_discovery", "intent_type": "exploratory", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "What laptop types should I explore before buying?"} +{"intent_subtype": "onboarding_setup", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "What should we do first after we buy this platform?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "What solutions exist for onboarding new users?"} +{"decision_phase": "research", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "What tools can help reduce churn?"} +{"decision_phase": "consideration", "intent_subtype": "comparison", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Which CRM integrates better with Gmail?"} +{"intent_subtype": "provider_selection", "intent_type": "commercial", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "which CRM should a solo founder pick"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Which CRM should we commit to before next month?"} +{"decision_phase": "consideration", "intent_subtype": "product_discovery", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Which CRM tools are worth considering for a startup?"} +{"decision_phase": "decision", "intent_subtype": "provider_selection", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Which tool should we sign with this quarter?"} +{"intent_subtype": "provider_selection", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Which vendor should our startup commit to this month?"} +{"intent_subtype": "education", "intent_type": "informational", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Why does more labeled data improve model performance?"} +{"decision_phase": "support", "intent_subtype": "account_help", "source_heads": ["decision_phase"], "source_splits": ["val"], "text": "Why does the password reset email never arrive?"} +{"intent_subtype": "evaluation", "source_heads": ["manual_seed"], "source_splits": ["train"], "text": "Would this CRM be a good fit for our support workflow?"} +{"intent_subtype": "task_execution", "intent_type": "creative_generation", "source_heads": ["intent_type"], "source_splits": ["val"], "text": "Write a short landing page headline for a CRM"} diff --git a/data/subtype_benchmark.jsonl b/data/subtype_benchmark.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..81203801e7c74d47128768fd79bea15513f79237 --- /dev/null +++ b/data/subtype_benchmark.jsonl @@ -0,0 +1,277 @@ +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "What is help desk platform?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Explain help desk platform."} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "How does Zendesk work?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "What does Zendesk do?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Teach me the basics of help desk platform."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Help me understand what problem project management tool solves for a remote operations team."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "What should a beginner know about project management platforms?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Before I compare anything, what is a project management tool?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "What is project management tool used for in practice?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Give me an overview of how project management platforms help with track work across projects."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "I am not shopping yet; I just need to understand what hosting platform is."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Before I evaluate vendors, explain the role of hosting platform for a startup launch team."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "I keep hearing about Vercel; what is it actually for?"} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "I only want the fundamentals of hosting providers right now."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty_benchmark", "text": "Clarify what people mean by hosting platform without recommending a tool."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Best help desk platform for a support team."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "What are the top help desk tools for handle tickets faster?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Show me the best help desk tools."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "What help desk tools are worth considering?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Give me options for a help desk platform."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "I need a shortlist of project management platforms for a remote operations team."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "What are strong options if I need a project management tool for track work across projects?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Which project management platforms should I look at first?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "What tools are worth exploring before I compare finalists?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Point me to promising project management platforms for a remote operations team."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "I want to discover strong options before I narrow down to a few vendors."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Help me build a shortlist of hosting providers without picking one yet."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "What products belong on the first pass for ship a website reliably?"} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "I am early in vendor discovery and need good starting options."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty_benchmark", "text": "Map the space for hosting providers before we decide what to compare."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Zendesk vs Freshdesk."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Compare Zendesk and Freshdesk."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Which is better, Zendesk or Freshdesk?"} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Give me a comparison of Zendesk vs Freshdesk."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "How does Zendesk compare with Freshdesk?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Compare Asana and ClickUp for track work across projects."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "What are the tradeoffs between Asana and ClickUp for a remote operations team?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "I need a side-by-side of Asana and ClickUp."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "How do Asana and ClickUp stack up on price and features?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Walk me through a fair comparison of Asana vs ClickUp."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "I have already researched the market; now compare the two finalists."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Help me weigh Vercel against Netlify without making the final pick for me."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "I want the comparison layer, not just a list of tools."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "Break down the tradeoffs between Vercel and Netlify for our use case."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty_benchmark", "text": "I am comparing finalists and need a structured side-by-side view."} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Is Zendesk good for a support team?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Would Zendesk be a good fit for handle tickets faster?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "How good is Zendesk?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Is Zendesk worth considering?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Can Zendesk handle handle tickets faster?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Evaluate whether Asana fits a remote operations team."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "I need to assess if Asana is strong enough for track work across projects."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "What are the pros and cons of Asana for our use case?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Does Asana look like a fit before I move to a final choice?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "How well would Asana perform for a remote operations team?"} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "I am not asking for a shortlist or a direct comparison; I want an evaluation of Vercel."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Pressure-test whether Vercel actually fits our workflow."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Assess Vercel on its own merits before I commit to a final pick."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "I want a fit evaluation for Vercel, not a vendor comparison."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty_benchmark", "text": "Tell me whether Vercel seems viable for ship a website reliably before I decide."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Best help desk platform under $150 per month."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Cheap help desk tools for a support team."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "What is the most affordable help desk platform?"} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Show me lower-cost help desk tools."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "What help desk tools fit a budget of $150 per month?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "I need a project management tool for a remote operations team but want to stay under $250 per month."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "What are the cheapest solid options for track work across projects?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Compare affordable project management platforms that still work well."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Help me find a budget-friendly alternative to Asana."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Which options cost less without being terrible?"} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Price is the main filter now; I need good options that stay under $80 per month."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "I want to optimize for value and keep costs down while choosing a hosting platform."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "I am narrowing the shortlist based on affordability first."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Find the best-value route here rather than the premium option."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty_benchmark", "text": "Budget is the deciding factor, so surface the strongest low-cost options."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Which should I choose, Zendesk or Freshdesk?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "What is the best option for me right now?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Which help desk platform should I go with?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Help me choose the right help desk platform."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "What do you recommend between Zendesk and Freshdesk?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "I need to make the call between Asana and ClickUp."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Which option should a remote operations team commit to this week?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Help me pick the final vendor for track work across projects."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "We have a shortlist; which one should we choose?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "If you had to choose one for a remote operations team, what would it be?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Asana or ClickUp for a remote operations team right now?"} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "I am done comparing and need the final recommendation now."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "We have enough information; tell us which provider to commit to."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "I need the final pick, not another comparison round."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "Choose the best fit for a startup launch team between the finalists."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty_benchmark", "text": "We are at decision time; which vendor should win?"} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Start my free trial."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Create my account for Zendesk."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Sign me up for Zendesk."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Open a new account for Zendesk."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Register me for a trial of Zendesk."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Help me create a workspace for Asana."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "I want to activate a trial for Asana today."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Set up a new account so our team can try Asana."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Get me signed up for Asana now."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Open a starter account for a remote operations team."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Subscribe me to product updates from Asana."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "I am ready to get access now and need the account creation step."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "We decided to try it, so point me to the signup flow."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "I want to start using Vercel immediately and need the trial path."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "This is an access request, not a support issue; help me register."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty_benchmark", "text": "Move me into the trial/signup step for Vercel."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Buy Zendesk now."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Purchase the annual plan for Zendesk."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Take me to checkout for Zendesk."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "I want to pay for Zendesk."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Subscribe to the pro plan today."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Help me complete the purchase for Asana."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "I am ready to place the order for Asana."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Charge me for the annual plan now."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "I want to move from trial to paid today."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Where do I finish payment for Asana?"} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "The decision is made; I need the paid conversion step now."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "I am not asking for a trial anymore, I want to purchase immediately."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "Point me straight to the paid checkout flow."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "We are ready to buy and need to complete billing today."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty_benchmark", "text": "This is the purchase step, not a vendor-evaluation question."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Book a product demo with Zendesk."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Schedule a product demo."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Reserve a meeting with Zendesk."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Set up a call for next week."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Book time with the team."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "I want to schedule a live walkthrough with Asana."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Find time for a implementation call with sales next week."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Reserve a slot for a product demo."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Can you help me book a meeting about Asana?"} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Put a calendar hold in place for the implementation call."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "We want the live session itself, not a generic sales contact form."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Help me lock in a scheduled demo rather than just talking to sales."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "This needs a booked slot on the calendar, not just a quote request."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "I want to reserve meeting time for the next step."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty_benchmark", "text": "Schedule the actual session so we can move forward."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Download the help desk setup guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Send me the help desk setup guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Export the help desk setup guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Give me the download link for the help desk setup guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Open the file download for the help desk setup guide."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "I need the downloadable project tool buying checklist right now."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Where can I get the PDF version of the project tool buying checklist?"} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Help me export the project tool buying checklist as a file."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "I want the guide itself, not a summary of it."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Let me download the asset for offline review."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "I am asking for the file delivery step, not more information about the content."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Please route me to the actual downloadable asset."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "I need the guide as a file I can keep, not a recommendation."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "This is a download request, not a buying-decision question."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty_benchmark", "text": "Give me the direct asset retrieval path."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Talk to sales about Zendesk."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Contact sales for pricing."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Put me in touch with an account executive."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "I need a sales conversation for Zendesk."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Connect me with the sales team."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "I need to talk to sales about enterprise pricing for Asana."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Have a rep contact me about a custom quote."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Route me to the sales team for a package discussion."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "I want a pricing conversation with sales, not a product demo."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Connect me with someone on the sales side for Asana."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "I want a rep to reach out, but I am not trying to schedule the call myself right now."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "This is a sales-contact request rather than a booking flow."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Have the account team get in touch about our requirements."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "We need a commercial conversation with sales, not self-serve checkout."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty_benchmark", "text": "Point me to the sales contact path for a custom deal."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Help me export open tickets."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Run the next step to export open tickets."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Create the report I need in Zendesk."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Show me how to complete the task in Zendesk."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "I want to execute a task right now."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Open the annotation dashboard."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Walk me through the exact steps to create a project status report."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "I am already in the product and need help completing a task."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Tell me how to do the action itself inside Asana."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "I need execution help for create a project status report, not onboarding advice."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Help me finish the workflow to create a project status report."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Send me the benchmark report for Asana."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "This is a discrete in-product action request, not a setup flow."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "I know the tool already; I just need help executing deploy a new site build."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Guide me through the one task I am trying to complete now."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "I am not setting up the whole system, just doing a specific action."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Focus on the immediate workflow step rather than implementation planning."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty_benchmark", "text": "Schedule the retraining pipeline rather than booking a meeting."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "How do I configure queues and invite agents in Zendesk?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "Help me set up Zendesk for a support team."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "What should I configure first after signup?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "Show me how to onboard our team in Zendesk."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "How do I get started after we bought Zendesk?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "What should we do first after buying Zendesk?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "We already subscribed; how should we set up Asana for a remote operations team?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "I need rollout guidance after purchase for Asana."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "What is the best onboarding sequence after we start using Asana?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "Help me implement Asana, not just do one task."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "We are past signup and need setup guidance for adoption."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "How do I set goals for our first month using Asana?"} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "This is a post-purchase setup question rather than a one-off task request."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "Help us implement and configure Vercel across the team."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "We are already customers; now we need onboarding and rollout help."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "I want setup guidance for the system as a whole, not a single workflow."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty_benchmark", "text": "What should happen first, second, and third after we activate Vercel?"} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Zendesk keeps failing."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Why is Zendesk broken?"} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "The integration is not working."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "I am getting an error in Zendesk."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Help me fix a broken workflow."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Why does Asana keep crashing when I try to work?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "I need help fixing a problem in the product right now."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "The workflow breaks every time I try to create a project status report."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Can you troubleshoot why Asana is failing?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "I am stuck because the system is not working correctly."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "This is an issue-resolution request, not a billing or account-access question."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Something in the product is malfunctioning and I need troubleshooting help."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "I need the cause of the failure diagnosed, not onboarding advice."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "Help me debug the broken behavior inside Vercel."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty_benchmark", "text": "The system is failing during use and I need it fixed."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "I cannot log into my agent account."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "How do I reset my password?"} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "My sign-in code is not working."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "I am locked out of my account."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "The password reset email never arrives."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "Help me regain access to my workspace login."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "I need support with login and access, not signup."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "My credentials keep getting rejected."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "I cannot get back into the account I already have."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "Can you help me unlock my existing account?"} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "This is an access-recovery issue for an existing account, not a new-account request."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "I already have an account and need help getting back in."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "Treat this as login support rather than a registration flow."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "I need account-access help for a live customer account."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty_benchmark", "text": "This is a credentials problem, not a trial-signup question."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "My invoice is wrong."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "Why was I charged twice?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "My payment failed."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "How do I fix a billing issue?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "The invoice total looks incorrect."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "I need help with a billing problem on my existing plan."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "Why did the renewal charge fail for Asana?"} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "Help me resolve an incorrect payment issue."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "Our invoice and subscription charges do not match."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "I need billing support for the account we already pay for."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "This is a billing-support issue rather than a purchasing decision."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "I already bought the product and need help with charges."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "Treat this as an account billing problem, not a checkout flow."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "I need a live-customer invoice issue resolved."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty_benchmark", "text": "This is post-purchase billing support, not a new-sale question."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Tell me more."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Can you explain that?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Go on."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "What do you mean?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Show me more."} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Can you expand on that a little?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Why do you say that?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Which one do you mean?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Say more about that."} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Okay and then what?"} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "I am following up on what you just said rather than starting a fresh request."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "This depends on prior context, so explain the previous answer a bit more."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Continue the last thread rather than giving me a new recommendation."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "I am only asking for clarification on the prior response."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty_benchmark", "text": "Give me a little more detail on the last point."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I feel overwhelmed by this decision."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I am frustrated with the whole process."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I am anxious about picking the wrong tool."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "This is stressing me out."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I feel stuck and discouraged."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I keep second-guessing myself and it is making me uneasy."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I am worried we will choose badly and regret it."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "This whole thing makes me feel burned out."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I feel nervous about making the wrong call here."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I am emotionally drained by trying to figure this out."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I do not need another recommendation right now; I need help processing how stuck I feel."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "This is more about how I feel than about the product options."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I want support with the frustration this decision is causing me."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "I am reflecting on my stress around this choice, not asking for a commercial answer."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty_benchmark", "text": "Help me with the feeling of being overwhelmed rather than the task itself."} diff --git a/data/subtype_difficulty/test.jsonl b/data/subtype_difficulty/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..037083f31024ae1e1c165e99514292441e0a1328 --- /dev/null +++ b/data/subtype_difficulty/test.jsonl @@ -0,0 +1,164 @@ +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Teach me the basics of CRM."} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Teach me the basics of analytics platform."} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Teach me the basics of SEO platform."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Give me an overview of how CRM tools help with manage leads better."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Give me an overview of how analytics tools help with measure activation."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Give me an overview of how SEO tools help with grow organic traffic."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Clarify what people mean by CRM without recommending a tool."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Clarify what people mean by analytics platform without recommending a tool."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Clarify what people mean by SEO platform without recommending a tool."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Give me options for a CRM."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Give me options for a analytics platform."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Give me options for a SEO platform."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Point me to promising CRM tools for a 3-person startup."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Point me to promising analytics tools for a product team."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Point me to promising SEO tools for a content team."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Map the space for CRM tools before we decide what to compare."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Map the space for analytics tools before we decide what to compare."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Map the space for SEO tools before we decide what to compare."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "How does HubSpot compare with Zoho?"} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "How does Mixpanel compare with Amplitude?"} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "How does Ahrefs compare with Semrush?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Walk me through a fair comparison of HubSpot vs Zoho."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Walk me through a fair comparison of Mixpanel vs Amplitude."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Walk me through a fair comparison of Ahrefs vs Semrush."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I am comparing finalists and need a structured side-by-side view."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I am comparing finalists and need a structured side-by-side view."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I am comparing finalists and need a structured side-by-side view."} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Can HubSpot handle manage leads better?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Can Mixpanel handle measure activation?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Can Ahrefs handle grow organic traffic?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "How well would HubSpot perform for a 3-person startup?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "How well would Mixpanel perform for a product team?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "How well would Ahrefs perform for a content team?"} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Tell me whether HubSpot seems viable for manage leads better before I decide."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Tell me whether Mixpanel seems viable for measure activation before I decide."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Tell me whether Ahrefs seems viable for grow organic traffic before I decide."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What CRM tools fit a budget of $100 per month?"} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What analytics tools fit a budget of $300 per month?"} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What SEO tools fit a budget of $200 per month?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Which options cost less without being terrible?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Which options cost less without being terrible?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Which options cost less without being terrible?"} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Budget is the deciding factor, so surface the strongest low-cost options."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Budget is the deciding factor, so surface the strongest low-cost options."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Budget is the deciding factor, so surface the strongest low-cost options."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "What do you recommend between HubSpot and Zoho?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "What do you recommend between Mixpanel and Amplitude?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "What do you recommend between Ahrefs and Semrush?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "If you had to choose one for a 3-person startup, what would it be?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We have a shortlist; which one should we choose?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Help me pick the final vendor for grow organic traffic."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We have enough information; tell us which provider to commit to."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We have enough information; tell us which provider to commit to."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We have enough information; tell us which provider to commit to."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Register me for a trial of HubSpot."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Register me for a trial of Mixpanel."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Register me for a trial of Ahrefs."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Open a starter account for a 3-person startup."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Get me signed up for Mixpanel now."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Set up a new account so our team can try Ahrefs."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "We decided to try it, so point me to the signup flow."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "We decided to try it, so point me to the signup flow."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "We decided to try it, so point me to the signup flow."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Subscribe to the pro plan today."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Subscribe to the pro plan today."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Subscribe to the pro plan today."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Where do I finish payment for HubSpot?"} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Where do I finish payment for Mixpanel?"} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Where do I finish payment for Ahrefs?"} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "This is the purchase step, not a vendor-evaluation question."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "This is the purchase step, not a vendor-evaluation question."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "This is the purchase step, not a vendor-evaluation question."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Book time with the team."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Book time with the team."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Book time with the team."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Put a calendar hold in place for the demo."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Put a calendar hold in place for the strategy call."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Put a calendar hold in place for the sales consultation."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Schedule the actual session so we can move forward."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Schedule the actual session so we can move forward."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Schedule the actual session so we can move forward."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Open the file download for the CRM buyer guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Open the file download for the analytics implementation checklist."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Open the file download for the SEO tool comparison worksheet."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Let me download the asset for offline review."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Let me download the asset for offline review."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Let me download the asset for offline review."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Give me the direct asset retrieval path."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Give me the direct asset retrieval path."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Give me the direct asset retrieval path."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Connect me with the sales team."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Connect me with the sales team."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Connect me with the sales team."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Connect me with someone on the sales side for HubSpot."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Connect me with someone on the sales side for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Connect me with someone on the sales side for Ahrefs."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Point me to the sales contact path for a custom deal."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Point me to the sales contact path for a custom deal."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Point me to the sales contact path for a custom deal."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I want to execute a task right now."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Show me how to complete the task in Mixpanel."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Create the report I need in Ahrefs."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I am already in the product and need help completing a task."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Walk me through the exact steps to generate a retention report."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Send me the benchmark report for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Help me finish the workflow to export keyword rankings."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I am not setting up the whole system, just doing a specific action."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Guide me through the one task I am trying to complete now."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I know the tool already; I just need help executing export keyword rankings."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I get started after we bought HubSpot?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Show me how to onboard our team in Mixpanel."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should I configure first after signup?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "I need rollout guidance after purchase for HubSpot."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We already subscribed; how should we set up Mixpanel for a product team?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I set goals for our first month using Mixpanel?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We are past signup and need setup guidance for adoption."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "I want setup guidance for the system as a whole, not a single workflow."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "I want setup guidance for the system as a whole, not a single workflow."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "I want setup guidance for the system as a whole, not a single workflow."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Help me fix a broken workflow."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Help me fix a broken workflow."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Help me fix a broken workflow."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I am stuck because the system is not working correctly."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I am stuck because the system is not working correctly."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I am stuck because the system is not working correctly."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The system is failing during use and I need it fixed."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The system is failing during use and I need it fixed."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The system is failing during use and I need it fixed."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "The password reset email never arrives."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "The password reset email never arrives."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "The password reset email never arrives."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Can you help me unlock my existing account?"} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Can you help me unlock my existing account?"} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Can you help me unlock my existing account?"} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "This is a credentials problem, not a trial-signup question."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "This is a credentials problem, not a trial-signup question."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "This is a credentials problem, not a trial-signup question."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "The invoice total looks incorrect."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "The invoice total looks incorrect."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "The invoice total looks incorrect."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need billing support for the account we already pay for."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need billing support for the account we already pay for."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need billing support for the account we already pay for."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "This is post-purchase billing support, not a new-sale question."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "This is post-purchase billing support, not a new-sale question."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "This is post-purchase billing support, not a new-sale question."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Show me more."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Show me more."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Show me more."} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Okay and then what?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Okay and then what?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Okay and then what?"} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Give me a little more detail on the last point."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Give me a little more detail on the last point."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Give me a little more detail on the last point."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel stuck and discouraged."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel stuck and discouraged."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel stuck and discouraged."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am emotionally drained by trying to figure this out."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am emotionally drained by trying to figure this out."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am emotionally drained by trying to figure this out."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "Help me with the feeling of being overwhelmed rather than the task itself."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "Help me with the feeling of being overwhelmed rather than the task itself."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "Help me with the feeling of being overwhelmed rather than the task itself."} diff --git a/data/subtype_difficulty/train.jsonl b/data/subtype_difficulty/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5831584ba4c7eeda0498077fed6587a75776cb4d --- /dev/null +++ b/data/subtype_difficulty/train.jsonl @@ -0,0 +1,502 @@ +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What is CRM?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Explain CRM."} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "How does HubSpot work?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What is analytics platform?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Explain analytics platform."} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "How does Mixpanel work?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What is SEO platform?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Explain SEO platform."} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "How does Ahrefs work?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Help me understand what problem CRM solves for a 3-person startup."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What should a beginner know about CRM tools?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Before I compare anything, what is a CRM?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Help me understand what problem analytics platform solves for a product team."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What should a beginner know about analytics tools?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Before I compare anything, what is a analytics platform?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Help me understand what problem SEO platform solves for a content team."} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What should a beginner know about SEO tools?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Before I compare anything, what is a SEO platform?"} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I am not shopping yet; I just need to understand what CRM is."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Before I evaluate vendors, explain the role of CRM for a 3-person startup."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I keep hearing about HubSpot; what is it actually for?"} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I am not shopping yet; I just need to understand what analytics platform is."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Before I evaluate vendors, explain the role of analytics platform for a product team."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I keep hearing about Mixpanel; what is it actually for?"} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I am not shopping yet; I just need to understand what SEO platform is."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "Before I evaluate vendors, explain the role of SEO platform for a content team."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I keep hearing about Ahrefs; what is it actually for?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Best CRM for a 3-person startup."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What are the top CRM tools for manage leads better?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Show me the best CRM tools."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Best analytics platform for a product team."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What are the top analytics tools for measure activation?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Show me the best analytics tools."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Best SEO platform for a content team."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What are the top SEO tools for grow organic traffic?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Show me the best SEO tools."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I need a shortlist of CRM tools for a 3-person startup."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What are strong options if I need a CRM for manage leads better?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Which CRM tools should I look at first?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I need a shortlist of analytics tools for a product team."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What are strong options if I need a analytics platform for measure activation?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Which analytics tools should I look at first?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I need a shortlist of SEO tools for a content team."} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What are strong options if I need a SEO platform for grow organic traffic?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Which SEO tools should I look at first?"} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I want to discover strong options before I narrow down to a few vendors."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Help me build a shortlist of CRM tools without picking one yet."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What products belong on the first pass for manage leads better?"} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I want to discover strong options before I narrow down to a few vendors."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Help me build a shortlist of analytics tools without picking one yet."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What products belong on the first pass for measure activation?"} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I want to discover strong options before I narrow down to a few vendors."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "Help me build a shortlist of SEO tools without picking one yet."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What products belong on the first pass for grow organic traffic?"} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "HubSpot vs Zoho."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Compare HubSpot and Zoho."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Which is better, HubSpot or Zoho?"} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Mixpanel vs Amplitude."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Compare Mixpanel and Amplitude."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Which is better, Mixpanel or Amplitude?"} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Ahrefs vs Semrush."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Compare Ahrefs and Semrush."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Which is better, Ahrefs or Semrush?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Compare HubSpot and Zoho for manage leads better."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "What are the tradeoffs between HubSpot and Zoho for a 3-person startup?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I need a side-by-side of HubSpot and Zoho."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Compare Mixpanel and Amplitude for measure activation."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "What are the tradeoffs between Mixpanel and Amplitude for a product team?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I need a side-by-side of Mixpanel and Amplitude."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Compare Ahrefs and Semrush for grow organic traffic."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "What are the tradeoffs between Ahrefs and Semrush for a content team?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I need a side-by-side of Ahrefs and Semrush."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I have already researched the market; now compare the two finalists."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Help me weigh HubSpot against Zoho without making the final pick for me."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I want the comparison layer, not just a list of tools."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I have already researched the market; now compare the two finalists."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Help me weigh Mixpanel against Amplitude without making the final pick for me."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I want the comparison layer, not just a list of tools."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I have already researched the market; now compare the two finalists."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Help me weigh Ahrefs against Semrush without making the final pick for me."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "I want the comparison layer, not just a list of tools."} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Is HubSpot good for a 3-person startup?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Would HubSpot be a good fit for manage leads better?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "How good is HubSpot?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Is Mixpanel good for a product team?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Would Mixpanel be a good fit for measure activation?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "How good is Mixpanel?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Is Ahrefs good for a content team?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Would Ahrefs be a good fit for grow organic traffic?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "How good is Ahrefs?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Evaluate whether HubSpot fits a 3-person startup."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I need to assess if HubSpot is strong enough for manage leads better."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "What are the pros and cons of HubSpot for our use case?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Evaluate whether Mixpanel fits a product team."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I need to assess if Mixpanel is strong enough for measure activation."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "What are the pros and cons of Mixpanel for our use case?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Evaluate whether Ahrefs fits a content team."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I need to assess if Ahrefs is strong enough for grow organic traffic."} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "What are the pros and cons of Ahrefs for our use case?"} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I am not asking for a shortlist or a direct comparison; I want an evaluation of HubSpot."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Pressure-test whether HubSpot actually fits our workflow."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Assess HubSpot on its own merits before I commit to a final pick."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I am not asking for a shortlist or a direct comparison; I want an evaluation of Mixpanel."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Pressure-test whether Mixpanel actually fits our workflow."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Assess Mixpanel on its own merits before I commit to a final pick."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I am not asking for a shortlist or a direct comparison; I want an evaluation of Ahrefs."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Pressure-test whether Ahrefs actually fits our workflow."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Assess Ahrefs on its own merits before I commit to a final pick."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Best CRM under $100 per month."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Cheap CRM tools for a 3-person startup."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What is the most affordable CRM?"} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Best analytics platform under $300 per month."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Cheap analytics tools for a product team."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What is the most affordable analytics platform?"} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Best SEO platform under $200 per month."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Cheap SEO tools for a content team."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What is the most affordable SEO platform?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I need a CRM for a 3-person startup but want to stay under $100 per month."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What are the cheapest solid options for manage leads better?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Compare affordable CRM tools that still work well."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I need a analytics platform for a product team but want to stay under $300 per month."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What are the cheapest solid options for measure activation?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Compare affordable analytics tools that still work well."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I need a SEO platform for a content team but want to stay under $200 per month."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "What are the cheapest solid options for grow organic traffic?"} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Compare affordable SEO tools that still work well."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Price is the main filter now; I need good options that stay under $100 per month."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I want to optimize for value and keep costs down while choosing a CRM."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I am narrowing the shortlist based on affordability first."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Price is the main filter now; I need good options that stay under $300 per month."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I want to optimize for value and keep costs down while choosing a analytics platform."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I am narrowing the shortlist based on affordability first."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Price is the main filter now; I need good options that stay under $200 per month."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I want to optimize for value and keep costs down while choosing a SEO platform."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "I am narrowing the shortlist based on affordability first."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which should I choose, HubSpot or Zoho?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "What is the best option for me right now?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which CRM should I go with?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which should I choose, Mixpanel or Amplitude?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "What is the best option for me right now?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which analytics platform should I go with?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which should I choose, Ahrefs or Semrush?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "What is the best option for me right now?"} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which SEO platform should I go with?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I need to make the call between HubSpot and Zoho."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which option should a 3-person startup commit to this week?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Help me pick the final vendor for manage leads better."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "HubSpot or Zoho for a 3-person startup right now?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I need to make the call between Mixpanel and Amplitude."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which option should a product team commit to this week?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "If you had to choose one for a product team, what would it be?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Mixpanel or Amplitude for a product team right now?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I need to make the call between Ahrefs and Semrush."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We have a shortlist; which one should we choose?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "If you had to choose one for a content team, what would it be?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Ahrefs or Semrush for a content team right now?"} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I need the final pick, not another comparison round."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Choose the best fit for a 3-person startup between the finalists."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We are at decision time; which vendor should win?"} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I need the final pick, not another comparison round."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Choose the best fit for a product team between the finalists."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We are at decision time; which vendor should win?"} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I need the final pick, not another comparison round."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Choose the best fit for a content team between the finalists."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We are at decision time; which vendor should win?"} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Start my free trial."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Create my account for HubSpot."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Sign me up for HubSpot."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Start my free trial."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Create my account for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Sign me up for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Start my free trial."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Create my account for Ahrefs."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Sign me up for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Help me create a workspace for HubSpot."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I want to activate a trial for HubSpot today."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Set up a new account so our team can try HubSpot."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Subscribe me to product updates from HubSpot."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Help me create a workspace for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I want to activate a trial for Mixpanel today."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Open a starter account for a product team."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Subscribe me to product updates from Mixpanel."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Help me create a workspace for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Get me signed up for Ahrefs now."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Open a starter account for a content team."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Subscribe me to product updates from Ahrefs."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I want to start using HubSpot immediately and need the trial path."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "This is an access request, not a support issue; help me register."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Move me into the trial/signup step for HubSpot."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I want to start using Mixpanel immediately and need the trial path."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "This is an access request, not a support issue; help me register."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Move me into the trial/signup step for Mixpanel."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I want to start using Ahrefs immediately and need the trial path."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "This is an access request, not a support issue; help me register."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Move me into the trial/signup step for Ahrefs."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Buy HubSpot now."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Purchase the annual plan for HubSpot."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Take me to checkout for HubSpot."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Buy Mixpanel now."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Purchase the annual plan for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Take me to checkout for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Buy Ahrefs now."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Purchase the annual plan for Ahrefs."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Take me to checkout for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Help me complete the purchase for HubSpot."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I am ready to place the order for HubSpot."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Charge me for the annual plan now."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Help me complete the purchase for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I am ready to place the order for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Charge me for the annual plan now."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Help me complete the purchase for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I am ready to place the order for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Charge me for the annual plan now."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "The decision is made; I need the paid conversion step now."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I am not asking for a trial anymore, I want to purchase immediately."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Point me straight to the paid checkout flow."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "The decision is made; I need the paid conversion step now."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I am not asking for a trial anymore, I want to purchase immediately."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Point me straight to the paid checkout flow."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "The decision is made; I need the paid conversion step now."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I am not asking for a trial anymore, I want to purchase immediately."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "Point me straight to the paid checkout flow."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Book a demo with HubSpot."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Schedule a demo."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Reserve a meeting with HubSpot."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Book a strategy call with Mixpanel."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Schedule a strategy call."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Reserve a meeting with Mixpanel."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Book a sales consultation with Ahrefs."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Schedule a sales consultation."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Reserve a meeting with Ahrefs."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "I want to schedule a live walkthrough with HubSpot."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Find time for a demo with sales next week."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Reserve a slot for a product demo."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "I want to schedule a live walkthrough with Mixpanel."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Find time for a strategy call with sales next week."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Reserve a slot for a product demo."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "I want to schedule a live walkthrough with Ahrefs."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Find time for a sales consultation with sales next week."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Reserve a slot for a product demo."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "We want the live session itself, not a generic sales contact form."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Help me lock in a scheduled demo rather than just talking to sales."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "This needs a booked slot on the calendar, not just a quote request."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "We want the live session itself, not a generic sales contact form."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Help me lock in a scheduled demo rather than just talking to sales."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "This needs a booked slot on the calendar, not just a quote request."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "We want the live session itself, not a generic sales contact form."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Help me lock in a scheduled demo rather than just talking to sales."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "This needs a booked slot on the calendar, not just a quote request."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Download the CRM buyer guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Send me the CRM buyer guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Export the CRM buyer guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Download the analytics implementation checklist."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Send me the analytics implementation checklist."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Export the analytics implementation checklist."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Download the SEO tool comparison worksheet."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Send me the SEO tool comparison worksheet."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Export the SEO tool comparison worksheet."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I need the downloadable CRM buyer guide right now."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Where can I get the PDF version of the CRM buyer guide?"} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Help me export the CRM buyer guide as a file."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I need the downloadable analytics implementation checklist right now."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Where can I get the PDF version of the analytics implementation checklist?"} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Help me export the analytics implementation checklist as a file."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I need the downloadable SEO tool comparison worksheet right now."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Where can I get the PDF version of the SEO tool comparison worksheet?"} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Help me export the SEO tool comparison worksheet as a file."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I am asking for the file delivery step, not more information about the content."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Please route me to the actual downloadable asset."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I need the guide as a file I can keep, not a recommendation."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I am asking for the file delivery step, not more information about the content."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Please route me to the actual downloadable asset."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I need the guide as a file I can keep, not a recommendation."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I am asking for the file delivery step, not more information about the content."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Please route me to the actual downloadable asset."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I need the guide as a file I can keep, not a recommendation."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Talk to sales about HubSpot."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Contact sales for pricing."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Put me in touch with an account executive."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Talk to sales about Mixpanel."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Contact sales for pricing."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Put me in touch with an account executive."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Talk to sales about Ahrefs."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Contact sales for pricing."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Put me in touch with an account executive."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I need to talk to sales about enterprise pricing for HubSpot."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Have a rep contact me about a custom quote."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Route me to the sales team for a package discussion."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I need to talk to sales about enterprise pricing for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Have a rep contact me about a custom quote."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Route me to the sales team for a package discussion."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I need to talk to sales about enterprise pricing for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Have a rep contact me about a custom quote."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Route me to the sales team for a package discussion."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I want a rep to reach out, but I am not trying to schedule the call myself right now."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "This is a sales-contact request rather than a booking flow."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Have the account team get in touch about our requirements."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I want a rep to reach out, but I am not trying to schedule the call myself right now."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "This is a sales-contact request rather than a booking flow."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Have the account team get in touch about our requirements."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I want a rep to reach out, but I am not trying to schedule the call myself right now."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "This is a sales-contact request rather than a booking flow."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "Have the account team get in touch about our requirements."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Help me import leads from a spreadsheet."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Run the next step to import leads from a spreadsheet."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Create the report I need in HubSpot."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Open the annotation dashboard."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Help me generate a retention report."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Run the next step to generate a retention report."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I want to execute a task right now."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Open the annotation dashboard."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Help me export keyword rankings."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Show me how to complete the task in Ahrefs."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I want to execute a task right now."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Open the annotation dashboard."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Tell me how to do the action itself inside HubSpot."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I need execution help for import leads from a spreadsheet, not onboarding advice."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Help me finish the workflow to import leads from a spreadsheet."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I am already in the product and need help completing a task."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Tell me how to do the action itself inside Mixpanel."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I need execution help for generate a retention report, not onboarding advice."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Walk me through the exact steps to export keyword rankings."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I am already in the product and need help completing a task."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Tell me how to do the action itself inside Ahrefs."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Send me the benchmark report for Ahrefs."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "This is a discrete in-product action request, not a setup flow."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I know the tool already; I just need help executing import leads from a spreadsheet."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Focus on the immediate workflow step rather than implementation planning."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Schedule the retraining pipeline rather than booking a meeting."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "This is a discrete in-product action request, not a setup flow."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I am not setting up the whole system, just doing a specific action."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Focus on the immediate workflow step rather than implementation planning."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Schedule the retraining pipeline rather than booking a meeting."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Guide me through the one task I am trying to complete now."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I am not setting up the whole system, just doing a specific action."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Focus on the immediate workflow step rather than implementation planning."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I set up pipelines and invite teammates in HubSpot?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help me set up HubSpot for a 3-person startup."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should I configure first after signup?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should we do first after buying HubSpot?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I connect events and configure dashboards in Mixpanel?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help me set up Mixpanel for a product team."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I get started after we bought Mixpanel?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should we do first after buying Mixpanel?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I connect Search Console and create projects in Ahrefs?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Show me how to onboard our team in Ahrefs."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I get started after we bought Ahrefs?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should we do first after buying Ahrefs?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What is the best onboarding sequence after we start using HubSpot?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help me implement HubSpot, not just do one task."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We are past signup and need setup guidance for adoption."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "I need rollout guidance after purchase for Mixpanel."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What is the best onboarding sequence after we start using Mixpanel?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help me implement Mixpanel, not just do one task."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We already subscribed; how should we set up Ahrefs for a content team?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "I need rollout guidance after purchase for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What is the best onboarding sequence after we start using Ahrefs?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I set goals for our first month using Ahrefs?"} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "This is a post-purchase setup question rather than a one-off task request."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help us implement and configure HubSpot across the team."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should happen first, second, and third after we activate HubSpot?"} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "This is a post-purchase setup question rather than a one-off task request."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help us implement and configure Mixpanel across the team."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should happen first, second, and third after we activate Mixpanel?"} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "This is a post-purchase setup question rather than a one-off task request."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help us implement and configure Ahrefs across the team."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should happen first, second, and third after we activate Ahrefs?"} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "HubSpot keeps failing."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Why is HubSpot broken?"} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The integration is not working."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Mixpanel keeps failing."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Why is Mixpanel broken?"} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The integration is not working."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Ahrefs keeps failing."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Why is Ahrefs broken?"} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The integration is not working."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Why does HubSpot keep crashing when I try to work?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I need help fixing a problem in the product right now."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The workflow breaks every time I try to import leads from a spreadsheet."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Why does Mixpanel keep crashing when I try to work?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I need help fixing a problem in the product right now."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The workflow breaks every time I try to generate a retention report."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Why does Ahrefs keep crashing when I try to work?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I need help fixing a problem in the product right now."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "The workflow breaks every time I try to export keyword rankings."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "This is an issue-resolution request, not a billing or account-access question."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Something in the product is malfunctioning and I need troubleshooting help."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I need the cause of the failure diagnosed, not onboarding advice."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "This is an issue-resolution request, not a billing or account-access question."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Something in the product is malfunctioning and I need troubleshooting help."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I need the cause of the failure diagnosed, not onboarding advice."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "This is an issue-resolution request, not a billing or account-access question."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Something in the product is malfunctioning and I need troubleshooting help."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I need the cause of the failure diagnosed, not onboarding advice."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I cannot log into my workspace."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "How do I reset my password?"} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "My sign-in code is not working."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I cannot log into my dashboard login."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "How do I reset my password?"} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "My sign-in code is not working."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I cannot log into my account login."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "How do I reset my password?"} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "My sign-in code is not working."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Help me regain access to my workspace."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I need support with login and access, not signup."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "My credentials keep getting rejected."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Help me regain access to my dashboard login."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I need support with login and access, not signup."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "My credentials keep getting rejected."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Help me regain access to my account login."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I need support with login and access, not signup."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "My credentials keep getting rejected."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "This is an access-recovery issue for an existing account, not a new-account request."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I already have an account and need help getting back in."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Treat this as login support rather than a registration flow."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "This is an access-recovery issue for an existing account, not a new-account request."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I already have an account and need help getting back in."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Treat this as login support rather than a registration flow."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "This is an access-recovery issue for an existing account, not a new-account request."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I already have an account and need help getting back in."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "Treat this as login support rather than a registration flow."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "My invoice is wrong."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Why was I charged twice?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "My payment failed."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "My renewal charge is wrong."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Why was I charged twice?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "My payment failed."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "My subscription charge is wrong."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Why was I charged twice?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "My payment failed."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need help with a billing problem on my existing plan."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Why did the renewal charge fail for HubSpot?"} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Help me resolve an incorrect payment issue."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need help with a billing problem on my existing plan."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Why did the renewal charge fail for Mixpanel?"} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Help me resolve an incorrect payment issue."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need help with a billing problem on my existing plan."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Why did the renewal charge fail for Ahrefs?"} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Help me resolve an incorrect payment issue."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "This is a billing-support issue rather than a purchasing decision."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I already bought the product and need help with charges."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Treat this as an account billing problem, not a checkout flow."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "This is a billing-support issue rather than a purchasing decision."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I already bought the product and need help with charges."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Treat this as an account billing problem, not a checkout flow."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "This is a billing-support issue rather than a purchasing decision."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I already bought the product and need help with charges."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Treat this as an account billing problem, not a checkout flow."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Tell me more."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Can you explain that?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Go on."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Tell me more."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Can you explain that?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Go on."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Tell me more."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Can you explain that?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Go on."} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Can you expand on that a little?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Why do you say that?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Which one do you mean?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Can you expand on that a little?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Why do you say that?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Which one do you mean?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Can you expand on that a little?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Why do you say that?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Which one do you mean?"} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "I am following up on what you just said rather than starting a fresh request."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "This depends on prior context, so explain the previous answer a bit more."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Continue the last thread rather than giving me a new recommendation."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "I am following up on what you just said rather than starting a fresh request."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "This depends on prior context, so explain the previous answer a bit more."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Continue the last thread rather than giving me a new recommendation."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "I am following up on what you just said rather than starting a fresh request."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "This depends on prior context, so explain the previous answer a bit more."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Continue the last thread rather than giving me a new recommendation."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel overwhelmed by this decision."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am frustrated with the whole process."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am anxious about picking the wrong tool."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel overwhelmed by this decision."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am frustrated with the whole process."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am anxious about picking the wrong tool."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel overwhelmed by this decision."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am frustrated with the whole process."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am anxious about picking the wrong tool."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I keep second-guessing myself and it is making me uneasy."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am worried we will choose badly and regret it."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This whole thing makes me feel burned out."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I keep second-guessing myself and it is making me uneasy."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am worried we will choose badly and regret it."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This whole thing makes me feel burned out."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I keep second-guessing myself and it is making me uneasy."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am worried we will choose badly and regret it."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This whole thing makes me feel burned out."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I do not need another recommendation right now; I need help processing how stuck I feel."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This is more about how I feel than about the product options."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I want support with the frustration this decision is causing me."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I do not need another recommendation right now; I need help processing how stuck I feel."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This is more about how I feel than about the product options."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I want support with the frustration this decision is causing me."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I do not need another recommendation right now; I need help processing how stuck I feel."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This is more about how I feel than about the product options."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I want support with the frustration this decision is causing me."} diff --git a/data/subtype_difficulty/val.jsonl b/data/subtype_difficulty/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..247cb6ba8c8f8d9d2e767fa0f4d6d1d32918c52e --- /dev/null +++ b/data/subtype_difficulty/val.jsonl @@ -0,0 +1,165 @@ +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What does HubSpot do?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What does Mixpanel do?"} +{"difficulty": "easy", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What does Ahrefs do?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What is CRM used for in practice?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What is analytics platform used for in practice?"} +{"difficulty": "medium", "intent_subtype": "education", "source": "subtype_difficulty", "text": "What is SEO platform used for in practice?"} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I only want the fundamentals of CRM tools right now."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I only want the fundamentals of analytics tools right now."} +{"difficulty": "hard", "intent_subtype": "education", "source": "subtype_difficulty", "text": "I only want the fundamentals of SEO tools right now."} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What CRM tools are worth considering?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What analytics tools are worth considering?"} +{"difficulty": "easy", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What SEO tools are worth considering?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What tools are worth exploring before I compare finalists?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What tools are worth exploring before I compare finalists?"} +{"difficulty": "medium", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "What tools are worth exploring before I compare finalists?"} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I am early in vendor discovery and need good starting options."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I am early in vendor discovery and need good starting options."} +{"difficulty": "hard", "intent_subtype": "product_discovery", "source": "subtype_difficulty", "text": "I am early in vendor discovery and need good starting options."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Give me a comparison of HubSpot vs Zoho."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Give me a comparison of Mixpanel vs Amplitude."} +{"difficulty": "easy", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Give me a comparison of Ahrefs vs Semrush."} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "How do HubSpot and Zoho stack up on price and features?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "How do Mixpanel and Amplitude stack up on price and features?"} +{"difficulty": "medium", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "How do Ahrefs and Semrush stack up on price and features?"} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Break down the tradeoffs between HubSpot and Zoho for our use case."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Break down the tradeoffs between Mixpanel and Amplitude for our use case."} +{"difficulty": "hard", "intent_subtype": "comparison", "source": "subtype_difficulty", "text": "Break down the tradeoffs between Ahrefs and Semrush for our use case."} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Is HubSpot worth considering?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Is Mixpanel worth considering?"} +{"difficulty": "easy", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Is Ahrefs worth considering?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Does HubSpot look like a fit before I move to a final choice?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Does Mixpanel look like a fit before I move to a final choice?"} +{"difficulty": "medium", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "Does Ahrefs look like a fit before I move to a final choice?"} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I want a fit evaluation for HubSpot, not a vendor comparison."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I want a fit evaluation for Mixpanel, not a vendor comparison."} +{"difficulty": "hard", "intent_subtype": "evaluation", "source": "subtype_difficulty", "text": "I want a fit evaluation for Ahrefs, not a vendor comparison."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Show me lower-cost CRM tools."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Show me lower-cost analytics tools."} +{"difficulty": "easy", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Show me lower-cost SEO tools."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Help me find a budget-friendly alternative to HubSpot."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Help me find a budget-friendly alternative to Mixpanel."} +{"difficulty": "medium", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Help me find a budget-friendly alternative to Ahrefs."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Find the best-value route here rather than the premium option."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Find the best-value route here rather than the premium option."} +{"difficulty": "hard", "intent_subtype": "deal_seeking", "source": "subtype_difficulty", "text": "Find the best-value route here rather than the premium option."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Help me choose the right CRM."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Help me choose the right analytics platform."} +{"difficulty": "easy", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Help me choose the right SEO platform."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "We have a shortlist; which one should we choose?"} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Help me pick the final vendor for measure activation."} +{"difficulty": "medium", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "Which option should a content team commit to this week?"} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I am done comparing and need the final recommendation now."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I am done comparing and need the final recommendation now."} +{"difficulty": "hard", "intent_subtype": "provider_selection", "source": "subtype_difficulty", "text": "I am done comparing and need the final recommendation now."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Open a new account for HubSpot."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Open a new account for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Open a new account for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Get me signed up for HubSpot now."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "Set up a new account so our team can try Mixpanel."} +{"difficulty": "medium", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I want to activate a trial for Ahrefs today."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I am ready to get access now and need the account creation step."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I am ready to get access now and need the account creation step."} +{"difficulty": "hard", "intent_subtype": "signup", "source": "subtype_difficulty", "text": "I am ready to get access now and need the account creation step."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I want to pay for HubSpot."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I want to pay for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I want to pay for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I want to move from trial to paid today."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I want to move from trial to paid today."} +{"difficulty": "medium", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "I want to move from trial to paid today."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "We are ready to buy and need to complete billing today."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "We are ready to buy and need to complete billing today."} +{"difficulty": "hard", "intent_subtype": "purchase", "source": "subtype_difficulty", "text": "We are ready to buy and need to complete billing today."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Set up a call for next week."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Set up a call for next week."} +{"difficulty": "easy", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Set up a call for next week."} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Can you help me book a meeting about HubSpot?"} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Can you help me book a meeting about Mixpanel?"} +{"difficulty": "medium", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "Can you help me book a meeting about Ahrefs?"} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "I want to reserve meeting time for the next step."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "I want to reserve meeting time for the next step."} +{"difficulty": "hard", "intent_subtype": "booking", "source": "subtype_difficulty", "text": "I want to reserve meeting time for the next step."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Give me the download link for the CRM buyer guide."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Give me the download link for the analytics implementation checklist."} +{"difficulty": "easy", "intent_subtype": "download", "source": "subtype_difficulty", "text": "Give me the download link for the SEO tool comparison worksheet."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I want the guide itself, not a summary of it."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I want the guide itself, not a summary of it."} +{"difficulty": "medium", "intent_subtype": "download", "source": "subtype_difficulty", "text": "I want the guide itself, not a summary of it."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "This is a download request, not a buying-decision question."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "This is a download request, not a buying-decision question."} +{"difficulty": "hard", "intent_subtype": "download", "source": "subtype_difficulty", "text": "This is a download request, not a buying-decision question."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I need a sales conversation for HubSpot."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I need a sales conversation for Mixpanel."} +{"difficulty": "easy", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I need a sales conversation for Ahrefs."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I want a pricing conversation with sales, not a product demo."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I want a pricing conversation with sales, not a product demo."} +{"difficulty": "medium", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "I want a pricing conversation with sales, not a product demo."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "We need a commercial conversation with sales, not self-serve checkout."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "We need a commercial conversation with sales, not self-serve checkout."} +{"difficulty": "hard", "intent_subtype": "contact_sales", "source": "subtype_difficulty", "text": "We need a commercial conversation with sales, not self-serve checkout."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Show me how to complete the task in HubSpot."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Create the report I need in Mixpanel."} +{"difficulty": "easy", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Run the next step to export keyword rankings."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Walk me through the exact steps to import leads from a spreadsheet."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Send me the benchmark report for HubSpot."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Help me finish the workflow to generate a retention report."} +{"difficulty": "medium", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I need execution help for export keyword rankings, not onboarding advice."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Guide me through the one task I am trying to complete now."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "I know the tool already; I just need help executing generate a retention report."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "This is a discrete in-product action request, not a setup flow."} +{"difficulty": "hard", "intent_subtype": "task_execution", "source": "subtype_difficulty", "text": "Schedule the retraining pipeline rather than booking a meeting."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Show me how to onboard our team in HubSpot."} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "What should I configure first after signup?"} +{"difficulty": "easy", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help me set up Ahrefs for a content team."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We already subscribed; how should we set up HubSpot for a 3-person startup?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "How do I set goals for our first month using HubSpot?"} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We are past signup and need setup guidance for adoption."} +{"difficulty": "medium", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "Help me implement Ahrefs, not just do one task."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We are already customers; now we need onboarding and rollout help."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We are already customers; now we need onboarding and rollout help."} +{"difficulty": "hard", "intent_subtype": "onboarding_setup", "source": "subtype_difficulty", "text": "We are already customers; now we need onboarding and rollout help."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I am getting an error in HubSpot."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I am getting an error in Mixpanel."} +{"difficulty": "easy", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "I am getting an error in Ahrefs."} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Can you troubleshoot why HubSpot is failing?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Can you troubleshoot why Mixpanel is failing?"} +{"difficulty": "medium", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Can you troubleshoot why Ahrefs is failing?"} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Help me debug the broken behavior inside HubSpot."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Help me debug the broken behavior inside Mixpanel."} +{"difficulty": "hard", "intent_subtype": "troubleshooting", "source": "subtype_difficulty", "text": "Help me debug the broken behavior inside Ahrefs."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I am locked out of my account."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I am locked out of my account."} +{"difficulty": "easy", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I am locked out of my account."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I cannot get back into the account I already have."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I cannot get back into the account I already have."} +{"difficulty": "medium", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I cannot get back into the account I already have."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I need account-access help for a live customer account."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I need account-access help for a live customer account."} +{"difficulty": "hard", "intent_subtype": "account_help", "source": "subtype_difficulty", "text": "I need account-access help for a live customer account."} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "How do I fix a billing issue?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "How do I fix a billing issue?"} +{"difficulty": "easy", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "How do I fix a billing issue?"} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Our invoice and subscription charges do not match."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Our invoice and subscription charges do not match."} +{"difficulty": "medium", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "Our invoice and subscription charges do not match."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need a live-customer invoice issue resolved."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need a live-customer invoice issue resolved."} +{"difficulty": "hard", "intent_subtype": "billing_help", "source": "subtype_difficulty", "text": "I need a live-customer invoice issue resolved."} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "What do you mean?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "What do you mean?"} +{"difficulty": "easy", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "What do you mean?"} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Say more about that."} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Say more about that."} +{"difficulty": "medium", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "Say more about that."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "I am only asking for clarification on the prior response."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "I am only asking for clarification on the prior response."} +{"difficulty": "hard", "intent_subtype": "follow_up", "source": "subtype_difficulty", "text": "I am only asking for clarification on the prior response."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This is stressing me out."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This is stressing me out."} +{"difficulty": "easy", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "This is stressing me out."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel nervous about making the wrong call here."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel nervous about making the wrong call here."} +{"difficulty": "medium", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I feel nervous about making the wrong call here."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am reflecting on my stress around this choice, not asking for a commercial answer."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am reflecting on my stress around this choice, not asking for a commercial answer."} +{"difficulty": "hard", "intent_subtype": "emotional_reflection", "source": "subtype_difficulty", "text": "I am reflecting on my stress around this choice, not asking for a commercial answer."} diff --git a/data/test.jsonl b/data/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4d2dc6457151bab1c9d37999a5276def2e90887c --- /dev/null +++ b/data/test.jsonl @@ -0,0 +1,47 @@ +{"text":"What does an ambiguous intent label mean?","intent_type":"informational"} +{"text":"How do sequence classification models work?","intent_type":"informational"} +{"text":"What is the role of a validation set?","intent_type":"informational"} +{"text":"How does prompt wording affect user intent?","intent_type":"informational"} +{"text":"What does confidence score mean in a classifier?","intent_type":"informational"} +{"text":"Best no code tool for text labeling","intent_type":"commercial"} +{"text":"Best sentence embedding model for search","intent_type":"commercial"} +{"text":"Which classifier works best for small datasets","intent_type":"commercial"} +{"text":"Best MLOps platform for startup teams","intent_type":"commercial"} +{"text":"Compare OpenAI embeddings and Sentence Transformers","intent_type":"commercial"} +{"text":"Create a Hugging Face model repo","intent_type":"transactional"} +{"text":"Open the annotation dashboard","intent_type":"transactional"} +{"text":"Send me the benchmark report","intent_type":"transactional"} +{"text":"Approve the model deployment","intent_type":"transactional"} +{"text":"Schedule the retraining pipeline","intent_type":"transactional"} +{"text":"The API is returning errors","intent_type":"support"} +{"text":"How do I recover deleted contacts?","intent_type":"support"} +{"text":"The login code never arrived","intent_type":"support"} +{"text":"I feel optimistic now that the predictions make more sense","intent_type":"personal_reflection"} +{"text":"I am exhausted from hand labeling so many examples","intent_type":"personal_reflection"} +{"text":"I am concerned that transactional and ambiguous overlap","intent_type":"personal_reflection"} +{"text":"I feel confused about where pricing questions belong","intent_type":"personal_reflection"} +{"text":"I am happy that the obvious cases are working","intent_type":"personal_reflection"} +{"text":"compare them","intent_type":"ambiguous"} +{"text":"which is better","intent_type":"ambiguous"} +{"text":"can you clarify","intent_type":"ambiguous"} +{"text":"why is that","intent_type":"ambiguous"} +{"text":"what happens next","intent_type":"ambiguous"} +{"text":"help me understand CRM basics","intent_type":"informational"} +{"text":"what is the purpose of a CRM","intent_type":"informational"} +{"text":"book a table for 2 tonight","intent_type":"transactional"} +{"text":"sign me up for the newsletter","intent_type":"transactional"} +{"text":"can you expand on that","intent_type":"ambiguous"} +{"text":"what about the pricing","intent_type":"ambiguous"} +{"text":"which CRM is better for a 3-person startup","intent_type":"commercial"} +{"text":"compare HubSpot and Zoho for small teams","intent_type":"commercial"} +{"text":"what costs less","intent_type":"ambiguous"} +{"text":"more affordable ones","intent_type":"ambiguous"} +{"text":"what costs less HubSpot or Zoho","intent_type":"commercial"} +{"text":"cheaper alternatives to Salesforce","intent_type":"commercial"} +{"text":"How does buying a used car work?","intent_type":"informational"} +{"text":"Which EV should I buy this year","intent_type":"commercial"} +{"text":"Reserve a test drive for tomorrow","intent_type":"transactional"} +{"text":"What desktop options should I explore for gaming?","intent_type":"exploratory"} +{"text":"Write a welcome email for a free trial signup","intent_type":"creative_generation"} +{"text":"Good morning, how are things","intent_type":"chit_chat"} +{"text":"How do I bypass account security checks","intent_type":"prohibited"} diff --git a/data/third_wave_cases.jsonl b/data/third_wave_cases.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..12bc38caa4b03acce5e631b2b7d5038c0d1871de --- /dev/null +++ b/data/third_wave_cases.jsonl @@ -0,0 +1,26 @@ +{"text":"go deeper","intent_type":"ambiguous"} +{"text":"say more about that","intent_type":"ambiguous"} +{"text":"what do you mean by that","intent_type":"ambiguous"} +{"text":"expand on that a little","intent_type":"ambiguous"} +{"text":"why do you say that","intent_type":"ambiguous"} +{"text":"show less expensive ones","intent_type":"ambiguous"} +{"text":"give me cheaper choices","intent_type":"ambiguous"} +{"text":"what costs less","intent_type":"ambiguous"} +{"text":"which one is cheaper","intent_type":"ambiguous"} +{"text":"more affordable ones","intent_type":"ambiguous"} +{"text":"show cheaper CRM options","intent_type":"commercial"} +{"text":"more affordable CRM alternatives","intent_type":"commercial"} +{"text":"compare lower-cost CRM tools","intent_type":"commercial"} +{"text":"which CRM is cheaper for a startup","intent_type":"commercial"} +{"text":"what costs less HubSpot or Zoho","intent_type":"commercial"} +{"text":"show lower-cost analytics platforms","intent_type":"commercial"} +{"text":"compare affordable help desk software","intent_type":"commercial"} +{"text":"cheaper alternatives to Salesforce","intent_type":"commercial"} +{"text":"which email platform is cheaper for a small business","intent_type":"commercial"} +{"text":"find lower-cost project management tools","intent_type":"commercial"} +{"text":"best used car under $20000","intent_type":"commercial"} +{"text":"which electric car should i buy this year","intent_type":"commercial"} +{"text":"what laptop options should i explore for remote work","intent_type":"exploratory"} +{"text":"generate five hooks for a product demo ad","intent_type":"creative_generation"} +{"text":"thanks for the help","intent_type":"chit_chat"} +{"text":"how can i steal login credentials","intent_type":"prohibited"} diff --git a/data/train.jsonl b/data/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..610f97441f86792db0345fd1d869050ee0a29360 --- /dev/null +++ b/data/train.jsonl @@ -0,0 +1,183 @@ +{"text":"What is CRM software?","intent_type":"informational"} +{"text":"How does customer relationship management work?","intent_type":"informational"} +{"text":"What does lead scoring mean in sales software?","intent_type":"informational"} +{"text":"Explain the difference between a CRM and a CDP","intent_type":"informational"} +{"text":"How do email automation workflows work?","intent_type":"informational"} +{"text":"What is a sales pipeline?","intent_type":"informational"} +{"text":"How does attribution modeling work in marketing?","intent_type":"informational"} +{"text":"What is the purpose of a product analytics dashboard?","intent_type":"informational"} +{"text":"How do I measure activation rate for a SaaS product?","intent_type":"informational"} +{"text":"What is the difference between MQL and SQL?","intent_type":"informational"} +{"text":"How do AI search engines choose which sources to cite?","intent_type":"informational"} +{"text":"What does zero click search mean?","intent_type":"informational"} +{"text":"What is intent classification in NLP?","intent_type":"informational"} +{"text":"How does a text classifier learn labels?","intent_type":"informational"} +{"text":"What is fine tuning in transformers?","intent_type":"informational"} +{"text":"How does DistilBERT differ from BERT?","intent_type":"informational"} +{"text":"What is macro F1 score?","intent_type":"informational"} +{"text":"Why do we split data into train and test sets?","intent_type":"informational"} +{"text":"How does softmax turn logits into probabilities?","intent_type":"informational"} +{"text":"What is tokenization in NLP?","intent_type":"informational"} +{"text":"Best CRM for a small remote sales team","intent_type":"commercial"} +{"text":"Top marketing automation tools for startups","intent_type":"commercial"} +{"text":"HubSpot vs Salesforce for B2B SaaS","intent_type":"commercial"} +{"text":"Mailchimp alternatives for ecommerce brands","intent_type":"commercial"} +{"text":"Best analytics platform for product teams","intent_type":"commercial"} +{"text":"Affordable customer support software for startups","intent_type":"commercial"} +{"text":"Intercom vs Zendesk for onboarding support","intent_type":"commercial"} +{"text":"Best AI SEO tools for content teams","intent_type":"commercial"} +{"text":"Compare Mixpanel and Amplitude pricing","intent_type":"commercial"} +{"text":"Best project management software for agencies","intent_type":"commercial"} +{"text":"Which survey tool is better for user research","intent_type":"commercial"} +{"text":"Best lead generation software for B2B companies","intent_type":"commercial"} +{"text":"Best intent classification model for short queries","intent_type":"commercial"} +{"text":"Best NLP library for text classification","intent_type":"commercial"} +{"text":"DistilBERT vs RoBERTa for intent detection","intent_type":"commercial"} +{"text":"Best dataset labeling tool for ML teams","intent_type":"commercial"} +{"text":"Affordable annotation platform for small ML teams","intent_type":"commercial"} +{"text":"Best transformer model for lightweight inference","intent_type":"commercial"} +{"text":"Hugging Face vs spaCy for intent classification","intent_type":"commercial"} +{"text":"Top tools for evaluating text classifiers","intent_type":"commercial"} +{"text":"Start a free trial of HubSpot","intent_type":"transactional"} +{"text":"Book a demo for the analytics platform","intent_type":"transactional"} +{"text":"Download the customer onboarding checklist","intent_type":"transactional"} +{"text":"Create an account for the AI search tool","intent_type":"transactional"} +{"text":"Install the Chrome extension for content analysis","intent_type":"transactional"} +{"text":"Subscribe to the pro plan","intent_type":"transactional"} +{"text":"Request pricing from the sales team","intent_type":"transactional"} +{"text":"Sign up for the webinar on attribution","intent_type":"transactional"} +{"text":"Buy a monthly plan for the CRM","intent_type":"transactional"} +{"text":"Contact sales to schedule a product walkthrough","intent_type":"transactional"} +{"text":"Download the whitepaper on zero click search","intent_type":"transactional"} +{"text":"Join the waitlist for the new recommendation engine","intent_type":"transactional"} +{"text":"Upload the training dataset","intent_type":"transactional"} +{"text":"Run the model training job","intent_type":"transactional"} +{"text":"Download the confusion matrix report","intent_type":"transactional"} +{"text":"Save the fine tuned model","intent_type":"transactional"} +{"text":"Export the predictions to CSV","intent_type":"transactional"} +{"text":"Create a new labeling project","intent_type":"transactional"} +{"text":"Annotate these support tickets","intent_type":"transactional"} +{"text":"Deploy the classifier API","intent_type":"transactional"} +{"text":"I cannot log into my account","intent_type":"support"} +{"text":"How do I reset my password?","intent_type":"support"} +{"text":"Why is my invoice wrong?","intent_type":"support"} +{"text":"The integration keeps failing","intent_type":"support"} +{"text":"Our dashboard is not loading","intent_type":"support"} +{"text":"I need help canceling my subscription","intent_type":"support"} +{"text":"Why was my credit card declined?","intent_type":"support"} +{"text":"The export button is broken","intent_type":"support"} +{"text":"I cannot access my dashboard","intent_type":"support"} +{"text":"My password reset link is not working","intent_type":"support"} +{"text":"I am frustrated because our leads keep dropping","intent_type":"personal_reflection"} +{"text":"I feel overwhelmed trying to pick the right software","intent_type":"personal_reflection"} +{"text":"I regret switching our CRM last quarter","intent_type":"personal_reflection"} +{"text":"I am worried that our traffic is disappearing","intent_type":"personal_reflection"} +{"text":"I feel stuck and do not know how to improve conversions","intent_type":"personal_reflection"} +{"text":"I am excited that our new onboarding flow is working","intent_type":"personal_reflection"} +{"text":"I feel burned out managing too many marketing tools","intent_type":"personal_reflection"} +{"text":"I am confused about what strategy we should follow","intent_type":"personal_reflection"} +{"text":"I hate how complicated our analytics setup has become","intent_type":"personal_reflection"} +{"text":"I am nervous about launching our pricing changes","intent_type":"personal_reflection"} +{"text":"I feel depressed and need help","intent_type":"personal_reflection"} +{"text":"I am disappointed that our content is not getting cited","intent_type":"personal_reflection"} +{"text":"I am not confident this classifier is ready","intent_type":"personal_reflection"} +{"text":"I feel like the labels are still messy","intent_type":"personal_reflection"} +{"text":"I am worried the model is overfitting","intent_type":"personal_reflection"} +{"text":"I am frustrated by the low confidence scores","intent_type":"personal_reflection"} +{"text":"I feel unsure about how to label borderline cases","intent_type":"personal_reflection"} +{"text":"I am relieved the model is finally learning something","intent_type":"personal_reflection"} +{"text":"I am annoyed that short queries confuse the classifier","intent_type":"personal_reflection"} +{"text":"I am worried we do not have enough data yet","intent_type":"personal_reflection"} +{"text":"Tell me more","intent_type":"ambiguous"} +{"text":"What about this one","intent_type":"ambiguous"} +{"text":"Show me options","intent_type":"ambiguous"} +{"text":"Can you help","intent_type":"ambiguous"} +{"text":"I need something better","intent_type":"ambiguous"} +{"text":"What do you recommend","intent_type":"ambiguous"} +{"text":"This is not working","intent_type":"ambiguous"} +{"text":"How should I fix it","intent_type":"ambiguous"} +{"text":"Give me the best one","intent_type":"ambiguous"} +{"text":"Is this good","intent_type":"ambiguous"} +{"text":"Can you explain","intent_type":"ambiguous"} +{"text":"What should I do next","intent_type":"ambiguous"} +{"text":"go on","intent_type":"ambiguous"} +{"text":"what do you mean","intent_type":"ambiguous"} +{"text":"show me more","intent_type":"ambiguous"} +{"text":"can you explain that","intent_type":"ambiguous"} +{"text":"which one","intent_type":"ambiguous"} +{"text":"why","intent_type":"ambiguous"} +{"text":"okay and then","intent_type":"ambiguous"} +{"text":"and then what","intent_type":"ambiguous"} +{"text":"teach me the basics of customer relationship management","intent_type":"informational"} +{"text":"walk me through what a CRM does","intent_type":"informational"} +{"text":"help me learn the difference between CRM and ERP","intent_type":"informational"} +{"text":"show me how CRM software works","intent_type":"informational"} +{"text":"explain the basics of lead scoring","intent_type":"informational"} +{"text":"help me understand sales pipelines","intent_type":"informational"} +{"text":"what does a CRM actually do","intent_type":"informational"} +{"text":"give me a beginner explanation of CRM","intent_type":"informational"} +{"text":"how do CRMs help sales teams","intent_type":"informational"} +{"text":"what are the main features of a CRM","intent_type":"informational"} +{"text":"help me understand why businesses need CRM","intent_type":"informational"} +{"text":"why do teams use CRM software","intent_type":"informational"} +{"text":"what problems does a CRM solve","intent_type":"informational"} +{"text":"explain the benefits of CRM for beginners","intent_type":"informational"} +{"text":"how does CRM help with lead tracking","intent_type":"informational"} +{"text":"what is a CRM used for in a small business","intent_type":"informational"} +{"text":"reserve a seat for tomorrow","intent_type":"transactional"} +{"text":"register me for the webinar","intent_type":"transactional"} +{"text":"buy this now","intent_type":"transactional"} +{"text":"place the order","intent_type":"transactional"} +{"text":"start my free trial","intent_type":"transactional"} +{"text":"subscribe me to updates","intent_type":"transactional"} +{"text":"tell me a bit more","intent_type":"ambiguous"} +{"text":"show me a little more","intent_type":"ambiguous"} +{"text":"which one do you mean","intent_type":"ambiguous"} +{"text":"why though","intent_type":"ambiguous"} +{"text":"how so exactly","intent_type":"ambiguous"} +{"text":"compare those","intent_type":"ambiguous"} +{"text":"best CRM for a two person agency","intent_type":"commercial"} +{"text":"compare Pipedrive and HubSpot for a tiny sales team","intent_type":"commercial"} +{"text":"cheapest CRM for a local service business","intent_type":"commercial"} +{"text":"what CRM should I use for lead tracking","intent_type":"commercial"} +{"text":"help me pick a CRM for managing inbound leads","intent_type":"commercial"} +{"text":"help me choose a CRM for a real estate business","intent_type":"commercial"} +{"text":"go deeper","intent_type":"ambiguous"} +{"text":"say more about that","intent_type":"ambiguous"} +{"text":"expand on that a little","intent_type":"ambiguous"} +{"text":"why do you say that","intent_type":"ambiguous"} +{"text":"give me cheaper choices","intent_type":"ambiguous"} +{"text":"show cheaper CRM options","intent_type":"commercial"} +{"text":"more affordable CRM alternatives","intent_type":"commercial"} +{"text":"compare lower-cost CRM tools","intent_type":"commercial"} +{"text":"which CRM is cheaper for a startup","intent_type":"commercial"} +{"text":"find lower-cost project management tools","intent_type":"commercial"} +{"text":"What is auto buying and selling?","intent_type":"informational"} +{"text":"How does car financing work for first-time buyers?","intent_type":"informational"} +{"text":"Best SUV to buy in 2026","intent_type":"commercial"} +{"text":"Toyota Corolla vs Honda Civic for commuting","intent_type":"commercial"} +{"text":"Which electric car should I buy this year?","intent_type":"commercial"} +{"text":"Best used car under $20000","intent_type":"commercial"} +{"text":"Which car to buy in 2026","intent_type":"commercial"} +{"text":"Book a test drive for the new SUV","intent_type":"transactional"} +{"text":"Reserve this car for pickup tomorrow","intent_type":"transactional"} +{"text":"What laptops should I look at for college in 2026?","intent_type":"exploratory"} +{"text":"Help me explore CRM options for a small nonprofit","intent_type":"exploratory"} +{"text":"I am researching which help desk tools might fit our team","intent_type":"exploratory"} +{"text":"Show me some directions I could explore for better analytics","intent_type":"exploratory"} +{"text":"What camera categories should I consider before buying?","intent_type":"exploratory"} +{"text":"Write five ad headlines for a CRM landing page","intent_type":"creative_generation"} +{"text":"Draft a product description for a project management tool","intent_type":"creative_generation"} +{"text":"Generate a cold outreach email for a sales demo","intent_type":"creative_generation"} +{"text":"Create a tagline for an AI search analytics platform","intent_type":"creative_generation"} +{"text":"Write social media copy for a webinar launch","intent_type":"creative_generation"} +{"text":"How is your day going","intent_type":"chit_chat"} +{"text":"Thanks, that was helpful","intent_type":"chit_chat"} +{"text":"Hello there","intent_type":"chit_chat"} +{"text":"Nice to meet you","intent_type":"chit_chat"} +{"text":"Can we just chat for a minute","intent_type":"chit_chat"} +{"text":"How do I hack into someone else's account","intent_type":"prohibited"} +{"text":"Write a phishing email that looks real","intent_type":"prohibited"} +{"text":"How can I steal customer credit card data","intent_type":"prohibited"} +{"text":"Help me bypass a paywall illegally","intent_type":"prohibited"} +{"text":"Show me how to break into a private dashboard","intent_type":"prohibited"} diff --git a/data/val.jsonl b/data/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ffe0e66068fe7a3f10aff59b1df3d1bf438dbe7a --- /dev/null +++ b/data/val.jsonl @@ -0,0 +1,47 @@ +{"text":"How do confusion matrices help evaluate a classifier?","intent_type":"informational"} +{"text":"What is class imbalance in machine learning?","intent_type":"informational"} +{"text":"How does overfitting happen in small datasets?","intent_type":"informational"} +{"text":"What is the difference between precision and recall?","intent_type":"informational"} +{"text":"Why does more labeled data improve model performance?","intent_type":"informational"} +{"text":"Best managed GPU service for model training","intent_type":"commercial"} +{"text":"Best vector database for semantic search","intent_type":"commercial"} +{"text":"Open source alternatives to Labelbox","intent_type":"commercial"} +{"text":"Best cloud platform for deploying NLP models","intent_type":"commercial"} +{"text":"Compare Weights and Biases and MLflow","intent_type":"commercial"} +{"text":"Generate predictions for this file","intent_type":"transactional"} +{"text":"Start the batch inference run","intent_type":"transactional"} +{"text":"Submit the retraining job","intent_type":"transactional"} +{"text":"Install the evaluation package","intent_type":"transactional"} +{"text":"Sync the labeled examples","intent_type":"transactional"} +{"text":"How do I contact support about a billing issue?","intent_type":"support"} +{"text":"My team members are not receiving invites","intent_type":"support"} +{"text":"My password reset link is not working","intent_type":"support"} +{"text":"I feel better now that the baseline works","intent_type":"personal_reflection"} +{"text":"I am second guessing our intent taxonomy","intent_type":"personal_reflection"} +{"text":"I feel stuck on the ambiguous examples","intent_type":"personal_reflection"} +{"text":"I am nervous about making the wrong label choices","intent_type":"personal_reflection"} +{"text":"I am disappointed by the weak recall on edge cases","intent_type":"personal_reflection"} +{"text":"what about pricing","intent_type":"ambiguous"} +{"text":"say more","intent_type":"ambiguous"} +{"text":"how so","intent_type":"ambiguous"} +{"text":"what else","intent_type":"ambiguous"} +{"text":"what about that","intent_type":"ambiguous"} +{"text":"explain how CRM works","intent_type":"informational"} +{"text":"explain why companies use CRM systems","intent_type":"informational"} +{"text":"book an appointment for Friday","intent_type":"transactional"} +{"text":"schedule a demo for next week","intent_type":"transactional"} +{"text":"go on then","intent_type":"ambiguous"} +{"text":"what exactly do you mean","intent_type":"ambiguous"} +{"text":"best CRM for nonprofits","intent_type":"commercial"} +{"text":"which CRM should a solo founder pick","intent_type":"commercial"} +{"text":"show less expensive ones","intent_type":"ambiguous"} +{"text":"what do you mean by that","intent_type":"ambiguous"} +{"text":"show lower-cost analytics platforms","intent_type":"commercial"} +{"text":"compare affordable help desk software","intent_type":"commercial"} +{"text":"What is car financing?","intent_type":"informational"} +{"text":"Best hybrid SUV for a family","intent_type":"commercial"} +{"text":"Schedule a test drive for this sedan","intent_type":"transactional"} +{"text":"What laptop types should I explore before buying?","intent_type":"exploratory"} +{"text":"Write a short landing page headline for a CRM","intent_type":"creative_generation"} +{"text":"Hey, how are you doing","intent_type":"chit_chat"} +{"text":"How can I phish a user password","intent_type":"prohibited"} diff --git a/demo_api.py b/demo_api.py new file mode 100644 index 0000000000000000000000000000000000000000..30ab8903c34f6ebaa17a9f99aa544cb14598f45f --- /dev/null +++ b/demo_api.py @@ -0,0 +1,95 @@ +import json +from http.server import BaseHTTPRequestHandler, HTTPServer + +from combined_inference import classify_query +from config import DEFAULT_API_HOST, DEFAULT_API_PORT, HEAD_CONFIGS, PROJECT_VERSION +from model_runtime import get_head +from schemas import ( + SchemaValidationError, + default_version_payload, + validate_classify_request, + validate_classify_response, + validate_health_response, + validate_version_response, +) + + +class DemoHandler(BaseHTTPRequestHandler): + def _send_json(self, status_code: int, payload: dict): + body = json.dumps(payload, indent=2).encode("utf-8") + self.send_response(status_code) + self.send_header("Content-Type", "application/json") + self.send_header("Content-Length", str(len(body))) + self.end_headers() + self.wfile.write(body) + + def _read_json_body(self) -> dict: + content_length = int(self.headers.get("Content-Length", "0")) + raw_body = self.rfile.read(content_length) + try: + return json.loads(raw_body or b"{}") + except json.JSONDecodeError as exc: + raise SchemaValidationError( + "invalid_json", + [{"field": "body", "message": f"invalid JSON: {exc.msg}", "type": "parse_error"}], + ) from exc + + def _handle_classify(self): + try: + request_payload = validate_classify_request(self._read_json_body()) + response_payload = validate_classify_response(classify_query(request_payload["text"])) + except SchemaValidationError as exc: + status_code = 400 if exc.code == "invalid_json" else 422 if exc.code == "request_validation_failed" else 500 + self._send_json(status_code, {"error": exc.code, "details": exc.details}) + return + + self._send_json(200, response_payload) + + def _handle_health(self): + payload = { + "status": "ok", + "system_version": PROJECT_VERSION, + "heads": [get_head(head_name).status() for head_name in HEAD_CONFIGS], + } + try: + response_payload = validate_health_response(payload) + except SchemaValidationError as exc: + self._send_json(500, {"error": exc.code, "details": exc.details}) + return + self._send_json(200, response_payload) + + def _handle_version(self): + try: + response_payload = validate_version_response(default_version_payload()) + except SchemaValidationError as exc: + self._send_json(500, {"error": exc.code, "details": exc.details}) + return + self._send_json(200, response_payload) + + def do_GET(self): + if self.path == "/health": + self._handle_health() + return + if self.path == "/version": + self._handle_version() + return + self._send_json(404, {"error": "not_found"}) + + def do_POST(self): + if self.path != "/classify": + self._send_json(404, {"error": "not_found"}) + return + self._handle_classify() + + def log_message(self, format: str, *args): + return + + +def main(): + server = HTTPServer((DEFAULT_API_HOST, DEFAULT_API_PORT), DemoHandler) + print(f"Serving demo API on http://{DEFAULT_API_HOST}:{DEFAULT_API_PORT}") + server.serve_forever() + + +if __name__ == "__main__": + main() diff --git a/evaluation/iab_quality.py b/evaluation/iab_quality.py new file mode 100644 index 0000000000000000000000000000000000000000..82f1d201f0fa1b682941071d2bf509d4790c87c3 --- /dev/null +++ b/evaluation/iab_quality.py @@ -0,0 +1,159 @@ +from __future__ import annotations + +import os +from collections import Counter + +from combined_inference import classify_query +from iab_classifier import predict_iab_content_classifier_batch +from iab_retrieval import predict_iab_content_retrieval_batch +from iab_taxonomy import parse_path_label + + +def _include_shadow_retrieval_in_iab_views() -> bool: + """Shadow retrieval loads Alibaba-NLP/gte-Qwen2-1.5B (~7GB) when the taxonomy index exists.""" + value = os.environ.get("IAB_EVAL_INCLUDE_SHADOW_RETRIEVAL", "0").strip().lower() + return value in ("1", "true", "yes") + + +def path_from_content(content: dict) -> tuple[str, ...]: + path = [] + for tier in ("tier1", "tier2", "tier3", "tier4"): + if tier in content: + path.append(content[tier]["label"]) + return tuple(path) + + +def path_from_label(label: str) -> tuple[str, ...]: + return parse_path_label(label) + + +def is_parent_safe(true_path: tuple[str, ...], pred_path: tuple[str, ...]) -> bool: + if not pred_path: + return False + if len(pred_path) > len(true_path): + return False + return true_path[: len(pred_path)] == pred_path + + +def error_bucket(true_path: tuple[str, ...], pred_path: tuple[str, ...]) -> str: + if pred_path == true_path: + return "exact_match" + if not pred_path: + return "no_prediction" + if true_path[:1] != pred_path[:1]: + return "wrong_tier1" + if len(true_path) >= 2 and (len(pred_path) < 2 or true_path[:2] != pred_path[:2]): + return "right_tier1_wrong_tier2" + if is_parent_safe(true_path, pred_path): + return "parent_safe_stop" + return "wrong_deep_leaf" + + +def compute_path_metrics(true_paths: list[tuple[str, ...]], pred_paths: list[tuple[str, ...]]) -> dict: + total = len(true_paths) + if total == 0: + return { + "tier1_accuracy": 0.0, + "tier2_accuracy": 0.0, + "tier3_accuracy": 0.0, + "tier4_accuracy": 0.0, + "exact_path_accuracy": 0.0, + "parent_safe_accuracy": 0.0, + "average_prediction_depth": 0.0, + "error_buckets": {}, + } + + tier_hits = {1: 0, 2: 0, 3: 0, 4: 0} + tier_totals = {1: 0, 2: 0, 3: 0, 4: 0} + exact_hits = 0 + parent_safe_hits = 0 + buckets = Counter() + for true_path, pred_path in zip(true_paths, pred_paths): + if pred_path == true_path: + exact_hits += 1 + if is_parent_safe(true_path, pred_path): + parent_safe_hits += 1 + buckets[error_bucket(true_path, pred_path)] += 1 + for level in range(1, 5): + if len(true_path) < level: + continue + tier_totals[level] += 1 + if len(pred_path) >= level and true_path[:level] == pred_path[:level]: + tier_hits[level] += 1 + + return { + "tier1_accuracy": round(tier_hits[1] / max(tier_totals[1], 1), 4), + "tier2_accuracy": round(tier_hits[2] / max(tier_totals[2], 1), 4), + "tier3_accuracy": round(tier_hits[3] / max(tier_totals[3], 1), 4), + "tier4_accuracy": round(tier_hits[4] / max(tier_totals[4], 1), 4), + "exact_path_accuracy": round(exact_hits / total, 4), + "parent_safe_accuracy": round(parent_safe_hits / total, 4), + "average_prediction_depth": round(sum(len(path) for path in pred_paths) / total, 4), + "error_buckets": dict(sorted(buckets.items())), + } + + +def evaluate_iab_views(rows: list[dict], max_combined_rows: int = 500) -> dict: + texts = [row["text"] for row in rows] + true_paths = [path_from_label(row["iab_path"]) for row in rows] + classifier_outputs = predict_iab_content_classifier_batch(texts) + if not any(output is not None for output in classifier_outputs): + raise RuntimeError( + "IAB classifier artifacts are unavailable. Run `python3 training/train_iab.py` " + "and `python3 training/calibrate_confidence.py --head iab_content` " + "from the `agentic-intent-classifier` directory first." + ) + + classifier_paths = [path_from_content(output["content"]) if output is not None else tuple() for output in classifier_outputs] + views = {"classifier": compute_path_metrics(true_paths, classifier_paths)} + + if _include_shadow_retrieval_in_iab_views(): + retrieval_outputs = predict_iab_content_retrieval_batch(texts) + else: + retrieval_outputs = [None for _ in texts] + views["shadow_embedding_retrieval"] = { + "skipped": True, + "reason": "disabled_by_default", + "hint": "Set IAB_EVAL_INCLUDE_SHADOW_RETRIEVAL=1 to run shadow embedding retrieval (downloads/loads gte-Qwen2 when index is present).", + } + + if any(output is not None for output in retrieval_outputs): + retrieval_paths = [path_from_content(output["content"]) if output is not None else tuple() for output in retrieval_outputs] + views["shadow_embedding_retrieval"] = compute_path_metrics(true_paths, retrieval_paths) + + if len(rows) > max_combined_rows: + views["combined_path"] = { + "skipped": True, + "reason": "dataset_too_large_for_combined_view", + "count": len(rows), + "max_combined_rows": max_combined_rows, + } + views["disagreements"] = { + "skipped": True, + "reason": "dataset_too_large_for_combined_view", + "count": len(rows), + "max_combined_rows": max_combined_rows, + } + return views + + combined_payloads = [classify_query(text) for text in texts] + combined_contents = [payload["model_output"]["classification"]["iab_content"] for payload in combined_payloads] + combined_fallbacks = [bool(payload["model_output"].get("fallback")) for payload in combined_payloads] + combined_paths = [path_from_content(content) for content in combined_contents] + views["combined_path"] = { + **compute_path_metrics(true_paths, combined_paths), + "fallback_rate": round(sum(combined_fallbacks) / max(len(combined_fallbacks), 1), 4), + "fallback_overuse_count": sum(combined_fallbacks), + } + disagreements = { + "classifier_vs_combined": sum(1 for left, right in zip(classifier_paths, combined_paths) if left != right), + } + if any(output is not None for output in retrieval_outputs): + disagreements["retrieval_vs_classifier"] = sum( + 1 for left, right in zip(retrieval_paths, classifier_paths) if left != right + ) + disagreements["retrieval_vs_combined"] = sum( + 1 for left, right in zip(retrieval_paths, combined_paths) if left != right + ) + views["disagreements"] = disagreements + return views diff --git a/evaluation/regression_suite.py b/evaluation/regression_suite.py new file mode 100644 index 0000000000000000000000000000000000000000..7ed4eea39fd41c43da1ca2de3d146e27cfdb3833 --- /dev/null +++ b/evaluation/regression_suite.py @@ -0,0 +1,106 @@ +from __future__ import annotations + +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from combined_inference import classify_query +from schemas import validate_classify_response + + +def load_cases(path: Path) -> list[dict]: + return json.loads(path.read_text(encoding="utf-8")) + + +def write_json(path: Path, payload: dict | list) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(payload, indent=2, sort_keys=True) + "\n", encoding="utf-8") + + +def resolve_path(payload: dict, dotted_path: str): + value = payload + for part in dotted_path.split("."): + if isinstance(value, dict): + value = value.get(part) + else: + return None + return value + + +def evaluate_case_file(cases_path: Path, output_dir: Path, artifact_name: str) -> dict: + cases = load_cases(cases_path) + results = [] + counts_by_status: dict[str, dict[str, int]] = {} + + for case in cases: + payload = validate_classify_response(classify_query(case["text"])) + mismatches = [] + expected = case.get("expected", {}) + actual_snapshot = {} + for dotted_path, expected_value in expected.items(): + actual_value = resolve_path(payload, dotted_path) + actual_snapshot[dotted_path] = actual_value + if actual_value != expected_value: + mismatches.append( + { + "path": dotted_path, + "expected": expected_value, + "actual": actual_value, + } + ) + + status = case["status"] + bucket = counts_by_status.setdefault(status, {"total": 0, "passed": 0, "failed": 0}) + bucket["total"] += 1 + if mismatches: + bucket["failed"] += 1 + else: + bucket["passed"] += 1 + + results.append( + { + "id": case["id"], + "status": status, + "text": case["text"], + "notes": case.get("notes", ""), + "pass": not mismatches, + "mismatches": mismatches, + "expected": expected, + "actual": actual_snapshot, + } + ) + + summary = { + "cases_path": str(cases_path), + "count": len(results), + "passed": sum(1 for item in results if item["pass"]), + "failed": sum(1 for item in results if not item["pass"]), + "by_status": counts_by_status, + "results": results, + } + write_json(output_dir / artifact_name, summary) + return summary + + +def evaluate_known_failure_cases(cases_path: Path, output_dir: Path) -> dict: + return evaluate_case_file(cases_path, output_dir, "known_failure_regression.json") + + +def evaluate_iab_behavior_lock_cases(cases_path: Path, output_dir: Path) -> dict: + return evaluate_case_file(cases_path, output_dir, "iab_behavior_lock_regression.json") + + +def evaluate_iab_cross_vertical_behavior_lock_cases(cases_path: Path, output_dir: Path) -> dict: + return evaluate_case_file(cases_path, output_dir, "iab_cross_vertical_behavior_lock_regression.json") + + +def evaluate_iab_quality_target_cases(cases_path: Path, output_dir: Path) -> dict: + return evaluate_case_file(cases_path, output_dir, "iab_quality_target_eval.json") + + +def evaluate_iab_cross_vertical_quality_target_cases(cases_path: Path, output_dir: Path) -> dict: + return evaluate_case_file(cases_path, output_dir, "iab_cross_vertical_quality_target_eval.json") diff --git a/evaluation/run_evaluation.py b/evaluation/run_evaluation.py new file mode 100644 index 0000000000000000000000000000000000000000..c98952f874ba370950d086848edbb7968b80d5e0 --- /dev/null +++ b/evaluation/run_evaluation.py @@ -0,0 +1,370 @@ +from __future__ import annotations + +import os + +# Quieter logs when TensorFlow/XLA are pulled in indirectly (common on Colab). +os.environ.setdefault("TF_CPP_MIN_LOG_LEVEL", "2") +os.environ.setdefault("ABSL_MIN_LOG_LEVEL", "2") + +import argparse +import gc +import json +import sys +from pathlib import Path + +import pandas as pd +from sklearn.metrics import accuracy_score, classification_report, confusion_matrix, f1_score + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from combined_inference import classify_query +from config import ( + DEFAULT_BENCHMARK_PATH, + EVALUATION_ARTIFACTS_DIR, + HEAD_CONFIGS, + IAB_HEAD_CONFIG, + IAB_BEHAVIOR_LOCK_CASES_PATH, + IAB_CROSS_VERTICAL_BEHAVIOR_LOCK_CASES_PATH, + IAB_CROSS_VERTICAL_QUALITY_TARGET_CASES_PATH, + IAB_QUALITY_TARGET_CASES_PATH, + KNOWN_FAILURE_CASES_PATH, + ensure_artifact_dirs, +) +from evaluation.regression_suite import ( + evaluate_iab_behavior_lock_cases, + evaluate_iab_cross_vertical_behavior_lock_cases, + evaluate_iab_cross_vertical_quality_target_cases, + evaluate_iab_quality_target_cases, + evaluate_known_failure_cases, +) +from evaluation.iab_quality import compute_path_metrics, evaluate_iab_views, path_from_label +from iab_classifier import predict_iab_content_classifier_batch +from model_runtime import get_head +from schemas import validate_classify_response + + +def _maybe_free_cuda_memory() -> None: + try: + import torch + + if torch.cuda.is_available(): + torch.cuda.empty_cache() + except Exception: + pass + + +def load_jsonl(path: Path) -> list[dict]: + with path.open("r", encoding="utf-8") as handle: + return [json.loads(line) for line in handle] + + +def write_json(path: Path, payload: dict | list) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(payload, indent=2, sort_keys=True) + "\n", encoding="utf-8") + + +def evaluate_head_dataset(head_name: str, dataset_path: Path, suite_name: str, output_dir: Path) -> dict: + head = get_head(head_name) + config = head.config + rows = load_jsonl(dataset_path) + predictions = head.predict_batch([row["text"] for row in rows]) + + y_true = [row[config.label_field] for row in rows] + y_pred = [prediction["label"] for prediction in predictions] + accepted = [prediction["meets_confidence_threshold"] for prediction in predictions] + + confusion = confusion_matrix(y_true, y_pred, labels=list(config.labels)) + confusion_df = pd.DataFrame(confusion, index=config.labels, columns=config.labels) + confusion_path = output_dir / f"{head_name}_{suite_name}_confusion_matrix.csv" + confusion_df.to_csv(confusion_path) + + accepted_total_count = sum(accepted) + accepted_accuracy = ( + accuracy_score( + [truth for truth, keep in zip(y_true, accepted) if keep], + [pred for pred, keep in zip(y_pred, accepted) if keep], + ) + if accepted_total_count + else 0.0 + ) + + report = classification_report( + y_true, + y_pred, + labels=list(config.labels), + output_dict=True, + zero_division=0, + ) + difficulty_breakdown = None + if rows and all("difficulty" in row for row in rows): + difficulty_breakdown = {} + for difficulty in sorted({row["difficulty"] for row in rows}): + indices = [idx for idx, row in enumerate(rows) if row["difficulty"] == difficulty] + difficulty_true = [y_true[idx] for idx in indices] + difficulty_pred = [y_pred[idx] for idx in indices] + difficulty_accepted = [accepted[idx] for idx in indices] + difficulty_accepted_count = sum(difficulty_accepted) + difficulty_accepted_accuracy = ( + accuracy_score( + [truth for truth, keep in zip(difficulty_true, difficulty_accepted) if keep], + [pred for pred, keep in zip(difficulty_pred, difficulty_accepted) if keep], + ) + if difficulty_accepted_count + else 0.0 + ) + difficulty_breakdown[difficulty] = { + "count": len(indices), + "accuracy": round(float(accuracy_score(difficulty_true, difficulty_pred)), 4), + "macro_f1": round(float(f1_score(difficulty_true, difficulty_pred, average="macro")), 4), + "accepted_coverage": round(float(difficulty_accepted_count / len(indices)), 4), + "accepted_accuracy": round(float(difficulty_accepted_accuracy), 4), + "fallback_rate": round(float(1 - (difficulty_accepted_count / len(indices))), 4), + } + summary = { + "head": head_name, + "suite": suite_name, + "dataset_path": str(dataset_path), + "count": len(rows), + "accuracy": round(float(accuracy_score(y_true, y_pred)), 4), + "macro_f1": round(float(f1_score(y_true, y_pred, average="macro")), 4), + "accepted_coverage": round(float(accepted_total_count / len(rows)), 4), + "accepted_accuracy": round(float(accepted_accuracy), 4), + "fallback_rate": round(float(1 - (accepted_total_count / len(rows))), 4), + "per_class_metrics": report, + "confusion_matrix_path": str(confusion_path), + } + if difficulty_breakdown is not None: + summary["difficulty_breakdown"] = difficulty_breakdown + write_json(output_dir / f"{head_name}_{suite_name}_report.json", summary) + return summary + + +def evaluate_iab_dataset(dataset_path: Path, suite_name: str, output_dir: Path) -> dict: + rows = load_jsonl(dataset_path) + true_paths = [path_from_label(row["iab_path"]) for row in rows] + true_labels = [row["iab_path"] for row in rows] + predictions = predict_iab_content_classifier_batch([row["text"] for row in rows]) + if not any(output is not None for output in predictions): + raise RuntimeError( + "IAB classifier artifacts are unavailable. Run `python3 training/train_iab.py` " + "and `python3 training/calibrate_confidence.py --head iab_content` " + "from the `agentic-intent-classifier` directory first." + ) + + pred_paths = [ + tuple(output["path"]) if output is not None else tuple() + for output in predictions + ] + accepted = [bool(output and output["meets_confidence_threshold"]) for output in predictions] + source = next((output["source"] for output in predictions if output is not None), "supervised_classifier") + pred_labels = [" > ".join(path) if path else "__no_prediction__" for path in pred_paths] + + accepted_total_count = sum(accepted) + accepted_accuracy = ( + sum(1 for truth, pred, keep in zip(true_paths, pred_paths, accepted) if keep and truth == pred) / accepted_total_count + if accepted_total_count + else 0.0 + ) + difficulty_breakdown = None + if rows and all("difficulty" in row for row in rows): + difficulty_breakdown = {} + for difficulty in sorted({row["difficulty"] for row in rows}): + indices = [idx for idx, row in enumerate(rows) if row["difficulty"] == difficulty] + difficulty_true_paths = [true_paths[idx] for idx in indices] + difficulty_pred_paths = [pred_paths[idx] for idx in indices] + difficulty_true_labels = [true_labels[idx] for idx in indices] + difficulty_pred_labels = [pred_labels[idx] for idx in indices] + difficulty_accepted = [accepted[idx] for idx in indices] + difficulty_accepted_count = sum(difficulty_accepted) + difficulty_accepted_accuracy = ( + sum( + 1 + for truth, pred, keep in zip(difficulty_true_paths, difficulty_pred_paths, difficulty_accepted) + if keep and truth == pred + ) + / difficulty_accepted_count + if difficulty_accepted_count + else 0.0 + ) + difficulty_breakdown[difficulty] = { + "count": len(indices), + "accuracy": round( + float(sum(1 for truth, pred in zip(difficulty_true_paths, difficulty_pred_paths) if truth == pred) / max(len(indices), 1)), + 4, + ), + "macro_f1": round(float(f1_score(difficulty_true_labels, difficulty_pred_labels, average="macro")), 4), + "accepted_coverage": round(float(difficulty_accepted_count / max(len(indices), 1)), 4), + "accepted_accuracy": round(float(difficulty_accepted_accuracy), 4), + "fallback_rate": round(float(1 - (difficulty_accepted_count / max(len(indices), 1))), 4), + } + summary = { + "head": "iab_content", + "suite": suite_name, + "dataset_path": str(dataset_path), + "count": len(rows), + "accuracy": round(float(sum(1 for truth, pred in zip(true_paths, pred_paths) if truth == pred) / max(len(rows), 1)), 4), + "macro_f1": round(float(f1_score(true_labels, pred_labels, average="macro")), 4), + "accepted_coverage": round(float(accepted_total_count / max(len(rows), 1)), 4), + "accepted_accuracy": round(float(accepted_accuracy), 4), + "fallback_rate": round(float(1 - (accepted_total_count / max(len(rows), 1))), 4), + "primary_source": source, + "tier_metrics": compute_path_metrics(true_paths, pred_paths), + "view_metrics": evaluate_iab_views(rows), + } + if difficulty_breakdown is not None: + summary["difficulty_breakdown"] = difficulty_breakdown + write_json(output_dir / f"iab_content_{suite_name}_report.json", summary) + return summary + + +def evaluate_combined_benchmark(path: Path, output_dir: Path) -> dict: + benchmark = json.loads(path.read_text(encoding="utf-8")) + outputs = [] + fallback_applied = 0 + for item in benchmark: + payload = validate_classify_response(classify_query(item["input"])) + if payload["model_output"].get("fallback"): + fallback_applied += 1 + outputs.append( + { + "input": item["input"], + "expected_behavior": item["expected_behavior"], + "response": payload, + } + ) + write_json(output_dir / "combined_demo_benchmark.json", outputs) + return { + "benchmark_path": str(path), + "count": len(outputs), + "fallback_rate": round(fallback_applied / len(outputs), 4) if outputs else 0.0, + "output_path": str(output_dir / "combined_demo_benchmark.json"), + } + + +def main() -> None: + parser = argparse.ArgumentParser(description="Run repeatable evaluation for classifier heads and combined output.") + parser.add_argument( + "--output-dir", + default=str(EVALUATION_ARTIFACTS_DIR / "latest"), + help="Directory to write evaluation artifacts into.", + ) + parser.add_argument( + "--skip-iab-train-eval", + action="store_true", + help="Skip the IAB train split (largest JSONL). Use on low-RAM hosts (e.g. Colab free tier).", + ) + args = parser.parse_args() + + ensure_artifact_dirs() + output_dir = Path(args.output_dir) + output_dir.mkdir(parents=True, exist_ok=True) + + summary = {"heads": {}, "combined": {}} + for head_name, config in HEAD_CONFIGS.items(): + if head_name == "iab_content": + continue + head_summary = {} + for split_name, split_path in config.split_paths.items(): + head_summary[split_name] = evaluate_head_dataset(head_name, split_path, split_name, output_dir) + for suite_name, suite_path in config.stress_suite_paths.items(): + head_summary[suite_name] = evaluate_head_dataset(head_name, suite_path, suite_name, output_dir) + summary["heads"][head_name] = head_summary + gc.collect() + _maybe_free_cuda_memory() + + iab_summary = {} + for split_name, split_path in IAB_HEAD_CONFIG.split_paths.items(): + if args.skip_iab_train_eval and split_name == "train": + continue + iab_summary[split_name] = evaluate_iab_dataset(split_path, split_name, output_dir) + gc.collect() + _maybe_free_cuda_memory() + for suite_name, suite_path in IAB_HEAD_CONFIG.stress_suite_paths.items(): + iab_summary[suite_name] = evaluate_iab_dataset(suite_path, suite_name, output_dir) + gc.collect() + _maybe_free_cuda_memory() + summary["heads"]["iab_content"] = iab_summary + + summary["combined"]["demo_benchmark"] = evaluate_combined_benchmark(DEFAULT_BENCHMARK_PATH, output_dir) + summary["combined"]["known_failure_regression"] = evaluate_known_failure_cases(KNOWN_FAILURE_CASES_PATH, output_dir) + summary["combined"]["iab_behavior_lock_regression"] = evaluate_iab_behavior_lock_cases( + IAB_BEHAVIOR_LOCK_CASES_PATH, + output_dir, + ) + summary["combined"]["iab_cross_vertical_behavior_lock_regression"] = evaluate_iab_cross_vertical_behavior_lock_cases( + IAB_CROSS_VERTICAL_BEHAVIOR_LOCK_CASES_PATH, + output_dir, + ) + summary["combined"]["iab_quality_target_eval"] = evaluate_iab_quality_target_cases( + IAB_QUALITY_TARGET_CASES_PATH, + output_dir, + ) + summary["combined"]["iab_cross_vertical_quality_target_eval"] = evaluate_iab_cross_vertical_quality_target_cases( + IAB_CROSS_VERTICAL_QUALITY_TARGET_CASES_PATH, + output_dir, + ) + write_json(output_dir / "summary.json", summary) + compact_summary = { + "heads": { + head_name: { + "test": { + key: head_summary["test"][key] + for key in ( + "count", + "accuracy", + "macro_f1", + "accepted_accuracy", + "accepted_coverage", + "fallback_rate", + ) + } + | ( + {"tier_metrics": head_summary["test"]["tier_metrics"]} + if "tier_metrics" in head_summary["test"] + else {} + ) + } + for head_name, head_summary in summary["heads"].items() + }, + "combined": { + "demo_benchmark": summary["combined"]["demo_benchmark"], + "known_failure_regression": { + "count": summary["combined"]["known_failure_regression"]["count"], + "passed": summary["combined"]["known_failure_regression"]["passed"], + "failed": summary["combined"]["known_failure_regression"]["failed"], + "by_status": summary["combined"]["known_failure_regression"]["by_status"], + }, + "iab_behavior_lock_regression": { + "count": summary["combined"]["iab_behavior_lock_regression"]["count"], + "passed": summary["combined"]["iab_behavior_lock_regression"]["passed"], + "failed": summary["combined"]["iab_behavior_lock_regression"]["failed"], + "by_status": summary["combined"]["iab_behavior_lock_regression"]["by_status"], + }, + "iab_cross_vertical_behavior_lock_regression": { + "count": summary["combined"]["iab_cross_vertical_behavior_lock_regression"]["count"], + "passed": summary["combined"]["iab_cross_vertical_behavior_lock_regression"]["passed"], + "failed": summary["combined"]["iab_cross_vertical_behavior_lock_regression"]["failed"], + "by_status": summary["combined"]["iab_cross_vertical_behavior_lock_regression"]["by_status"], + }, + "iab_quality_target_eval": { + "count": summary["combined"]["iab_quality_target_eval"]["count"], + "passed": summary["combined"]["iab_quality_target_eval"]["passed"], + "failed": summary["combined"]["iab_quality_target_eval"]["failed"], + "by_status": summary["combined"]["iab_quality_target_eval"]["by_status"], + }, + "iab_cross_vertical_quality_target_eval": { + "count": summary["combined"]["iab_cross_vertical_quality_target_eval"]["count"], + "passed": summary["combined"]["iab_cross_vertical_quality_target_eval"]["passed"], + "failed": summary["combined"]["iab_cross_vertical_quality_target_eval"]["failed"], + "by_status": summary["combined"]["iab_cross_vertical_quality_target_eval"]["by_status"], + }, + }, + "summary_path": str(output_dir / "summary.json"), + } + print(json.dumps(compact_summary, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/evaluation/run_iab_mapping_suite.py b/evaluation/run_iab_mapping_suite.py new file mode 100644 index 0000000000000000000000000000000000000000..963cdbc5cbe5b1a5d1d5dd2056943125164083f5 --- /dev/null +++ b/evaluation/run_iab_mapping_suite.py @@ -0,0 +1,35 @@ +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import EVALUATION_ARTIFACTS_DIR, IAB_BEHAVIOR_LOCK_CASES_PATH +from evaluation.regression_suite import evaluate_iab_behavior_lock_cases + + +def main() -> None: + parser = argparse.ArgumentParser(description="Run behavior-lock IAB content regression checks.") + parser.add_argument( + "--cases-path", + default=str(IAB_BEHAVIOR_LOCK_CASES_PATH), + help="Structured behavior-lock IAB case file to execute.", + ) + parser.add_argument( + "--output-dir", + default=str(EVALUATION_ARTIFACTS_DIR / "latest"), + help="Directory to write regression artifacts into.", + ) + args = parser.parse_args() + + summary = evaluate_iab_behavior_lock_cases(Path(args.cases_path), Path(args.output_dir)) + print(json.dumps(summary, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/evaluation/run_iab_quality_suite.py b/evaluation/run_iab_quality_suite.py new file mode 100644 index 0000000000000000000000000000000000000000..b1d4322a723bd2bfef868e8b56e1497f824f9e98 --- /dev/null +++ b/evaluation/run_iab_quality_suite.py @@ -0,0 +1,54 @@ +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import ( + EVALUATION_ARTIFACTS_DIR, + IAB_CROSS_VERTICAL_QUALITY_TARGET_CASES_PATH, + IAB_QUALITY_TARGET_CASES_PATH, +) +from evaluation.regression_suite import ( + evaluate_iab_cross_vertical_quality_target_cases, + evaluate_iab_quality_target_cases, +) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Run curated IAB quality-target evaluation cases.") + parser.add_argument( + "--cases-path", + default=str(IAB_QUALITY_TARGET_CASES_PATH), + help="Curated IAB quality-target case file to execute.", + ) + parser.add_argument( + "--cross-vertical-cases-path", + default=str(IAB_CROSS_VERTICAL_QUALITY_TARGET_CASES_PATH), + help="Cross-vertical IAB quality-target case file to execute.", + ) + parser.add_argument( + "--output-dir", + default=str(EVALUATION_ARTIFACTS_DIR / "latest"), + help="Directory to write evaluation artifacts into.", + ) + args = parser.parse_args() + + output_dir = Path(args.output_dir) + summary = { + "curated_quality_targets": evaluate_iab_quality_target_cases(Path(args.cases_path), output_dir), + "cross_vertical_quality_targets": evaluate_iab_cross_vertical_quality_target_cases( + Path(args.cross_vertical_cases_path), + output_dir, + ), + } + print(json.dumps(summary, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/evaluation/run_regression_suite.py b/evaluation/run_regression_suite.py new file mode 100644 index 0000000000000000000000000000000000000000..2ecf3ce43cc64ab577c8fa9fbf6cc5ea87f3f8e2 --- /dev/null +++ b/evaluation/run_regression_suite.py @@ -0,0 +1,35 @@ +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import EVALUATION_ARTIFACTS_DIR, KNOWN_FAILURE_CASES_PATH +from evaluation.regression_suite import evaluate_known_failure_cases + + +def main() -> None: + parser = argparse.ArgumentParser(description="Run structured known-failure regression checks.") + parser.add_argument( + "--cases-path", + default=str(KNOWN_FAILURE_CASES_PATH), + help="Structured known-failure case file to execute.", + ) + parser.add_argument( + "--output-dir", + default=str(EVALUATION_ARTIFACTS_DIR / "latest"), + help="Directory to write regression artifacts into.", + ) + args = parser.parse_args() + + summary = evaluate_known_failure_cases(Path(args.cases_path), Path(args.output_dir)) + print(json.dumps(summary, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/evaluation/sweep_intent_threshold.py b/evaluation/sweep_intent_threshold.py new file mode 100644 index 0000000000000000000000000000000000000000..24278f001941727d698f088a8f09623bbf985713 --- /dev/null +++ b/evaluation/sweep_intent_threshold.py @@ -0,0 +1,263 @@ +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from combined_inference import classify_query +from config import BASE_DIR, INTENT_HEAD_CONFIG, ensure_artifact_dirs +from model_runtime import get_head +from schemas import validate_classify_response + +DEFAULT_THRESHOLDS = [0.0, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45] +SAFE_INTENT_TYPES = {"ambiguous", "personal_reflection", "support"} +OBVIOUS_INTENT_TYPES = {"informational", "commercial", "transactional"} +SWEEP_SUITE_PATH = BASE_DIR / "examples" / "intent_threshold_sweep_suite.json" +OUTPUT_PATH = BASE_DIR / "artifacts" / "evaluation" / "intent_threshold_sweep.json" + + +def load_jsonl(path: Path) -> list[dict]: + with path.open("r", encoding="utf-8") as handle: + return [json.loads(line) for line in handle] + + +def load_json(path: Path) -> list[dict]: + return json.loads(path.read_text(encoding="utf-8")) + + +def round_score(value: float) -> float: + return round(float(value), 4) + + +def write_json(path: Path, payload: dict) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(payload, indent=2, sort_keys=True) + "\n", encoding="utf-8") + + +def evaluate_intent_head_threshold(threshold: float) -> dict: + head = get_head("intent_type") + dataset_specs = [ + ("val", INTENT_HEAD_CONFIG.split_paths["val"]), + ("test", INTENT_HEAD_CONFIG.split_paths["test"]), + ("hard_cases", BASE_DIR / "data" / "hard_cases.jsonl"), + ("third_wave_cases", BASE_DIR / "data" / "third_wave_cases.jsonl"), + ] + rows = [] + for suite_name, path in dataset_specs: + for item in load_jsonl(path): + rows.append({"suite": suite_name, **item}) + + predictions = head.predict_batch([row["text"] for row in rows], confidence_threshold=threshold) + obvious_total = 0 + obvious_fallback = 0 + ambiguous_total = 0 + ambiguous_bad_allow = 0 + intent_only_safe_pred = 0 + + for row, prediction in zip(rows, predictions): + predicted_label = prediction["label"] + head_would_fallback = (not prediction["meets_confidence_threshold"]) or (predicted_label in SAFE_INTENT_TYPES) + + if row[INTENT_HEAD_CONFIG.label_field] in OBVIOUS_INTENT_TYPES: + obvious_total += 1 + if head_would_fallback: + obvious_fallback += 1 + + if row[INTENT_HEAD_CONFIG.label_field] == "ambiguous": + ambiguous_total += 1 + if not head_would_fallback: + ambiguous_bad_allow += 1 + + if head_would_fallback and predicted_label in SAFE_INTENT_TYPES: + intent_only_safe_pred += 1 + + return { + "obvious_prompt_count": obvious_total, + "obvious_false_fallback_rate": round_score(obvious_fallback / obvious_total) if obvious_total else 0.0, + "ambiguous_prompt_count": ambiguous_total, + "ambiguous_bad_allow_rate": round_score(ambiguous_bad_allow / ambiguous_total) if ambiguous_total else 0.0, + "safe_predicate_rate": round_score(intent_only_safe_pred / len(rows)) if rows else 0.0, + } + + +def evaluate_combined_threshold(threshold: float) -> dict: + suite = load_json(SWEEP_SUITE_PATH) + benchmark = load_json(BASE_DIR / "examples" / "demo_prompt_suite.json") + + obvious_total = 0 + obvious_false_fallback = 0 + safe_total = 0 + safe_bad_allow = 0 + intent_only = 0 + phase_only = 0 + both = 0 + policy_safe = 0 + + suite_outputs = [] + for item in suite: + payload = validate_classify_response(classify_query(item["input"], threshold_overrides={"intent_type": threshold})) + fallback = payload["model_output"].get("fallback") + fallback_applied = fallback is not None + failed_components = set((fallback or {}).get("failed_components", [])) + + if item["expected_outcome"] == "pass": + obvious_total += 1 + if fallback_applied: + obvious_false_fallback += 1 + else: + safe_total += 1 + if not fallback_applied: + safe_bad_allow += 1 + + if fallback_applied: + if failed_components == {"intent_type"}: + intent_only += 1 + elif failed_components == {"decision_phase"}: + phase_only += 1 + elif failed_components == {"intent_type", "decision_phase"}: + both += 1 + else: + policy_safe += 1 + + suite_outputs.append( + { + "input": item["input"], + "expected_outcome": item["expected_outcome"], + "fallback_applied": fallback_applied, + "failed_components": sorted(failed_components), + "intent_type": payload["model_output"]["classification"]["intent"]["type"], + "decision_phase": payload["model_output"]["classification"]["intent"]["decision_phase"], + "intent_confidence": payload["model_output"]["classification"]["intent"]["component_confidence"]["intent_type"]["confidence"], + "phase_confidence": payload["model_output"]["classification"]["intent"]["component_confidence"]["decision_phase"]["confidence"], + } + ) + + benchmark_fallbacks = [] + for item in benchmark: + payload = validate_classify_response(classify_query(item["input"], threshold_overrides={"intent_type": threshold})) + fallback = payload["model_output"].get("fallback") + fallback_applied = fallback is not None + failed_components = set((fallback or {}).get("failed_components", [])) + benchmark_fallbacks.append( + { + "fallback_applied": fallback_applied, + "intent_only": failed_components == {"intent_type"}, + "phase_only": failed_components == {"decision_phase"}, + "both": failed_components == {"intent_type", "decision_phase"}, + } + ) + + total_suite_fallbacks = intent_only + phase_only + both + policy_safe + benchmark_total_fallbacks = sum(1 for item in benchmark_fallbacks if item["fallback_applied"]) + return { + "suite_path": str(SWEEP_SUITE_PATH), + "obvious_prompt_count": obvious_total, + "false_fallback_rate_on_obvious_prompts": round_score(obvious_false_fallback / obvious_total) if obvious_total else 0.0, + "safe_prompt_count": safe_total, + "bad_allow_rate_on_safe_prompts": round_score(safe_bad_allow / safe_total) if safe_total else 0.0, + "fallback_responsibility": { + "intent_only": intent_only, + "phase_only": phase_only, + "both": both, + "policy_safe": policy_safe, + "intent_share_of_threshold_fallbacks": round_score( + (intent_only + both) / (intent_only + phase_only + both) + ) + if (intent_only + phase_only + both) + else 0.0, + "phase_share_of_threshold_fallbacks": round_score( + (phase_only + both) / (intent_only + phase_only + both) + ) + if (intent_only + phase_only + both) + else 0.0, + "fallback_rate": round_score(total_suite_fallbacks / len(suite)) if suite else 0.0, + }, + "benchmark_fallback_rate": round_score(benchmark_total_fallbacks / len(benchmark)) if benchmark else 0.0, + "benchmark_intent_only_fallback_rate": round_score( + sum(1 for item in benchmark_fallbacks if item["intent_only"]) / len(benchmark) + ) + if benchmark + else 0.0, + "benchmark_phase_only_fallback_rate": round_score( + sum(1 for item in benchmark_fallbacks if item["phase_only"]) / len(benchmark) + ) + if benchmark + else 0.0, + "suite_outputs": suite_outputs, + } + + +def pick_recommended_threshold(results: list[dict]) -> dict: + return min( + results, + key=lambda item: ( + item["combined"]["bad_allow_rate_on_safe_prompts"], + item["head"]["ambiguous_bad_allow_rate"], + item["combined"]["false_fallback_rate_on_obvious_prompts"], + abs(item["combined"]["fallback_responsibility"]["intent_share_of_threshold_fallbacks"] - 0.5), + item["combined"]["benchmark_fallback_rate"], + item["threshold"], + ), + ) + + +def apply_threshold(threshold: float) -> None: + calibration_path = INTENT_HEAD_CONFIG.calibration_path + payload = json.loads(calibration_path.read_text(encoding="utf-8")) + payload["confidence_threshold"] = round_score(threshold) + payload["threshold_selection_mode"] = "manual_sweep" + write_json(calibration_path, payload) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Sweep candidate intent_type thresholds and compare end-to-end behavior.") + parser.add_argument( + "--thresholds", + nargs="*", + type=float, + default=DEFAULT_THRESHOLDS, + help="Candidate thresholds to evaluate.", + ) + parser.add_argument( + "--apply-threshold", + type=float, + default=None, + help="Optional threshold to write into the intent_type calibration artifact after evaluation.", + ) + args = parser.parse_args() + + ensure_artifact_dirs() + thresholds = [round_score(value) for value in args.thresholds] + results = [] + for threshold in thresholds: + results.append( + { + "threshold": threshold, + "head": evaluate_intent_head_threshold(threshold), + "combined": evaluate_combined_threshold(threshold), + } + ) + + recommended = pick_recommended_threshold(results) + output = { + "thresholds": thresholds, + "results": results, + "recommended_threshold": recommended["threshold"], + } + write_json(OUTPUT_PATH, output) + + if args.apply_threshold is not None: + apply_threshold(args.apply_threshold) + output["applied_threshold"] = round_score(args.apply_threshold) + write_json(OUTPUT_PATH, output) + + print(json.dumps(output, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/examples/canonical_demo_examples.json b/examples/canonical_demo_examples.json new file mode 100644 index 0000000000000000000000000000000000000000..388b7cb1caaad70875832e83dff568f6544c83a6 --- /dev/null +++ b/examples/canonical_demo_examples.json @@ -0,0 +1,207 @@ +[ + { + "input": "What is CRM software?", + "why_it_matters": "Pure informational awareness example.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "awareness", + "confidence": 0.345, + "commercial_score": 0.13, + "summary": "Classified as informational intent in the awareness phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "awareness" + ] + } + }, + { + "input": "HubSpot vs Zoho for a small team", + "why_it_matters": "Commercial comparison in the middle of the buying journey.", + "model_output": { + "classification": { + "intent": { + "type": "commercial", + "decision_phase": "consideration", + "confidence": 0.2854, + "commercial_score": 0.73, + "summary": "Classified as commercial intent in the consideration phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "consideration" + ] + } + }, + { + "input": "Which CRM should I buy for a 3-person startup?", + "why_it_matters": "Decision-stage buying query that still shows conservative fallback behavior.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "decision", + "confidence": 0.2538, + "commercial_score": 0.43, + "summary": "Classified as informational intent in the decision phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "decision" + ] + } + }, + { + "input": "Start my free trial", + "why_it_matters": "Action-stage transactional example.", + "model_output": { + "classification": { + "intent": { + "type": "transactional", + "decision_phase": "action", + "confidence": 0.1778, + "commercial_score": 0.97, + "summary": "Classified as transactional intent in the action phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "action" + ] + } + }, + { + "input": "I cannot log into my account", + "why_it_matters": "Support-like case that should fail safe and block monetization.", + "model_output": { + "classification": { + "intent": { + "type": "personal_reflection", + "decision_phase": "support", + "confidence": 0.2429, + "commercial_score": 0.0, + "summary": "Classified as personal_reflection intent in the support phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "personal_reflection", + "fallback_monetization_eligibility": "not_allowed", + "reason": "policy_default" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "policy_default", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "high", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "support" + ] + } + } +] diff --git a/examples/composed_output_examples.md b/examples/composed_output_examples.md new file mode 100644 index 0000000000000000000000000000000000000000..81845fc00ea926f3040be33e804a709533079378 --- /dev/null +++ b/examples/composed_output_examples.md @@ -0,0 +1,80 @@ +# Composed Output Examples + +These examples show the end-to-end flow: + +`query -> model_output -> system_decision` + +## 1. Informational Awareness + +Query: + +```text +What is CRM software? +``` + +Observed behavior: + +- classified as `intent.type=informational` +- classified as `decision_phase=awareness` +- fell back because confidence is below the demo threshold +- system decision sets `monetization_eligibility=not_allowed` + +Why fallback happened: + +- the phase is sensible, but the combined confidence is still too low for monetization decisions + +## 2. Commercial Comparison + +Query: + +```text +Compare AI search monetization platforms for publishers +``` + +Observed behavior: + +- classified as `intent.type=commercial` +- classified as `decision_phase=consideration` +- still falls back due low confidence +- opportunity remains `none` because fallback takes precedence + +Why fallback happened: + +- the underlying labels are directionally right, but the frozen baseline is intentionally conservative + +## 3. Post-Purchase Setup + +Query: + +```text +How do I set up my new CRM? +``` + +Observed behavior: + +- classified as `decision_phase=post_purchase` +- treated as low-confidence informational setup behavior +- system decision stays restricted + +Why fallback happened: + +- the system recognizes the lifecycle stage, but confidence is not high enough to remove fallback + +## 4. Support / Sensitive + +Query: + +```text +I cannot log into my account +``` + +Observed behavior: + +- classified as `decision_phase=support` +- intent-type falls into `personal_reflection` in `v0.1` +- fallback applies with `policy_default` +- monetization is blocked + +Why fallback happened: + +- this is a known limitation of the intent-type head and exactly the kind of case that should fail safe diff --git a/examples/demo_prompt_suite.json b/examples/demo_prompt_suite.json new file mode 100644 index 0000000000000000000000000000000000000000..e96a93cef545dbe80db7789a25017bea0da7ee07 --- /dev/null +++ b/examples/demo_prompt_suite.json @@ -0,0 +1,617 @@ +[ + { + "input": "What is CRM software?", + "expected_behavior": "Should read as informational awareness and fail safe via fallback because confidence is still low.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "awareness", + "confidence": 0.345, + "commercial_score": 0.13, + "summary": "Classified as informational intent in the awareness phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "awareness" + ] + } + }, + { + "input": "Help me understand CRM basics", + "expected_behavior": "Should lean informational research and still fall back conservatively.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "research", + "confidence": 0.233, + "commercial_score": 0.23, + "summary": "Classified as informational intent in the research phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "research" + ] + } + }, + { + "input": "Best CRM for small teams", + "expected_behavior": "Should behave like a commercial comparison or selection query, but v0.1 still falls back because confidence is low.", + "model_output": { + "classification": { + "intent": { + "type": "commercial", + "decision_phase": "consideration", + "confidence": 0.197, + "commercial_score": 0.73, + "summary": "Classified as commercial intent in the consideration phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "consideration" + ] + } + }, + { + "input": "HubSpot vs Zoho for a small team", + "expected_behavior": "Should read as a commercial comparison in consideration and remain conservative if confidence stays low.", + "model_output": { + "classification": { + "intent": { + "type": "commercial", + "decision_phase": "consideration", + "confidence": 0.2854, + "commercial_score": 0.73, + "summary": "Classified as commercial intent in the consideration phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "consideration" + ] + } + }, + { + "input": "Which CRM should I buy for a 3-person startup?", + "expected_behavior": "Should preserve a decision-stage buying signal even if the intent-type head still undercalls it.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "decision", + "confidence": 0.2538, + "commercial_score": 0.43, + "summary": "Classified as informational intent in the decision phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "decision" + ] + } + }, + { + "input": "Start my free trial", + "expected_behavior": "Should read as an action-stage transactional query and fail safe because confidence is low.", + "model_output": { + "classification": { + "intent": { + "type": "transactional", + "decision_phase": "action", + "confidence": 0.1778, + "commercial_score": 0.97, + "summary": "Classified as transactional intent in the action phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "action" + ] + } + }, + { + "input": "Book a table for 2 tonight", + "expected_behavior": "Should preserve generic action-stage transactional behavior outside SaaS language.", + "model_output": { + "classification": { + "intent": { + "type": "transactional", + "decision_phase": "action", + "confidence": 0.1656, + "commercial_score": 0.97, + "summary": "Classified as transactional intent in the action phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "action" + ] + } + }, + { + "input": "How do I set up my new CRM?", + "expected_behavior": "Should preserve a post-purchase lifecycle signal and remain restricted under low confidence.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "post_purchase", + "confidence": 0.2076, + "commercial_score": 0.15, + "summary": "Classified as informational intent in the post_purchase phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "post_purchase" + ] + } + }, + { + "input": "I cannot log into my account", + "expected_behavior": "Should fail safe on a support-like query and keep monetization blocked.", + "model_output": { + "classification": { + "intent": { + "type": "personal_reflection", + "decision_phase": "support", + "confidence": 0.2429, + "commercial_score": 0.0, + "summary": "Classified as personal_reflection intent in the support phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "personal_reflection", + "fallback_monetization_eligibility": "not_allowed", + "reason": "policy_default" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "policy_default", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "high", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "support" + ] + } + }, + { + "input": "I feel depressed and need help", + "expected_behavior": "Should trigger a sensitive fallback path and block monetization.", + "model_output": { + "classification": { + "intent": { + "type": "personal_reflection", + "decision_phase": "support", + "confidence": 0.1875, + "commercial_score": 0.0, + "summary": "Classified as personal_reflection intent in the support phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "personal_reflection", + "fallback_monetization_eligibility": "not_allowed", + "reason": "policy_default" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "policy_default", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "high", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "support" + ] + } + }, + { + "input": "Tell me more", + "expected_behavior": "Should be treated as ambiguous and fall back safely.", + "model_output": { + "classification": { + "intent": { + "type": "ambiguous", + "decision_phase": "action", + "confidence": 0.1606, + "commercial_score": 0.46, + "summary": "Classified as ambiguous intent in the action phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "ambiguous_query" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "ambiguous_query", + "decision_basis": "fallback_ambiguous_intent", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "action" + ] + } + }, + { + "input": "What about pricing", + "expected_behavior": "Should currently fall back because the prompt is short and context-dependent.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "awareness", + "confidence": 0.178, + "commercial_score": 0.13, + "summary": "Classified as informational intent in the awareness phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "awareness" + ] + } + }, + { + "input": "Sign me up for the newsletter", + "expected_behavior": "Should preserve transactional intent even though the phase is still noisy and fallback remains active.", + "model_output": { + "classification": { + "intent": { + "type": "transactional", + "decision_phase": "research", + "confidence": 0.1626, + "commercial_score": 0.71, + "summary": "Classified as transactional intent in the research phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "research" + ] + } + }, + { + "input": "Compare AI search monetization platforms for publishers", + "expected_behavior": "Should behave like a commercial comparison in the middle of the buying journey and still fail safe if confidence is low.", + "model_output": { + "classification": { + "intent": { + "type": "commercial", + "decision_phase": "consideration", + "confidence": 0.274, + "commercial_score": 0.73, + "summary": "Classified as commercial intent in the consideration phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "consideration" + ] + } + }, + { + "input": "Why do businesses use CRM systems?", + "expected_behavior": "Should stay in informational awareness and remain non-monetized under low confidence.", + "model_output": { + "classification": { + "intent": { + "type": "informational", + "decision_phase": "awareness", + "confidence": 0.3167, + "commercial_score": 0.13, + "summary": "Classified as informational intent in the awareness phase." + } + }, + "fallback": { + "applied": true, + "fallback_intent_type": "ambiguous", + "fallback_monetization_eligibility": "not_allowed", + "reason": "confidence_below_threshold" + } + }, + "system_decision": { + "policy": { + "monetization_eligibility": "not_allowed", + "eligibility_reason": "confidence_below_threshold", + "decision_basis": "fallback_low_confidence", + "applied_thresholds": { + "commercial_score_min": 0.6, + "confidence_min": 0.45 + }, + "sensitivity": "medium", + "regulated_vertical": false + }, + "opportunity": { + "type": "none", + "strength": "low" + }, + "intent_trajectory": [ + "awareness" + ] + } + } +] diff --git a/examples/iab_behavior_lock_cases.json b/examples/iab_behavior_lock_cases.json new file mode 100644 index 0000000000000000000000000000000000000000..05e1cf7677eea0aa797363b020570f7f649b3aaa --- /dev/null +++ b/examples/iab_behavior_lock_cases.json @@ -0,0 +1,141 @@ +[ + { + "id": "car-buying-maps-to-automotive-buying", + "status": "must_fix", + "text": "Which car to buy in 2026", + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Auto Type" + } + }, + { + "id": "laptop-buying-maps-to-laptops", + "status": "must_fix", + "text": "Which laptop to buy in 2026", + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "labtop-buying-maps-to-laptops", + "status": "must_fix", + "text": "Which labtop to buy in 2026", + "notes": "Common typo handling should still land in the laptops branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "crm-awareness-maps-to-sales", + "status": "must_fix", + "text": "What is CRM software?", + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "crm-comparison-maps-to-sales", + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team", + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "marketing-tools-map-to-marketing", + "status": "must_fix", + "text": "Best AI SEO tools for content teams", + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "ml-explanation-maps-to-ai", + "status": "must_fix", + "text": "What is intent classification in NLP?", + "notes": "ML and NLP educational prompts should land in the AI branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "support-credential-help-maps-to-business-it", + "status": "must_fix", + "text": "How do I reset my password?", + "notes": "Credential and account help should map to business IT rather than generic business.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "restaurant-booking-maps-to-dining-out", + "status": "must_fix", + "text": "Book a table for 2 tonight", + "notes": "Generic dining requests should not inherit the repo's business default.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "trial-signup-maps-to-software", + "status": "must_fix", + "text": "Start my free trial", + "notes": "Software action queries should map to the software/application branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Hobbies & Interests", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Content Production", + "model_output.classification.iab_content.tier3.label": "Freelance Writing" + } + }, + { + "id": "communication-software-maps-to-tier4", + "status": "must_fix", + "text": "best communication software for remote teams", + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "vodka-query-maps-to-alcoholic-beverages", + "status": "must_fix", + "text": "what is best vodka drink should i try", + "notes": "Food and beverage prompts should not fall through to the business default.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + } +] diff --git a/examples/iab_cross_vertical_behavior_lock_cases.json b/examples/iab_cross_vertical_behavior_lock_cases.json new file mode 100644 index 0000000000000000000000000000000000000000..cc3ca6f3ecb20c59fa372988a96c5f3b472bbf6c --- /dev/null +++ b/examples/iab_cross_vertical_behavior_lock_cases.json @@ -0,0 +1,1040 @@ +[ + { + "id": "auto-buying-easy", + "status": "must_fix", + "text": "Which car should I buy for commuting?", + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Travel Type" + } + }, + { + "id": "auto-buying-medium", + "status": "must_fix", + "text": "Best used SUV for a family of four", + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Auto Body Styles" + } + }, + { + "id": "auto-buying-hard", + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month", + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Auto Type" + } + }, + { + "id": "sales-crm-easy", + "status": "must_fix", + "text": "What is CRM software?", + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "sales-crm-medium", + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team", + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "sales-crm-hard", + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team", + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + } + }, + { + "id": "marketing-tools-easy", + "status": "must_fix", + "text": "Best SEO tools for content teams", + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "marketing-tools-medium", + "status": "must_fix", + "text": "How should I compare ad attribution platforms?", + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Business" + } + }, + { + "id": "marketing-tools-hard", + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns", + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "business-it-easy", + "status": "must_fix", + "text": "How do I reset my work password?", + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "business-it-medium", + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts", + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Job Search" + } + }, + { + "id": "business-it-hard", + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security", + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet" + } + }, + { + "id": "dining-out-easy", + "status": "must_fix", + "text": "Book a table for six tonight", + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "dining-out-medium", + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown", + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "dining-out-hard", + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online", + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "alcoholic-beverages-easy", + "status": "must_fix", + "text": "Which whiskey cocktail should I order?", + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "alcoholic-beverages-medium", + "status": "must_fix", + "text": "Best vodka drinks for beginners", + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "alcoholic-beverages-hard", + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion", + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "artificial-intelligence-easy", + "status": "must_fix", + "text": "What is intent classification in NLP?", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "artificial-intelligence-medium", + "status": "must_fix", + "text": "How do large language models handle text classification?", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Language Learning" + } + }, + { + "id": "artificial-intelligence-hard", + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Language Learning" + } + }, + { + "id": "software-apps-easy", + "status": "must_fix", + "text": "Best workflow software for a small operations team", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Business" + } + }, + { + "id": "software-apps-medium", + "status": "must_fix", + "text": "Need project management software for a distributed team", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Cloud Computing" + } + }, + { + "id": "software-apps-hard", + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "communication-software-easy", + "status": "must_fix", + "text": "Best communication software for remote teams", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "communication-software-medium", + "status": "must_fix", + "text": "Slack vs Teams for internal messaging", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "communication-software-hard", + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "web-hosting-easy", + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + } + }, + { + "id": "web-hosting-medium", + "status": "must_fix", + "text": "Best hosting platform for a startup website", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + } + }, + { + "id": "web-hosting-hard", + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + } + }, + { + "id": "laptops-easy", + "status": "must_fix", + "text": "Which laptop should I buy for college?", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "laptops-medium", + "status": "must_fix", + "text": "Best laptop for work and study under 1200", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "laptops-hard", + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + } + }, + { + "id": "desktops-easy", + "status": "must_fix", + "text": "Best desktop for video editing", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Photo Editing Software" + } + }, + { + "id": "desktops-medium", + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + } + }, + { + "id": "desktops-hard", + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + } + }, + { + "id": "smartphones-easy", + "status": "must_fix", + "text": "Best phone with a good camera under 700", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics" + } + }, + { + "id": "smartphones-medium", + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + } + }, + { + "id": "smartphones-hard", + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + } + }, + { + "id": "style-fashion-parent-easy", + "status": "must_fix", + "text": "Best shoes under 100 dollars", + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + } + }, + { + "id": "style-fashion-parent-medium", + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear", + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + } + }, + { + "id": "style-fashion-parent-hard", + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind", + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + } + }, + { + "id": "womens-shoes-easy", + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars", + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + } + }, + { + "id": "womens-shoes-medium", + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day", + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Clothing" + } + }, + { + "id": "womens-shoes-hard", + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable", + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + } + }, + { + "id": "mens-shoes-easy", + "status": "must_fix", + "text": "Best men's sneakers for daily wear", + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + } + }, + { + "id": "mens-shoes-medium", + "status": "must_fix", + "text": "Good men's dress shoes for office use", + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Clothing" + } + }, + { + "id": "mens-shoes-hard", + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking", + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + } + }, + { + "id": "hotels-easy", + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights", + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Hotel Properties" + } + }, + { + "id": "hotels-medium", + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip", + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + } + }, + { + "id": "hotels-hard", + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice", + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Travel Type" + } + }, + { + "id": "real-estate-rentals-easy", + "status": "must_fix", + "text": "Apartments for rent near downtown Austin", + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Apartments" + } + }, + { + "id": "real-estate-rentals-medium", + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle", + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Apartments" + } + }, + { + "id": "real-estate-rentals-hard", + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice", + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Personal Debt", + "model_output.classification.iab_content.tier3.label": "Home Financing" + } + }, + { + "id": "running-and-jogging-easy", + "status": "must_fix", + "text": "Best running plan for a first 10k", + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Green Solutions" + } + }, + { + "id": "running-and-jogging-medium", + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?", + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + } + }, + { + "id": "running-and-jogging-hard", + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured", + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + } + }, + { + "id": "soccer-easy", + "status": "must_fix", + "text": "How do offside rules work in soccer?", + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Soccer" + } + }, + { + "id": "soccer-medium", + "status": "must_fix", + "text": "Best soccer drills for beginner players", + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Soccer" + } + }, + { + "id": "soccer-hard", + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports", + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "fiction-easy", + "status": "must_fix", + "text": "Recommend a good fantasy novel to read", + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Fiction" + } + }, + { + "id": "fiction-medium", + "status": "must_fix", + "text": "Best fiction books for a long flight", + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Fiction" + } + }, + { + "id": "fiction-hard", + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry", + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "home-improvement-easy", + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?", + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Remodeling & Construction" + } + }, + { + "id": "home-improvement-medium", + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation", + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Personal Care", + "model_output.classification.iab_content.tier3.label": "Bath and Shower" + } + }, + { + "id": "home-improvement-hard", + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration", + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Interior Decorating" + } + }, + { + "id": "online-education-easy", + "status": "must_fix", + "text": "Best online courses for learning Python", + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Language Learning" + } + }, + { + "id": "online-education-medium", + "status": "must_fix", + "text": "What are good platforms for remote professional classes?", + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Remote Working" + } + }, + { + "id": "online-education-hard", + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours", + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "postgraduate-education-easy", + "status": "must_fix", + "text": "best universities to study masters", + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "College Education" + } + }, + { + "id": "postgraduate-education-medium", + "status": "must_fix", + "text": "which graduate schools have strong data science programs", + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education", + "model_output.classification.iab_content.tier4.label": "Professional School" + } + }, + { + "id": "postgraduate-education-hard", + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses", + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "College Education" + } + }, + { + "id": "medical-health-easy", + "status": "must_fix", + "text": "what do these allergy symptoms mean", + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Allergies" + } + }, + { + "id": "medical-health-medium", + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain", + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Diseases and Conditions", + "model_output.classification.iab_content.tier3.label": "Injuries", + "model_output.classification.iab_content.tier4.label": "First Aid" + } + }, + { + "id": "medical-health-hard", + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips", + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Wellness", + "model_output.classification.iab_content.tier3.label": "Physical Therapy" + } + }, + { + "id": "careers-job-search-easy", + "status": "must_fix", + "text": "best remote jobs for data analysts", + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Remote Working" + } + }, + { + "id": "careers-job-search-medium", + "status": "must_fix", + "text": "where should i look for product manager openings", + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + } + }, + { + "id": "careers-job-search-hard", + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews", + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Job Search" + } + }, + { + "id": "personal-finance-easy", + "status": "must_fix", + "text": "how much should i save each month", + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Food Movements" + } + }, + { + "id": "personal-finance-medium", + "status": "must_fix", + "text": "best budgeting approach for a growing family", + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Economy", + "model_output.classification.iab_content.tier3.label": "Financial Reform" + } + }, + { + "id": "personal-finance-hard", + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice", + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Retirement Planning" + } + }, + { + "id": "parenting-easy", + "status": "must_fix", + "text": "tips for parenting a toddler", + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Parenting" + } + }, + { + "id": "parenting-medium", + "status": "must_fix", + "text": "how do i help my teenager spend less time online", + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Parenting" + } + }, + { + "id": "parenting-hard", + "status": "must_fix", + "text": "need parenting advice for a child starting preschool", + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Parenting", + "model_output.classification.iab_content.tier3.label": "Special Needs Kids" + } + }, + { + "id": "gardening-easy", + "status": "must_fix", + "text": "best plants for a small balcony garden", + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "gardening-medium", + "status": "must_fix", + "text": "how often should i water tomato plants", + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Gardening" + } + }, + { + "id": "gardening-hard", + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas", + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "movies-easy", + "status": "must_fix", + "text": "What movie should we watch tonight?", + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Movies" + } + }, + { + "id": "movies-medium", + "status": "must_fix", + "text": "Best thriller movies from the last few years", + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Video Gaming", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Video Game Genres", + "model_output.classification.iab_content.tier3.label": "Horror Video Games" + } + }, + { + "id": "movies-hard", + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music", + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Music", + "model_output.classification.iab_content.tier3.label": "Soundtracks, TV and Showtunes" + } + } +] diff --git a/examples/iab_cross_vertical_mapping_cases.json b/examples/iab_cross_vertical_mapping_cases.json new file mode 100644 index 0000000000000000000000000000000000000000..843b7c6ac9496f8b2c0b087fe0b692d46a86b6a8 --- /dev/null +++ b/examples/iab_cross_vertical_mapping_cases.json @@ -0,0 +1,1034 @@ +[ + { + "id": "auto-buying-easy", + "status": "must_fix", + "text": "Which car should I buy for commuting?", + "notes": "Cross-vertical easy IAB mapping case for Automotive > Auto Buying and Selling.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + } + }, + { + "id": "auto-buying-medium", + "status": "must_fix", + "text": "Best used SUV for a family of four", + "notes": "Cross-vertical medium IAB mapping case for Automotive > Auto Buying and Selling.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + } + }, + { + "id": "auto-buying-hard", + "status": "must_fix", + "text": "I need a shortlist of practical cars before making a purchase this month", + "notes": "Cross-vertical hard IAB mapping case for Automotive > Auto Buying and Selling.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling" + } + }, + { + "id": "sales-crm-easy", + "status": "must_fix", + "text": "What is CRM software?", + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + } + }, + { + "id": "sales-crm-medium", + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team", + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + } + }, + { + "id": "sales-crm-hard", + "status": "must_fix", + "text": "Need software to manage leads and pipeline for a startup sales team", + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales" + } + }, + { + "id": "marketing-tools-easy", + "status": "must_fix", + "text": "Best SEO tools for content teams", + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + } + }, + { + "id": "marketing-tools-medium", + "status": "must_fix", + "text": "How should I compare ad attribution platforms?", + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + } + }, + { + "id": "marketing-tools-hard", + "status": "must_fix", + "text": "Need software to measure channel performance across paid and organic campaigns", + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Marketing and Advertising.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising" + } + }, + { + "id": "business-it-easy", + "status": "must_fix", + "text": "How do I reset my work password?", + "notes": "Cross-vertical easy IAB mapping case for Business and Finance > Business > Business I.T..", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + } + }, + { + "id": "business-it-medium", + "status": "must_fix", + "text": "My employees keep getting locked out of their accounts", + "notes": "Cross-vertical medium IAB mapping case for Business and Finance > Business > Business I.T..", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + } + }, + { + "id": "business-it-hard", + "status": "must_fix", + "text": "Need identity and access software for login, permissions, and account security", + "notes": "Cross-vertical hard IAB mapping case for Business and Finance > Business > Business I.T..", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T." + } + }, + { + "id": "dining-out-easy", + "status": "must_fix", + "text": "Book a table for six tonight", + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Dining Out.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "dining-out-medium", + "status": "must_fix", + "text": "Good restaurants for a client dinner downtown", + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Dining Out.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "dining-out-hard", + "status": "must_fix", + "text": "Need a place to eat tonight where I can make a reservation online", + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Dining Out.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Dining Out" + } + }, + { + "id": "alcoholic-beverages-easy", + "status": "must_fix", + "text": "Which whiskey cocktail should I order?", + "notes": "Cross-vertical easy IAB mapping case for Food & Drink > Alcoholic Beverages.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + } + }, + { + "id": "alcoholic-beverages-medium", + "status": "must_fix", + "text": "Best vodka drinks for beginners", + "notes": "Cross-vertical medium IAB mapping case for Food & Drink > Alcoholic Beverages.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + } + }, + { + "id": "alcoholic-beverages-hard", + "status": "must_fix", + "text": "Want a spirit-forward drink recommendation, not a restaurant suggestion", + "notes": "Cross-vertical hard IAB mapping case for Food & Drink > Alcoholic Beverages.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages" + } + }, + { + "id": "artificial-intelligence-easy", + "status": "must_fix", + "text": "What is intent classification in NLP?", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Artificial Intelligence.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + } + }, + { + "id": "artificial-intelligence-medium", + "status": "must_fix", + "text": "How do large language models handle text classification?", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Artificial Intelligence.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + } + }, + { + "id": "artificial-intelligence-hard", + "status": "must_fix", + "text": "Need the machine learning concept behind language understanding, not software to buy", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Artificial Intelligence.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence" + } + }, + { + "id": "software-apps-easy", + "status": "must_fix", + "text": "Best workflow software for a small operations team", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "software-apps-medium", + "status": "must_fix", + "text": "Need project management software for a distributed team", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "software-apps-hard", + "status": "must_fix", + "text": "Looking for a business software platform to organize internal workflows", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications" + } + }, + { + "id": "communication-software-easy", + "status": "must_fix", + "text": "Best communication software for remote teams", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "communication-software-medium", + "status": "must_fix", + "text": "Slack vs Teams for internal messaging", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "communication-software-hard", + "status": "must_fix", + "text": "Need a workplace chat tool for cross-functional collaboration", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Computer Software and Applications > Communication.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication" + } + }, + { + "id": "web-hosting-easy", + "status": "must_fix", + "text": "Vercel vs Netlify for website hosting", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + } + }, + { + "id": "web-hosting-medium", + "status": "must_fix", + "text": "Best hosting platform for a startup website", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + } + }, + { + "id": "web-hosting-hard", + "status": "must_fix", + "text": "Need a managed hosting provider to deploy and run our marketing site", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Internet > Web Hosting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Internet", + "model_output.classification.iab_content.tier4.label": "Web Hosting" + } + }, + { + "id": "laptops-easy", + "status": "must_fix", + "text": "Which laptop should I buy for college?", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Laptops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "laptops-medium", + "status": "must_fix", + "text": "Best laptop for work and study under 1200", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Laptops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "laptops-hard", + "status": "must_fix", + "text": "Need a portable computer with good battery life for everyday work", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Laptops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops" + } + }, + { + "id": "desktops-easy", + "status": "must_fix", + "text": "Best desktop for video editing", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Computing > Desktops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + } + }, + { + "id": "desktops-medium", + "status": "must_fix", + "text": "Which desktop computer should I buy for a home office?", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Computing > Desktops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + } + }, + { + "id": "desktops-hard", + "status": "must_fix", + "text": "Need a desktop PC with strong performance for creative work", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Computing > Desktops.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Desktops" + } + }, + { + "id": "smartphones-easy", + "status": "must_fix", + "text": "Best phone with a good camera under 700", + "notes": "Cross-vertical easy IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + } + }, + { + "id": "smartphones-medium", + "status": "must_fix", + "text": "Should I buy an iPhone or Pixel this year?", + "notes": "Cross-vertical medium IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + } + }, + { + "id": "smartphones-hard", + "status": "must_fix", + "text": "Need a new smartphone with strong battery life and a clean software experience", + "notes": "Cross-vertical hard IAB mapping case for Technology & Computing > Consumer Electronics > Smartphones.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Consumer Electronics", + "model_output.classification.iab_content.tier3.label": "Smartphones" + } + }, + { + "id": "style-fashion-parent-easy", + "status": "must_fix", + "text": "Best shoes under 100 dollars", + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "style-fashion-parent-medium", + "status": "must_fix", + "text": "Affordable fashion accessories for everyday wear", + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "style-fashion-parent-hard", + "status": "must_fix", + "text": "Need style recommendations for clothing and footwear without a specific brand in mind", + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "womens-shoes-easy", + "status": "must_fix", + "text": "Best women's running shoes under 100 dollars", + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + } + }, + { + "id": "womens-shoes-medium", + "status": "must_fix", + "text": "Comfortable women's sneakers for walking all day", + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + } + }, + { + "id": "womens-shoes-hard", + "status": "must_fix", + "text": "Need women's footwear for commuting that looks polished but feels comfortable", + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Women's Fashion > Women's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Women's Fashion", + "model_output.classification.iab_content.tier3.label": "Women's Shoes and Footwear" + } + }, + { + "id": "mens-shoes-easy", + "status": "must_fix", + "text": "Best men's sneakers for daily wear", + "notes": "Cross-vertical easy IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + } + }, + { + "id": "mens-shoes-medium", + "status": "must_fix", + "text": "Good men's dress shoes for office use", + "notes": "Cross-vertical medium IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + } + }, + { + "id": "mens-shoes-hard", + "status": "must_fix", + "text": "Need men's footwear that works for workdays and weekend walking", + "notes": "Cross-vertical hard IAB mapping case for Style & Fashion > Men's Fashion > Men's Shoes and Footwear.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Style & Fashion", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Men's Fashion", + "model_output.classification.iab_content.tier3.label": "Men's Shoes and Footwear" + } + }, + { + "id": "hotels-easy", + "status": "must_fix", + "text": "Need a hotel in Chicago for two nights", + "notes": "Cross-vertical easy IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + } + }, + { + "id": "hotels-medium", + "status": "must_fix", + "text": "Best hotels near Times Square for a weekend trip", + "notes": "Cross-vertical medium IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + } + }, + { + "id": "hotels-hard", + "status": "must_fix", + "text": "Looking for a place to stay during a work trip, not general travel advice", + "notes": "Cross-vertical hard IAB mapping case for Travel > Travel Type > Hotels and Motels.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Travel", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Travel Type", + "model_output.classification.iab_content.tier3.label": "Hotels and Motels" + } + }, + { + "id": "real-estate-rentals-easy", + "status": "must_fix", + "text": "Apartments for rent near downtown Austin", + "notes": "Cross-vertical easy IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + } + }, + { + "id": "real-estate-rentals-medium", + "status": "must_fix", + "text": "Best neighborhoods to lease a two-bedroom apartment in Seattle", + "notes": "Cross-vertical medium IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + } + }, + { + "id": "real-estate-rentals-hard", + "status": "must_fix", + "text": "Need rental listings for a short move, not home-buying advice", + "notes": "Cross-vertical hard IAB mapping case for Real Estate > Real Estate Renting and Leasing.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Real Estate", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Real Estate Renting and Leasing" + } + }, + { + "id": "running-and-jogging-easy", + "status": "must_fix", + "text": "Best running plan for a first 10k", + "notes": "Cross-vertical easy IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + } + }, + { + "id": "running-and-jogging-medium", + "status": "must_fix", + "text": "How should I train for a half marathon as a beginner?", + "notes": "Cross-vertical medium IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + } + }, + { + "id": "running-and-jogging-hard", + "status": "must_fix", + "text": "Need guidance on building a weekly jogging routine without getting injured", + "notes": "Cross-vertical hard IAB mapping case for Healthy Living > Fitness and Exercise > Running and Jogging.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Healthy Living", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Fitness and Exercise", + "model_output.classification.iab_content.tier3.label": "Running and Jogging" + } + }, + { + "id": "soccer-easy", + "status": "must_fix", + "text": "How do offside rules work in soccer?", + "notes": "Cross-vertical easy IAB mapping case for Sports > Soccer.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Soccer" + } + }, + { + "id": "soccer-medium", + "status": "must_fix", + "text": "Best soccer drills for beginner players", + "notes": "Cross-vertical medium IAB mapping case for Sports > Soccer.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Soccer" + } + }, + { + "id": "soccer-hard", + "status": "must_fix", + "text": "Need help understanding football tactics for the Premier League, not fantasy sports", + "notes": "Cross-vertical hard IAB mapping case for Sports > Soccer.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Sports", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Soccer" + } + }, + { + "id": "fiction-easy", + "status": "must_fix", + "text": "Recommend a good fantasy novel to read", + "notes": "Cross-vertical easy IAB mapping case for Books and Literature > Fiction.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Fiction" + } + }, + { + "id": "fiction-medium", + "status": "must_fix", + "text": "Best fiction books for a long flight", + "notes": "Cross-vertical medium IAB mapping case for Books and Literature > Fiction.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent", + "model_output.classification.iab_content.tier2.label": "Fiction" + } + }, + { + "id": "fiction-hard", + "status": "must_fix", + "text": "Looking for a character-driven novel, not comics or poetry", + "notes": "Cross-vertical hard IAB mapping case for Books and Literature > Fiction.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Books and Literature", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Fiction" + } + }, + { + "id": "home-improvement-easy", + "status": "must_fix", + "text": "How much does a kitchen remodel usually cost?", + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Home Improvement.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + } + }, + { + "id": "home-improvement-medium", + "status": "must_fix", + "text": "Best tools for a DIY bathroom renovation", + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Home Improvement.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + } + }, + { + "id": "home-improvement-hard", + "status": "must_fix", + "text": "Need practical advice for upgrading an older house, not interior decor inspiration", + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Home Improvement.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Home Improvement" + } + }, + { + "id": "online-education-easy", + "status": "must_fix", + "text": "Best online courses for learning Python", + "notes": "Cross-vertical easy IAB mapping case for Education > Online Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Online Education" + } + }, + { + "id": "online-education-medium", + "status": "must_fix", + "text": "What are good platforms for remote professional classes?", + "notes": "Cross-vertical medium IAB mapping case for Education > Online Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Online Education" + } + }, + { + "id": "online-education-hard", + "status": "must_fix", + "text": "Need internet-based training options I can finish after work hours", + "notes": "Cross-vertical hard IAB mapping case for Education > Online Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Online Education" + } + }, + { + "id": "postgraduate-education-easy", + "status": "must_fix", + "text": "best universities to study masters", + "notes": "Cross-vertical easy IAB mapping case for Education > College Education > Postgraduate Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + } + }, + { + "id": "postgraduate-education-medium", + "status": "must_fix", + "text": "which graduate schools have strong data science programs", + "notes": "Cross-vertical medium IAB mapping case for Education > College Education > Postgraduate Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + } + }, + { + "id": "postgraduate-education-hard", + "status": "must_fix", + "text": "need postgraduate options for a master's degree, not short online courses", + "notes": "Cross-vertical hard IAB mapping case for Education > College Education > Postgraduate Education.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Education", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "College Education", + "model_output.classification.iab_content.tier3.label": "Postgraduate Education" + } + }, + { + "id": "medical-health-easy", + "status": "must_fix", + "text": "what do these allergy symptoms mean", + "notes": "Cross-vertical easy IAB mapping case for Medical Health.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "medical-health-medium", + "status": "must_fix", + "text": "when should i see a doctor for persistent knee pain", + "notes": "Cross-vertical medium IAB mapping case for Medical Health.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "medical-health-hard", + "status": "must_fix", + "text": "need medical advice about symptoms, not wellness or fitness tips", + "notes": "Cross-vertical hard IAB mapping case for Medical Health.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Medical Health", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "careers-job-search-easy", + "status": "must_fix", + "text": "best remote jobs for data analysts", + "notes": "Cross-vertical easy IAB mapping case for Careers > Job Search.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Job Search" + } + }, + { + "id": "careers-job-search-medium", + "status": "must_fix", + "text": "where should i look for product manager openings", + "notes": "Cross-vertical medium IAB mapping case for Careers > Job Search.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Job Search" + } + }, + { + "id": "careers-job-search-hard", + "status": "must_fix", + "text": "need help finding a new role and preparing for interviews", + "notes": "Cross-vertical hard IAB mapping case for Careers > Job Search.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Careers", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Job Search" + } + }, + { + "id": "personal-finance-easy", + "status": "must_fix", + "text": "how much should i save each month", + "notes": "Cross-vertical easy IAB mapping case for Personal Finance > Financial Planning.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + } + }, + { + "id": "personal-finance-medium", + "status": "must_fix", + "text": "best budgeting approach for a growing family", + "notes": "Cross-vertical medium IAB mapping case for Personal Finance > Financial Planning.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + } + }, + { + "id": "personal-finance-hard", + "status": "must_fix", + "text": "need help planning savings and retirement, not business finance advice", + "notes": "Cross-vertical hard IAB mapping case for Personal Finance > Financial Planning.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Personal Finance", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Financial Planning" + } + }, + { + "id": "parenting-easy", + "status": "must_fix", + "text": "tips for parenting a toddler", + "notes": "Cross-vertical easy IAB mapping case for Family and Relationships > Parenting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Parenting" + } + }, + { + "id": "parenting-medium", + "status": "must_fix", + "text": "how do i help my teenager spend less time online", + "notes": "Cross-vertical medium IAB mapping case for Family and Relationships > Parenting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Parenting" + } + }, + { + "id": "parenting-hard", + "status": "must_fix", + "text": "need parenting advice for a child starting preschool", + "notes": "Cross-vertical hard IAB mapping case for Family and Relationships > Parenting.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Family and Relationships", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Parenting" + } + }, + { + "id": "gardening-easy", + "status": "must_fix", + "text": "best plants for a small balcony garden", + "notes": "Cross-vertical easy IAB mapping case for Home & Garden > Gardening.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Gardening" + } + }, + { + "id": "gardening-medium", + "status": "must_fix", + "text": "how often should i water tomato plants", + "notes": "Cross-vertical medium IAB mapping case for Home & Garden > Gardening.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Gardening" + } + }, + { + "id": "gardening-hard", + "status": "must_fix", + "text": "need gardening advice for a shady backyard, not interior decor ideas", + "notes": "Cross-vertical hard IAB mapping case for Home & Garden > Gardening.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Home & Garden", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Gardening" + } + }, + { + "id": "movies-easy", + "status": "must_fix", + "text": "What movie should we watch tonight?", + "notes": "Cross-vertical easy IAB mapping case for Entertainment > Movies.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Movies" + } + }, + { + "id": "movies-medium", + "status": "must_fix", + "text": "Best thriller movies from the last few years", + "notes": "Cross-vertical medium IAB mapping case for Entertainment > Movies.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Movies" + } + }, + { + "id": "movies-hard", + "status": "must_fix", + "text": "Looking for film recommendations, not TV shows or music", + "notes": "Cross-vertical hard IAB mapping case for Entertainment > Movies.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Entertainment", + "model_output.classification.iab_content.mapping_mode": "exact", + "model_output.classification.iab_content.tier2.label": "Movies" + } + } +] diff --git a/examples/iab_mapping_cases.json b/examples/iab_mapping_cases.json new file mode 100644 index 0000000000000000000000000000000000000000..531b38eb509e0229005f85217cbad36bd19063fc --- /dev/null +++ b/examples/iab_mapping_cases.json @@ -0,0 +1,143 @@ +[ + { + "id": "car-buying-maps-to-automotive-buying", + "status": "must_fix", + "text": "Which car to buy in 2026", + "notes": "Vehicle shopping queries should map into the automotive buying branch, not business sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "laptop-buying-maps-to-laptops", + "status": "must_fix", + "text": "Which laptop to buy in 2026", + "notes": "Laptop shopping should resolve into the laptops branch, not business sales.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "labtop-buying-maps-to-laptops", + "status": "must_fix", + "text": "Which labtop to buy in 2026", + "notes": "Common typo handling should still land in the laptops branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "crm-awareness-maps-to-sales", + "status": "must_fix", + "text": "What is CRM software?", + "notes": "CRM education should resolve to the closest business/sales path, not generic software.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "crm-comparison-maps-to-sales", + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team", + "notes": "Direct CRM vendor comparison should map cleanly into the sales domain.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Sales", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "marketing-tools-map-to-marketing", + "status": "must_fix", + "text": "Best AI SEO tools for content teams", + "notes": "Marketing tool discovery should map to the marketing and advertising branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Marketing and Advertising", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "ml-explanation-maps-to-ai", + "status": "must_fix", + "text": "What is intent classification in NLP?", + "notes": "ML and NLP educational prompts should land in the AI branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Artificial Intelligence", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "support-credential-help-maps-to-business-it", + "status": "must_fix", + "text": "How do I reset my password?", + "notes": "Credential and account help should map to business IT rather than generic business.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Business and Finance", + "model_output.classification.iab_content.tier2.label": "Business", + "model_output.classification.iab_content.tier3.label": "Business I.T.", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "restaurant-booking-maps-to-dining-out", + "status": "must_fix", + "text": "Book a table for 2 tonight", + "notes": "Generic dining requests should not inherit the repo's business default.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Dining Out", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "trial-signup-maps-to-software", + "status": "must_fix", + "text": "Start my free trial", + "notes": "Software action queries should map to the software/application branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Software and Applications", + "model_output.classification.iab_content.mapping_mode": "nearest_equivalent" + } + }, + { + "id": "communication-software-maps-to-tier4", + "status": "must_fix", + "text": "best communication software for remote teams", + "notes": "Full taxonomy support should preserve the tier4 communication branch.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Computer Software and Applications", + "model_output.classification.iab_content.tier4.label": "Communication", + "model_output.classification.iab_content.mapping_mode": "exact" + } + }, + { + "id": "vodka-query-maps-to-alcoholic-beverages", + "status": "must_fix", + "text": "what is best vodka drink should i try", + "notes": "Food and beverage prompts should not fall through to the business default.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Food & Drink", + "model_output.classification.iab_content.tier2.label": "Alcoholic Beverages", + "model_output.classification.iab_content.mapping_mode": "exact" + } + } +] diff --git a/examples/intent_threshold_sweep_suite.json b/examples/intent_threshold_sweep_suite.json new file mode 100644 index 0000000000000000000000000000000000000000..af2d65c04bf9cd5c9ee2b8c0b74050146bb9751e --- /dev/null +++ b/examples/intent_threshold_sweep_suite.json @@ -0,0 +1,52 @@ +[ + { + "input": "What is CRM software?", + "expected_outcome": "pass", + "category": "obvious" + }, + { + "input": "Help me understand CRM basics", + "expected_outcome": "pass", + "category": "obvious" + }, + { + "input": "HubSpot vs Zoho for a small team", + "expected_outcome": "pass", + "category": "obvious" + }, + { + "input": "Which CRM should I buy for a 3-person startup?", + "expected_outcome": "pass", + "category": "obvious" + }, + { + "input": "Start my free trial", + "expected_outcome": "pass", + "category": "obvious" + }, + { + "input": "Book a table for 2 tonight", + "expected_outcome": "pass", + "category": "obvious" + }, + { + "input": "I cannot log into my account", + "expected_outcome": "fallback", + "category": "safe" + }, + { + "input": "go deeper", + "expected_outcome": "fallback", + "category": "safe" + }, + { + "input": "say more about that", + "expected_outcome": "fallback", + "category": "safe" + }, + { + "input": "what do you mean by that", + "expected_outcome": "fallback", + "category": "safe" + } +] diff --git a/examples/known_failure_cases.json b/examples/known_failure_cases.json new file mode 100644 index 0000000000000000000000000000000000000000..846073df938949755158879c34f3af4973134edc --- /dev/null +++ b/examples/known_failure_cases.json @@ -0,0 +1,202 @@ +[ + { + "id": "auto-buying-query-allowed", + "status": "must_fix", + "text": "Which car to buy in 2026", + "notes": "High-intent automotive shopping should clear as monetizable instead of failing safe.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Automotive", + "model_output.classification.iab_content.tier2.label": "Auto Buying and Selling", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + } + }, + { + "id": "laptop-buying-query-allowed", + "status": "must_fix", + "text": "Which laptop to buy in 2026", + "notes": "High-intent laptop shopping should clear as monetizable instead of failing safe.", + "expected": { + "model_output.classification.iab_content.tier1.label": "Technology & Computing", + "model_output.classification.iab_content.tier2.label": "Computing", + "model_output.classification.iab_content.tier3.label": "Laptops", + "model_output.classification.intent.type": "commercial", + "system_decision.policy.monetization_eligibility": "allowed" + } + }, + { + "id": "commercial-comparison-clean-pass", + "status": "must_fix", + "text": "HubSpot vs Zoho for a small team", + "notes": "Clear comparison intent should now pass without fallback and expose a comparison opportunity.", + "expected": { + "model_output.classification.intent.type": "commercial", + "model_output.classification.intent.subtype": "comparison", + "model_output.classification.intent.decision_phase": "consideration", + "model_output.fallback": null, + "system_decision.policy.monetization_eligibility": "allowed_with_caution", + "system_decision.opportunity.type": "comparison_slot", + "system_decision.opportunity.strength": "high" + } + }, + { + "id": "provider-selection-allowed", + "status": "must_fix", + "text": "Which CRM should I buy for a 3-person startup?", + "notes": "Subtype and phase should now rescue a buying query even when the intent head remains conservative.", + "expected": { + "model_output.classification.intent.subtype": "provider_selection", + "model_output.classification.intent.decision_phase": "decision", + "model_output.fallback": null, + "system_decision.policy.monetization_eligibility": "allowed", + "system_decision.opportunity.type": "decision_moment", + "system_decision.opportunity.strength": "high" + } + }, + { + "id": "education-query-restricted", + "status": "must_fix", + "text": "What is CRM software?", + "notes": "Clear educational prompts should stay out of monetizable pathways.", + "expected": { + "model_output.classification.intent.type": "informational", + "model_output.classification.intent.subtype": "education", + "model_output.classification.intent.decision_phase": "awareness", + "model_output.fallback": null, + "system_decision.policy.monetization_eligibility": "restricted", + "system_decision.opportunity.type": "none" + } + }, + { + "id": "ambiguous-follow-up-safe-block", + "status": "must_fix", + "text": "Tell me more", + "notes": "Short follow-ups should still fail safe instead of leaking into commercial handling.", + "expected": { + "model_output.classification.intent.type": "ambiguous", + "model_output.classification.intent.subtype": "follow_up", + "model_output.fallback.reason": "ambiguous_query", + "system_decision.policy.monetization_eligibility": "not_allowed", + "system_decision.opportunity.type": "none" + } + }, + { + "id": "support-query-policy-block", + "status": "must_fix", + "text": "I cannot log into my account", + "notes": "Support traffic must stay blocked even if the subtype head is still imperfect.", + "expected": { + "model_output.classification.intent.type": "support", + "model_output.classification.intent.decision_phase": "support", + "model_output.fallback.reason": "policy_default", + "system_decision.policy.monetization_eligibility": "not_allowed", + "system_decision.opportunity.type": "none" + } + }, + { + "id": "prohibited-query-policy-block", + "status": "must_fix", + "text": "How do I hack into someone else's account", + "notes": "Unsafe queries should route into the prohibited intent type and stay blocked.", + "expected": { + "model_output.classification.intent.type": "prohibited", + "model_output.fallback.reason": "policy_default", + "system_decision.policy.monetization_eligibility": "not_allowed", + "system_decision.opportunity.type": "none" + } + }, + { + "id": "signup-action-still-over-fallbacks", + "status": "acceptable_weakness", + "text": "Start my free trial", + "notes": "The subtype head recognizes signup, but the combined action path still falls back on low confidence.", + "expected": { + "model_output.classification.intent.subtype": "signup", + "model_output.fallback.reason": "confidence_below_threshold", + "system_decision.policy.monetization_eligibility": "not_allowed" + } + }, + { + "id": "price-seeking-underclassified", + "status": "acceptable_weakness", + "text": "What costs less HubSpot or Zoho?", + "notes": "Price-seeking prompts still underclassify and should remain visible until the next data pass.", + "expected": { + "model_output.classification.intent.subtype": "education", + "model_output.classification.intent.decision_phase": "awareness", + "system_decision.policy.monetization_eligibility": "restricted", + "system_decision.opportunity.type": "none" + } + }, + { + "id": "support-subtype-account-help", + "status": "must_fix", + "text": "I cannot log into my account", + "notes": "Login-help prompts should land in the account-help subtype instead of reflection-style labels.", + "expected": { + "model_output.classification.intent.subtype": "account_help", + "system_decision.policy.monetization_eligibility": "not_allowed" + } + }, + { + "id": "discovery-subtype-shortlist", + "status": "must_fix", + "text": "What project management tools should a remote ops team shortlist?", + "notes": "Shortlist-building queries should stay in product discovery instead of drifting into fit-evaluation labels.", + "expected": { + "model_output.classification.intent.subtype": "product_discovery", + "model_output.classification.intent.decision_phase": "consideration" + } + }, + { + "id": "evaluation-subtype-fit-check", + "status": "must_fix", + "text": "Would ClickUp be a good fit for a remote ops team?", + "notes": "Single-vendor fit checks should map to evaluation rather than broad discovery.", + "expected": { + "model_output.classification.intent.subtype": "evaluation", + "model_output.classification.intent.decision_phase": "consideration" + } + }, + { + "id": "comparison-vs-provider-selection-boundary", + "status": "must_fix", + "text": "Compare HubSpot and Pipedrive for a 5-person sales team", + "notes": "Side-by-side comparison language should not be upgraded into provider selection.", + "expected": { + "model_output.classification.intent.subtype": "comparison", + "model_output.classification.intent.decision_phase": "consideration", + "system_decision.opportunity.type": "comparison_slot" + } + }, + { + "id": "signup-vs-account-help-boundary", + "status": "must_fix", + "text": "Create a new trial account for our sales team", + "notes": "New-account requests should stay in signup instead of leaking into account-help support labels.", + "expected": { + "model_output.classification.intent.subtype": "signup", + "model_output.classification.intent.decision_phase": "action" + } + }, + { + "id": "booking-vs-contact-sales-boundary", + "status": "must_fix", + "text": "Have a sales rep contact me about enterprise pricing", + "notes": "Rep outreach requests should stay in contact-sales rather than the booking/demo bucket.", + "expected": { + "model_output.classification.intent.subtype": "contact_sales", + "model_output.classification.intent.decision_phase": "action" + } + }, + { + "id": "task-vs-onboarding-boundary", + "status": "must_fix", + "text": "Export the weekly pipeline report for me", + "notes": "Single in-product workflow requests should stay in task execution rather than onboarding setup.", + "expected": { + "model_output.classification.intent.subtype": "task_execution", + "model_output.classification.intent.decision_phase": "action" + } + } +] diff --git a/iab_classifier.py b/iab_classifier.py new file mode 100644 index 0000000000000000000000000000000000000000..c06844f798e387de5365174c098997f6b8b048e7 --- /dev/null +++ b/iab_classifier.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +from functools import lru_cache + +import torch + +from config import IAB_PARENT_FALLBACK_CONFIDENCE_FLOOR +from iab_taxonomy import get_iab_taxonomy, parse_path_label, path_to_label +from model_runtime import get_head + + +def round_score(value: float) -> float: + return round(float(value), 4) + + +@lru_cache(maxsize=1) +def _prefix_label_ids() -> dict[tuple[str, ...], list[int]]: + head = get_head("iab_content") + prefix_map: dict[tuple[str, ...], list[int]] = {} + for label, label_id in head.config.label2id.items(): + path = parse_path_label(label) + for depth in range(1, len(path) + 1): + prefix_map.setdefault(path[:depth], []).append(label_id) + return prefix_map + + +def _effective_exact_threshold(confidence_threshold: float | None) -> float: + head = get_head("iab_content") + if confidence_threshold is None: + return float(head.calibration.confidence_threshold) + return min(max(float(confidence_threshold), 0.0), 1.0) + + +def _effective_parent_threshold(exact_threshold: float) -> float: + return min(max(IAB_PARENT_FALLBACK_CONFIDENCE_FLOOR, exact_threshold), 1.0) + + +def _build_prediction( + accepted_path: tuple[str, ...], + *, + exact_label: str, + confidence: float, + raw_confidence: float, + exact_threshold: float, + calibrated: bool, + meets_confidence_threshold: bool, + mapping_mode: str, + stopped_reason: str, +) -> dict: + taxonomy = get_iab_taxonomy() + return { + "label": path_to_label(accepted_path), + "exact_label": exact_label, + "path": list(accepted_path), + "confidence": round_score(confidence), + "raw_confidence": round_score(raw_confidence), + "confidence_threshold": round_score(exact_threshold), + "calibrated": calibrated, + "meets_confidence_threshold": meets_confidence_threshold, + "content": taxonomy.build_content_object( + accepted_path, + mapping_mode=mapping_mode, + mapping_confidence=confidence, + ), + "mapping_mode": mapping_mode, + "mapping_confidence": round_score(confidence), + "source": "supervised_classifier", + "stopped_reason": stopped_reason, + } + + +def predict_iab_content_classifier_batch( + texts: list[str], + confidence_threshold: float | None = None, +) -> list[dict | None]: + if not texts: + return [] + + head = get_head("iab_content") + if not head.config.model_dir.exists(): + return [None for _ in texts] + + raw_probs, calibrated_probs = head.predict_probs_batch(texts) + prefix_map = _prefix_label_ids() + exact_threshold = _effective_exact_threshold(confidence_threshold) + parent_threshold = _effective_parent_threshold(exact_threshold) + predictions: list[dict | None] = [] + + for raw_row, calibrated_row in zip(raw_probs, calibrated_probs): + pred_id = int(torch.argmax(calibrated_row).item()) + exact_label = head.model.config.id2label[pred_id] + exact_path = parse_path_label(exact_label) + exact_confidence = float(calibrated_row[pred_id].item()) + exact_raw_confidence = float(raw_row[pred_id].item()) + + if exact_confidence >= exact_threshold: + predictions.append( + _build_prediction( + exact_path, + exact_label=exact_label, + confidence=exact_confidence, + raw_confidence=exact_raw_confidence, + exact_threshold=exact_threshold, + calibrated=head.calibration.calibrated, + meets_confidence_threshold=True, + mapping_mode="exact", + stopped_reason="exact_threshold_met", + ) + ) + continue + + accepted_path = exact_path[:1] + accepted_confidence = float(calibrated_row[prefix_map[accepted_path]].sum().item()) + accepted_raw_confidence = float(raw_row[prefix_map[accepted_path]].sum().item()) + meets_confidence_threshold = False + stopped_reason = "top_level_safe_fallback" + + for depth in range(len(exact_path) - 1, 0, -1): + prefix = exact_path[:depth] + prefix_ids = prefix_map[prefix] + prefix_confidence = float(calibrated_row[prefix_ids].sum().item()) + prefix_raw_confidence = float(raw_row[prefix_ids].sum().item()) + if prefix_confidence >= parent_threshold: + accepted_path = prefix + accepted_confidence = prefix_confidence + accepted_raw_confidence = prefix_raw_confidence + meets_confidence_threshold = True + stopped_reason = "parent_fallback_threshold_met" + break + + predictions.append( + _build_prediction( + accepted_path, + exact_label=exact_label, + confidence=accepted_confidence, + raw_confidence=accepted_raw_confidence, + exact_threshold=exact_threshold, + calibrated=head.calibration.calibrated, + meets_confidence_threshold=meets_confidence_threshold, + mapping_mode="nearest_equivalent", + stopped_reason=stopped_reason, + ) + ) + + return predictions + + +def predict_iab_content_classifier(text: str, confidence_threshold: float | None = None) -> dict | None: + return predict_iab_content_classifier_batch([text], confidence_threshold=confidence_threshold)[0] diff --git a/iab_classifier_model_output/config.json b/iab_classifier_model_output/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5bbcde91f97294c1585f64e30915e7c6179724e3 --- /dev/null +++ b/iab_classifier_model_output/config.json @@ -0,0 +1,1434 @@ +{ + "_name_or_path": "distilbert-base-uncased", + "activation": "gelu", + "architectures": [ + "DistilBertForSequenceClassification" + ], + "attention_dropout": 0.1, + "dim": 768, + "dropout": 0.1, + "hidden_dim": 3072, + "id2label": { + "0": "Attractions", + "1": "Attractions > Amusement and Theme Parks", + "2": "Attractions > Bars & Restaurants", + "3": "Attractions > Casinos & Gambling", + "4": "Attractions > Historic Site and Landmark Tours", + "5": "Attractions > Malls & Shopping Centers", + "6": "Attractions > Museums & Galleries", + "7": "Attractions > Nightclubs", + "8": "Attractions > Outdoor Activities", + "9": "Attractions > Parks & Nature", + "10": "Attractions > Theater Venues", + "11": "Attractions > Zoos & Aquariums", + "12": "Automotive", + "13": "Automotive > Auto Body Styles", + "14": "Automotive > Auto Body Styles > Commercial Trucks", + "15": "Automotive > Auto Body Styles > Convertible", + "16": "Automotive > Auto Body Styles > Coupe", + "17": "Automotive > Auto Body Styles > Crossover", + "18": "Automotive > Auto Body Styles > Hatchback", + "19": "Automotive > Auto Body Styles > Microcar", + "20": "Automotive > Auto Body Styles > Minivan", + "21": "Automotive > Auto Body Styles > Off-Road Vehicles", + "22": "Automotive > Auto Body Styles > Pickup Trucks", + "23": "Automotive > Auto Body Styles > Sedan", + "24": "Automotive > Auto Body Styles > Station Wagon", + "25": "Automotive > Auto Body Styles > SUV", + "26": "Automotive > Auto Body Styles > Van", + "27": "Automotive > Auto Buying and Selling", + "28": "Automotive > Auto Insurance", + "29": "Automotive > Auto Parts", + "30": "Automotive > Auto Recalls", + "31": "Automotive > Auto Rentals", + "32": "Automotive > Auto Repair", + "33": "Automotive > Auto Safety", + "34": "Automotive > Auto Shows", + "35": "Automotive > Auto Technology", + "36": "Automotive > Auto Technology > Auto Infotainment Technologies", + "37": "Automotive > Auto Technology > Auto Navigation Systems", + "38": "Automotive > Auto Technology > Auto Safety Technologies", + "39": "Automotive > Auto Type", + "40": "Automotive > Auto Type > Budget Cars", + "41": "Automotive > Auto Type > Certified Pre-Owned Cars", + "42": "Automotive > Auto Type > Classic Cars", + "43": "Automotive > Auto Type > Concept Cars", + "44": "Automotive > Auto Type > Driverless Cars", + "45": "Automotive > Auto Type > Green Vehicles", + "46": "Automotive > Auto Type > Luxury Cars", + "47": "Automotive > Auto Type > Performance Cars", + "48": "Automotive > Car Culture", + "49": "Automotive > Dash Cam Videos", + "50": "Automotive > Motorcycles", + "51": "Automotive > Road-Side Assistance", + "52": "Automotive > Scooters", + "53": "Books and Literature", + "54": "Books and Literature > Art and Photography", + "55": "Books and Literature > Comics and Graphic Novels", + "56": "Books and Literature > Fiction", + "57": "Books and Literature > Poetry", + "58": "Business and Finance", + "59": "Business and Finance > Business", + "60": "Business and Finance > Business > Business Accounting & Finance", + "61": "Business and Finance > Business > Business Administration", + "62": "Business and Finance > Business > Business Banking & Finance", + "63": "Business and Finance > Business > Business Banking & Finance > Angel Investment", + "64": "Business and Finance > Business > Business Banking & Finance > Bankruptcy", + "65": "Business and Finance > Business > Business Banking & Finance > Business Loans", + "66": "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting", + "67": "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions", + "68": "Business and Finance > Business > Business Banking & Finance > Private Equity", + "69": "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back", + "70": "Business and Finance > Business > Business Banking & Finance > Venture Capital", + "71": "Business and Finance > Business > Business I.T.", + "72": "Business and Finance > Business > Business Operations", + "73": "Business and Finance > Business > Business Utilities", + "74": "Business and Finance > Business > Consumer Issues", + "75": "Business and Finance > Business > Consumer Issues > Recalls", + "76": "Business and Finance > Business > Executive Leadership & Management", + "77": "Business and Finance > Business > Government Business", + "78": "Business and Finance > Business > Green Solutions", + "79": "Business and Finance > Business > Human Resources", + "80": "Business and Finance > Business > Large Business", + "81": "Business and Finance > Business > Logistics", + "82": "Business and Finance > Business > Marketing and Advertising", + "83": "Business and Finance > Business > Sales", + "84": "Business and Finance > Business > Small and Medium-sized Business", + "85": "Business and Finance > Business > Startups", + "86": "Business and Finance > Economy", + "87": "Business and Finance > Economy > Commodities", + "88": "Business and Finance > Economy > Currencies", + "89": "Business and Finance > Economy > Financial Crisis", + "90": "Business and Finance > Economy > Financial Reform", + "91": "Business and Finance > Economy > Financial Regulation", + "92": "Business and Finance > Economy > Gasoline Prices", + "93": "Business and Finance > Economy > Housing Market", + "94": "Business and Finance > Economy > Interest Rates", + "95": "Business and Finance > Economy > Job Market", + "96": "Business and Finance > Industries", + "97": "Business and Finance > Industries > Advertising Industry", + "98": "Business and Finance > Industries > Agriculture", + "99": "Business and Finance > Industries > Apparel Industry", + "100": "Business and Finance > Industries > Automotive Industry", + "101": "Business and Finance > Industries > Aviation Industry", + "102": "Business and Finance > Industries > Biotech and Biomedical Industry", + "103": "Business and Finance > Industries > Civil Engineering Industry", + "104": "Business and Finance > Industries > Construction Industry", + "105": "Business and Finance > Industries > Defense Industry", + "106": "Business and Finance > Industries > Education industry", + "107": "Business and Finance > Industries > Entertainment Industry", + "108": "Business and Finance > Industries > Environmental Services Industry", + "109": "Business and Finance > Industries > Financial Industry", + "110": "Business and Finance > Industries > Food Industry", + "111": "Business and Finance > Industries > Healthcare Industry", + "112": "Business and Finance > Industries > Hospitality Industry", + "113": "Business and Finance > Industries > Information Services Industry", + "114": "Business and Finance > Industries > Legal Services Industry", + "115": "Business and Finance > Industries > Logistics and Transportation Industry", + "116": "Business and Finance > Industries > Management Consulting Industry", + "117": "Business and Finance > Industries > Manufacturing Industry", + "118": "Business and Finance > Industries > Mechanical and Industrial Engineering Industry", + "119": "Business and Finance > Industries > Media Industry", + "120": "Business and Finance > Industries > Metals Industry", + "121": "Business and Finance > Industries > Non-Profit Organizations", + "122": "Business and Finance > Industries > Pharmaceutical Industry", + "123": "Business and Finance > Industries > Power and Energy Industry", + "124": "Business and Finance > Industries > Publishing Industry", + "125": "Business and Finance > Industries > Real Estate Industry", + "126": "Business and Finance > Industries > Retail Industry", + "127": "Business and Finance > Industries > Technology Industry", + "128": "Business and Finance > Industries > Telecommunications Industry", + "129": "Careers", + "130": "Careers > Apprenticeships", + "131": "Careers > Career Advice", + "132": "Careers > Career Planning", + "133": "Careers > Job Search", + "134": "Careers > Job Search > Job Fairs", + "135": "Careers > Job Search > Resume Writing and Advice", + "136": "Careers > Remote Working", + "137": "Careers > Vocational Training", + "138": "Technology & Computing > Computing > Computer Software and Applications > Communication", + "139": "Crime", + "140": "Disasters", + "141": "Education", + "142": "Education > Adult Education", + "143": "Education > College Education", + "144": "Education > College Education > College Planning", + "145": "Education > College Education > Postgraduate Education", + "146": "Education > College Education > Postgraduate Education > Professional School", + "147": "Education > College Education > Undergraduate Education", + "148": "Education > Early Childhood Education", + "149": "Education > Educational Assessment", + "150": "Education > Educational Assessment > Standardized Testing", + "151": "Education > Homeschooling", + "152": "Education > Homework and Study", + "153": "Education > Language Learning", + "154": "Education > Online Education", + "155": "Education > Primary Education", + "156": "Education > Private School", + "157": "Education > Secondary Education", + "158": "Education > Special Education", + "159": "Entertainment", + "160": "Entertainment > Movies", + "161": "Entertainment > Music", + "162": "Entertainment > Television", + "163": "Events", + "164": "Events > Awards Shows", + "165": "Events > Business Expos & Conferences", + "166": "Events > Fan Conventions", + "167": "Family and Relationships", + "168": "Family and Relationships > Bereavement", + "169": "Family and Relationships > Dating", + "170": "Family and Relationships > Divorce", + "171": "Family and Relationships > Eldercare", + "172": "Family and Relationships > Marriage and Civil Unions", + "173": "Family and Relationships > Parenting", + "174": "Family and Relationships > Parenting > Adoption and Fostering", + "175": "Family and Relationships > Parenting > Daycare and Pre-School", + "176": "Family and Relationships > Parenting > Internet Safety", + "177": "Family and Relationships > Parenting > Parenting Babies and Toddlers", + "178": "Family and Relationships > Parenting > Parenting Children Aged 4-11", + "179": "Family and Relationships > Parenting > Parenting Teens", + "180": "Family and Relationships > Parenting > Special Needs Kids", + "181": "Family and Relationships > Single Life", + "182": "Fine Art", + "183": "Fine Art > Costume", + "184": "Fine Art > Dance", + "185": "Fine Art > Design", + "186": "Fine Art > Digital Arts", + "187": "Fine Art > Fine Art Photography", + "188": "Fine Art > Modern Art", + "189": "Fine Art > Opera", + "190": "Fine Art > Theater", + "191": "Food & Drink", + "192": "Food & Drink > Alcoholic Beverages", + "193": "Food & Drink > Barbecues and Grilling", + "194": "Food & Drink > Cooking", + "195": "Food & Drink > Desserts and Baking", + "196": "Food & Drink > Dining Out", + "197": "Food & Drink > Food Allergies", + "198": "Food & Drink > Food Movements", + "199": "Food & Drink > Healthy Cooking and Eating", + "200": "Food & Drink > Non-Alcoholic Beverages", + "201": "Food & Drink > Vegan Diets", + "202": "Food & Drink > Vegetarian Diets", + "203": "Food & Drink > World Cuisines", + "204": "Genres", + "205": "Genres > Nature", + "206": "Genres > Action/Adventure", + "207": "Genres > Animation & Anime", + "208": "Genres > Biographies", + "209": "Genres > Comedy", + "210": "Genres > Documentary", + "211": "Genres > Drama", + "212": "Genres > Factual", + "213": "Genres > Family/Children", + "214": "Genres > Fantasy", + "215": "Genres > History", + "216": "Genres > Holiday", + "217": "Genres > Horror", + "218": "Genres > Lifestyle", + "219": "Genres > Music Video", + "220": "Genres > Musical", + "221": "Genres > Mystery", + "222": "Genres > Reality TV", + "223": "Genres > Romance", + "224": "Genres > Science Fiction", + "225": "Genres > Soap Opera", + "226": "Genres > Special Interest (Indie/Art House)", + "227": "Genres > Sports Radio", + "228": "Genres > Talk Radio", + "229": "Genres > Talk Radio > Public Radio", + "230": "Genres > Talk Show", + "231": "Genres > True Crime", + "232": "Genres > Western", + "233": "Genres > Young Adult", + "234": "Healthy Living", + "235": "Healthy Living > Children's Health", + "236": "Healthy Living > Fitness and Exercise", + "237": "Healthy Living > Fitness and Exercise > Participant Sports", + "238": "Healthy Living > Fitness and Exercise > Running and Jogging", + "239": "Healthy Living > Men's Health", + "240": "Healthy Living > Nutrition", + "241": "Healthy Living > Senior Health", + "242": "Healthy Living > Weight Loss", + "243": "Healthy Living > Wellness", + "244": "Healthy Living > Wellness > Alternative Medicine", + "245": "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements", + "246": "Healthy Living > Wellness > Alternative Medicine > Holistic Health", + "247": "Healthy Living > Wellness > Physical Therapy", + "248": "Healthy Living > Wellness > Smoking Cessation", + "249": "Healthy Living > Women's Health", + "250": "Hobbies & Interests", + "251": "Hobbies & Interests > Antiquing and Antiques", + "252": "Hobbies & Interests > Arts and Crafts", + "253": "Hobbies & Interests > Arts and Crafts > Beadwork", + "254": "Hobbies & Interests > Arts and Crafts > Candle and Soap Making", + "255": "Hobbies & Interests > Arts and Crafts > Drawing and Sketching", + "256": "Hobbies & Interests > Arts and Crafts > Jewelry Making", + "257": "Hobbies & Interests > Arts and Crafts > Needlework", + "258": "Hobbies & Interests > Arts and Crafts > Painting", + "259": "Hobbies & Interests > Arts and Crafts > Photography", + "260": "Hobbies & Interests > Arts and Crafts > Scrapbooking", + "261": "Hobbies & Interests > Arts and Crafts > Woodworking", + "262": "Hobbies & Interests > Beekeeping", + "263": "Hobbies & Interests > Birdwatching", + "264": "Hobbies & Interests > Cigars", + "265": "Hobbies & Interests > Collecting", + "266": "Hobbies & Interests > Collecting > Comic Books", + "267": "Hobbies & Interests > Collecting > Stamps and Coins", + "268": "Hobbies & Interests > Content Production", + "269": "Hobbies & Interests > Content Production > Audio Production", + "270": "Hobbies & Interests > Content Production > Freelance Writing", + "271": "Hobbies & Interests > Content Production > Screenwriting", + "272": "Hobbies & Interests > Content Production > Video Production", + "273": "Hobbies & Interests > Games and Puzzles", + "274": "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles", + "275": "Hobbies & Interests > Games and Puzzles > Card Games", + "276": "Hobbies & Interests > Games and Puzzles > Roleplaying Games", + "277": "Hobbies & Interests > Genealogy and Ancestry", + "278": "Hobbies & Interests > Magic and Illusion", + "279": "Hobbies & Interests > Model Toys", + "280": "Hobbies & Interests > Musical Instruments", + "281": "Hobbies & Interests > Paranormal Phenomena", + "282": "Hobbies & Interests > Radio Control", + "283": "Hobbies & Interests > Sci-fi and Fantasy", + "284": "Hobbies & Interests > Workshops and Classes", + "285": "Holidays", + "286": "Holidays > National & Civic Holidays", + "287": "Home & Garden", + "288": "Home & Garden > Gardening", + "289": "Home & Garden > Home Appliances", + "290": "Home & Garden > Home Entertaining", + "291": "Home & Garden > Home Improvement", + "292": "Home & Garden > Home Security", + "293": "Home & Garden > Indoor Environmental Quality", + "294": "Home & Garden > Interior Decorating", + "295": "Home & Garden > Landscaping", + "296": "Home & Garden > Outdoor Decorating", + "297": "Home & Garden > Remodeling & Construction", + "298": "Home & Garden > Smart Home", + "299": "Law", + "300": "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation", + "301": "Medical Health", + "302": "Medical Health > Cosmetic Medical Services", + "303": "Medical Health > Diseases and Conditions", + "304": "Medical Health > Diseases and Conditions > Allergies", + "305": "Medical Health > Diseases and Conditions > Blood Disorders", + "306": "Medical Health > Diseases and Conditions > Bone and Joint Conditions", + "307": "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders", + "308": "Medical Health > Diseases and Conditions > Cancer", + "309": "Medical Health > Diseases and Conditions > Cold and Flu", + "310": "Medical Health > Diseases and Conditions > Dental Health", + "311": "Medical Health > Diseases and Conditions > Diabetes", + "312": "Medical Health > Diseases and Conditions > Digestive Disorders", + "313": "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions", + "314": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases", + "315": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders", + "316": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause", + "317": "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders", + "318": "Medical Health > Diseases and Conditions > Eye and Vision Conditions", + "319": "Medical Health > Diseases and Conditions > Foot Health", + "320": "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases", + "321": "Medical Health > Diseases and Conditions > Infectious Diseases", + "322": "Medical Health > Diseases and Conditions > Injuries", + "323": "Medical Health > Diseases and Conditions > Injuries > First Aid", + "324": "Medical Health > Diseases and Conditions > Lung and Respiratory Health", + "325": "Medical Health > Diseases and Conditions > Mental Health", + "326": "Medical Health > Diseases and Conditions > Reproductive Health", + "327": "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control", + "328": "Medical Health > Diseases and Conditions > Reproductive Health > Infertility", + "329": "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy", + "330": "Medical Health > Diseases and Conditions > Sexual Health", + "331": "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions", + "332": "Medical Health > Diseases and Conditions > Skin and Dermatology", + "333": "Medical Health > Diseases and Conditions > Sleep Disorders", + "334": "Medical Health > Diseases and Conditions > Substance Abuse", + "335": "Medical Health > Medical Tests", + "336": "Medical Health > Pharmaceutical Drugs", + "337": "Medical Health > Surgery", + "338": "Medical Health > Vaccines", + "339": "Entertainment > Music > Adult Album Alternative", + "340": "Entertainment > Music > Adult Contemporary Music", + "341": "Entertainment > Music > Adult Contemporary Music > Soft AC Music", + "342": "Entertainment > Music > Adult Contemporary Music > Urban AC Music", + "343": "Entertainment > Music > Alternative Music", + "344": "Entertainment > Music > Blues", + "345": "Entertainment > Music > Children's Music", + "346": "Entertainment > Music > Classic Hits", + "347": "Entertainment > Music > Classical Music", + "348": "Entertainment > Music > College Radio", + "349": "Entertainment > Music > Comedy (Music and Audio)", + "350": "Entertainment > Music > Contemporary Hits/Pop/Top 40", + "351": "Entertainment > Music > Country Music", + "352": "Entertainment > Music > Dance and Electronic Music", + "353": "Entertainment > Music > Gospel Music", + "354": "Entertainment > Music > Hip Hop Music", + "355": "Entertainment > Music > Inspirational/New Age Music", + "356": "Entertainment > Music > Jazz", + "357": "Entertainment > Music > Oldies/Adult Standards", + "358": "Entertainment > Music > R&B/Soul/Funk", + "359": "Entertainment > Music > Reggae", + "360": "Entertainment > Music > Religious (Music and Audio)", + "361": "Entertainment > Music > Rock Music", + "362": "Entertainment > Music > Rock Music > Album-oriented Rock", + "363": "Entertainment > Music > Rock Music > Alternative Rock", + "364": "Entertainment > Music > Rock Music > Classic Rock", + "365": "Entertainment > Music > Rock Music > Hard Rock", + "366": "Entertainment > Music > Rock Music > Soft Rock", + "367": "Entertainment > Music > Songwriters/Folk", + "368": "Entertainment > Music > Soundtracks, TV and Showtunes", + "369": "Entertainment > Music > World/International Music", + "370": "Entertainment > Music > Urban Contemporary Music", + "371": "Entertainment > Music > Variety (Music and Audio)", + "372": "Personal Celebrations & Life Events", + "373": "Personal Celebrations & Life Events > Anniversary", + "374": "Personal Celebrations & Life Events > Baby Shower", + "375": "Personal Celebrations & Life Events > Bachelor Party", + "376": "Personal Celebrations & Life Events > Bachelorette Party", + "377": "Personal Celebrations & Life Events > Birth", + "378": "Personal Celebrations & Life Events > Birthday", + "379": "Personal Celebrations & Life Events > Funeral", + "380": "Personal Celebrations & Life Events > Graduation", + "381": "Personal Celebrations & Life Events > Prom", + "382": "Personal Celebrations & Life Events > Wedding", + "383": "Personal Finance", + "384": "Personal Finance > Consumer Banking", + "385": "Personal Finance > Financial Assistance", + "386": "Personal Finance > Financial Assistance > Government Support and Welfare", + "387": "Personal Finance > Financial Assistance > Student Financial Aid", + "388": "Personal Finance > Financial Planning", + "389": "Personal Finance > Frugal Living", + "390": "Personal Finance > Home Utilities", + "391": "Personal Finance > Home Utilities > Gas and Electric", + "392": "Personal Finance > Home Utilities > Internet Service Providers", + "393": "Personal Finance > Home Utilities > Phone Services", + "394": "Personal Finance > Home Utilities > Water Services", + "395": "Personal Finance > Insurance", + "396": "Personal Finance > Insurance > Health Insurance", + "397": "Personal Finance > Insurance > Home Insurance", + "398": "Personal Finance > Insurance > Life Insurance", + "399": "Personal Finance > Insurance > Motor Insurance", + "400": "Personal Finance > Insurance > Pet Insurance", + "401": "Personal Finance > Insurance > Travel Insurance", + "402": "Personal Finance > Personal Debt", + "403": "Personal Finance > Personal Debt > Credit Cards", + "404": "Personal Finance > Personal Debt > Home Financing", + "405": "Personal Finance > Personal Debt > Personal Loans", + "406": "Personal Finance > Personal Debt > Student Loans", + "407": "Personal Finance > Personal Investing", + "408": "Personal Finance > Personal Investing > Hedge Funds", + "409": "Personal Finance > Personal Investing > Mutual Funds", + "410": "Personal Finance > Personal Investing > Options", + "411": "Personal Finance > Personal Investing > Stocks and Bonds", + "412": "Personal Finance > Personal Taxes", + "413": "Personal Finance > Retirement Planning", + "414": "Pets", + "415": "Pets > Birds", + "416": "Pets > Cats", + "417": "Pets > Dogs", + "418": "Pets > Fish and Aquariums", + "419": "Pets > Large Animals", + "420": "Pets > Pet Adoptions", + "421": "Pets > Pet Supplies", + "422": "Pets > Reptiles", + "423": "Pets > Veterinary Medicine", + "424": "Politics", + "425": "Politics > Civic affairs", + "426": "Politics > Elections", + "427": "Politics > Political Issues & policy", + "428": "Pop Culture", + "429": "Pop Culture > Celebrity Deaths", + "430": "Pop Culture > Celebrity Families", + "431": "Pop Culture > Celebrity Homes", + "432": "Pop Culture > Celebrity Pregnancy", + "433": "Pop Culture > Celebrity Relationships", + "434": "Pop Culture > Celebrity Scandal", + "435": "Pop Culture > Celebrity Style", + "436": "Pop Culture > Humor and Satire", + "437": "Technology & Computing > Computing > Computer Software and Applications > Productivity", + "438": "Real Estate", + "439": "Real Estate > Apartments", + "440": "Real Estate > Developmental Sites", + "441": "Real Estate > Hotel Properties", + "442": "Real Estate > Houses", + "443": "Real Estate > Industrial Property", + "444": "Real Estate > Land and Farms", + "445": "Real Estate > Office Property", + "446": "Real Estate > Real Estate Buying and Selling", + "447": "Real Estate > Real Estate Renting and Leasing", + "448": "Real Estate > Retail Property", + "449": "Real Estate > Vacation Properties", + "450": "Religion & Spirituality", + "451": "Religion & Spirituality > Agnosticism", + "452": "Religion & Spirituality > Astrology", + "453": "Religion & Spirituality > Atheism", + "454": "Religion & Spirituality > Buddhism", + "455": "Religion & Spirituality > Christianity", + "456": "Religion & Spirituality > Hinduism", + "457": "Religion & Spirituality > Islam", + "458": "Religion & Spirituality > Judaism", + "459": "Religion & Spirituality > Sikhism", + "460": "Religion & Spirituality > Spirituality", + "461": "Science", + "462": "Science > Biological Sciences", + "463": "Science > Chemistry", + "464": "Science > Environment", + "465": "Science > Genetics", + "466": "Science > Geography", + "467": "Science > Geology", + "468": "Science > Physics", + "469": "Science > Space and Astronomy", + "470": "Science > Weather", + "471": "Sensitive Topics", + "472": "Sensitive Topics > Adult & Explicit Sexual Content", + "473": "Sensitive Topics > Arms & Ammunition", + "474": "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations", + "475": "Sensitive Topics > Death, Injury, or Military Conflict", + "476": "Sensitive Topics > Debated Sensitive Social Issues", + "477": "Sensitive Topics > Hate Speech and Acts of Aggression", + "478": "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol", + "479": "Sensitive Topics > Obscenity and Profanity", + "480": "Sensitive Topics > Online Piracy", + "481": "Sensitive Topics > Spam or Harmful Content", + "482": "Sensitive Topics > Terrorism", + "483": "Shopping", + "484": "Shopping > Children's Games and Toys", + "485": "Shopping > Coupons and Discounts", + "486": "Shopping > Flower Shopping", + "487": "Shopping > Gifts and Greetings Cards", + "488": "Shopping > Grocery Shopping", + "489": "Shopping > Holiday Shopping", + "490": "Shopping > Household Supplies", + "491": "Shopping > Lotteries and Scratchcards", + "492": "Shopping > Party Supplies and Decorations", + "493": "Shopping > Sales and Promotions", + "494": "Sports", + "495": "Sports > American Football", + "496": "Sports > Australian Rules Football", + "497": "Sports > Auto Racing", + "498": "Sports > Auto Racing > Motorcycle Sports", + "499": "Sports > Badminton", + "500": "Sports > Baseball", + "501": "Sports > Basketball", + "502": "Sports > Beach Volleyball", + "503": "Sports > Bodybuilding", + "504": "Sports > Bowling", + "505": "Sports > Boxing", + "506": "Sports > Cheerleading", + "507": "Sports > College Sports", + "508": "Sports > College Sports > College Baseball", + "509": "Sports > College Sports > College Basketball", + "510": "Sports > College Sports > College Football", + "511": "Sports > Cricket", + "512": "Sports > Cycling", + "513": "Sports > Darts", + "514": "Sports > Disabled Sports", + "515": "Sports > Diving", + "516": "Sports > Equine Sports", + "517": "Sports > Equine Sports > Horse Racing", + "518": "Sports > Extreme Sports", + "519": "Sports > Extreme Sports > Canoeing and Kayaking", + "520": "Sports > Extreme Sports > Climbing", + "521": "Sports > Extreme Sports > Paintball", + "522": "Sports > Extreme Sports > Scuba Diving", + "523": "Sports > Extreme Sports > Skateboarding", + "524": "Sports > Extreme Sports > Snowboarding", + "525": "Sports > Extreme Sports > Surfing and Bodyboarding", + "526": "Sports > Extreme Sports > Waterskiing and Wakeboarding", + "527": "Sports > Fantasy Sports", + "528": "Sports > Field Hockey", + "529": "Sports > Figure Skating", + "530": "Sports > Fishing Sports", + "531": "Sports > Golf", + "532": "Sports > Gymnastics", + "533": "Sports > Hunting and Shooting", + "534": "Sports > Ice Hockey", + "535": "Sports > Inline Skating", + "536": "Sports > Lacrosse", + "537": "Sports > Martial Arts", + "538": "Sports > Olympic Sports", + "539": "Sports > Olympic Sports > Summer Olympic Sports", + "540": "Sports > Olympic Sports > Winter Olympic Sports", + "541": "Sports > Poker and Professional Gambling", + "542": "Sports > Rodeo", + "543": "Sports > Rowing", + "544": "Sports > Rugby", + "545": "Sports > Rugby > Rugby League", + "546": "Sports > Rugby > Rugby Union", + "547": "Sports > Sailing", + "548": "Sports > Skiing", + "549": "Sports > Snooker/Pool/Billiards", + "550": "Sports > Soccer", + "551": "Sports > Softball", + "552": "Sports > Sports Equipment", + "553": "Sports > Squash", + "554": "Sports > Swimming", + "555": "Sports > Table Tennis", + "556": "Sports > Tennis", + "557": "Sports > Track and Field", + "558": "Sports > Volleyball", + "559": "Sports > Walking", + "560": "Sports > Water Polo", + "561": "Sports > Weightlifting", + "562": "Sports > Wrestling", + "563": "Style & Fashion", + "564": "Style & Fashion > Beauty", + "565": "Style & Fashion > Beauty > Hair Care", + "566": "Style & Fashion > Beauty > Makeup and Accessories", + "567": "Style & Fashion > Beauty > Nail Care", + "568": "Style & Fashion > Beauty > Natural and Organic Beauty", + "569": "Style & Fashion > Beauty > Perfume and Fragrance", + "570": "Style & Fashion > Beauty > Skin Care", + "571": "Style & Fashion > Body Art", + "572": "Style & Fashion > Children's Clothing", + "573": "Style & Fashion > Designer Clothing", + "574": "Style & Fashion > Fashion Trends", + "575": "Style & Fashion > High Fashion", + "576": "Style & Fashion > Men's Fashion", + "577": "Style & Fashion > Men's Fashion > Men's Accessories", + "578": "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches", + "579": "Style & Fashion > Men's Fashion > Men's Clothing", + "580": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear", + "581": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear", + "582": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear", + "583": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear", + "584": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear", + "585": "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear", + "586": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", + "587": "Style & Fashion > Personal Care", + "588": "Style & Fashion > Personal Care > Bath and Shower", + "589": "Style & Fashion > Personal Care > Deodorant and Antiperspirant", + "590": "Style & Fashion > Personal Care > Oral care", + "591": "Style & Fashion > Personal Care > Shaving", + "592": "Style & Fashion > Street Style", + "593": "Style & Fashion > Women's Fashion", + "594": "Style & Fashion > Women's Fashion > Women's Accessories", + "595": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses", + "596": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets", + "597": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves", + "598": "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches", + "599": "Style & Fashion > Women's Fashion > Women's Clothing", + "600": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear", + "601": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear", + "602": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear", + "603": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear", + "604": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear", + "605": "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear", + "606": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", + "607": "Technology & Computing", + "608": "Technology & Computing > Artificial Intelligence", + "609": "Technology & Computing > Augmented Reality", + "610": "Technology & Computing > Computing", + "611": "Technology & Computing > Computing > Computer Networking", + "612": "Technology & Computing > Computing > Computer Peripherals", + "613": "Technology & Computing > Computing > Computer Software and Applications", + "614": "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics", + "615": "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software", + "616": "Technology & Computing > Computing > Computer Software and Applications > Browsers", + "617": "Technology & Computing > Computing > Computer Software and Applications > Computer Animation", + "618": "Technology & Computing > Computing > Computer Software and Applications > Databases", + "619": "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing", + "620": "Technology & Computing > Computing > Computer Software and Applications > Digital Audio", + "621": "Technology & Computing > Computing > Computer Software and Applications > Graphics Software", + "622": "Technology & Computing > Computing > Computer Software and Applications > Operating Systems", + "623": "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software", + "624": "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware", + "625": "Technology & Computing > Computing > Computer Software and Applications > Video Software", + "626": "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing", + "627": "Technology & Computing > Computing > Data Storage and Warehousing", + "628": "Technology & Computing > Computing > Desktops", + "629": "Technology & Computing > Computing > Information and Network Security", + "630": "Technology & Computing > Computing > Internet", + "631": "Technology & Computing > Computing > Internet > Cloud Computing", + "632": "Technology & Computing > Computing > Internet > Email", + "633": "Technology & Computing > Computing > Internet > Internet for Beginners", + "634": "Technology & Computing > Computing > Internet > Internet of Things", + "635": "Technology & Computing > Computing > Internet > IT and Internet Support", + "636": "Technology & Computing > Computing > Internet > Search", + "637": "Technology & Computing > Computing > Internet > Social Networking", + "638": "Technology & Computing > Computing > Internet > Web Design and HTML", + "639": "Technology & Computing > Computing > Internet > Web Development", + "640": "Technology & Computing > Computing > Internet > Web Hosting", + "641": "Technology & Computing > Computing > Laptops", + "642": "Technology & Computing > Computing > Programming Languages", + "643": "Technology & Computing > Consumer Electronics", + "644": "Technology & Computing > Consumer Electronics > Cameras and Camcorders", + "645": "Technology & Computing > Consumer Electronics > Home Entertainment Systems", + "646": "Technology & Computing > Consumer Electronics > Smartphones", + "647": "Technology & Computing > Consumer Electronics > Tablets and E-readers", + "648": "Technology & Computing > Consumer Electronics > Wearable Technology", + "649": "Technology & Computing > Robotics", + "650": "Technology & Computing > Virtual Reality", + "651": "Travel", + "652": "Travel > Travel Accessories", + "653": "Travel > Travel Locations", + "654": "Travel > Travel Locations > Africa Travel", + "655": "Travel > Travel Locations > Asia Travel", + "656": "Travel > Travel Locations > Australia and Oceania Travel", + "657": "Travel > Travel Locations > Europe Travel", + "658": "Travel > Travel Locations > North America Travel", + "659": "Travel > Travel Locations > Polar Travel", + "660": "Travel > Travel Locations > South America Travel", + "661": "Travel > Travel Preparation and Advice", + "662": "Travel > Travel Type", + "663": "Travel > Travel Type > Adventure Travel", + "664": "Travel > Travel Type > Air Travel", + "665": "Travel > Travel Type > Beach Travel", + "666": "Travel > Travel Type > Bed & Breakfasts", + "667": "Travel > Travel Type > Budget Travel", + "668": "Travel > Travel Type > Business Travel", + "669": "Travel > Travel Type > Camping", + "670": "Travel > Travel Type > Cruises", + "671": "Travel > Travel Type > Day Trips", + "672": "Travel > Travel Type > Family Travel", + "673": "Travel > Travel Type > Honeymoons and Getaways", + "674": "Travel > Travel Type > Hotels and Motels", + "675": "Travel > Travel Type > Rail Travel", + "676": "Travel > Travel Type > Road Trips", + "677": "Travel > Travel Type > Spas", + "678": "Video Gaming", + "679": "Video Gaming > Console Games", + "680": "Video Gaming > eSports", + "681": "Video Gaming > Mobile Games", + "682": "Video Gaming > PC Games", + "683": "Video Gaming > Video Game Genres", + "684": "Video Gaming > Video Game Genres > Action Video Games", + "685": "Video Gaming > Video Game Genres > Action-Adventure Video Games", + "686": "Video Gaming > Video Game Genres > Adult Video Games", + "687": "Video Gaming > Video Game Genres > Adventure Video Games", + "688": "Video Gaming > Video Game Genres > Casino and Gambling Video Games", + "689": "Video Gaming > Video Game Genres > Casual Games", + "690": "Video Gaming > Video Game Genres > Educational Video Games", + "691": "Video Gaming > Video Game Genres > Exercise and Fitness Video Games", + "692": "Video Gaming > Video Game Genres > Family Video Games", + "693": "Video Gaming > Video Game Genres > Horror Video Games", + "694": "Video Gaming > Video Game Genres > MMOs", + "695": "Video Gaming > Video Game Genres > Music and Party Video Games", + "696": "Video Gaming > Video Game Genres > Puzzle Video Games", + "697": "Video Gaming > Video Game Genres > Racing Video Games", + "698": "Video Gaming > Video Game Genres > Role-Playing Video Games", + "699": "Video Gaming > Video Game Genres > Simulation Video Games", + "700": "Video Gaming > Video Game Genres > Sports Video Games", + "701": "Video Gaming > Video Game Genres > Strategy Video Games", + "702": "War and Conflicts" + }, + "initializer_range": 0.02, + "label2id": { + "Attractions": 0, + "Attractions > Amusement and Theme Parks": 1, + "Attractions > Bars & Restaurants": 2, + "Attractions > Casinos & Gambling": 3, + "Attractions > Historic Site and Landmark Tours": 4, + "Attractions > Malls & Shopping Centers": 5, + "Attractions > Museums & Galleries": 6, + "Attractions > Nightclubs": 7, + "Attractions > Outdoor Activities": 8, + "Attractions > Parks & Nature": 9, + "Attractions > Theater Venues": 10, + "Attractions > Zoos & Aquariums": 11, + "Automotive": 12, + "Automotive > Auto Body Styles": 13, + "Automotive > Auto Body Styles > Commercial Trucks": 14, + "Automotive > Auto Body Styles > Convertible": 15, + "Automotive > Auto Body Styles > Coupe": 16, + "Automotive > Auto Body Styles > Crossover": 17, + "Automotive > Auto Body Styles > Hatchback": 18, + "Automotive > Auto Body Styles > Microcar": 19, + "Automotive > Auto Body Styles > Minivan": 20, + "Automotive > Auto Body Styles > Off-Road Vehicles": 21, + "Automotive > Auto Body Styles > Pickup Trucks": 22, + "Automotive > Auto Body Styles > SUV": 25, + "Automotive > Auto Body Styles > Sedan": 23, + "Automotive > Auto Body Styles > Station Wagon": 24, + "Automotive > Auto Body Styles > Van": 26, + "Automotive > Auto Buying and Selling": 27, + "Automotive > Auto Insurance": 28, + "Automotive > Auto Parts": 29, + "Automotive > Auto Recalls": 30, + "Automotive > Auto Rentals": 31, + "Automotive > Auto Repair": 32, + "Automotive > Auto Safety": 33, + "Automotive > Auto Shows": 34, + "Automotive > Auto Technology": 35, + "Automotive > Auto Technology > Auto Infotainment Technologies": 36, + "Automotive > Auto Technology > Auto Navigation Systems": 37, + "Automotive > Auto Technology > Auto Safety Technologies": 38, + "Automotive > Auto Type": 39, + "Automotive > Auto Type > Budget Cars": 40, + "Automotive > Auto Type > Certified Pre-Owned Cars": 41, + "Automotive > Auto Type > Classic Cars": 42, + "Automotive > Auto Type > Concept Cars": 43, + "Automotive > Auto Type > Driverless Cars": 44, + "Automotive > Auto Type > Green Vehicles": 45, + "Automotive > Auto Type > Luxury Cars": 46, + "Automotive > Auto Type > Performance Cars": 47, + "Automotive > Car Culture": 48, + "Automotive > Dash Cam Videos": 49, + "Automotive > Motorcycles": 50, + "Automotive > Road-Side Assistance": 51, + "Automotive > Scooters": 52, + "Books and Literature": 53, + "Books and Literature > Art and Photography": 54, + "Books and Literature > Comics and Graphic Novels": 55, + "Books and Literature > Fiction": 56, + "Books and Literature > Poetry": 57, + "Business and Finance": 58, + "Business and Finance > Business": 59, + "Business and Finance > Business > Business Accounting & Finance": 60, + "Business and Finance > Business > Business Administration": 61, + "Business and Finance > Business > Business Banking & Finance": 62, + "Business and Finance > Business > Business Banking & Finance > Angel Investment": 63, + "Business and Finance > Business > Business Banking & Finance > Bankruptcy": 64, + "Business and Finance > Business > Business Banking & Finance > Business Loans": 65, + "Business and Finance > Business > Business Banking & Finance > Debt Factoring & Invoice Discounting": 66, + "Business and Finance > Business > Business Banking & Finance > Mergers and Acquisitions": 67, + "Business and Finance > Business > Business Banking & Finance > Private Equity": 68, + "Business and Finance > Business > Business Banking & Finance > Sale & Lease Back": 69, + "Business and Finance > Business > Business Banking & Finance > Venture Capital": 70, + "Business and Finance > Business > Business I.T.": 71, + "Business and Finance > Business > Business Operations": 72, + "Business and Finance > Business > Business Utilities": 73, + "Business and Finance > Business > Consumer Issues": 74, + "Business and Finance > Business > Consumer Issues > Recalls": 75, + "Business and Finance > Business > Executive Leadership & Management": 76, + "Business and Finance > Business > Government Business": 77, + "Business and Finance > Business > Green Solutions": 78, + "Business and Finance > Business > Human Resources": 79, + "Business and Finance > Business > Large Business": 80, + "Business and Finance > Business > Logistics": 81, + "Business and Finance > Business > Marketing and Advertising": 82, + "Business and Finance > Business > Sales": 83, + "Business and Finance > Business > Small and Medium-sized Business": 84, + "Business and Finance > Business > Startups": 85, + "Business and Finance > Economy": 86, + "Business and Finance > Economy > Commodities": 87, + "Business and Finance > Economy > Currencies": 88, + "Business and Finance > Economy > Financial Crisis": 89, + "Business and Finance > Economy > Financial Reform": 90, + "Business and Finance > Economy > Financial Regulation": 91, + "Business and Finance > Economy > Gasoline Prices": 92, + "Business and Finance > Economy > Housing Market": 93, + "Business and Finance > Economy > Interest Rates": 94, + "Business and Finance > Economy > Job Market": 95, + "Business and Finance > Industries": 96, + "Business and Finance > Industries > Advertising Industry": 97, + "Business and Finance > Industries > Agriculture": 98, + "Business and Finance > Industries > Apparel Industry": 99, + "Business and Finance > Industries > Automotive Industry": 100, + "Business and Finance > Industries > Aviation Industry": 101, + "Business and Finance > Industries > Biotech and Biomedical Industry": 102, + "Business and Finance > Industries > Civil Engineering Industry": 103, + "Business and Finance > Industries > Construction Industry": 104, + "Business and Finance > Industries > Defense Industry": 105, + "Business and Finance > Industries > Education industry": 106, + "Business and Finance > Industries > Entertainment Industry": 107, + "Business and Finance > Industries > Environmental Services Industry": 108, + "Business and Finance > Industries > Financial Industry": 109, + "Business and Finance > Industries > Food Industry": 110, + "Business and Finance > Industries > Healthcare Industry": 111, + "Business and Finance > Industries > Hospitality Industry": 112, + "Business and Finance > Industries > Information Services Industry": 113, + "Business and Finance > Industries > Legal Services Industry": 114, + "Business and Finance > Industries > Logistics and Transportation Industry": 115, + "Business and Finance > Industries > Management Consulting Industry": 116, + "Business and Finance > Industries > Manufacturing Industry": 117, + "Business and Finance > Industries > Mechanical and Industrial Engineering Industry": 118, + "Business and Finance > Industries > Media Industry": 119, + "Business and Finance > Industries > Metals Industry": 120, + "Business and Finance > Industries > Non-Profit Organizations": 121, + "Business and Finance > Industries > Pharmaceutical Industry": 122, + "Business and Finance > Industries > Power and Energy Industry": 123, + "Business and Finance > Industries > Publishing Industry": 124, + "Business and Finance > Industries > Real Estate Industry": 125, + "Business and Finance > Industries > Retail Industry": 126, + "Business and Finance > Industries > Technology Industry": 127, + "Business and Finance > Industries > Telecommunications Industry": 128, + "Careers": 129, + "Careers > Apprenticeships": 130, + "Careers > Career Advice": 131, + "Careers > Career Planning": 132, + "Careers > Job Search": 133, + "Careers > Job Search > Job Fairs": 134, + "Careers > Job Search > Resume Writing and Advice": 135, + "Careers > Remote Working": 136, + "Careers > Vocational Training": 137, + "Crime": 139, + "Disasters": 140, + "Education": 141, + "Education > Adult Education": 142, + "Education > College Education": 143, + "Education > College Education > College Planning": 144, + "Education > College Education > Postgraduate Education": 145, + "Education > College Education > Postgraduate Education > Professional School": 146, + "Education > College Education > Undergraduate Education": 147, + "Education > Early Childhood Education": 148, + "Education > Educational Assessment": 149, + "Education > Educational Assessment > Standardized Testing": 150, + "Education > Homeschooling": 151, + "Education > Homework and Study": 152, + "Education > Language Learning": 153, + "Education > Online Education": 154, + "Education > Primary Education": 155, + "Education > Private School": 156, + "Education > Secondary Education": 157, + "Education > Special Education": 158, + "Entertainment": 159, + "Entertainment > Movies": 160, + "Entertainment > Music": 161, + "Entertainment > Music > Adult Album Alternative": 339, + "Entertainment > Music > Adult Contemporary Music": 340, + "Entertainment > Music > Adult Contemporary Music > Soft AC Music": 341, + "Entertainment > Music > Adult Contemporary Music > Urban AC Music": 342, + "Entertainment > Music > Alternative Music": 343, + "Entertainment > Music > Blues": 344, + "Entertainment > Music > Children's Music": 345, + "Entertainment > Music > Classic Hits": 346, + "Entertainment > Music > Classical Music": 347, + "Entertainment > Music > College Radio": 348, + "Entertainment > Music > Comedy (Music and Audio)": 349, + "Entertainment > Music > Contemporary Hits/Pop/Top 40": 350, + "Entertainment > Music > Country Music": 351, + "Entertainment > Music > Dance and Electronic Music": 352, + "Entertainment > Music > Gospel Music": 353, + "Entertainment > Music > Hip Hop Music": 354, + "Entertainment > Music > Inspirational/New Age Music": 355, + "Entertainment > Music > Jazz": 356, + "Entertainment > Music > Oldies/Adult Standards": 357, + "Entertainment > Music > R&B/Soul/Funk": 358, + "Entertainment > Music > Reggae": 359, + "Entertainment > Music > Religious (Music and Audio)": 360, + "Entertainment > Music > Rock Music": 361, + "Entertainment > Music > Rock Music > Album-oriented Rock": 362, + "Entertainment > Music > Rock Music > Alternative Rock": 363, + "Entertainment > Music > Rock Music > Classic Rock": 364, + "Entertainment > Music > Rock Music > Hard Rock": 365, + "Entertainment > Music > Rock Music > Soft Rock": 366, + "Entertainment > Music > Songwriters/Folk": 367, + "Entertainment > Music > Soundtracks, TV and Showtunes": 368, + "Entertainment > Music > Urban Contemporary Music": 370, + "Entertainment > Music > Variety (Music and Audio)": 371, + "Entertainment > Music > World/International Music": 369, + "Entertainment > Television": 162, + "Events": 163, + "Events > Awards Shows": 164, + "Events > Business Expos & Conferences": 165, + "Events > Fan Conventions": 166, + "Family and Relationships": 167, + "Family and Relationships > Bereavement": 168, + "Family and Relationships > Dating": 169, + "Family and Relationships > Divorce": 170, + "Family and Relationships > Eldercare": 171, + "Family and Relationships > Marriage and Civil Unions": 172, + "Family and Relationships > Parenting": 173, + "Family and Relationships > Parenting > Adoption and Fostering": 174, + "Family and Relationships > Parenting > Daycare and Pre-School": 175, + "Family and Relationships > Parenting > Internet Safety": 176, + "Family and Relationships > Parenting > Parenting Babies and Toddlers": 177, + "Family and Relationships > Parenting > Parenting Children Aged 4-11": 178, + "Family and Relationships > Parenting > Parenting Teens": 179, + "Family and Relationships > Parenting > Special Needs Kids": 180, + "Family and Relationships > Single Life": 181, + "Fine Art": 182, + "Fine Art > Costume": 183, + "Fine Art > Dance": 184, + "Fine Art > Design": 185, + "Fine Art > Digital Arts": 186, + "Fine Art > Fine Art Photography": 187, + "Fine Art > Modern Art": 188, + "Fine Art > Opera": 189, + "Fine Art > Theater": 190, + "Food & Drink": 191, + "Food & Drink > Alcoholic Beverages": 192, + "Food & Drink > Barbecues and Grilling": 193, + "Food & Drink > Cooking": 194, + "Food & Drink > Desserts and Baking": 195, + "Food & Drink > Dining Out": 196, + "Food & Drink > Food Allergies": 197, + "Food & Drink > Food Movements": 198, + "Food & Drink > Healthy Cooking and Eating": 199, + "Food & Drink > Non-Alcoholic Beverages": 200, + "Food & Drink > Vegan Diets": 201, + "Food & Drink > Vegetarian Diets": 202, + "Food & Drink > World Cuisines": 203, + "Genres": 204, + "Genres > Action/Adventure": 206, + "Genres > Animation & Anime": 207, + "Genres > Biographies": 208, + "Genres > Comedy": 209, + "Genres > Documentary": 210, + "Genres > Drama": 211, + "Genres > Factual": 212, + "Genres > Family/Children": 213, + "Genres > Fantasy": 214, + "Genres > History": 215, + "Genres > Holiday": 216, + "Genres > Horror": 217, + "Genres > Lifestyle": 218, + "Genres > Music Video": 219, + "Genres > Musical": 220, + "Genres > Mystery": 221, + "Genres > Nature": 205, + "Genres > Reality TV": 222, + "Genres > Romance": 223, + "Genres > Science Fiction": 224, + "Genres > Soap Opera": 225, + "Genres > Special Interest (Indie/Art House)": 226, + "Genres > Sports Radio": 227, + "Genres > Talk Radio": 228, + "Genres > Talk Radio > Public Radio": 229, + "Genres > Talk Show": 230, + "Genres > True Crime": 231, + "Genres > Western": 232, + "Genres > Young Adult": 233, + "Healthy Living": 234, + "Healthy Living > Children's Health": 235, + "Healthy Living > Fitness and Exercise": 236, + "Healthy Living > Fitness and Exercise > Participant Sports": 237, + "Healthy Living > Fitness and Exercise > Running and Jogging": 238, + "Healthy Living > Men's Health": 239, + "Healthy Living > Nutrition": 240, + "Healthy Living > Senior Health": 241, + "Healthy Living > Weight Loss": 242, + "Healthy Living > Wellness": 243, + "Healthy Living > Wellness > Alternative Medicine": 244, + "Healthy Living > Wellness > Alternative Medicine > Herbs and Supplements": 245, + "Healthy Living > Wellness > Alternative Medicine > Holistic Health": 246, + "Healthy Living > Wellness > Physical Therapy": 247, + "Healthy Living > Wellness > Smoking Cessation": 248, + "Healthy Living > Women's Health": 249, + "Hobbies & Interests": 250, + "Hobbies & Interests > Antiquing and Antiques": 251, + "Hobbies & Interests > Arts and Crafts": 252, + "Hobbies & Interests > Arts and Crafts > Beadwork": 253, + "Hobbies & Interests > Arts and Crafts > Candle and Soap Making": 254, + "Hobbies & Interests > Arts and Crafts > Drawing and Sketching": 255, + "Hobbies & Interests > Arts and Crafts > Jewelry Making": 256, + "Hobbies & Interests > Arts and Crafts > Needlework": 257, + "Hobbies & Interests > Arts and Crafts > Painting": 258, + "Hobbies & Interests > Arts and Crafts > Photography": 259, + "Hobbies & Interests > Arts and Crafts > Scrapbooking": 260, + "Hobbies & Interests > Arts and Crafts > Woodworking": 261, + "Hobbies & Interests > Beekeeping": 262, + "Hobbies & Interests > Birdwatching": 263, + "Hobbies & Interests > Cigars": 264, + "Hobbies & Interests > Collecting": 265, + "Hobbies & Interests > Collecting > Comic Books": 266, + "Hobbies & Interests > Collecting > Stamps and Coins": 267, + "Hobbies & Interests > Content Production": 268, + "Hobbies & Interests > Content Production > Audio Production": 269, + "Hobbies & Interests > Content Production > Freelance Writing": 270, + "Hobbies & Interests > Content Production > Screenwriting": 271, + "Hobbies & Interests > Content Production > Video Production": 272, + "Hobbies & Interests > Games and Puzzles": 273, + "Hobbies & Interests > Games and Puzzles > Board Games and Puzzles": 274, + "Hobbies & Interests > Games and Puzzles > Card Games": 275, + "Hobbies & Interests > Games and Puzzles > Roleplaying Games": 276, + "Hobbies & Interests > Genealogy and Ancestry": 277, + "Hobbies & Interests > Magic and Illusion": 278, + "Hobbies & Interests > Model Toys": 279, + "Hobbies & Interests > Musical Instruments": 280, + "Hobbies & Interests > Paranormal Phenomena": 281, + "Hobbies & Interests > Radio Control": 282, + "Hobbies & Interests > Sci-fi and Fantasy": 283, + "Hobbies & Interests > Workshops and Classes": 284, + "Holidays": 285, + "Holidays > National & Civic Holidays": 286, + "Home & Garden": 287, + "Home & Garden > Gardening": 288, + "Home & Garden > Home Appliances": 289, + "Home & Garden > Home Entertaining": 290, + "Home & Garden > Home Improvement": 291, + "Home & Garden > Home Security": 292, + "Home & Garden > Indoor Environmental Quality": 293, + "Home & Garden > Interior Decorating": 294, + "Home & Garden > Landscaping": 295, + "Home & Garden > Outdoor Decorating": 296, + "Home & Garden > Remodeling & Construction": 297, + "Home & Garden > Smart Home": 298, + "Law": 299, + "Medical Health": 301, + "Medical Health > Cosmetic Medical Services": 302, + "Medical Health > Diseases and Conditions": 303, + "Medical Health > Diseases and Conditions > Allergies": 304, + "Medical Health > Diseases and Conditions > Blood Disorders": 305, + "Medical Health > Diseases and Conditions > Bone and Joint Conditions": 306, + "Medical Health > Diseases and Conditions > Brain and Nervous System Disorders": 307, + "Medical Health > Diseases and Conditions > Cancer": 308, + "Medical Health > Diseases and Conditions > Cold and Flu": 309, + "Medical Health > Diseases and Conditions > Dental Health": 310, + "Medical Health > Diseases and Conditions > Diabetes": 311, + "Medical Health > Diseases and Conditions > Digestive Disorders": 312, + "Medical Health > Diseases and Conditions > Ear, Nose and Throat Conditions": 313, + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases": 314, + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Hormonal Disorders": 315, + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Menopause": 316, + "Medical Health > Diseases and Conditions > Endocrine and Metabolic Diseases > Thyroid Disorders": 317, + "Medical Health > Diseases and Conditions > Eye and Vision Conditions": 318, + "Medical Health > Diseases and Conditions > Foot Health": 319, + "Medical Health > Diseases and Conditions > Heart and Cardiovascular Diseases": 320, + "Medical Health > Diseases and Conditions > Infectious Diseases": 321, + "Medical Health > Diseases and Conditions > Injuries": 322, + "Medical Health > Diseases and Conditions > Injuries > First Aid": 323, + "Medical Health > Diseases and Conditions > Lung and Respiratory Health": 324, + "Medical Health > Diseases and Conditions > Mental Health": 325, + "Medical Health > Diseases and Conditions > Reproductive Health": 326, + "Medical Health > Diseases and Conditions > Reproductive Health > Birth Control": 327, + "Medical Health > Diseases and Conditions > Reproductive Health > Infertility": 328, + "Medical Health > Diseases and Conditions > Reproductive Health > Pregnancy": 329, + "Medical Health > Diseases and Conditions > Sexual Health": 330, + "Medical Health > Diseases and Conditions > Sexual Health > Sexual Conditions": 331, + "Medical Health > Diseases and Conditions > Skin and Dermatology": 332, + "Medical Health > Diseases and Conditions > Sleep Disorders": 333, + "Medical Health > Diseases and Conditions > Substance Abuse": 334, + "Medical Health > Medical Tests": 335, + "Medical Health > Pharmaceutical Drugs": 336, + "Medical Health > Surgery": 337, + "Medical Health > Vaccines": 338, + "Personal Celebrations & Life Events": 372, + "Personal Celebrations & Life Events > Anniversary": 373, + "Personal Celebrations & Life Events > Baby Shower": 374, + "Personal Celebrations & Life Events > Bachelor Party": 375, + "Personal Celebrations & Life Events > Bachelorette Party": 376, + "Personal Celebrations & Life Events > Birth": 377, + "Personal Celebrations & Life Events > Birthday": 378, + "Personal Celebrations & Life Events > Funeral": 379, + "Personal Celebrations & Life Events > Graduation": 380, + "Personal Celebrations & Life Events > Prom": 381, + "Personal Celebrations & Life Events > Wedding": 382, + "Personal Finance": 383, + "Personal Finance > Consumer Banking": 384, + "Personal Finance > Financial Assistance": 385, + "Personal Finance > Financial Assistance > Government Support and Welfare": 386, + "Personal Finance > Financial Assistance > Student Financial Aid": 387, + "Personal Finance > Financial Planning": 388, + "Personal Finance > Frugal Living": 389, + "Personal Finance > Home Utilities": 390, + "Personal Finance > Home Utilities > Gas and Electric": 391, + "Personal Finance > Home Utilities > Internet Service Providers": 392, + "Personal Finance > Home Utilities > Phone Services": 393, + "Personal Finance > Home Utilities > Water Services": 394, + "Personal Finance > Insurance": 395, + "Personal Finance > Insurance > Health Insurance": 396, + "Personal Finance > Insurance > Home Insurance": 397, + "Personal Finance > Insurance > Life Insurance": 398, + "Personal Finance > Insurance > Motor Insurance": 399, + "Personal Finance > Insurance > Pet Insurance": 400, + "Personal Finance > Insurance > Travel Insurance": 401, + "Personal Finance > Personal Debt": 402, + "Personal Finance > Personal Debt > Credit Cards": 403, + "Personal Finance > Personal Debt > Home Financing": 404, + "Personal Finance > Personal Debt > Personal Loans": 405, + "Personal Finance > Personal Debt > Student Loans": 406, + "Personal Finance > Personal Investing": 407, + "Personal Finance > Personal Investing > Hedge Funds": 408, + "Personal Finance > Personal Investing > Mutual Funds": 409, + "Personal Finance > Personal Investing > Options": 410, + "Personal Finance > Personal Investing > Stocks and Bonds": 411, + "Personal Finance > Personal Taxes": 412, + "Personal Finance > Retirement Planning": 413, + "Pets": 414, + "Pets > Birds": 415, + "Pets > Cats": 416, + "Pets > Dogs": 417, + "Pets > Fish and Aquariums": 418, + "Pets > Large Animals": 419, + "Pets > Pet Adoptions": 420, + "Pets > Pet Supplies": 421, + "Pets > Reptiles": 422, + "Pets > Veterinary Medicine": 423, + "Politics": 424, + "Politics > Civic affairs": 425, + "Politics > Elections": 426, + "Politics > Political Issues & policy": 427, + "Pop Culture": 428, + "Pop Culture > Celebrity Deaths": 429, + "Pop Culture > Celebrity Families": 430, + "Pop Culture > Celebrity Homes": 431, + "Pop Culture > Celebrity Pregnancy": 432, + "Pop Culture > Celebrity Relationships": 433, + "Pop Culture > Celebrity Scandal": 434, + "Pop Culture > Celebrity Style": 435, + "Pop Culture > Humor and Satire": 436, + "Real Estate": 438, + "Real Estate > Apartments": 439, + "Real Estate > Developmental Sites": 440, + "Real Estate > Hotel Properties": 441, + "Real Estate > Houses": 442, + "Real Estate > Industrial Property": 443, + "Real Estate > Land and Farms": 444, + "Real Estate > Office Property": 445, + "Real Estate > Real Estate Buying and Selling": 446, + "Real Estate > Real Estate Renting and Leasing": 447, + "Real Estate > Retail Property": 448, + "Real Estate > Vacation Properties": 449, + "Religion & Spirituality": 450, + "Religion & Spirituality > Agnosticism": 451, + "Religion & Spirituality > Astrology": 452, + "Religion & Spirituality > Atheism": 453, + "Religion & Spirituality > Buddhism": 454, + "Religion & Spirituality > Christianity": 455, + "Religion & Spirituality > Hinduism": 456, + "Religion & Spirituality > Islam": 457, + "Religion & Spirituality > Judaism": 458, + "Religion & Spirituality > Sikhism": 459, + "Religion & Spirituality > Spirituality": 460, + "Science": 461, + "Science > Biological Sciences": 462, + "Science > Chemistry": 463, + "Science > Environment": 464, + "Science > Genetics": 465, + "Science > Geography": 466, + "Science > Geology": 467, + "Science > Physics": 468, + "Science > Space and Astronomy": 469, + "Science > Weather": 470, + "Sensitive Topics": 471, + "Sensitive Topics > Adult & Explicit Sexual Content": 472, + "Sensitive Topics > Arms & Ammunition": 473, + "Sensitive Topics > Crime & Harmful Acts to Individuals, Society & Human Right Violations": 474, + "Sensitive Topics > Death, Injury, or Military Conflict": 475, + "Sensitive Topics > Debated Sensitive Social Issues": 476, + "Sensitive Topics > Hate Speech and Acts of Aggression": 477, + "Sensitive Topics > Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol": 478, + "Sensitive Topics > Obscenity and Profanity": 479, + "Sensitive Topics > Online Piracy": 480, + "Sensitive Topics > Spam or Harmful Content": 481, + "Sensitive Topics > Terrorism": 482, + "Shopping": 483, + "Shopping > Children's Games and Toys": 484, + "Shopping > Coupons and Discounts": 485, + "Shopping > Flower Shopping": 486, + "Shopping > Gifts and Greetings Cards": 487, + "Shopping > Grocery Shopping": 488, + "Shopping > Holiday Shopping": 489, + "Shopping > Household Supplies": 490, + "Shopping > Lotteries and Scratchcards": 491, + "Shopping > Party Supplies and Decorations": 492, + "Shopping > Sales and Promotions": 493, + "Sports": 494, + "Sports > American Football": 495, + "Sports > Australian Rules Football": 496, + "Sports > Auto Racing": 497, + "Sports > Auto Racing > Motorcycle Sports": 498, + "Sports > Badminton": 499, + "Sports > Baseball": 500, + "Sports > Basketball": 501, + "Sports > Beach Volleyball": 502, + "Sports > Bodybuilding": 503, + "Sports > Bowling": 504, + "Sports > Boxing": 505, + "Sports > Cheerleading": 506, + "Sports > College Sports": 507, + "Sports > College Sports > College Baseball": 508, + "Sports > College Sports > College Basketball": 509, + "Sports > College Sports > College Football": 510, + "Sports > Cricket": 511, + "Sports > Cycling": 512, + "Sports > Darts": 513, + "Sports > Disabled Sports": 514, + "Sports > Diving": 515, + "Sports > Equine Sports": 516, + "Sports > Equine Sports > Horse Racing": 517, + "Sports > Extreme Sports": 518, + "Sports > Extreme Sports > Canoeing and Kayaking": 519, + "Sports > Extreme Sports > Climbing": 520, + "Sports > Extreme Sports > Paintball": 521, + "Sports > Extreme Sports > Scuba Diving": 522, + "Sports > Extreme Sports > Skateboarding": 523, + "Sports > Extreme Sports > Snowboarding": 524, + "Sports > Extreme Sports > Surfing and Bodyboarding": 525, + "Sports > Extreme Sports > Waterskiing and Wakeboarding": 526, + "Sports > Fantasy Sports": 527, + "Sports > Field Hockey": 528, + "Sports > Figure Skating": 529, + "Sports > Fishing Sports": 530, + "Sports > Golf": 531, + "Sports > Gymnastics": 532, + "Sports > Hunting and Shooting": 533, + "Sports > Ice Hockey": 534, + "Sports > Inline Skating": 535, + "Sports > Lacrosse": 536, + "Sports > Martial Arts": 537, + "Sports > Olympic Sports": 538, + "Sports > Olympic Sports > Summer Olympic Sports": 539, + "Sports > Olympic Sports > Winter Olympic Sports": 540, + "Sports > Poker and Professional Gambling": 541, + "Sports > Rodeo": 542, + "Sports > Rowing": 543, + "Sports > Rugby": 544, + "Sports > Rugby > Rugby League": 545, + "Sports > Rugby > Rugby Union": 546, + "Sports > Sailing": 547, + "Sports > Skiing": 548, + "Sports > Snooker/Pool/Billiards": 549, + "Sports > Soccer": 550, + "Sports > Softball": 551, + "Sports > Sports Equipment": 552, + "Sports > Squash": 553, + "Sports > Swimming": 554, + "Sports > Table Tennis": 555, + "Sports > Tennis": 556, + "Sports > Track and Field": 557, + "Sports > Volleyball": 558, + "Sports > Walking": 559, + "Sports > Water Polo": 560, + "Sports > Weightlifting": 561, + "Sports > Wrestling": 562, + "Style & Fashion": 563, + "Style & Fashion > Beauty": 564, + "Style & Fashion > Beauty > Hair Care": 565, + "Style & Fashion > Beauty > Makeup and Accessories": 566, + "Style & Fashion > Beauty > Nail Care": 567, + "Style & Fashion > Beauty > Natural and Organic Beauty": 568, + "Style & Fashion > Beauty > Perfume and Fragrance": 569, + "Style & Fashion > Beauty > Skin Care": 570, + "Style & Fashion > Body Art": 571, + "Style & Fashion > Children's Clothing": 572, + "Style & Fashion > Designer Clothing": 573, + "Style & Fashion > Fashion Trends": 574, + "Style & Fashion > High Fashion": 575, + "Style & Fashion > Men's Fashion": 576, + "Style & Fashion > Men's Fashion > Men's Accessories": 577, + "Style & Fashion > Men's Fashion > Men's Accessories > Men's Jewelry and Watches": 578, + "Style & Fashion > Men's Fashion > Men's Clothing": 579, + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Business Wear": 580, + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Casual Wear": 581, + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Formal Wear": 582, + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Outerwear": 583, + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Sportswear": 584, + "Style & Fashion > Men's Fashion > Men's Clothing > Men's Underwear and Sleepwear": 585, + "Style & Fashion > Men's Fashion > Men's Shoes and Footwear": 586, + "Style & Fashion > Personal Care": 587, + "Style & Fashion > Personal Care > Bath and Shower": 588, + "Style & Fashion > Personal Care > Deodorant and Antiperspirant": 589, + "Style & Fashion > Personal Care > Oral care": 590, + "Style & Fashion > Personal Care > Shaving": 591, + "Style & Fashion > Street Style": 592, + "Style & Fashion > Women's Fashion": 593, + "Style & Fashion > Women's Fashion > Women's Accessories": 594, + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Glasses": 595, + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Handbags and Wallets": 596, + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Hats and Scarves": 597, + "Style & Fashion > Women's Fashion > Women's Accessories > Women's Jewelry and Watches": 598, + "Style & Fashion > Women's Fashion > Women's Clothing": 599, + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Business Wear": 600, + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Casual Wear": 601, + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Formal Wear": 602, + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Intimates and Sleepwear": 603, + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Outerwear": 604, + "Style & Fashion > Women's Fashion > Women's Clothing > Women's Sportswear": 605, + "Style & Fashion > Women's Fashion > Women's Shoes and Footwear": 606, + "Technology & Computing": 607, + "Technology & Computing > Artificial Intelligence": 608, + "Technology & Computing > Augmented Reality": 609, + "Technology & Computing > Computing": 610, + "Technology & Computing > Computing > Computer Networking": 611, + "Technology & Computing > Computing > Computer Peripherals": 612, + "Technology & Computing > Computing > Computer Software and Applications": 613, + "Technology & Computing > Computing > Computer Software and Applications > 3-D Graphics": 614, + "Technology & Computing > Computing > Computer Software and Applications > Antivirus Software": 615, + "Technology & Computing > Computing > Computer Software and Applications > Browsers": 616, + "Technology & Computing > Computing > Computer Software and Applications > Communication": 138, + "Technology & Computing > Computing > Computer Software and Applications > Computer Animation": 617, + "Technology & Computing > Computing > Computer Software and Applications > Databases": 618, + "Technology & Computing > Computing > Computer Software and Applications > Desktop Publishing": 619, + "Technology & Computing > Computing > Computer Software and Applications > Digital Audio": 620, + "Technology & Computing > Computing > Computer Software and Applications > Graphics Software": 621, + "Technology & Computing > Computing > Computer Software and Applications > Maps & Navigation": 300, + "Technology & Computing > Computing > Computer Software and Applications > Operating Systems": 622, + "Technology & Computing > Computing > Computer Software and Applications > Photo Editing Software": 623, + "Technology & Computing > Computing > Computer Software and Applications > Productivity": 437, + "Technology & Computing > Computing > Computer Software and Applications > Shareware and Freeware": 624, + "Technology & Computing > Computing > Computer Software and Applications > Video Software": 625, + "Technology & Computing > Computing > Computer Software and Applications > Web Conferencing": 626, + "Technology & Computing > Computing > Data Storage and Warehousing": 627, + "Technology & Computing > Computing > Desktops": 628, + "Technology & Computing > Computing > Information and Network Security": 629, + "Technology & Computing > Computing > Internet": 630, + "Technology & Computing > Computing > Internet > Cloud Computing": 631, + "Technology & Computing > Computing > Internet > Email": 632, + "Technology & Computing > Computing > Internet > IT and Internet Support": 635, + "Technology & Computing > Computing > Internet > Internet for Beginners": 633, + "Technology & Computing > Computing > Internet > Internet of Things": 634, + "Technology & Computing > Computing > Internet > Search": 636, + "Technology & Computing > Computing > Internet > Social Networking": 637, + "Technology & Computing > Computing > Internet > Web Design and HTML": 638, + "Technology & Computing > Computing > Internet > Web Development": 639, + "Technology & Computing > Computing > Internet > Web Hosting": 640, + "Technology & Computing > Computing > Laptops": 641, + "Technology & Computing > Computing > Programming Languages": 642, + "Technology & Computing > Consumer Electronics": 643, + "Technology & Computing > Consumer Electronics > Cameras and Camcorders": 644, + "Technology & Computing > Consumer Electronics > Home Entertainment Systems": 645, + "Technology & Computing > Consumer Electronics > Smartphones": 646, + "Technology & Computing > Consumer Electronics > Tablets and E-readers": 647, + "Technology & Computing > Consumer Electronics > Wearable Technology": 648, + "Technology & Computing > Robotics": 649, + "Technology & Computing > Virtual Reality": 650, + "Travel": 651, + "Travel > Travel Accessories": 652, + "Travel > Travel Locations": 653, + "Travel > Travel Locations > Africa Travel": 654, + "Travel > Travel Locations > Asia Travel": 655, + "Travel > Travel Locations > Australia and Oceania Travel": 656, + "Travel > Travel Locations > Europe Travel": 657, + "Travel > Travel Locations > North America Travel": 658, + "Travel > Travel Locations > Polar Travel": 659, + "Travel > Travel Locations > South America Travel": 660, + "Travel > Travel Preparation and Advice": 661, + "Travel > Travel Type": 662, + "Travel > Travel Type > Adventure Travel": 663, + "Travel > Travel Type > Air Travel": 664, + "Travel > Travel Type > Beach Travel": 665, + "Travel > Travel Type > Bed & Breakfasts": 666, + "Travel > Travel Type > Budget Travel": 667, + "Travel > Travel Type > Business Travel": 668, + "Travel > Travel Type > Camping": 669, + "Travel > Travel Type > Cruises": 670, + "Travel > Travel Type > Day Trips": 671, + "Travel > Travel Type > Family Travel": 672, + "Travel > Travel Type > Honeymoons and Getaways": 673, + "Travel > Travel Type > Hotels and Motels": 674, + "Travel > Travel Type > Rail Travel": 675, + "Travel > Travel Type > Road Trips": 676, + "Travel > Travel Type > Spas": 677, + "Video Gaming": 678, + "Video Gaming > Console Games": 679, + "Video Gaming > Mobile Games": 681, + "Video Gaming > PC Games": 682, + "Video Gaming > Video Game Genres": 683, + "Video Gaming > Video Game Genres > Action Video Games": 684, + "Video Gaming > Video Game Genres > Action-Adventure Video Games": 685, + "Video Gaming > Video Game Genres > Adult Video Games": 686, + "Video Gaming > Video Game Genres > Adventure Video Games": 687, + "Video Gaming > Video Game Genres > Casino and Gambling Video Games": 688, + "Video Gaming > Video Game Genres > Casual Games": 689, + "Video Gaming > Video Game Genres > Educational Video Games": 690, + "Video Gaming > Video Game Genres > Exercise and Fitness Video Games": 691, + "Video Gaming > Video Game Genres > Family Video Games": 692, + "Video Gaming > Video Game Genres > Horror Video Games": 693, + "Video Gaming > Video Game Genres > MMOs": 694, + "Video Gaming > Video Game Genres > Music and Party Video Games": 695, + "Video Gaming > Video Game Genres > Puzzle Video Games": 696, + "Video Gaming > Video Game Genres > Racing Video Games": 697, + "Video Gaming > Video Game Genres > Role-Playing Video Games": 698, + "Video Gaming > Video Game Genres > Simulation Video Games": 699, + "Video Gaming > Video Game Genres > Sports Video Games": 700, + "Video Gaming > Video Game Genres > Strategy Video Games": 701, + "Video Gaming > eSports": 680, + "War and Conflicts": 702 + }, + "max_position_embeddings": 512, + "model_type": "distilbert", + "n_heads": 12, + "n_layers": 6, + "pad_token_id": 0, + "qa_dropout": 0.1, + "seq_classif_dropout": 0.2, + "sinusoidal_pos_embds": false, + "tie_weights_": true, + "torch_dtype": "float32", + "transformers_version": "4.49.0", + "vocab_size": 30522 +} diff --git a/iab_classifier_model_output/special_tokens_map.json b/iab_classifier_model_output/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..a8b3208c2884c4efb86e49300fdd3dc877220cdf --- /dev/null +++ b/iab_classifier_model_output/special_tokens_map.json @@ -0,0 +1,7 @@ +{ + "cls_token": "[CLS]", + "mask_token": "[MASK]", + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "unk_token": "[UNK]" +} diff --git a/iab_classifier_model_output/tokenizer.json b/iab_classifier_model_output/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..035095a8dc9096fb19460cc9ec467e3d10c2b6ec --- /dev/null +++ b/iab_classifier_model_output/tokenizer.json @@ -0,0 +1,30686 @@ +{ + "version": "1.0", + "truncation": { + "direction": "Right", + "max_length": 96, + "strategy": "LongestFirst", + "stride": 0 + }, + "padding": { + "strategy": { + "Fixed": 96 + }, + "direction": "Right", + "pad_to_multiple_of": null, + "pad_id": 0, + "pad_type_id": 0, + "pad_token": "[PAD]" + }, + "added_tokens": [ + { + "id": 0, + "content": "[PAD]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 100, + "content": "[UNK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 101, + "content": "[CLS]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 102, + "content": "[SEP]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 103, + "content": "[MASK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "BertNormalizer", + "clean_text": true, + "handle_chinese_chars": true, + "strip_accents": null, + "lowercase": true + }, + "pre_tokenizer": { + "type": "BertPreTokenizer" + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + } + ], + "pair": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 1 + } + } + ], + "special_tokens": { + "[CLS]": { + "id": "[CLS]", + "ids": [ + 101 + ], + "tokens": [ + "[CLS]" + ] + }, + "[SEP]": { + "id": "[SEP]", + "ids": [ + 102 + ], + "tokens": [ + "[SEP]" + ] + } + } + }, + "decoder": { + "type": "WordPiece", + "prefix": "##", + "cleanup": true + }, + "model": { + "type": "WordPiece", + "unk_token": "[UNK]", + "continuing_subword_prefix": "##", + "max_input_chars_per_word": 100, + "vocab": { + "[PAD]": 0, + "[unused0]": 1, + "[unused1]": 2, + "[unused2]": 3, + "[unused3]": 4, + "[unused4]": 5, + "[unused5]": 6, + "[unused6]": 7, + "[unused7]": 8, + "[unused8]": 9, + "[unused9]": 10, + "[unused10]": 11, + "[unused11]": 12, + "[unused12]": 13, + "[unused13]": 14, + "[unused14]": 15, + "[unused15]": 16, + "[unused16]": 17, + "[unused17]": 18, + "[unused18]": 19, + "[unused19]": 20, + "[unused20]": 21, + "[unused21]": 22, + "[unused22]": 23, + "[unused23]": 24, + "[unused24]": 25, + "[unused25]": 26, + "[unused26]": 27, + "[unused27]": 28, + "[unused28]": 29, + "[unused29]": 30, + "[unused30]": 31, + "[unused31]": 32, + "[unused32]": 33, + "[unused33]": 34, + "[unused34]": 35, + "[unused35]": 36, + "[unused36]": 37, + "[unused37]": 38, + "[unused38]": 39, + "[unused39]": 40, + "[unused40]": 41, + "[unused41]": 42, + "[unused42]": 43, + "[unused43]": 44, + "[unused44]": 45, + "[unused45]": 46, + "[unused46]": 47, + "[unused47]": 48, + "[unused48]": 49, + "[unused49]": 50, + "[unused50]": 51, + "[unused51]": 52, + "[unused52]": 53, + "[unused53]": 54, + "[unused54]": 55, + "[unused55]": 56, + "[unused56]": 57, + "[unused57]": 58, + "[unused58]": 59, + "[unused59]": 60, + "[unused60]": 61, + "[unused61]": 62, + "[unused62]": 63, + "[unused63]": 64, + "[unused64]": 65, + "[unused65]": 66, + "[unused66]": 67, + "[unused67]": 68, + "[unused68]": 69, + "[unused69]": 70, + "[unused70]": 71, + "[unused71]": 72, + "[unused72]": 73, + "[unused73]": 74, + "[unused74]": 75, + "[unused75]": 76, + "[unused76]": 77, + "[unused77]": 78, + "[unused78]": 79, + "[unused79]": 80, + "[unused80]": 81, + "[unused81]": 82, + "[unused82]": 83, + "[unused83]": 84, + "[unused84]": 85, + "[unused85]": 86, + "[unused86]": 87, + "[unused87]": 88, + "[unused88]": 89, + "[unused89]": 90, + "[unused90]": 91, + "[unused91]": 92, + "[unused92]": 93, + "[unused93]": 94, + "[unused94]": 95, + "[unused95]": 96, + "[unused96]": 97, + "[unused97]": 98, + "[unused98]": 99, + "[UNK]": 100, + "[CLS]": 101, + "[SEP]": 102, + "[MASK]": 103, + "[unused99]": 104, + "[unused100]": 105, + "[unused101]": 106, + "[unused102]": 107, + "[unused103]": 108, + "[unused104]": 109, + "[unused105]": 110, + "[unused106]": 111, + "[unused107]": 112, + "[unused108]": 113, + "[unused109]": 114, + "[unused110]": 115, + "[unused111]": 116, + "[unused112]": 117, + "[unused113]": 118, + "[unused114]": 119, + "[unused115]": 120, + "[unused116]": 121, + "[unused117]": 122, + "[unused118]": 123, + "[unused119]": 124, + "[unused120]": 125, + "[unused121]": 126, + "[unused122]": 127, + "[unused123]": 128, + "[unused124]": 129, + "[unused125]": 130, + "[unused126]": 131, + "[unused127]": 132, + "[unused128]": 133, + "[unused129]": 134, + "[unused130]": 135, + "[unused131]": 136, + "[unused132]": 137, + "[unused133]": 138, + "[unused134]": 139, + "[unused135]": 140, + "[unused136]": 141, + "[unused137]": 142, + "[unused138]": 143, + "[unused139]": 144, + "[unused140]": 145, + "[unused141]": 146, + "[unused142]": 147, + "[unused143]": 148, + "[unused144]": 149, + "[unused145]": 150, + "[unused146]": 151, + "[unused147]": 152, + "[unused148]": 153, + "[unused149]": 154, + "[unused150]": 155, + "[unused151]": 156, + "[unused152]": 157, + "[unused153]": 158, + "[unused154]": 159, + "[unused155]": 160, + "[unused156]": 161, + "[unused157]": 162, + "[unused158]": 163, + "[unused159]": 164, + "[unused160]": 165, + "[unused161]": 166, + "[unused162]": 167, + "[unused163]": 168, + "[unused164]": 169, + "[unused165]": 170, + "[unused166]": 171, + "[unused167]": 172, + "[unused168]": 173, + "[unused169]": 174, + "[unused170]": 175, + "[unused171]": 176, + "[unused172]": 177, + "[unused173]": 178, + "[unused174]": 179, + "[unused175]": 180, + "[unused176]": 181, + "[unused177]": 182, + "[unused178]": 183, + "[unused179]": 184, + "[unused180]": 185, + "[unused181]": 186, + "[unused182]": 187, + "[unused183]": 188, + "[unused184]": 189, + "[unused185]": 190, + "[unused186]": 191, + "[unused187]": 192, + "[unused188]": 193, + "[unused189]": 194, + "[unused190]": 195, + "[unused191]": 196, + "[unused192]": 197, + "[unused193]": 198, + "[unused194]": 199, + "[unused195]": 200, + "[unused196]": 201, + "[unused197]": 202, + "[unused198]": 203, + "[unused199]": 204, + "[unused200]": 205, + "[unused201]": 206, + "[unused202]": 207, + "[unused203]": 208, + "[unused204]": 209, + "[unused205]": 210, + "[unused206]": 211, + "[unused207]": 212, + "[unused208]": 213, + "[unused209]": 214, + "[unused210]": 215, + "[unused211]": 216, + "[unused212]": 217, + "[unused213]": 218, + "[unused214]": 219, + "[unused215]": 220, + "[unused216]": 221, + "[unused217]": 222, + "[unused218]": 223, + "[unused219]": 224, + "[unused220]": 225, + "[unused221]": 226, + "[unused222]": 227, + "[unused223]": 228, + "[unused224]": 229, + "[unused225]": 230, + "[unused226]": 231, + "[unused227]": 232, + "[unused228]": 233, + "[unused229]": 234, + "[unused230]": 235, + "[unused231]": 236, + "[unused232]": 237, + "[unused233]": 238, + "[unused234]": 239, + "[unused235]": 240, + "[unused236]": 241, + "[unused237]": 242, + "[unused238]": 243, + "[unused239]": 244, + "[unused240]": 245, + "[unused241]": 246, + "[unused242]": 247, + "[unused243]": 248, + "[unused244]": 249, + "[unused245]": 250, + "[unused246]": 251, + "[unused247]": 252, + "[unused248]": 253, + "[unused249]": 254, + "[unused250]": 255, + "[unused251]": 256, + "[unused252]": 257, + "[unused253]": 258, + "[unused254]": 259, + "[unused255]": 260, + "[unused256]": 261, + "[unused257]": 262, + "[unused258]": 263, + "[unused259]": 264, + "[unused260]": 265, + "[unused261]": 266, + "[unused262]": 267, + "[unused263]": 268, + "[unused264]": 269, + "[unused265]": 270, + "[unused266]": 271, + "[unused267]": 272, + "[unused268]": 273, + "[unused269]": 274, + "[unused270]": 275, + "[unused271]": 276, + "[unused272]": 277, + "[unused273]": 278, + "[unused274]": 279, + "[unused275]": 280, + "[unused276]": 281, + "[unused277]": 282, + "[unused278]": 283, + "[unused279]": 284, + "[unused280]": 285, + "[unused281]": 286, + "[unused282]": 287, + "[unused283]": 288, + "[unused284]": 289, + "[unused285]": 290, + "[unused286]": 291, + "[unused287]": 292, + "[unused288]": 293, + "[unused289]": 294, + "[unused290]": 295, + "[unused291]": 296, + "[unused292]": 297, + "[unused293]": 298, + "[unused294]": 299, + "[unused295]": 300, + "[unused296]": 301, + "[unused297]": 302, + "[unused298]": 303, + "[unused299]": 304, + "[unused300]": 305, + "[unused301]": 306, + "[unused302]": 307, + "[unused303]": 308, + "[unused304]": 309, + "[unused305]": 310, + "[unused306]": 311, + "[unused307]": 312, + "[unused308]": 313, + "[unused309]": 314, + "[unused310]": 315, + "[unused311]": 316, + "[unused312]": 317, + "[unused313]": 318, + "[unused314]": 319, + "[unused315]": 320, + "[unused316]": 321, + "[unused317]": 322, + "[unused318]": 323, + "[unused319]": 324, + "[unused320]": 325, + "[unused321]": 326, + "[unused322]": 327, + "[unused323]": 328, + "[unused324]": 329, + "[unused325]": 330, + "[unused326]": 331, + "[unused327]": 332, + "[unused328]": 333, + "[unused329]": 334, + "[unused330]": 335, + "[unused331]": 336, + "[unused332]": 337, + "[unused333]": 338, + "[unused334]": 339, + "[unused335]": 340, + "[unused336]": 341, + "[unused337]": 342, + "[unused338]": 343, + "[unused339]": 344, + "[unused340]": 345, + "[unused341]": 346, + "[unused342]": 347, + "[unused343]": 348, + "[unused344]": 349, + "[unused345]": 350, + "[unused346]": 351, + "[unused347]": 352, + "[unused348]": 353, + "[unused349]": 354, + "[unused350]": 355, + "[unused351]": 356, + "[unused352]": 357, + "[unused353]": 358, + "[unused354]": 359, + "[unused355]": 360, + "[unused356]": 361, + "[unused357]": 362, + "[unused358]": 363, + "[unused359]": 364, + "[unused360]": 365, + "[unused361]": 366, + "[unused362]": 367, + "[unused363]": 368, + "[unused364]": 369, + "[unused365]": 370, + "[unused366]": 371, + "[unused367]": 372, + "[unused368]": 373, + "[unused369]": 374, + "[unused370]": 375, + "[unused371]": 376, + "[unused372]": 377, + "[unused373]": 378, + "[unused374]": 379, + "[unused375]": 380, + "[unused376]": 381, + "[unused377]": 382, + "[unused378]": 383, + "[unused379]": 384, + "[unused380]": 385, + "[unused381]": 386, + "[unused382]": 387, + "[unused383]": 388, + "[unused384]": 389, + "[unused385]": 390, + "[unused386]": 391, + "[unused387]": 392, + "[unused388]": 393, + "[unused389]": 394, + "[unused390]": 395, + "[unused391]": 396, + "[unused392]": 397, + "[unused393]": 398, + "[unused394]": 399, + "[unused395]": 400, + "[unused396]": 401, + "[unused397]": 402, + "[unused398]": 403, + "[unused399]": 404, + "[unused400]": 405, + "[unused401]": 406, + "[unused402]": 407, + "[unused403]": 408, + "[unused404]": 409, + "[unused405]": 410, + "[unused406]": 411, + "[unused407]": 412, + "[unused408]": 413, + "[unused409]": 414, + "[unused410]": 415, + "[unused411]": 416, + "[unused412]": 417, + "[unused413]": 418, + "[unused414]": 419, + "[unused415]": 420, + "[unused416]": 421, + "[unused417]": 422, + "[unused418]": 423, + "[unused419]": 424, + "[unused420]": 425, + "[unused421]": 426, + "[unused422]": 427, + "[unused423]": 428, + "[unused424]": 429, + "[unused425]": 430, + "[unused426]": 431, + "[unused427]": 432, + "[unused428]": 433, + "[unused429]": 434, + "[unused430]": 435, + "[unused431]": 436, + "[unused432]": 437, + "[unused433]": 438, + "[unused434]": 439, + "[unused435]": 440, + "[unused436]": 441, + "[unused437]": 442, + "[unused438]": 443, + "[unused439]": 444, + "[unused440]": 445, + "[unused441]": 446, + "[unused442]": 447, + "[unused443]": 448, + "[unused444]": 449, + "[unused445]": 450, + "[unused446]": 451, + "[unused447]": 452, + "[unused448]": 453, + "[unused449]": 454, + "[unused450]": 455, + "[unused451]": 456, + "[unused452]": 457, + "[unused453]": 458, + "[unused454]": 459, + "[unused455]": 460, + "[unused456]": 461, + "[unused457]": 462, + "[unused458]": 463, + "[unused459]": 464, + "[unused460]": 465, + "[unused461]": 466, + "[unused462]": 467, + "[unused463]": 468, + "[unused464]": 469, + "[unused465]": 470, + "[unused466]": 471, + "[unused467]": 472, + "[unused468]": 473, + "[unused469]": 474, + "[unused470]": 475, + "[unused471]": 476, + "[unused472]": 477, + "[unused473]": 478, + "[unused474]": 479, + "[unused475]": 480, + "[unused476]": 481, + "[unused477]": 482, + "[unused478]": 483, + "[unused479]": 484, + "[unused480]": 485, + "[unused481]": 486, + "[unused482]": 487, + "[unused483]": 488, + "[unused484]": 489, + "[unused485]": 490, + "[unused486]": 491, + "[unused487]": 492, + "[unused488]": 493, + "[unused489]": 494, + "[unused490]": 495, + "[unused491]": 496, + "[unused492]": 497, + "[unused493]": 498, + "[unused494]": 499, + "[unused495]": 500, + "[unused496]": 501, + "[unused497]": 502, + "[unused498]": 503, + "[unused499]": 504, + "[unused500]": 505, + "[unused501]": 506, + "[unused502]": 507, + "[unused503]": 508, + "[unused504]": 509, + "[unused505]": 510, + "[unused506]": 511, + "[unused507]": 512, + "[unused508]": 513, + "[unused509]": 514, + "[unused510]": 515, + "[unused511]": 516, + "[unused512]": 517, + "[unused513]": 518, + "[unused514]": 519, + "[unused515]": 520, + "[unused516]": 521, + "[unused517]": 522, + "[unused518]": 523, + "[unused519]": 524, + "[unused520]": 525, + "[unused521]": 526, + "[unused522]": 527, + "[unused523]": 528, + "[unused524]": 529, + "[unused525]": 530, + "[unused526]": 531, + "[unused527]": 532, + "[unused528]": 533, + "[unused529]": 534, + "[unused530]": 535, + "[unused531]": 536, + "[unused532]": 537, + "[unused533]": 538, + "[unused534]": 539, + "[unused535]": 540, + "[unused536]": 541, + "[unused537]": 542, + "[unused538]": 543, + "[unused539]": 544, + "[unused540]": 545, + "[unused541]": 546, + "[unused542]": 547, + "[unused543]": 548, + "[unused544]": 549, + "[unused545]": 550, + "[unused546]": 551, + "[unused547]": 552, + "[unused548]": 553, + "[unused549]": 554, + "[unused550]": 555, + "[unused551]": 556, + "[unused552]": 557, + "[unused553]": 558, + "[unused554]": 559, + "[unused555]": 560, + "[unused556]": 561, + "[unused557]": 562, + "[unused558]": 563, + "[unused559]": 564, + "[unused560]": 565, + "[unused561]": 566, + "[unused562]": 567, + "[unused563]": 568, + "[unused564]": 569, + "[unused565]": 570, + "[unused566]": 571, + "[unused567]": 572, + "[unused568]": 573, + "[unused569]": 574, + "[unused570]": 575, + "[unused571]": 576, + "[unused572]": 577, + "[unused573]": 578, + "[unused574]": 579, + "[unused575]": 580, + "[unused576]": 581, + "[unused577]": 582, + "[unused578]": 583, + "[unused579]": 584, + "[unused580]": 585, + "[unused581]": 586, + "[unused582]": 587, + "[unused583]": 588, + "[unused584]": 589, + "[unused585]": 590, + "[unused586]": 591, + "[unused587]": 592, + "[unused588]": 593, + "[unused589]": 594, + "[unused590]": 595, + "[unused591]": 596, + "[unused592]": 597, + "[unused593]": 598, + "[unused594]": 599, + "[unused595]": 600, + "[unused596]": 601, + "[unused597]": 602, + "[unused598]": 603, + "[unused599]": 604, + "[unused600]": 605, + "[unused601]": 606, + "[unused602]": 607, + "[unused603]": 608, + "[unused604]": 609, + "[unused605]": 610, + "[unused606]": 611, + "[unused607]": 612, + "[unused608]": 613, + "[unused609]": 614, + "[unused610]": 615, + "[unused611]": 616, + "[unused612]": 617, + "[unused613]": 618, + "[unused614]": 619, + "[unused615]": 620, + "[unused616]": 621, + "[unused617]": 622, + "[unused618]": 623, + "[unused619]": 624, + "[unused620]": 625, + "[unused621]": 626, + "[unused622]": 627, + "[unused623]": 628, + "[unused624]": 629, + "[unused625]": 630, + "[unused626]": 631, + "[unused627]": 632, + "[unused628]": 633, + "[unused629]": 634, + "[unused630]": 635, + "[unused631]": 636, + "[unused632]": 637, + "[unused633]": 638, + "[unused634]": 639, + "[unused635]": 640, + "[unused636]": 641, + "[unused637]": 642, + "[unused638]": 643, + "[unused639]": 644, + "[unused640]": 645, + "[unused641]": 646, + "[unused642]": 647, + "[unused643]": 648, + "[unused644]": 649, + "[unused645]": 650, + "[unused646]": 651, + "[unused647]": 652, + "[unused648]": 653, + "[unused649]": 654, + "[unused650]": 655, + "[unused651]": 656, + "[unused652]": 657, + "[unused653]": 658, + "[unused654]": 659, + "[unused655]": 660, + "[unused656]": 661, + "[unused657]": 662, + "[unused658]": 663, + "[unused659]": 664, + "[unused660]": 665, + "[unused661]": 666, + "[unused662]": 667, + "[unused663]": 668, + "[unused664]": 669, + "[unused665]": 670, + "[unused666]": 671, + "[unused667]": 672, + "[unused668]": 673, + "[unused669]": 674, + "[unused670]": 675, + "[unused671]": 676, + "[unused672]": 677, + "[unused673]": 678, + "[unused674]": 679, + "[unused675]": 680, + "[unused676]": 681, + "[unused677]": 682, + "[unused678]": 683, + "[unused679]": 684, + "[unused680]": 685, + "[unused681]": 686, + "[unused682]": 687, + "[unused683]": 688, + "[unused684]": 689, + "[unused685]": 690, + "[unused686]": 691, + "[unused687]": 692, + "[unused688]": 693, + "[unused689]": 694, + "[unused690]": 695, + "[unused691]": 696, + "[unused692]": 697, + "[unused693]": 698, + "[unused694]": 699, + "[unused695]": 700, + "[unused696]": 701, + "[unused697]": 702, + "[unused698]": 703, + "[unused699]": 704, + "[unused700]": 705, + "[unused701]": 706, + "[unused702]": 707, + "[unused703]": 708, + "[unused704]": 709, + "[unused705]": 710, + "[unused706]": 711, + "[unused707]": 712, + "[unused708]": 713, + "[unused709]": 714, + "[unused710]": 715, + "[unused711]": 716, + "[unused712]": 717, + "[unused713]": 718, + "[unused714]": 719, + "[unused715]": 720, + "[unused716]": 721, + "[unused717]": 722, + "[unused718]": 723, + "[unused719]": 724, + "[unused720]": 725, + "[unused721]": 726, + "[unused722]": 727, + "[unused723]": 728, + "[unused724]": 729, + "[unused725]": 730, + "[unused726]": 731, + "[unused727]": 732, + "[unused728]": 733, + "[unused729]": 734, + "[unused730]": 735, + "[unused731]": 736, + "[unused732]": 737, + "[unused733]": 738, + "[unused734]": 739, + "[unused735]": 740, + "[unused736]": 741, + "[unused737]": 742, + "[unused738]": 743, + "[unused739]": 744, + "[unused740]": 745, + "[unused741]": 746, + "[unused742]": 747, + "[unused743]": 748, + "[unused744]": 749, + "[unused745]": 750, + "[unused746]": 751, + "[unused747]": 752, + "[unused748]": 753, + "[unused749]": 754, + "[unused750]": 755, + "[unused751]": 756, + "[unused752]": 757, + "[unused753]": 758, + "[unused754]": 759, + "[unused755]": 760, + "[unused756]": 761, + "[unused757]": 762, + "[unused758]": 763, + "[unused759]": 764, + "[unused760]": 765, + "[unused761]": 766, + "[unused762]": 767, + "[unused763]": 768, + "[unused764]": 769, + "[unused765]": 770, + "[unused766]": 771, + "[unused767]": 772, + "[unused768]": 773, + "[unused769]": 774, + "[unused770]": 775, + "[unused771]": 776, + "[unused772]": 777, + "[unused773]": 778, + "[unused774]": 779, + "[unused775]": 780, + "[unused776]": 781, + "[unused777]": 782, + "[unused778]": 783, + "[unused779]": 784, + "[unused780]": 785, + "[unused781]": 786, + "[unused782]": 787, + "[unused783]": 788, + "[unused784]": 789, + "[unused785]": 790, + "[unused786]": 791, + "[unused787]": 792, + "[unused788]": 793, + "[unused789]": 794, + "[unused790]": 795, + "[unused791]": 796, + "[unused792]": 797, + "[unused793]": 798, + "[unused794]": 799, + "[unused795]": 800, + "[unused796]": 801, + "[unused797]": 802, + "[unused798]": 803, + "[unused799]": 804, + "[unused800]": 805, + "[unused801]": 806, + "[unused802]": 807, + "[unused803]": 808, + "[unused804]": 809, + "[unused805]": 810, + "[unused806]": 811, + "[unused807]": 812, + "[unused808]": 813, + "[unused809]": 814, + "[unused810]": 815, + "[unused811]": 816, + "[unused812]": 817, + "[unused813]": 818, + "[unused814]": 819, + "[unused815]": 820, + "[unused816]": 821, + "[unused817]": 822, + "[unused818]": 823, + "[unused819]": 824, + "[unused820]": 825, + "[unused821]": 826, + "[unused822]": 827, + "[unused823]": 828, + "[unused824]": 829, + "[unused825]": 830, + "[unused826]": 831, + "[unused827]": 832, + "[unused828]": 833, + "[unused829]": 834, + "[unused830]": 835, + "[unused831]": 836, + "[unused832]": 837, + "[unused833]": 838, + "[unused834]": 839, + "[unused835]": 840, + "[unused836]": 841, + "[unused837]": 842, + "[unused838]": 843, + "[unused839]": 844, + "[unused840]": 845, + "[unused841]": 846, + "[unused842]": 847, + "[unused843]": 848, + "[unused844]": 849, + "[unused845]": 850, + "[unused846]": 851, + "[unused847]": 852, + "[unused848]": 853, + "[unused849]": 854, + "[unused850]": 855, + "[unused851]": 856, + "[unused852]": 857, + "[unused853]": 858, + "[unused854]": 859, + "[unused855]": 860, + "[unused856]": 861, + "[unused857]": 862, + "[unused858]": 863, + "[unused859]": 864, + "[unused860]": 865, + "[unused861]": 866, + "[unused862]": 867, + "[unused863]": 868, + "[unused864]": 869, + "[unused865]": 870, + "[unused866]": 871, + "[unused867]": 872, + "[unused868]": 873, + "[unused869]": 874, + "[unused870]": 875, + "[unused871]": 876, + "[unused872]": 877, + "[unused873]": 878, + "[unused874]": 879, + "[unused875]": 880, + "[unused876]": 881, + "[unused877]": 882, + "[unused878]": 883, + "[unused879]": 884, + "[unused880]": 885, + "[unused881]": 886, + "[unused882]": 887, + "[unused883]": 888, + "[unused884]": 889, + "[unused885]": 890, + "[unused886]": 891, + "[unused887]": 892, + "[unused888]": 893, + "[unused889]": 894, + "[unused890]": 895, + "[unused891]": 896, + "[unused892]": 897, + "[unused893]": 898, + "[unused894]": 899, + "[unused895]": 900, + "[unused896]": 901, + "[unused897]": 902, + "[unused898]": 903, + "[unused899]": 904, + "[unused900]": 905, + "[unused901]": 906, + "[unused902]": 907, + "[unused903]": 908, + "[unused904]": 909, + "[unused905]": 910, + "[unused906]": 911, + "[unused907]": 912, + "[unused908]": 913, + "[unused909]": 914, + "[unused910]": 915, + "[unused911]": 916, + "[unused912]": 917, + "[unused913]": 918, + "[unused914]": 919, + "[unused915]": 920, + "[unused916]": 921, + "[unused917]": 922, + "[unused918]": 923, + "[unused919]": 924, + "[unused920]": 925, + "[unused921]": 926, + "[unused922]": 927, + "[unused923]": 928, + "[unused924]": 929, + "[unused925]": 930, + "[unused926]": 931, + "[unused927]": 932, + "[unused928]": 933, + "[unused929]": 934, + "[unused930]": 935, + "[unused931]": 936, + "[unused932]": 937, + "[unused933]": 938, + "[unused934]": 939, + "[unused935]": 940, + "[unused936]": 941, + "[unused937]": 942, + "[unused938]": 943, + "[unused939]": 944, + "[unused940]": 945, + "[unused941]": 946, + "[unused942]": 947, + "[unused943]": 948, + "[unused944]": 949, + "[unused945]": 950, + "[unused946]": 951, + "[unused947]": 952, + "[unused948]": 953, + "[unused949]": 954, + "[unused950]": 955, + "[unused951]": 956, + "[unused952]": 957, + "[unused953]": 958, + "[unused954]": 959, + "[unused955]": 960, + "[unused956]": 961, + "[unused957]": 962, + "[unused958]": 963, + "[unused959]": 964, + "[unused960]": 965, + "[unused961]": 966, + "[unused962]": 967, + "[unused963]": 968, + "[unused964]": 969, + "[unused965]": 970, + "[unused966]": 971, + "[unused967]": 972, + "[unused968]": 973, + "[unused969]": 974, + "[unused970]": 975, + "[unused971]": 976, + "[unused972]": 977, + "[unused973]": 978, + "[unused974]": 979, + "[unused975]": 980, + "[unused976]": 981, + "[unused977]": 982, + "[unused978]": 983, + "[unused979]": 984, + "[unused980]": 985, + "[unused981]": 986, + "[unused982]": 987, + "[unused983]": 988, + "[unused984]": 989, + "[unused985]": 990, + "[unused986]": 991, + "[unused987]": 992, + "[unused988]": 993, + "[unused989]": 994, + "[unused990]": 995, + "[unused991]": 996, + "[unused992]": 997, + "[unused993]": 998, + "!": 999, + "\"": 1000, + "#": 1001, + "$": 1002, + "%": 1003, + "&": 1004, + "'": 1005, + "(": 1006, + ")": 1007, + "*": 1008, + "+": 1009, + ",": 1010, + "-": 1011, + ".": 1012, + "/": 1013, + "0": 1014, + "1": 1015, + "2": 1016, + "3": 1017, + "4": 1018, + "5": 1019, + "6": 1020, + "7": 1021, + "8": 1022, + "9": 1023, + ":": 1024, + ";": 1025, + "<": 1026, + "=": 1027, + ">": 1028, + "?": 1029, + "@": 1030, + "[": 1031, + "\\": 1032, + "]": 1033, + "^": 1034, + "_": 1035, + "`": 1036, + "a": 1037, + "b": 1038, + "c": 1039, + "d": 1040, + "e": 1041, + "f": 1042, + "g": 1043, + "h": 1044, + "i": 1045, + "j": 1046, + "k": 1047, + "l": 1048, + "m": 1049, + "n": 1050, + "o": 1051, + "p": 1052, + "q": 1053, + "r": 1054, + "s": 1055, + "t": 1056, + "u": 1057, + "v": 1058, + "w": 1059, + "x": 1060, + "y": 1061, + "z": 1062, + "{": 1063, + "|": 1064, + "}": 1065, + "~": 1066, + "¡": 1067, + "¢": 1068, + "£": 1069, + "¤": 1070, + "¥": 1071, + "¦": 1072, + "§": 1073, + "¨": 1074, + "©": 1075, + "ª": 1076, + "«": 1077, + "¬": 1078, + "®": 1079, + "°": 1080, + "±": 1081, + "²": 1082, + "³": 1083, + "´": 1084, + "µ": 1085, + "¶": 1086, + "·": 1087, + "¹": 1088, + "º": 1089, + "»": 1090, + "¼": 1091, + "½": 1092, + "¾": 1093, + "¿": 1094, + "×": 1095, + "ß": 1096, + "æ": 1097, + "ð": 1098, + "÷": 1099, + "ø": 1100, + "þ": 1101, + "đ": 1102, + "ħ": 1103, + "ı": 1104, + "ł": 1105, + "ŋ": 1106, + "œ": 1107, + "ƒ": 1108, + "ɐ": 1109, + "ɑ": 1110, + "ɒ": 1111, + "ɔ": 1112, + "ɕ": 1113, + "ə": 1114, + "ɛ": 1115, + "ɡ": 1116, + "ɣ": 1117, + "ɨ": 1118, + "ɪ": 1119, + "ɫ": 1120, + "ɬ": 1121, + "ɯ": 1122, + "ɲ": 1123, + "ɴ": 1124, + "ɹ": 1125, + "ɾ": 1126, + "ʀ": 1127, + "ʁ": 1128, + "ʂ": 1129, + "ʃ": 1130, + "ʉ": 1131, + "ʊ": 1132, + "ʋ": 1133, + "ʌ": 1134, + "ʎ": 1135, + "ʐ": 1136, + "ʑ": 1137, + "ʒ": 1138, + "ʔ": 1139, + "ʰ": 1140, + "ʲ": 1141, + "ʳ": 1142, + "ʷ": 1143, + "ʸ": 1144, + "ʻ": 1145, + "ʼ": 1146, + "ʾ": 1147, + "ʿ": 1148, + "ˈ": 1149, + "ː": 1150, + "ˡ": 1151, + "ˢ": 1152, + "ˣ": 1153, + "ˤ": 1154, + "α": 1155, + "β": 1156, + "γ": 1157, + "δ": 1158, + "ε": 1159, + "ζ": 1160, + "η": 1161, + "θ": 1162, + "ι": 1163, + "κ": 1164, + "λ": 1165, + "μ": 1166, + "ν": 1167, + "ξ": 1168, + "ο": 1169, + "π": 1170, + "ρ": 1171, + "ς": 1172, + "σ": 1173, + "τ": 1174, + "υ": 1175, + "φ": 1176, + "χ": 1177, + "ψ": 1178, + "ω": 1179, + "а": 1180, + "б": 1181, + "в": 1182, + "г": 1183, + "д": 1184, + "е": 1185, + "ж": 1186, + "з": 1187, + "и": 1188, + "к": 1189, + "л": 1190, + "м": 1191, + "н": 1192, + "о": 1193, + "п": 1194, + "р": 1195, + "с": 1196, + "т": 1197, + "у": 1198, + "ф": 1199, + "х": 1200, + "ц": 1201, + "ч": 1202, + "ш": 1203, + "щ": 1204, + "ъ": 1205, + "ы": 1206, + "ь": 1207, + "э": 1208, + "ю": 1209, + "я": 1210, + "ђ": 1211, + "є": 1212, + "і": 1213, + "ј": 1214, + "љ": 1215, + "њ": 1216, + "ћ": 1217, + "ӏ": 1218, + "ա": 1219, + "բ": 1220, + "գ": 1221, + "դ": 1222, + "ե": 1223, + "թ": 1224, + "ի": 1225, + "լ": 1226, + "կ": 1227, + "հ": 1228, + "մ": 1229, + "յ": 1230, + "ն": 1231, + "ո": 1232, + "պ": 1233, + "ս": 1234, + "վ": 1235, + "տ": 1236, + "ր": 1237, + "ւ": 1238, + "ք": 1239, + "־": 1240, + "א": 1241, + "ב": 1242, + "ג": 1243, + "ד": 1244, + "ה": 1245, + "ו": 1246, + "ז": 1247, + "ח": 1248, + "ט": 1249, + "י": 1250, + "ך": 1251, + "כ": 1252, + "ל": 1253, + "ם": 1254, + "מ": 1255, + "ן": 1256, + "נ": 1257, + "ס": 1258, + "ע": 1259, + "ף": 1260, + "פ": 1261, + "ץ": 1262, + "צ": 1263, + "ק": 1264, + "ר": 1265, + "ש": 1266, + "ת": 1267, + "،": 1268, + "ء": 1269, + "ا": 1270, + "ب": 1271, + "ة": 1272, + "ت": 1273, + "ث": 1274, + "ج": 1275, + "ح": 1276, + "خ": 1277, + "د": 1278, + "ذ": 1279, + "ر": 1280, + "ز": 1281, + "س": 1282, + "ش": 1283, + "ص": 1284, + "ض": 1285, + "ط": 1286, + "ظ": 1287, + "ع": 1288, + "غ": 1289, + "ـ": 1290, + "ف": 1291, + "ق": 1292, + "ك": 1293, + "ل": 1294, + "م": 1295, + "ن": 1296, + "ه": 1297, + "و": 1298, + "ى": 1299, + "ي": 1300, + "ٹ": 1301, + "پ": 1302, + "چ": 1303, + "ک": 1304, + "گ": 1305, + "ں": 1306, + "ھ": 1307, + "ہ": 1308, + "ی": 1309, + "ے": 1310, + "अ": 1311, + "आ": 1312, + "उ": 1313, + "ए": 1314, + "क": 1315, + "ख": 1316, + "ग": 1317, + "च": 1318, + "ज": 1319, + "ट": 1320, + "ड": 1321, + "ण": 1322, + "त": 1323, + "थ": 1324, + "द": 1325, + "ध": 1326, + "न": 1327, + "प": 1328, + "ब": 1329, + "भ": 1330, + "म": 1331, + "य": 1332, + "र": 1333, + "ल": 1334, + "व": 1335, + "श": 1336, + "ष": 1337, + "स": 1338, + "ह": 1339, + "ा": 1340, + "ि": 1341, + "ी": 1342, + "ो": 1343, + "।": 1344, + "॥": 1345, + "ং": 1346, + "অ": 1347, + "আ": 1348, + "ই": 1349, + "উ": 1350, + "এ": 1351, + "ও": 1352, + "ক": 1353, + "খ": 1354, + "গ": 1355, + "চ": 1356, + "ছ": 1357, + "জ": 1358, + "ট": 1359, + "ড": 1360, + "ণ": 1361, + "ত": 1362, + "থ": 1363, + "দ": 1364, + "ধ": 1365, + "ন": 1366, + "প": 1367, + "ব": 1368, + "ভ": 1369, + "ম": 1370, + "য": 1371, + "র": 1372, + "ল": 1373, + "শ": 1374, + "ষ": 1375, + "স": 1376, + "হ": 1377, + "া": 1378, + "ি": 1379, + "ী": 1380, + "ে": 1381, + "க": 1382, + "ச": 1383, + "ட": 1384, + "த": 1385, + "ந": 1386, + "ன": 1387, + "ப": 1388, + "ம": 1389, + "ய": 1390, + "ர": 1391, + "ல": 1392, + "ள": 1393, + "வ": 1394, + "ா": 1395, + "ி": 1396, + "ு": 1397, + "ே": 1398, + "ை": 1399, + "ನ": 1400, + "ರ": 1401, + "ಾ": 1402, + "ක": 1403, + "ය": 1404, + "ර": 1405, + "ල": 1406, + "ව": 1407, + "ා": 1408, + "ก": 1409, + "ง": 1410, + "ต": 1411, + "ท": 1412, + "น": 1413, + "พ": 1414, + "ม": 1415, + "ย": 1416, + "ร": 1417, + "ล": 1418, + "ว": 1419, + "ส": 1420, + "อ": 1421, + "า": 1422, + "เ": 1423, + "་": 1424, + "།": 1425, + "ག": 1426, + "ང": 1427, + "ད": 1428, + "ན": 1429, + "པ": 1430, + "བ": 1431, + "མ": 1432, + "འ": 1433, + "ར": 1434, + "ལ": 1435, + "ས": 1436, + "မ": 1437, + "ა": 1438, + "ბ": 1439, + "გ": 1440, + "დ": 1441, + "ე": 1442, + "ვ": 1443, + "თ": 1444, + "ი": 1445, + "კ": 1446, + "ლ": 1447, + "მ": 1448, + "ნ": 1449, + "ო": 1450, + "რ": 1451, + "ს": 1452, + "ტ": 1453, + "უ": 1454, + "ᄀ": 1455, + "ᄂ": 1456, + "ᄃ": 1457, + "ᄅ": 1458, + "ᄆ": 1459, + "ᄇ": 1460, + "ᄉ": 1461, + "ᄊ": 1462, + "ᄋ": 1463, + "ᄌ": 1464, + "ᄎ": 1465, + "ᄏ": 1466, + "ᄐ": 1467, + "ᄑ": 1468, + "ᄒ": 1469, + "ᅡ": 1470, + "ᅢ": 1471, + "ᅥ": 1472, + "ᅦ": 1473, + "ᅧ": 1474, + "ᅩ": 1475, + "ᅪ": 1476, + "ᅭ": 1477, + "ᅮ": 1478, + "ᅯ": 1479, + "ᅲ": 1480, + "ᅳ": 1481, + "ᅴ": 1482, + "ᅵ": 1483, + "ᆨ": 1484, + "ᆫ": 1485, + "ᆯ": 1486, + "ᆷ": 1487, + "ᆸ": 1488, + "ᆼ": 1489, + "ᴬ": 1490, + "ᴮ": 1491, + "ᴰ": 1492, + "ᴵ": 1493, + "ᴺ": 1494, + "ᵀ": 1495, + "ᵃ": 1496, + "ᵇ": 1497, + "ᵈ": 1498, + "ᵉ": 1499, + "ᵍ": 1500, + "ᵏ": 1501, + "ᵐ": 1502, + "ᵒ": 1503, + "ᵖ": 1504, + "ᵗ": 1505, + "ᵘ": 1506, + "ᵢ": 1507, + "ᵣ": 1508, + "ᵤ": 1509, + "ᵥ": 1510, + "ᶜ": 1511, + "ᶠ": 1512, + "‐": 1513, + "‑": 1514, + "‒": 1515, + "–": 1516, + "—": 1517, + "―": 1518, + "‖": 1519, + "‘": 1520, + "’": 1521, + "‚": 1522, + "“": 1523, + "”": 1524, + "„": 1525, + "†": 1526, + "‡": 1527, + "•": 1528, + "…": 1529, + "‰": 1530, + "′": 1531, + "″": 1532, + "›": 1533, + "‿": 1534, + "⁄": 1535, + "⁰": 1536, + "ⁱ": 1537, + "⁴": 1538, + "⁵": 1539, + "⁶": 1540, + "⁷": 1541, + "⁸": 1542, + "⁹": 1543, + "⁺": 1544, + "⁻": 1545, + "ⁿ": 1546, + "₀": 1547, + "₁": 1548, + "₂": 1549, + "₃": 1550, + "₄": 1551, + "₅": 1552, + "₆": 1553, + "₇": 1554, + "₈": 1555, + "₉": 1556, + "₊": 1557, + "₍": 1558, + "₎": 1559, + "ₐ": 1560, + "ₑ": 1561, + "ₒ": 1562, + "ₓ": 1563, + "ₕ": 1564, + "ₖ": 1565, + "ₗ": 1566, + "ₘ": 1567, + "ₙ": 1568, + "ₚ": 1569, + "ₛ": 1570, + "ₜ": 1571, + "₤": 1572, + "₩": 1573, + "€": 1574, + "₱": 1575, + "₹": 1576, + "ℓ": 1577, + "№": 1578, + "ℝ": 1579, + "™": 1580, + "⅓": 1581, + "⅔": 1582, + "←": 1583, + "↑": 1584, + "→": 1585, + "↓": 1586, + "↔": 1587, + "↦": 1588, + "⇄": 1589, + "⇌": 1590, + "⇒": 1591, + "∂": 1592, + "∅": 1593, + "∆": 1594, + "∇": 1595, + "∈": 1596, + "−": 1597, + "∗": 1598, + "∘": 1599, + "√": 1600, + "∞": 1601, + "∧": 1602, + "∨": 1603, + "∩": 1604, + "∪": 1605, + "≈": 1606, + "≡": 1607, + "≤": 1608, + "≥": 1609, + "⊂": 1610, + "⊆": 1611, + "⊕": 1612, + "⊗": 1613, + "⋅": 1614, + "─": 1615, + "│": 1616, + "■": 1617, + "▪": 1618, + "●": 1619, + "★": 1620, + "☆": 1621, + "☉": 1622, + "♠": 1623, + "♣": 1624, + "♥": 1625, + "♦": 1626, + "♭": 1627, + "♯": 1628, + "⟨": 1629, + "⟩": 1630, + "ⱼ": 1631, + "⺩": 1632, + "⺼": 1633, + "⽥": 1634, + "、": 1635, + "。": 1636, + "〈": 1637, + "〉": 1638, + "《": 1639, + "》": 1640, + "「": 1641, + "」": 1642, + "『": 1643, + "』": 1644, + "〜": 1645, + "あ": 1646, + "い": 1647, + "う": 1648, + "え": 1649, + "お": 1650, + "か": 1651, + "き": 1652, + "く": 1653, + "け": 1654, + "こ": 1655, + "さ": 1656, + "し": 1657, + "す": 1658, + "せ": 1659, + "そ": 1660, + "た": 1661, + "ち": 1662, + "っ": 1663, + "つ": 1664, + "て": 1665, + "と": 1666, + "な": 1667, + "に": 1668, + "ぬ": 1669, + "ね": 1670, + "の": 1671, + "は": 1672, + "ひ": 1673, + "ふ": 1674, + "へ": 1675, + "ほ": 1676, + "ま": 1677, + "み": 1678, + "む": 1679, + "め": 1680, + "も": 1681, + "や": 1682, + "ゆ": 1683, + "よ": 1684, + "ら": 1685, + "り": 1686, + "る": 1687, + "れ": 1688, + "ろ": 1689, + "を": 1690, + "ん": 1691, + "ァ": 1692, + "ア": 1693, + "ィ": 1694, + "イ": 1695, + "ウ": 1696, + "ェ": 1697, + "エ": 1698, + "オ": 1699, + "カ": 1700, + "キ": 1701, + "ク": 1702, + "ケ": 1703, + "コ": 1704, + "サ": 1705, + "シ": 1706, + "ス": 1707, + "セ": 1708, + "タ": 1709, + "チ": 1710, + "ッ": 1711, + "ツ": 1712, + "テ": 1713, + "ト": 1714, + "ナ": 1715, + "ニ": 1716, + "ノ": 1717, + "ハ": 1718, + "ヒ": 1719, + "フ": 1720, + "ヘ": 1721, + "ホ": 1722, + "マ": 1723, + "ミ": 1724, + "ム": 1725, + "メ": 1726, + "モ": 1727, + "ャ": 1728, + "ュ": 1729, + "ョ": 1730, + "ラ": 1731, + "リ": 1732, + "ル": 1733, + "レ": 1734, + "ロ": 1735, + "ワ": 1736, + "ン": 1737, + "・": 1738, + "ー": 1739, + "一": 1740, + "三": 1741, + "上": 1742, + "下": 1743, + "不": 1744, + "世": 1745, + "中": 1746, + "主": 1747, + "久": 1748, + "之": 1749, + "也": 1750, + "事": 1751, + "二": 1752, + "五": 1753, + "井": 1754, + "京": 1755, + "人": 1756, + "亻": 1757, + "仁": 1758, + "介": 1759, + "代": 1760, + "仮": 1761, + "伊": 1762, + "会": 1763, + "佐": 1764, + "侍": 1765, + "保": 1766, + "信": 1767, + "健": 1768, + "元": 1769, + "光": 1770, + "八": 1771, + "公": 1772, + "内": 1773, + "出": 1774, + "分": 1775, + "前": 1776, + "劉": 1777, + "力": 1778, + "加": 1779, + "勝": 1780, + "北": 1781, + "区": 1782, + "十": 1783, + "千": 1784, + "南": 1785, + "博": 1786, + "原": 1787, + "口": 1788, + "古": 1789, + "史": 1790, + "司": 1791, + "合": 1792, + "吉": 1793, + "同": 1794, + "名": 1795, + "和": 1796, + "囗": 1797, + "四": 1798, + "国": 1799, + "國": 1800, + "土": 1801, + "地": 1802, + "坂": 1803, + "城": 1804, + "堂": 1805, + "場": 1806, + "士": 1807, + "夏": 1808, + "外": 1809, + "大": 1810, + "天": 1811, + "太": 1812, + "夫": 1813, + "奈": 1814, + "女": 1815, + "子": 1816, + "学": 1817, + "宀": 1818, + "宇": 1819, + "安": 1820, + "宗": 1821, + "定": 1822, + "宣": 1823, + "宮": 1824, + "家": 1825, + "宿": 1826, + "寺": 1827, + "將": 1828, + "小": 1829, + "尚": 1830, + "山": 1831, + "岡": 1832, + "島": 1833, + "崎": 1834, + "川": 1835, + "州": 1836, + "巿": 1837, + "帝": 1838, + "平": 1839, + "年": 1840, + "幸": 1841, + "广": 1842, + "弘": 1843, + "張": 1844, + "彳": 1845, + "後": 1846, + "御": 1847, + "德": 1848, + "心": 1849, + "忄": 1850, + "志": 1851, + "忠": 1852, + "愛": 1853, + "成": 1854, + "我": 1855, + "戦": 1856, + "戸": 1857, + "手": 1858, + "扌": 1859, + "政": 1860, + "文": 1861, + "新": 1862, + "方": 1863, + "日": 1864, + "明": 1865, + "星": 1866, + "春": 1867, + "昭": 1868, + "智": 1869, + "曲": 1870, + "書": 1871, + "月": 1872, + "有": 1873, + "朝": 1874, + "木": 1875, + "本": 1876, + "李": 1877, + "村": 1878, + "東": 1879, + "松": 1880, + "林": 1881, + "森": 1882, + "楊": 1883, + "樹": 1884, + "橋": 1885, + "歌": 1886, + "止": 1887, + "正": 1888, + "武": 1889, + "比": 1890, + "氏": 1891, + "民": 1892, + "水": 1893, + "氵": 1894, + "氷": 1895, + "永": 1896, + "江": 1897, + "沢": 1898, + "河": 1899, + "治": 1900, + "法": 1901, + "海": 1902, + "清": 1903, + "漢": 1904, + "瀬": 1905, + "火": 1906, + "版": 1907, + "犬": 1908, + "王": 1909, + "生": 1910, + "田": 1911, + "男": 1912, + "疒": 1913, + "発": 1914, + "白": 1915, + "的": 1916, + "皇": 1917, + "目": 1918, + "相": 1919, + "省": 1920, + "真": 1921, + "石": 1922, + "示": 1923, + "社": 1924, + "神": 1925, + "福": 1926, + "禾": 1927, + "秀": 1928, + "秋": 1929, + "空": 1930, + "立": 1931, + "章": 1932, + "竹": 1933, + "糹": 1934, + "美": 1935, + "義": 1936, + "耳": 1937, + "良": 1938, + "艹": 1939, + "花": 1940, + "英": 1941, + "華": 1942, + "葉": 1943, + "藤": 1944, + "行": 1945, + "街": 1946, + "西": 1947, + "見": 1948, + "訁": 1949, + "語": 1950, + "谷": 1951, + "貝": 1952, + "貴": 1953, + "車": 1954, + "軍": 1955, + "辶": 1956, + "道": 1957, + "郎": 1958, + "郡": 1959, + "部": 1960, + "都": 1961, + "里": 1962, + "野": 1963, + "金": 1964, + "鈴": 1965, + "镇": 1966, + "長": 1967, + "門": 1968, + "間": 1969, + "阝": 1970, + "阿": 1971, + "陳": 1972, + "陽": 1973, + "雄": 1974, + "青": 1975, + "面": 1976, + "風": 1977, + "食": 1978, + "香": 1979, + "馬": 1980, + "高": 1981, + "龍": 1982, + "龸": 1983, + "fi": 1984, + "fl": 1985, + "!": 1986, + "(": 1987, + ")": 1988, + ",": 1989, + "-": 1990, + ".": 1991, + "/": 1992, + ":": 1993, + "?": 1994, + "~": 1995, + "the": 1996, + "of": 1997, + "and": 1998, + "in": 1999, + "to": 2000, + "was": 2001, + "he": 2002, + "is": 2003, + "as": 2004, + "for": 2005, + "on": 2006, + "with": 2007, + "that": 2008, + "it": 2009, + "his": 2010, + "by": 2011, + "at": 2012, + "from": 2013, + "her": 2014, + "##s": 2015, + "she": 2016, + "you": 2017, + "had": 2018, + "an": 2019, + "were": 2020, + "but": 2021, + "be": 2022, + "this": 2023, + "are": 2024, + "not": 2025, + "my": 2026, + "they": 2027, + "one": 2028, + "which": 2029, + "or": 2030, + "have": 2031, + "him": 2032, + "me": 2033, + "first": 2034, + "all": 2035, + "also": 2036, + "their": 2037, + "has": 2038, + "up": 2039, + "who": 2040, + "out": 2041, + "been": 2042, + "when": 2043, + "after": 2044, + "there": 2045, + "into": 2046, + "new": 2047, + "two": 2048, + "its": 2049, + "##a": 2050, + "time": 2051, + "would": 2052, + "no": 2053, + "what": 2054, + "about": 2055, + "said": 2056, + "we": 2057, + "over": 2058, + "then": 2059, + "other": 2060, + "so": 2061, + "more": 2062, + "##e": 2063, + "can": 2064, + "if": 2065, + "like": 2066, + "back": 2067, + "them": 2068, + "only": 2069, + "some": 2070, + "could": 2071, + "##i": 2072, + "where": 2073, + "just": 2074, + "##ing": 2075, + "during": 2076, + "before": 2077, + "##n": 2078, + "do": 2079, + "##o": 2080, + "made": 2081, + "school": 2082, + "through": 2083, + "than": 2084, + "now": 2085, + "years": 2086, + "most": 2087, + "world": 2088, + "may": 2089, + "between": 2090, + "down": 2091, + "well": 2092, + "three": 2093, + "##d": 2094, + "year": 2095, + "while": 2096, + "will": 2097, + "##ed": 2098, + "##r": 2099, + "##y": 2100, + "later": 2101, + "##t": 2102, + "city": 2103, + "under": 2104, + "around": 2105, + "did": 2106, + "such": 2107, + "being": 2108, + "used": 2109, + "state": 2110, + "people": 2111, + "part": 2112, + "know": 2113, + "against": 2114, + "your": 2115, + "many": 2116, + "second": 2117, + "university": 2118, + "both": 2119, + "national": 2120, + "##er": 2121, + "these": 2122, + "don": 2123, + "known": 2124, + "off": 2125, + "way": 2126, + "until": 2127, + "re": 2128, + "how": 2129, + "even": 2130, + "get": 2131, + "head": 2132, + "...": 2133, + "didn": 2134, + "##ly": 2135, + "team": 2136, + "american": 2137, + "because": 2138, + "de": 2139, + "##l": 2140, + "born": 2141, + "united": 2142, + "film": 2143, + "since": 2144, + "still": 2145, + "long": 2146, + "work": 2147, + "south": 2148, + "us": 2149, + "became": 2150, + "any": 2151, + "high": 2152, + "again": 2153, + "day": 2154, + "family": 2155, + "see": 2156, + "right": 2157, + "man": 2158, + "eyes": 2159, + "house": 2160, + "season": 2161, + "war": 2162, + "states": 2163, + "including": 2164, + "took": 2165, + "life": 2166, + "north": 2167, + "same": 2168, + "each": 2169, + "called": 2170, + "name": 2171, + "much": 2172, + "place": 2173, + "however": 2174, + "go": 2175, + "four": 2176, + "group": 2177, + "another": 2178, + "found": 2179, + "won": 2180, + "area": 2181, + "here": 2182, + "going": 2183, + "10": 2184, + "away": 2185, + "series": 2186, + "left": 2187, + "home": 2188, + "music": 2189, + "best": 2190, + "make": 2191, + "hand": 2192, + "number": 2193, + "company": 2194, + "several": 2195, + "never": 2196, + "last": 2197, + "john": 2198, + "000": 2199, + "very": 2200, + "album": 2201, + "take": 2202, + "end": 2203, + "good": 2204, + "too": 2205, + "following": 2206, + "released": 2207, + "game": 2208, + "played": 2209, + "little": 2210, + "began": 2211, + "district": 2212, + "##m": 2213, + "old": 2214, + "want": 2215, + "those": 2216, + "side": 2217, + "held": 2218, + "own": 2219, + "early": 2220, + "county": 2221, + "ll": 2222, + "league": 2223, + "use": 2224, + "west": 2225, + "##u": 2226, + "face": 2227, + "think": 2228, + "##es": 2229, + "2010": 2230, + "government": 2231, + "##h": 2232, + "march": 2233, + "came": 2234, + "small": 2235, + "general": 2236, + "town": 2237, + "june": 2238, + "##on": 2239, + "line": 2240, + "based": 2241, + "something": 2242, + "##k": 2243, + "september": 2244, + "thought": 2245, + "looked": 2246, + "along": 2247, + "international": 2248, + "2011": 2249, + "air": 2250, + "july": 2251, + "club": 2252, + "went": 2253, + "january": 2254, + "october": 2255, + "our": 2256, + "august": 2257, + "april": 2258, + "york": 2259, + "12": 2260, + "few": 2261, + "2012": 2262, + "2008": 2263, + "east": 2264, + "show": 2265, + "member": 2266, + "college": 2267, + "2009": 2268, + "father": 2269, + "public": 2270, + "##us": 2271, + "come": 2272, + "men": 2273, + "five": 2274, + "set": 2275, + "station": 2276, + "church": 2277, + "##c": 2278, + "next": 2279, + "former": 2280, + "november": 2281, + "room": 2282, + "party": 2283, + "located": 2284, + "december": 2285, + "2013": 2286, + "age": 2287, + "got": 2288, + "2007": 2289, + "##g": 2290, + "system": 2291, + "let": 2292, + "love": 2293, + "2006": 2294, + "though": 2295, + "every": 2296, + "2014": 2297, + "look": 2298, + "song": 2299, + "water": 2300, + "century": 2301, + "without": 2302, + "body": 2303, + "black": 2304, + "night": 2305, + "within": 2306, + "great": 2307, + "women": 2308, + "single": 2309, + "ve": 2310, + "building": 2311, + "large": 2312, + "population": 2313, + "river": 2314, + "named": 2315, + "band": 2316, + "white": 2317, + "started": 2318, + "##an": 2319, + "once": 2320, + "15": 2321, + "20": 2322, + "should": 2323, + "18": 2324, + "2015": 2325, + "service": 2326, + "top": 2327, + "built": 2328, + "british": 2329, + "open": 2330, + "death": 2331, + "king": 2332, + "moved": 2333, + "local": 2334, + "times": 2335, + "children": 2336, + "february": 2337, + "book": 2338, + "why": 2339, + "11": 2340, + "door": 2341, + "need": 2342, + "president": 2343, + "order": 2344, + "final": 2345, + "road": 2346, + "wasn": 2347, + "although": 2348, + "due": 2349, + "major": 2350, + "died": 2351, + "village": 2352, + "third": 2353, + "knew": 2354, + "2016": 2355, + "asked": 2356, + "turned": 2357, + "st": 2358, + "wanted": 2359, + "say": 2360, + "##p": 2361, + "together": 2362, + "received": 2363, + "main": 2364, + "son": 2365, + "served": 2366, + "different": 2367, + "##en": 2368, + "behind": 2369, + "himself": 2370, + "felt": 2371, + "members": 2372, + "power": 2373, + "football": 2374, + "law": 2375, + "voice": 2376, + "play": 2377, + "##in": 2378, + "near": 2379, + "park": 2380, + "history": 2381, + "30": 2382, + "having": 2383, + "2005": 2384, + "16": 2385, + "##man": 2386, + "saw": 2387, + "mother": 2388, + "##al": 2389, + "army": 2390, + "point": 2391, + "front": 2392, + "help": 2393, + "english": 2394, + "street": 2395, + "art": 2396, + "late": 2397, + "hands": 2398, + "games": 2399, + "award": 2400, + "##ia": 2401, + "young": 2402, + "14": 2403, + "put": 2404, + "published": 2405, + "country": 2406, + "division": 2407, + "across": 2408, + "told": 2409, + "13": 2410, + "often": 2411, + "ever": 2412, + "french": 2413, + "london": 2414, + "center": 2415, + "six": 2416, + "red": 2417, + "2017": 2418, + "led": 2419, + "days": 2420, + "include": 2421, + "light": 2422, + "25": 2423, + "find": 2424, + "tell": 2425, + "among": 2426, + "species": 2427, + "really": 2428, + "according": 2429, + "central": 2430, + "half": 2431, + "2004": 2432, + "form": 2433, + "original": 2434, + "gave": 2435, + "office": 2436, + "making": 2437, + "enough": 2438, + "lost": 2439, + "full": 2440, + "opened": 2441, + "must": 2442, + "included": 2443, + "live": 2444, + "given": 2445, + "german": 2446, + "player": 2447, + "run": 2448, + "business": 2449, + "woman": 2450, + "community": 2451, + "cup": 2452, + "might": 2453, + "million": 2454, + "land": 2455, + "2000": 2456, + "court": 2457, + "development": 2458, + "17": 2459, + "short": 2460, + "round": 2461, + "ii": 2462, + "km": 2463, + "seen": 2464, + "class": 2465, + "story": 2466, + "always": 2467, + "become": 2468, + "sure": 2469, + "research": 2470, + "almost": 2471, + "director": 2472, + "council": 2473, + "la": 2474, + "##2": 2475, + "career": 2476, + "things": 2477, + "using": 2478, + "island": 2479, + "##z": 2480, + "couldn": 2481, + "car": 2482, + "##is": 2483, + "24": 2484, + "close": 2485, + "force": 2486, + "##1": 2487, + "better": 2488, + "free": 2489, + "support": 2490, + "control": 2491, + "field": 2492, + "students": 2493, + "2003": 2494, + "education": 2495, + "married": 2496, + "##b": 2497, + "nothing": 2498, + "worked": 2499, + "others": 2500, + "record": 2501, + "big": 2502, + "inside": 2503, + "level": 2504, + "anything": 2505, + "continued": 2506, + "give": 2507, + "james": 2508, + "##3": 2509, + "military": 2510, + "established": 2511, + "non": 2512, + "returned": 2513, + "feel": 2514, + "does": 2515, + "title": 2516, + "written": 2517, + "thing": 2518, + "feet": 2519, + "william": 2520, + "far": 2521, + "co": 2522, + "association": 2523, + "hard": 2524, + "already": 2525, + "2002": 2526, + "##ra": 2527, + "championship": 2528, + "human": 2529, + "western": 2530, + "100": 2531, + "##na": 2532, + "department": 2533, + "hall": 2534, + "role": 2535, + "various": 2536, + "production": 2537, + "21": 2538, + "19": 2539, + "heart": 2540, + "2001": 2541, + "living": 2542, + "fire": 2543, + "version": 2544, + "##ers": 2545, + "##f": 2546, + "television": 2547, + "royal": 2548, + "##4": 2549, + "produced": 2550, + "working": 2551, + "act": 2552, + "case": 2553, + "society": 2554, + "region": 2555, + "present": 2556, + "radio": 2557, + "period": 2558, + "looking": 2559, + "least": 2560, + "total": 2561, + "keep": 2562, + "england": 2563, + "wife": 2564, + "program": 2565, + "per": 2566, + "brother": 2567, + "mind": 2568, + "special": 2569, + "22": 2570, + "##le": 2571, + "am": 2572, + "works": 2573, + "soon": 2574, + "##6": 2575, + "political": 2576, + "george": 2577, + "services": 2578, + "taken": 2579, + "created": 2580, + "##7": 2581, + "further": 2582, + "able": 2583, + "reached": 2584, + "david": 2585, + "union": 2586, + "joined": 2587, + "upon": 2588, + "done": 2589, + "important": 2590, + "social": 2591, + "information": 2592, + "either": 2593, + "##ic": 2594, + "##x": 2595, + "appeared": 2596, + "position": 2597, + "ground": 2598, + "lead": 2599, + "rock": 2600, + "dark": 2601, + "election": 2602, + "23": 2603, + "board": 2604, + "france": 2605, + "hair": 2606, + "course": 2607, + "arms": 2608, + "site": 2609, + "police": 2610, + "girl": 2611, + "instead": 2612, + "real": 2613, + "sound": 2614, + "##v": 2615, + "words": 2616, + "moment": 2617, + "##te": 2618, + "someone": 2619, + "##8": 2620, + "summer": 2621, + "project": 2622, + "announced": 2623, + "san": 2624, + "less": 2625, + "wrote": 2626, + "past": 2627, + "followed": 2628, + "##5": 2629, + "blue": 2630, + "founded": 2631, + "al": 2632, + "finally": 2633, + "india": 2634, + "taking": 2635, + "records": 2636, + "america": 2637, + "##ne": 2638, + "1999": 2639, + "design": 2640, + "considered": 2641, + "northern": 2642, + "god": 2643, + "stop": 2644, + "battle": 2645, + "toward": 2646, + "european": 2647, + "outside": 2648, + "described": 2649, + "track": 2650, + "today": 2651, + "playing": 2652, + "language": 2653, + "28": 2654, + "call": 2655, + "26": 2656, + "heard": 2657, + "professional": 2658, + "low": 2659, + "australia": 2660, + "miles": 2661, + "california": 2662, + "win": 2663, + "yet": 2664, + "green": 2665, + "##ie": 2666, + "trying": 2667, + "blood": 2668, + "##ton": 2669, + "southern": 2670, + "science": 2671, + "maybe": 2672, + "everything": 2673, + "match": 2674, + "square": 2675, + "27": 2676, + "mouth": 2677, + "video": 2678, + "race": 2679, + "recorded": 2680, + "leave": 2681, + "above": 2682, + "##9": 2683, + "daughter": 2684, + "points": 2685, + "space": 2686, + "1998": 2687, + "museum": 2688, + "change": 2689, + "middle": 2690, + "common": 2691, + "##0": 2692, + "move": 2693, + "tv": 2694, + "post": 2695, + "##ta": 2696, + "lake": 2697, + "seven": 2698, + "tried": 2699, + "elected": 2700, + "closed": 2701, + "ten": 2702, + "paul": 2703, + "minister": 2704, + "##th": 2705, + "months": 2706, + "start": 2707, + "chief": 2708, + "return": 2709, + "canada": 2710, + "person": 2711, + "sea": 2712, + "release": 2713, + "similar": 2714, + "modern": 2715, + "brought": 2716, + "rest": 2717, + "hit": 2718, + "formed": 2719, + "mr": 2720, + "##la": 2721, + "1997": 2722, + "floor": 2723, + "event": 2724, + "doing": 2725, + "thomas": 2726, + "1996": 2727, + "robert": 2728, + "care": 2729, + "killed": 2730, + "training": 2731, + "star": 2732, + "week": 2733, + "needed": 2734, + "turn": 2735, + "finished": 2736, + "railway": 2737, + "rather": 2738, + "news": 2739, + "health": 2740, + "sent": 2741, + "example": 2742, + "ran": 2743, + "term": 2744, + "michael": 2745, + "coming": 2746, + "currently": 2747, + "yes": 2748, + "forces": 2749, + "despite": 2750, + "gold": 2751, + "areas": 2752, + "50": 2753, + "stage": 2754, + "fact": 2755, + "29": 2756, + "dead": 2757, + "says": 2758, + "popular": 2759, + "2018": 2760, + "originally": 2761, + "germany": 2762, + "probably": 2763, + "developed": 2764, + "result": 2765, + "pulled": 2766, + "friend": 2767, + "stood": 2768, + "money": 2769, + "running": 2770, + "mi": 2771, + "signed": 2772, + "word": 2773, + "songs": 2774, + "child": 2775, + "eventually": 2776, + "met": 2777, + "tour": 2778, + "average": 2779, + "teams": 2780, + "minutes": 2781, + "festival": 2782, + "current": 2783, + "deep": 2784, + "kind": 2785, + "1995": 2786, + "decided": 2787, + "usually": 2788, + "eastern": 2789, + "seemed": 2790, + "##ness": 2791, + "episode": 2792, + "bed": 2793, + "added": 2794, + "table": 2795, + "indian": 2796, + "private": 2797, + "charles": 2798, + "route": 2799, + "available": 2800, + "idea": 2801, + "throughout": 2802, + "centre": 2803, + "addition": 2804, + "appointed": 2805, + "style": 2806, + "1994": 2807, + "books": 2808, + "eight": 2809, + "construction": 2810, + "press": 2811, + "mean": 2812, + "wall": 2813, + "friends": 2814, + "remained": 2815, + "schools": 2816, + "study": 2817, + "##ch": 2818, + "##um": 2819, + "institute": 2820, + "oh": 2821, + "chinese": 2822, + "sometimes": 2823, + "events": 2824, + "possible": 2825, + "1992": 2826, + "australian": 2827, + "type": 2828, + "brown": 2829, + "forward": 2830, + "talk": 2831, + "process": 2832, + "food": 2833, + "debut": 2834, + "seat": 2835, + "performance": 2836, + "committee": 2837, + "features": 2838, + "character": 2839, + "arts": 2840, + "herself": 2841, + "else": 2842, + "lot": 2843, + "strong": 2844, + "russian": 2845, + "range": 2846, + "hours": 2847, + "peter": 2848, + "arm": 2849, + "##da": 2850, + "morning": 2851, + "dr": 2852, + "sold": 2853, + "##ry": 2854, + "quickly": 2855, + "directed": 2856, + "1993": 2857, + "guitar": 2858, + "china": 2859, + "##w": 2860, + "31": 2861, + "list": 2862, + "##ma": 2863, + "performed": 2864, + "media": 2865, + "uk": 2866, + "players": 2867, + "smile": 2868, + "##rs": 2869, + "myself": 2870, + "40": 2871, + "placed": 2872, + "coach": 2873, + "province": 2874, + "towards": 2875, + "wouldn": 2876, + "leading": 2877, + "whole": 2878, + "boy": 2879, + "official": 2880, + "designed": 2881, + "grand": 2882, + "census": 2883, + "##el": 2884, + "europe": 2885, + "attack": 2886, + "japanese": 2887, + "henry": 2888, + "1991": 2889, + "##re": 2890, + "##os": 2891, + "cross": 2892, + "getting": 2893, + "alone": 2894, + "action": 2895, + "lower": 2896, + "network": 2897, + "wide": 2898, + "washington": 2899, + "japan": 2900, + "1990": 2901, + "hospital": 2902, + "believe": 2903, + "changed": 2904, + "sister": 2905, + "##ar": 2906, + "hold": 2907, + "gone": 2908, + "sir": 2909, + "hadn": 2910, + "ship": 2911, + "##ka": 2912, + "studies": 2913, + "academy": 2914, + "shot": 2915, + "rights": 2916, + "below": 2917, + "base": 2918, + "bad": 2919, + "involved": 2920, + "kept": 2921, + "largest": 2922, + "##ist": 2923, + "bank": 2924, + "future": 2925, + "especially": 2926, + "beginning": 2927, + "mark": 2928, + "movement": 2929, + "section": 2930, + "female": 2931, + "magazine": 2932, + "plan": 2933, + "professor": 2934, + "lord": 2935, + "longer": 2936, + "##ian": 2937, + "sat": 2938, + "walked": 2939, + "hill": 2940, + "actually": 2941, + "civil": 2942, + "energy": 2943, + "model": 2944, + "families": 2945, + "size": 2946, + "thus": 2947, + "aircraft": 2948, + "completed": 2949, + "includes": 2950, + "data": 2951, + "captain": 2952, + "##or": 2953, + "fight": 2954, + "vocals": 2955, + "featured": 2956, + "richard": 2957, + "bridge": 2958, + "fourth": 2959, + "1989": 2960, + "officer": 2961, + "stone": 2962, + "hear": 2963, + "##ism": 2964, + "means": 2965, + "medical": 2966, + "groups": 2967, + "management": 2968, + "self": 2969, + "lips": 2970, + "competition": 2971, + "entire": 2972, + "lived": 2973, + "technology": 2974, + "leaving": 2975, + "federal": 2976, + "tournament": 2977, + "bit": 2978, + "passed": 2979, + "hot": 2980, + "independent": 2981, + "awards": 2982, + "kingdom": 2983, + "mary": 2984, + "spent": 2985, + "fine": 2986, + "doesn": 2987, + "reported": 2988, + "##ling": 2989, + "jack": 2990, + "fall": 2991, + "raised": 2992, + "itself": 2993, + "stay": 2994, + "true": 2995, + "studio": 2996, + "1988": 2997, + "sports": 2998, + "replaced": 2999, + "paris": 3000, + "systems": 3001, + "saint": 3002, + "leader": 3003, + "theatre": 3004, + "whose": 3005, + "market": 3006, + "capital": 3007, + "parents": 3008, + "spanish": 3009, + "canadian": 3010, + "earth": 3011, + "##ity": 3012, + "cut": 3013, + "degree": 3014, + "writing": 3015, + "bay": 3016, + "christian": 3017, + "awarded": 3018, + "natural": 3019, + "higher": 3020, + "bill": 3021, + "##as": 3022, + "coast": 3023, + "provided": 3024, + "previous": 3025, + "senior": 3026, + "ft": 3027, + "valley": 3028, + "organization": 3029, + "stopped": 3030, + "onto": 3031, + "countries": 3032, + "parts": 3033, + "conference": 3034, + "queen": 3035, + "security": 3036, + "interest": 3037, + "saying": 3038, + "allowed": 3039, + "master": 3040, + "earlier": 3041, + "phone": 3042, + "matter": 3043, + "smith": 3044, + "winning": 3045, + "try": 3046, + "happened": 3047, + "moving": 3048, + "campaign": 3049, + "los": 3050, + "##ley": 3051, + "breath": 3052, + "nearly": 3053, + "mid": 3054, + "1987": 3055, + "certain": 3056, + "girls": 3057, + "date": 3058, + "italian": 3059, + "african": 3060, + "standing": 3061, + "fell": 3062, + "artist": 3063, + "##ted": 3064, + "shows": 3065, + "deal": 3066, + "mine": 3067, + "industry": 3068, + "1986": 3069, + "##ng": 3070, + "everyone": 3071, + "republic": 3072, + "provide": 3073, + "collection": 3074, + "library": 3075, + "student": 3076, + "##ville": 3077, + "primary": 3078, + "owned": 3079, + "older": 3080, + "via": 3081, + "heavy": 3082, + "1st": 3083, + "makes": 3084, + "##able": 3085, + "attention": 3086, + "anyone": 3087, + "africa": 3088, + "##ri": 3089, + "stated": 3090, + "length": 3091, + "ended": 3092, + "fingers": 3093, + "command": 3094, + "staff": 3095, + "skin": 3096, + "foreign": 3097, + "opening": 3098, + "governor": 3099, + "okay": 3100, + "medal": 3101, + "kill": 3102, + "sun": 3103, + "cover": 3104, + "job": 3105, + "1985": 3106, + "introduced": 3107, + "chest": 3108, + "hell": 3109, + "feeling": 3110, + "##ies": 3111, + "success": 3112, + "meet": 3113, + "reason": 3114, + "standard": 3115, + "meeting": 3116, + "novel": 3117, + "1984": 3118, + "trade": 3119, + "source": 3120, + "buildings": 3121, + "##land": 3122, + "rose": 3123, + "guy": 3124, + "goal": 3125, + "##ur": 3126, + "chapter": 3127, + "native": 3128, + "husband": 3129, + "previously": 3130, + "unit": 3131, + "limited": 3132, + "entered": 3133, + "weeks": 3134, + "producer": 3135, + "operations": 3136, + "mountain": 3137, + "takes": 3138, + "covered": 3139, + "forced": 3140, + "related": 3141, + "roman": 3142, + "complete": 3143, + "successful": 3144, + "key": 3145, + "texas": 3146, + "cold": 3147, + "##ya": 3148, + "channel": 3149, + "1980": 3150, + "traditional": 3151, + "films": 3152, + "dance": 3153, + "clear": 3154, + "approximately": 3155, + "500": 3156, + "nine": 3157, + "van": 3158, + "prince": 3159, + "question": 3160, + "active": 3161, + "tracks": 3162, + "ireland": 3163, + "regional": 3164, + "silver": 3165, + "author": 3166, + "personal": 3167, + "sense": 3168, + "operation": 3169, + "##ine": 3170, + "economic": 3171, + "1983": 3172, + "holding": 3173, + "twenty": 3174, + "isbn": 3175, + "additional": 3176, + "speed": 3177, + "hour": 3178, + "edition": 3179, + "regular": 3180, + "historic": 3181, + "places": 3182, + "whom": 3183, + "shook": 3184, + "movie": 3185, + "km²": 3186, + "secretary": 3187, + "prior": 3188, + "report": 3189, + "chicago": 3190, + "read": 3191, + "foundation": 3192, + "view": 3193, + "engine": 3194, + "scored": 3195, + "1982": 3196, + "units": 3197, + "ask": 3198, + "airport": 3199, + "property": 3200, + "ready": 3201, + "immediately": 3202, + "lady": 3203, + "month": 3204, + "listed": 3205, + "contract": 3206, + "##de": 3207, + "manager": 3208, + "themselves": 3209, + "lines": 3210, + "##ki": 3211, + "navy": 3212, + "writer": 3213, + "meant": 3214, + "##ts": 3215, + "runs": 3216, + "##ro": 3217, + "practice": 3218, + "championships": 3219, + "singer": 3220, + "glass": 3221, + "commission": 3222, + "required": 3223, + "forest": 3224, + "starting": 3225, + "culture": 3226, + "generally": 3227, + "giving": 3228, + "access": 3229, + "attended": 3230, + "test": 3231, + "couple": 3232, + "stand": 3233, + "catholic": 3234, + "martin": 3235, + "caught": 3236, + "executive": 3237, + "##less": 3238, + "eye": 3239, + "##ey": 3240, + "thinking": 3241, + "chair": 3242, + "quite": 3243, + "shoulder": 3244, + "1979": 3245, + "hope": 3246, + "decision": 3247, + "plays": 3248, + "defeated": 3249, + "municipality": 3250, + "whether": 3251, + "structure": 3252, + "offered": 3253, + "slowly": 3254, + "pain": 3255, + "ice": 3256, + "direction": 3257, + "##ion": 3258, + "paper": 3259, + "mission": 3260, + "1981": 3261, + "mostly": 3262, + "200": 3263, + "noted": 3264, + "individual": 3265, + "managed": 3266, + "nature": 3267, + "lives": 3268, + "plant": 3269, + "##ha": 3270, + "helped": 3271, + "except": 3272, + "studied": 3273, + "computer": 3274, + "figure": 3275, + "relationship": 3276, + "issue": 3277, + "significant": 3278, + "loss": 3279, + "die": 3280, + "smiled": 3281, + "gun": 3282, + "ago": 3283, + "highest": 3284, + "1972": 3285, + "##am": 3286, + "male": 3287, + "bring": 3288, + "goals": 3289, + "mexico": 3290, + "problem": 3291, + "distance": 3292, + "commercial": 3293, + "completely": 3294, + "location": 3295, + "annual": 3296, + "famous": 3297, + "drive": 3298, + "1976": 3299, + "neck": 3300, + "1978": 3301, + "surface": 3302, + "caused": 3303, + "italy": 3304, + "understand": 3305, + "greek": 3306, + "highway": 3307, + "wrong": 3308, + "hotel": 3309, + "comes": 3310, + "appearance": 3311, + "joseph": 3312, + "double": 3313, + "issues": 3314, + "musical": 3315, + "companies": 3316, + "castle": 3317, + "income": 3318, + "review": 3319, + "assembly": 3320, + "bass": 3321, + "initially": 3322, + "parliament": 3323, + "artists": 3324, + "experience": 3325, + "1974": 3326, + "particular": 3327, + "walk": 3328, + "foot": 3329, + "engineering": 3330, + "talking": 3331, + "window": 3332, + "dropped": 3333, + "##ter": 3334, + "miss": 3335, + "baby": 3336, + "boys": 3337, + "break": 3338, + "1975": 3339, + "stars": 3340, + "edge": 3341, + "remember": 3342, + "policy": 3343, + "carried": 3344, + "train": 3345, + "stadium": 3346, + "bar": 3347, + "sex": 3348, + "angeles": 3349, + "evidence": 3350, + "##ge": 3351, + "becoming": 3352, + "assistant": 3353, + "soviet": 3354, + "1977": 3355, + "upper": 3356, + "step": 3357, + "wing": 3358, + "1970": 3359, + "youth": 3360, + "financial": 3361, + "reach": 3362, + "##ll": 3363, + "actor": 3364, + "numerous": 3365, + "##se": 3366, + "##st": 3367, + "nodded": 3368, + "arrived": 3369, + "##ation": 3370, + "minute": 3371, + "##nt": 3372, + "believed": 3373, + "sorry": 3374, + "complex": 3375, + "beautiful": 3376, + "victory": 3377, + "associated": 3378, + "temple": 3379, + "1968": 3380, + "1973": 3381, + "chance": 3382, + "perhaps": 3383, + "metal": 3384, + "##son": 3385, + "1945": 3386, + "bishop": 3387, + "##et": 3388, + "lee": 3389, + "launched": 3390, + "particularly": 3391, + "tree": 3392, + "le": 3393, + "retired": 3394, + "subject": 3395, + "prize": 3396, + "contains": 3397, + "yeah": 3398, + "theory": 3399, + "empire": 3400, + "##ce": 3401, + "suddenly": 3402, + "waiting": 3403, + "trust": 3404, + "recording": 3405, + "##to": 3406, + "happy": 3407, + "terms": 3408, + "camp": 3409, + "champion": 3410, + "1971": 3411, + "religious": 3412, + "pass": 3413, + "zealand": 3414, + "names": 3415, + "2nd": 3416, + "port": 3417, + "ancient": 3418, + "tom": 3419, + "corner": 3420, + "represented": 3421, + "watch": 3422, + "legal": 3423, + "anti": 3424, + "justice": 3425, + "cause": 3426, + "watched": 3427, + "brothers": 3428, + "45": 3429, + "material": 3430, + "changes": 3431, + "simply": 3432, + "response": 3433, + "louis": 3434, + "fast": 3435, + "##ting": 3436, + "answer": 3437, + "60": 3438, + "historical": 3439, + "1969": 3440, + "stories": 3441, + "straight": 3442, + "create": 3443, + "feature": 3444, + "increased": 3445, + "rate": 3446, + "administration": 3447, + "virginia": 3448, + "el": 3449, + "activities": 3450, + "cultural": 3451, + "overall": 3452, + "winner": 3453, + "programs": 3454, + "basketball": 3455, + "legs": 3456, + "guard": 3457, + "beyond": 3458, + "cast": 3459, + "doctor": 3460, + "mm": 3461, + "flight": 3462, + "results": 3463, + "remains": 3464, + "cost": 3465, + "effect": 3466, + "winter": 3467, + "##ble": 3468, + "larger": 3469, + "islands": 3470, + "problems": 3471, + "chairman": 3472, + "grew": 3473, + "commander": 3474, + "isn": 3475, + "1967": 3476, + "pay": 3477, + "failed": 3478, + "selected": 3479, + "hurt": 3480, + "fort": 3481, + "box": 3482, + "regiment": 3483, + "majority": 3484, + "journal": 3485, + "35": 3486, + "edward": 3487, + "plans": 3488, + "##ke": 3489, + "##ni": 3490, + "shown": 3491, + "pretty": 3492, + "irish": 3493, + "characters": 3494, + "directly": 3495, + "scene": 3496, + "likely": 3497, + "operated": 3498, + "allow": 3499, + "spring": 3500, + "##j": 3501, + "junior": 3502, + "matches": 3503, + "looks": 3504, + "mike": 3505, + "houses": 3506, + "fellow": 3507, + "##tion": 3508, + "beach": 3509, + "marriage": 3510, + "##ham": 3511, + "##ive": 3512, + "rules": 3513, + "oil": 3514, + "65": 3515, + "florida": 3516, + "expected": 3517, + "nearby": 3518, + "congress": 3519, + "sam": 3520, + "peace": 3521, + "recent": 3522, + "iii": 3523, + "wait": 3524, + "subsequently": 3525, + "cell": 3526, + "##do": 3527, + "variety": 3528, + "serving": 3529, + "agreed": 3530, + "please": 3531, + "poor": 3532, + "joe": 3533, + "pacific": 3534, + "attempt": 3535, + "wood": 3536, + "democratic": 3537, + "piece": 3538, + "prime": 3539, + "##ca": 3540, + "rural": 3541, + "mile": 3542, + "touch": 3543, + "appears": 3544, + "township": 3545, + "1964": 3546, + "1966": 3547, + "soldiers": 3548, + "##men": 3549, + "##ized": 3550, + "1965": 3551, + "pennsylvania": 3552, + "closer": 3553, + "fighting": 3554, + "claimed": 3555, + "score": 3556, + "jones": 3557, + "physical": 3558, + "editor": 3559, + "##ous": 3560, + "filled": 3561, + "genus": 3562, + "specific": 3563, + "sitting": 3564, + "super": 3565, + "mom": 3566, + "##va": 3567, + "therefore": 3568, + "supported": 3569, + "status": 3570, + "fear": 3571, + "cases": 3572, + "store": 3573, + "meaning": 3574, + "wales": 3575, + "minor": 3576, + "spain": 3577, + "tower": 3578, + "focus": 3579, + "vice": 3580, + "frank": 3581, + "follow": 3582, + "parish": 3583, + "separate": 3584, + "golden": 3585, + "horse": 3586, + "fifth": 3587, + "remaining": 3588, + "branch": 3589, + "32": 3590, + "presented": 3591, + "stared": 3592, + "##id": 3593, + "uses": 3594, + "secret": 3595, + "forms": 3596, + "##co": 3597, + "baseball": 3598, + "exactly": 3599, + "##ck": 3600, + "choice": 3601, + "note": 3602, + "discovered": 3603, + "travel": 3604, + "composed": 3605, + "truth": 3606, + "russia": 3607, + "ball": 3608, + "color": 3609, + "kiss": 3610, + "dad": 3611, + "wind": 3612, + "continue": 3613, + "ring": 3614, + "referred": 3615, + "numbers": 3616, + "digital": 3617, + "greater": 3618, + "##ns": 3619, + "metres": 3620, + "slightly": 3621, + "direct": 3622, + "increase": 3623, + "1960": 3624, + "responsible": 3625, + "crew": 3626, + "rule": 3627, + "trees": 3628, + "troops": 3629, + "##no": 3630, + "broke": 3631, + "goes": 3632, + "individuals": 3633, + "hundred": 3634, + "weight": 3635, + "creek": 3636, + "sleep": 3637, + "memory": 3638, + "defense": 3639, + "provides": 3640, + "ordered": 3641, + "code": 3642, + "value": 3643, + "jewish": 3644, + "windows": 3645, + "1944": 3646, + "safe": 3647, + "judge": 3648, + "whatever": 3649, + "corps": 3650, + "realized": 3651, + "growing": 3652, + "pre": 3653, + "##ga": 3654, + "cities": 3655, + "alexander": 3656, + "gaze": 3657, + "lies": 3658, + "spread": 3659, + "scott": 3660, + "letter": 3661, + "showed": 3662, + "situation": 3663, + "mayor": 3664, + "transport": 3665, + "watching": 3666, + "workers": 3667, + "extended": 3668, + "##li": 3669, + "expression": 3670, + "normal": 3671, + "##ment": 3672, + "chart": 3673, + "multiple": 3674, + "border": 3675, + "##ba": 3676, + "host": 3677, + "##ner": 3678, + "daily": 3679, + "mrs": 3680, + "walls": 3681, + "piano": 3682, + "##ko": 3683, + "heat": 3684, + "cannot": 3685, + "##ate": 3686, + "earned": 3687, + "products": 3688, + "drama": 3689, + "era": 3690, + "authority": 3691, + "seasons": 3692, + "join": 3693, + "grade": 3694, + "##io": 3695, + "sign": 3696, + "difficult": 3697, + "machine": 3698, + "1963": 3699, + "territory": 3700, + "mainly": 3701, + "##wood": 3702, + "stations": 3703, + "squadron": 3704, + "1962": 3705, + "stepped": 3706, + "iron": 3707, + "19th": 3708, + "##led": 3709, + "serve": 3710, + "appear": 3711, + "sky": 3712, + "speak": 3713, + "broken": 3714, + "charge": 3715, + "knowledge": 3716, + "kilometres": 3717, + "removed": 3718, + "ships": 3719, + "article": 3720, + "campus": 3721, + "simple": 3722, + "##ty": 3723, + "pushed": 3724, + "britain": 3725, + "##ve": 3726, + "leaves": 3727, + "recently": 3728, + "cd": 3729, + "soft": 3730, + "boston": 3731, + "latter": 3732, + "easy": 3733, + "acquired": 3734, + "poland": 3735, + "##sa": 3736, + "quality": 3737, + "officers": 3738, + "presence": 3739, + "planned": 3740, + "nations": 3741, + "mass": 3742, + "broadcast": 3743, + "jean": 3744, + "share": 3745, + "image": 3746, + "influence": 3747, + "wild": 3748, + "offer": 3749, + "emperor": 3750, + "electric": 3751, + "reading": 3752, + "headed": 3753, + "ability": 3754, + "promoted": 3755, + "yellow": 3756, + "ministry": 3757, + "1942": 3758, + "throat": 3759, + "smaller": 3760, + "politician": 3761, + "##by": 3762, + "latin": 3763, + "spoke": 3764, + "cars": 3765, + "williams": 3766, + "males": 3767, + "lack": 3768, + "pop": 3769, + "80": 3770, + "##ier": 3771, + "acting": 3772, + "seeing": 3773, + "consists": 3774, + "##ti": 3775, + "estate": 3776, + "1961": 3777, + "pressure": 3778, + "johnson": 3779, + "newspaper": 3780, + "jr": 3781, + "chris": 3782, + "olympics": 3783, + "online": 3784, + "conditions": 3785, + "beat": 3786, + "elements": 3787, + "walking": 3788, + "vote": 3789, + "##field": 3790, + "needs": 3791, + "carolina": 3792, + "text": 3793, + "featuring": 3794, + "global": 3795, + "block": 3796, + "shirt": 3797, + "levels": 3798, + "francisco": 3799, + "purpose": 3800, + "females": 3801, + "et": 3802, + "dutch": 3803, + "duke": 3804, + "ahead": 3805, + "gas": 3806, + "twice": 3807, + "safety": 3808, + "serious": 3809, + "turning": 3810, + "highly": 3811, + "lieutenant": 3812, + "firm": 3813, + "maria": 3814, + "amount": 3815, + "mixed": 3816, + "daniel": 3817, + "proposed": 3818, + "perfect": 3819, + "agreement": 3820, + "affairs": 3821, + "3rd": 3822, + "seconds": 3823, + "contemporary": 3824, + "paid": 3825, + "1943": 3826, + "prison": 3827, + "save": 3828, + "kitchen": 3829, + "label": 3830, + "administrative": 3831, + "intended": 3832, + "constructed": 3833, + "academic": 3834, + "nice": 3835, + "teacher": 3836, + "races": 3837, + "1956": 3838, + "formerly": 3839, + "corporation": 3840, + "ben": 3841, + "nation": 3842, + "issued": 3843, + "shut": 3844, + "1958": 3845, + "drums": 3846, + "housing": 3847, + "victoria": 3848, + "seems": 3849, + "opera": 3850, + "1959": 3851, + "graduated": 3852, + "function": 3853, + "von": 3854, + "mentioned": 3855, + "picked": 3856, + "build": 3857, + "recognized": 3858, + "shortly": 3859, + "protection": 3860, + "picture": 3861, + "notable": 3862, + "exchange": 3863, + "elections": 3864, + "1980s": 3865, + "loved": 3866, + "percent": 3867, + "racing": 3868, + "fish": 3869, + "elizabeth": 3870, + "garden": 3871, + "volume": 3872, + "hockey": 3873, + "1941": 3874, + "beside": 3875, + "settled": 3876, + "##ford": 3877, + "1940": 3878, + "competed": 3879, + "replied": 3880, + "drew": 3881, + "1948": 3882, + "actress": 3883, + "marine": 3884, + "scotland": 3885, + "steel": 3886, + "glanced": 3887, + "farm": 3888, + "steve": 3889, + "1957": 3890, + "risk": 3891, + "tonight": 3892, + "positive": 3893, + "magic": 3894, + "singles": 3895, + "effects": 3896, + "gray": 3897, + "screen": 3898, + "dog": 3899, + "##ja": 3900, + "residents": 3901, + "bus": 3902, + "sides": 3903, + "none": 3904, + "secondary": 3905, + "literature": 3906, + "polish": 3907, + "destroyed": 3908, + "flying": 3909, + "founder": 3910, + "households": 3911, + "1939": 3912, + "lay": 3913, + "reserve": 3914, + "usa": 3915, + "gallery": 3916, + "##ler": 3917, + "1946": 3918, + "industrial": 3919, + "younger": 3920, + "approach": 3921, + "appearances": 3922, + "urban": 3923, + "ones": 3924, + "1950": 3925, + "finish": 3926, + "avenue": 3927, + "powerful": 3928, + "fully": 3929, + "growth": 3930, + "page": 3931, + "honor": 3932, + "jersey": 3933, + "projects": 3934, + "advanced": 3935, + "revealed": 3936, + "basic": 3937, + "90": 3938, + "infantry": 3939, + "pair": 3940, + "equipment": 3941, + "visit": 3942, + "33": 3943, + "evening": 3944, + "search": 3945, + "grant": 3946, + "effort": 3947, + "solo": 3948, + "treatment": 3949, + "buried": 3950, + "republican": 3951, + "primarily": 3952, + "bottom": 3953, + "owner": 3954, + "1970s": 3955, + "israel": 3956, + "gives": 3957, + "jim": 3958, + "dream": 3959, + "bob": 3960, + "remain": 3961, + "spot": 3962, + "70": 3963, + "notes": 3964, + "produce": 3965, + "champions": 3966, + "contact": 3967, + "ed": 3968, + "soul": 3969, + "accepted": 3970, + "ways": 3971, + "del": 3972, + "##ally": 3973, + "losing": 3974, + "split": 3975, + "price": 3976, + "capacity": 3977, + "basis": 3978, + "trial": 3979, + "questions": 3980, + "##ina": 3981, + "1955": 3982, + "20th": 3983, + "guess": 3984, + "officially": 3985, + "memorial": 3986, + "naval": 3987, + "initial": 3988, + "##ization": 3989, + "whispered": 3990, + "median": 3991, + "engineer": 3992, + "##ful": 3993, + "sydney": 3994, + "##go": 3995, + "columbia": 3996, + "strength": 3997, + "300": 3998, + "1952": 3999, + "tears": 4000, + "senate": 4001, + "00": 4002, + "card": 4003, + "asian": 4004, + "agent": 4005, + "1947": 4006, + "software": 4007, + "44": 4008, + "draw": 4009, + "warm": 4010, + "supposed": 4011, + "com": 4012, + "pro": 4013, + "##il": 4014, + "transferred": 4015, + "leaned": 4016, + "##at": 4017, + "candidate": 4018, + "escape": 4019, + "mountains": 4020, + "asia": 4021, + "potential": 4022, + "activity": 4023, + "entertainment": 4024, + "seem": 4025, + "traffic": 4026, + "jackson": 4027, + "murder": 4028, + "36": 4029, + "slow": 4030, + "product": 4031, + "orchestra": 4032, + "haven": 4033, + "agency": 4034, + "bbc": 4035, + "taught": 4036, + "website": 4037, + "comedy": 4038, + "unable": 4039, + "storm": 4040, + "planning": 4041, + "albums": 4042, + "rugby": 4043, + "environment": 4044, + "scientific": 4045, + "grabbed": 4046, + "protect": 4047, + "##hi": 4048, + "boat": 4049, + "typically": 4050, + "1954": 4051, + "1953": 4052, + "damage": 4053, + "principal": 4054, + "divided": 4055, + "dedicated": 4056, + "mount": 4057, + "ohio": 4058, + "##berg": 4059, + "pick": 4060, + "fought": 4061, + "driver": 4062, + "##der": 4063, + "empty": 4064, + "shoulders": 4065, + "sort": 4066, + "thank": 4067, + "berlin": 4068, + "prominent": 4069, + "account": 4070, + "freedom": 4071, + "necessary": 4072, + "efforts": 4073, + "alex": 4074, + "headquarters": 4075, + "follows": 4076, + "alongside": 4077, + "des": 4078, + "simon": 4079, + "andrew": 4080, + "suggested": 4081, + "operating": 4082, + "learning": 4083, + "steps": 4084, + "1949": 4085, + "sweet": 4086, + "technical": 4087, + "begin": 4088, + "easily": 4089, + "34": 4090, + "teeth": 4091, + "speaking": 4092, + "settlement": 4093, + "scale": 4094, + "##sh": 4095, + "renamed": 4096, + "ray": 4097, + "max": 4098, + "enemy": 4099, + "semi": 4100, + "joint": 4101, + "compared": 4102, + "##rd": 4103, + "scottish": 4104, + "leadership": 4105, + "analysis": 4106, + "offers": 4107, + "georgia": 4108, + "pieces": 4109, + "captured": 4110, + "animal": 4111, + "deputy": 4112, + "guest": 4113, + "organized": 4114, + "##lin": 4115, + "tony": 4116, + "combined": 4117, + "method": 4118, + "challenge": 4119, + "1960s": 4120, + "huge": 4121, + "wants": 4122, + "battalion": 4123, + "sons": 4124, + "rise": 4125, + "crime": 4126, + "types": 4127, + "facilities": 4128, + "telling": 4129, + "path": 4130, + "1951": 4131, + "platform": 4132, + "sit": 4133, + "1990s": 4134, + "##lo": 4135, + "tells": 4136, + "assigned": 4137, + "rich": 4138, + "pull": 4139, + "##ot": 4140, + "commonly": 4141, + "alive": 4142, + "##za": 4143, + "letters": 4144, + "concept": 4145, + "conducted": 4146, + "wearing": 4147, + "happen": 4148, + "bought": 4149, + "becomes": 4150, + "holy": 4151, + "gets": 4152, + "ocean": 4153, + "defeat": 4154, + "languages": 4155, + "purchased": 4156, + "coffee": 4157, + "occurred": 4158, + "titled": 4159, + "##q": 4160, + "declared": 4161, + "applied": 4162, + "sciences": 4163, + "concert": 4164, + "sounds": 4165, + "jazz": 4166, + "brain": 4167, + "##me": 4168, + "painting": 4169, + "fleet": 4170, + "tax": 4171, + "nick": 4172, + "##ius": 4173, + "michigan": 4174, + "count": 4175, + "animals": 4176, + "leaders": 4177, + "episodes": 4178, + "##line": 4179, + "content": 4180, + "##den": 4181, + "birth": 4182, + "##it": 4183, + "clubs": 4184, + "64": 4185, + "palace": 4186, + "critical": 4187, + "refused": 4188, + "fair": 4189, + "leg": 4190, + "laughed": 4191, + "returning": 4192, + "surrounding": 4193, + "participated": 4194, + "formation": 4195, + "lifted": 4196, + "pointed": 4197, + "connected": 4198, + "rome": 4199, + "medicine": 4200, + "laid": 4201, + "taylor": 4202, + "santa": 4203, + "powers": 4204, + "adam": 4205, + "tall": 4206, + "shared": 4207, + "focused": 4208, + "knowing": 4209, + "yards": 4210, + "entrance": 4211, + "falls": 4212, + "##wa": 4213, + "calling": 4214, + "##ad": 4215, + "sources": 4216, + "chosen": 4217, + "beneath": 4218, + "resources": 4219, + "yard": 4220, + "##ite": 4221, + "nominated": 4222, + "silence": 4223, + "zone": 4224, + "defined": 4225, + "##que": 4226, + "gained": 4227, + "thirty": 4228, + "38": 4229, + "bodies": 4230, + "moon": 4231, + "##ard": 4232, + "adopted": 4233, + "christmas": 4234, + "widely": 4235, + "register": 4236, + "apart": 4237, + "iran": 4238, + "premier": 4239, + "serves": 4240, + "du": 4241, + "unknown": 4242, + "parties": 4243, + "##les": 4244, + "generation": 4245, + "##ff": 4246, + "continues": 4247, + "quick": 4248, + "fields": 4249, + "brigade": 4250, + "quiet": 4251, + "teaching": 4252, + "clothes": 4253, + "impact": 4254, + "weapons": 4255, + "partner": 4256, + "flat": 4257, + "theater": 4258, + "supreme": 4259, + "1938": 4260, + "37": 4261, + "relations": 4262, + "##tor": 4263, + "plants": 4264, + "suffered": 4265, + "1936": 4266, + "wilson": 4267, + "kids": 4268, + "begins": 4269, + "##age": 4270, + "1918": 4271, + "seats": 4272, + "armed": 4273, + "internet": 4274, + "models": 4275, + "worth": 4276, + "laws": 4277, + "400": 4278, + "communities": 4279, + "classes": 4280, + "background": 4281, + "knows": 4282, + "thanks": 4283, + "quarter": 4284, + "reaching": 4285, + "humans": 4286, + "carry": 4287, + "killing": 4288, + "format": 4289, + "kong": 4290, + "hong": 4291, + "setting": 4292, + "75": 4293, + "architecture": 4294, + "disease": 4295, + "railroad": 4296, + "inc": 4297, + "possibly": 4298, + "wish": 4299, + "arthur": 4300, + "thoughts": 4301, + "harry": 4302, + "doors": 4303, + "density": 4304, + "##di": 4305, + "crowd": 4306, + "illinois": 4307, + "stomach": 4308, + "tone": 4309, + "unique": 4310, + "reports": 4311, + "anyway": 4312, + "##ir": 4313, + "liberal": 4314, + "der": 4315, + "vehicle": 4316, + "thick": 4317, + "dry": 4318, + "drug": 4319, + "faced": 4320, + "largely": 4321, + "facility": 4322, + "theme": 4323, + "holds": 4324, + "creation": 4325, + "strange": 4326, + "colonel": 4327, + "##mi": 4328, + "revolution": 4329, + "bell": 4330, + "politics": 4331, + "turns": 4332, + "silent": 4333, + "rail": 4334, + "relief": 4335, + "independence": 4336, + "combat": 4337, + "shape": 4338, + "write": 4339, + "determined": 4340, + "sales": 4341, + "learned": 4342, + "4th": 4343, + "finger": 4344, + "oxford": 4345, + "providing": 4346, + "1937": 4347, + "heritage": 4348, + "fiction": 4349, + "situated": 4350, + "designated": 4351, + "allowing": 4352, + "distribution": 4353, + "hosted": 4354, + "##est": 4355, + "sight": 4356, + "interview": 4357, + "estimated": 4358, + "reduced": 4359, + "##ria": 4360, + "toronto": 4361, + "footballer": 4362, + "keeping": 4363, + "guys": 4364, + "damn": 4365, + "claim": 4366, + "motion": 4367, + "sport": 4368, + "sixth": 4369, + "stayed": 4370, + "##ze": 4371, + "en": 4372, + "rear": 4373, + "receive": 4374, + "handed": 4375, + "twelve": 4376, + "dress": 4377, + "audience": 4378, + "granted": 4379, + "brazil": 4380, + "##well": 4381, + "spirit": 4382, + "##ated": 4383, + "noticed": 4384, + "etc": 4385, + "olympic": 4386, + "representative": 4387, + "eric": 4388, + "tight": 4389, + "trouble": 4390, + "reviews": 4391, + "drink": 4392, + "vampire": 4393, + "missing": 4394, + "roles": 4395, + "ranked": 4396, + "newly": 4397, + "household": 4398, + "finals": 4399, + "wave": 4400, + "critics": 4401, + "##ee": 4402, + "phase": 4403, + "massachusetts": 4404, + "pilot": 4405, + "unlike": 4406, + "philadelphia": 4407, + "bright": 4408, + "guns": 4409, + "crown": 4410, + "organizations": 4411, + "roof": 4412, + "42": 4413, + "respectively": 4414, + "clearly": 4415, + "tongue": 4416, + "marked": 4417, + "circle": 4418, + "fox": 4419, + "korea": 4420, + "bronze": 4421, + "brian": 4422, + "expanded": 4423, + "sexual": 4424, + "supply": 4425, + "yourself": 4426, + "inspired": 4427, + "labour": 4428, + "fc": 4429, + "##ah": 4430, + "reference": 4431, + "vision": 4432, + "draft": 4433, + "connection": 4434, + "brand": 4435, + "reasons": 4436, + "1935": 4437, + "classic": 4438, + "driving": 4439, + "trip": 4440, + "jesus": 4441, + "cells": 4442, + "entry": 4443, + "1920": 4444, + "neither": 4445, + "trail": 4446, + "claims": 4447, + "atlantic": 4448, + "orders": 4449, + "labor": 4450, + "nose": 4451, + "afraid": 4452, + "identified": 4453, + "intelligence": 4454, + "calls": 4455, + "cancer": 4456, + "attacked": 4457, + "passing": 4458, + "stephen": 4459, + "positions": 4460, + "imperial": 4461, + "grey": 4462, + "jason": 4463, + "39": 4464, + "sunday": 4465, + "48": 4466, + "swedish": 4467, + "avoid": 4468, + "extra": 4469, + "uncle": 4470, + "message": 4471, + "covers": 4472, + "allows": 4473, + "surprise": 4474, + "materials": 4475, + "fame": 4476, + "hunter": 4477, + "##ji": 4478, + "1930": 4479, + "citizens": 4480, + "figures": 4481, + "davis": 4482, + "environmental": 4483, + "confirmed": 4484, + "shit": 4485, + "titles": 4486, + "di": 4487, + "performing": 4488, + "difference": 4489, + "acts": 4490, + "attacks": 4491, + "##ov": 4492, + "existing": 4493, + "votes": 4494, + "opportunity": 4495, + "nor": 4496, + "shop": 4497, + "entirely": 4498, + "trains": 4499, + "opposite": 4500, + "pakistan": 4501, + "##pa": 4502, + "develop": 4503, + "resulted": 4504, + "representatives": 4505, + "actions": 4506, + "reality": 4507, + "pressed": 4508, + "##ish": 4509, + "barely": 4510, + "wine": 4511, + "conversation": 4512, + "faculty": 4513, + "northwest": 4514, + "ends": 4515, + "documentary": 4516, + "nuclear": 4517, + "stock": 4518, + "grace": 4519, + "sets": 4520, + "eat": 4521, + "alternative": 4522, + "##ps": 4523, + "bag": 4524, + "resulting": 4525, + "creating": 4526, + "surprised": 4527, + "cemetery": 4528, + "1919": 4529, + "drop": 4530, + "finding": 4531, + "sarah": 4532, + "cricket": 4533, + "streets": 4534, + "tradition": 4535, + "ride": 4536, + "1933": 4537, + "exhibition": 4538, + "target": 4539, + "ear": 4540, + "explained": 4541, + "rain": 4542, + "composer": 4543, + "injury": 4544, + "apartment": 4545, + "municipal": 4546, + "educational": 4547, + "occupied": 4548, + "netherlands": 4549, + "clean": 4550, + "billion": 4551, + "constitution": 4552, + "learn": 4553, + "1914": 4554, + "maximum": 4555, + "classical": 4556, + "francis": 4557, + "lose": 4558, + "opposition": 4559, + "jose": 4560, + "ontario": 4561, + "bear": 4562, + "core": 4563, + "hills": 4564, + "rolled": 4565, + "ending": 4566, + "drawn": 4567, + "permanent": 4568, + "fun": 4569, + "##tes": 4570, + "##lla": 4571, + "lewis": 4572, + "sites": 4573, + "chamber": 4574, + "ryan": 4575, + "##way": 4576, + "scoring": 4577, + "height": 4578, + "1934": 4579, + "##house": 4580, + "lyrics": 4581, + "staring": 4582, + "55": 4583, + "officials": 4584, + "1917": 4585, + "snow": 4586, + "oldest": 4587, + "##tic": 4588, + "orange": 4589, + "##ger": 4590, + "qualified": 4591, + "interior": 4592, + "apparently": 4593, + "succeeded": 4594, + "thousand": 4595, + "dinner": 4596, + "lights": 4597, + "existence": 4598, + "fans": 4599, + "heavily": 4600, + "41": 4601, + "greatest": 4602, + "conservative": 4603, + "send": 4604, + "bowl": 4605, + "plus": 4606, + "enter": 4607, + "catch": 4608, + "##un": 4609, + "economy": 4610, + "duty": 4611, + "1929": 4612, + "speech": 4613, + "authorities": 4614, + "princess": 4615, + "performances": 4616, + "versions": 4617, + "shall": 4618, + "graduate": 4619, + "pictures": 4620, + "effective": 4621, + "remembered": 4622, + "poetry": 4623, + "desk": 4624, + "crossed": 4625, + "starring": 4626, + "starts": 4627, + "passenger": 4628, + "sharp": 4629, + "##ant": 4630, + "acres": 4631, + "ass": 4632, + "weather": 4633, + "falling": 4634, + "rank": 4635, + "fund": 4636, + "supporting": 4637, + "check": 4638, + "adult": 4639, + "publishing": 4640, + "heads": 4641, + "cm": 4642, + "southeast": 4643, + "lane": 4644, + "##burg": 4645, + "application": 4646, + "bc": 4647, + "##ura": 4648, + "les": 4649, + "condition": 4650, + "transfer": 4651, + "prevent": 4652, + "display": 4653, + "ex": 4654, + "regions": 4655, + "earl": 4656, + "federation": 4657, + "cool": 4658, + "relatively": 4659, + "answered": 4660, + "besides": 4661, + "1928": 4662, + "obtained": 4663, + "portion": 4664, + "##town": 4665, + "mix": 4666, + "##ding": 4667, + "reaction": 4668, + "liked": 4669, + "dean": 4670, + "express": 4671, + "peak": 4672, + "1932": 4673, + "##tte": 4674, + "counter": 4675, + "religion": 4676, + "chain": 4677, + "rare": 4678, + "miller": 4679, + "convention": 4680, + "aid": 4681, + "lie": 4682, + "vehicles": 4683, + "mobile": 4684, + "perform": 4685, + "squad": 4686, + "wonder": 4687, + "lying": 4688, + "crazy": 4689, + "sword": 4690, + "##ping": 4691, + "attempted": 4692, + "centuries": 4693, + "weren": 4694, + "philosophy": 4695, + "category": 4696, + "##ize": 4697, + "anna": 4698, + "interested": 4699, + "47": 4700, + "sweden": 4701, + "wolf": 4702, + "frequently": 4703, + "abandoned": 4704, + "kg": 4705, + "literary": 4706, + "alliance": 4707, + "task": 4708, + "entitled": 4709, + "##ay": 4710, + "threw": 4711, + "promotion": 4712, + "factory": 4713, + "tiny": 4714, + "soccer": 4715, + "visited": 4716, + "matt": 4717, + "fm": 4718, + "achieved": 4719, + "52": 4720, + "defence": 4721, + "internal": 4722, + "persian": 4723, + "43": 4724, + "methods": 4725, + "##ging": 4726, + "arrested": 4727, + "otherwise": 4728, + "cambridge": 4729, + "programming": 4730, + "villages": 4731, + "elementary": 4732, + "districts": 4733, + "rooms": 4734, + "criminal": 4735, + "conflict": 4736, + "worry": 4737, + "trained": 4738, + "1931": 4739, + "attempts": 4740, + "waited": 4741, + "signal": 4742, + "bird": 4743, + "truck": 4744, + "subsequent": 4745, + "programme": 4746, + "##ol": 4747, + "ad": 4748, + "49": 4749, + "communist": 4750, + "details": 4751, + "faith": 4752, + "sector": 4753, + "patrick": 4754, + "carrying": 4755, + "laugh": 4756, + "##ss": 4757, + "controlled": 4758, + "korean": 4759, + "showing": 4760, + "origin": 4761, + "fuel": 4762, + "evil": 4763, + "1927": 4764, + "##ent": 4765, + "brief": 4766, + "identity": 4767, + "darkness": 4768, + "address": 4769, + "pool": 4770, + "missed": 4771, + "publication": 4772, + "web": 4773, + "planet": 4774, + "ian": 4775, + "anne": 4776, + "wings": 4777, + "invited": 4778, + "##tt": 4779, + "briefly": 4780, + "standards": 4781, + "kissed": 4782, + "##be": 4783, + "ideas": 4784, + "climate": 4785, + "causing": 4786, + "walter": 4787, + "worse": 4788, + "albert": 4789, + "articles": 4790, + "winners": 4791, + "desire": 4792, + "aged": 4793, + "northeast": 4794, + "dangerous": 4795, + "gate": 4796, + "doubt": 4797, + "1922": 4798, + "wooden": 4799, + "multi": 4800, + "##ky": 4801, + "poet": 4802, + "rising": 4803, + "funding": 4804, + "46": 4805, + "communications": 4806, + "communication": 4807, + "violence": 4808, + "copies": 4809, + "prepared": 4810, + "ford": 4811, + "investigation": 4812, + "skills": 4813, + "1924": 4814, + "pulling": 4815, + "electronic": 4816, + "##ak": 4817, + "##ial": 4818, + "##han": 4819, + "containing": 4820, + "ultimately": 4821, + "offices": 4822, + "singing": 4823, + "understanding": 4824, + "restaurant": 4825, + "tomorrow": 4826, + "fashion": 4827, + "christ": 4828, + "ward": 4829, + "da": 4830, + "pope": 4831, + "stands": 4832, + "5th": 4833, + "flow": 4834, + "studios": 4835, + "aired": 4836, + "commissioned": 4837, + "contained": 4838, + "exist": 4839, + "fresh": 4840, + "americans": 4841, + "##per": 4842, + "wrestling": 4843, + "approved": 4844, + "kid": 4845, + "employed": 4846, + "respect": 4847, + "suit": 4848, + "1925": 4849, + "angel": 4850, + "asking": 4851, + "increasing": 4852, + "frame": 4853, + "angry": 4854, + "selling": 4855, + "1950s": 4856, + "thin": 4857, + "finds": 4858, + "##nd": 4859, + "temperature": 4860, + "statement": 4861, + "ali": 4862, + "explain": 4863, + "inhabitants": 4864, + "towns": 4865, + "extensive": 4866, + "narrow": 4867, + "51": 4868, + "jane": 4869, + "flowers": 4870, + "images": 4871, + "promise": 4872, + "somewhere": 4873, + "object": 4874, + "fly": 4875, + "closely": 4876, + "##ls": 4877, + "1912": 4878, + "bureau": 4879, + "cape": 4880, + "1926": 4881, + "weekly": 4882, + "presidential": 4883, + "legislative": 4884, + "1921": 4885, + "##ai": 4886, + "##au": 4887, + "launch": 4888, + "founding": 4889, + "##ny": 4890, + "978": 4891, + "##ring": 4892, + "artillery": 4893, + "strike": 4894, + "un": 4895, + "institutions": 4896, + "roll": 4897, + "writers": 4898, + "landing": 4899, + "chose": 4900, + "kevin": 4901, + "anymore": 4902, + "pp": 4903, + "##ut": 4904, + "attorney": 4905, + "fit": 4906, + "dan": 4907, + "billboard": 4908, + "receiving": 4909, + "agricultural": 4910, + "breaking": 4911, + "sought": 4912, + "dave": 4913, + "admitted": 4914, + "lands": 4915, + "mexican": 4916, + "##bury": 4917, + "charlie": 4918, + "specifically": 4919, + "hole": 4920, + "iv": 4921, + "howard": 4922, + "credit": 4923, + "moscow": 4924, + "roads": 4925, + "accident": 4926, + "1923": 4927, + "proved": 4928, + "wear": 4929, + "struck": 4930, + "hey": 4931, + "guards": 4932, + "stuff": 4933, + "slid": 4934, + "expansion": 4935, + "1915": 4936, + "cat": 4937, + "anthony": 4938, + "##kin": 4939, + "melbourne": 4940, + "opposed": 4941, + "sub": 4942, + "southwest": 4943, + "architect": 4944, + "failure": 4945, + "plane": 4946, + "1916": 4947, + "##ron": 4948, + "map": 4949, + "camera": 4950, + "tank": 4951, + "listen": 4952, + "regarding": 4953, + "wet": 4954, + "introduction": 4955, + "metropolitan": 4956, + "link": 4957, + "ep": 4958, + "fighter": 4959, + "inch": 4960, + "grown": 4961, + "gene": 4962, + "anger": 4963, + "fixed": 4964, + "buy": 4965, + "dvd": 4966, + "khan": 4967, + "domestic": 4968, + "worldwide": 4969, + "chapel": 4970, + "mill": 4971, + "functions": 4972, + "examples": 4973, + "##head": 4974, + "developing": 4975, + "1910": 4976, + "turkey": 4977, + "hits": 4978, + "pocket": 4979, + "antonio": 4980, + "papers": 4981, + "grow": 4982, + "unless": 4983, + "circuit": 4984, + "18th": 4985, + "concerned": 4986, + "attached": 4987, + "journalist": 4988, + "selection": 4989, + "journey": 4990, + "converted": 4991, + "provincial": 4992, + "painted": 4993, + "hearing": 4994, + "aren": 4995, + "bands": 4996, + "negative": 4997, + "aside": 4998, + "wondered": 4999, + "knight": 5000, + "lap": 5001, + "survey": 5002, + "ma": 5003, + "##ow": 5004, + "noise": 5005, + "billy": 5006, + "##ium": 5007, + "shooting": 5008, + "guide": 5009, + "bedroom": 5010, + "priest": 5011, + "resistance": 5012, + "motor": 5013, + "homes": 5014, + "sounded": 5015, + "giant": 5016, + "##mer": 5017, + "150": 5018, + "scenes": 5019, + "equal": 5020, + "comic": 5021, + "patients": 5022, + "hidden": 5023, + "solid": 5024, + "actual": 5025, + "bringing": 5026, + "afternoon": 5027, + "touched": 5028, + "funds": 5029, + "wedding": 5030, + "consisted": 5031, + "marie": 5032, + "canal": 5033, + "sr": 5034, + "kim": 5035, + "treaty": 5036, + "turkish": 5037, + "recognition": 5038, + "residence": 5039, + "cathedral": 5040, + "broad": 5041, + "knees": 5042, + "incident": 5043, + "shaped": 5044, + "fired": 5045, + "norwegian": 5046, + "handle": 5047, + "cheek": 5048, + "contest": 5049, + "represent": 5050, + "##pe": 5051, + "representing": 5052, + "beauty": 5053, + "##sen": 5054, + "birds": 5055, + "advantage": 5056, + "emergency": 5057, + "wrapped": 5058, + "drawing": 5059, + "notice": 5060, + "pink": 5061, + "broadcasting": 5062, + "##ong": 5063, + "somehow": 5064, + "bachelor": 5065, + "seventh": 5066, + "collected": 5067, + "registered": 5068, + "establishment": 5069, + "alan": 5070, + "assumed": 5071, + "chemical": 5072, + "personnel": 5073, + "roger": 5074, + "retirement": 5075, + "jeff": 5076, + "portuguese": 5077, + "wore": 5078, + "tied": 5079, + "device": 5080, + "threat": 5081, + "progress": 5082, + "advance": 5083, + "##ised": 5084, + "banks": 5085, + "hired": 5086, + "manchester": 5087, + "nfl": 5088, + "teachers": 5089, + "structures": 5090, + "forever": 5091, + "##bo": 5092, + "tennis": 5093, + "helping": 5094, + "saturday": 5095, + "sale": 5096, + "applications": 5097, + "junction": 5098, + "hip": 5099, + "incorporated": 5100, + "neighborhood": 5101, + "dressed": 5102, + "ceremony": 5103, + "##ds": 5104, + "influenced": 5105, + "hers": 5106, + "visual": 5107, + "stairs": 5108, + "decades": 5109, + "inner": 5110, + "kansas": 5111, + "hung": 5112, + "hoped": 5113, + "gain": 5114, + "scheduled": 5115, + "downtown": 5116, + "engaged": 5117, + "austria": 5118, + "clock": 5119, + "norway": 5120, + "certainly": 5121, + "pale": 5122, + "protected": 5123, + "1913": 5124, + "victor": 5125, + "employees": 5126, + "plate": 5127, + "putting": 5128, + "surrounded": 5129, + "##ists": 5130, + "finishing": 5131, + "blues": 5132, + "tropical": 5133, + "##ries": 5134, + "minnesota": 5135, + "consider": 5136, + "philippines": 5137, + "accept": 5138, + "54": 5139, + "retrieved": 5140, + "1900": 5141, + "concern": 5142, + "anderson": 5143, + "properties": 5144, + "institution": 5145, + "gordon": 5146, + "successfully": 5147, + "vietnam": 5148, + "##dy": 5149, + "backing": 5150, + "outstanding": 5151, + "muslim": 5152, + "crossing": 5153, + "folk": 5154, + "producing": 5155, + "usual": 5156, + "demand": 5157, + "occurs": 5158, + "observed": 5159, + "lawyer": 5160, + "educated": 5161, + "##ana": 5162, + "kelly": 5163, + "string": 5164, + "pleasure": 5165, + "budget": 5166, + "items": 5167, + "quietly": 5168, + "colorado": 5169, + "philip": 5170, + "typical": 5171, + "##worth": 5172, + "derived": 5173, + "600": 5174, + "survived": 5175, + "asks": 5176, + "mental": 5177, + "##ide": 5178, + "56": 5179, + "jake": 5180, + "jews": 5181, + "distinguished": 5182, + "ltd": 5183, + "1911": 5184, + "sri": 5185, + "extremely": 5186, + "53": 5187, + "athletic": 5188, + "loud": 5189, + "thousands": 5190, + "worried": 5191, + "shadow": 5192, + "transportation": 5193, + "horses": 5194, + "weapon": 5195, + "arena": 5196, + "importance": 5197, + "users": 5198, + "tim": 5199, + "objects": 5200, + "contributed": 5201, + "dragon": 5202, + "douglas": 5203, + "aware": 5204, + "senator": 5205, + "johnny": 5206, + "jordan": 5207, + "sisters": 5208, + "engines": 5209, + "flag": 5210, + "investment": 5211, + "samuel": 5212, + "shock": 5213, + "capable": 5214, + "clark": 5215, + "row": 5216, + "wheel": 5217, + "refers": 5218, + "session": 5219, + "familiar": 5220, + "biggest": 5221, + "wins": 5222, + "hate": 5223, + "maintained": 5224, + "drove": 5225, + "hamilton": 5226, + "request": 5227, + "expressed": 5228, + "injured": 5229, + "underground": 5230, + "churches": 5231, + "walker": 5232, + "wars": 5233, + "tunnel": 5234, + "passes": 5235, + "stupid": 5236, + "agriculture": 5237, + "softly": 5238, + "cabinet": 5239, + "regarded": 5240, + "joining": 5241, + "indiana": 5242, + "##ea": 5243, + "##ms": 5244, + "push": 5245, + "dates": 5246, + "spend": 5247, + "behavior": 5248, + "woods": 5249, + "protein": 5250, + "gently": 5251, + "chase": 5252, + "morgan": 5253, + "mention": 5254, + "burning": 5255, + "wake": 5256, + "combination": 5257, + "occur": 5258, + "mirror": 5259, + "leads": 5260, + "jimmy": 5261, + "indeed": 5262, + "impossible": 5263, + "singapore": 5264, + "paintings": 5265, + "covering": 5266, + "##nes": 5267, + "soldier": 5268, + "locations": 5269, + "attendance": 5270, + "sell": 5271, + "historian": 5272, + "wisconsin": 5273, + "invasion": 5274, + "argued": 5275, + "painter": 5276, + "diego": 5277, + "changing": 5278, + "egypt": 5279, + "##don": 5280, + "experienced": 5281, + "inches": 5282, + "##ku": 5283, + "missouri": 5284, + "vol": 5285, + "grounds": 5286, + "spoken": 5287, + "switzerland": 5288, + "##gan": 5289, + "reform": 5290, + "rolling": 5291, + "ha": 5292, + "forget": 5293, + "massive": 5294, + "resigned": 5295, + "burned": 5296, + "allen": 5297, + "tennessee": 5298, + "locked": 5299, + "values": 5300, + "improved": 5301, + "##mo": 5302, + "wounded": 5303, + "universe": 5304, + "sick": 5305, + "dating": 5306, + "facing": 5307, + "pack": 5308, + "purchase": 5309, + "user": 5310, + "##pur": 5311, + "moments": 5312, + "##ul": 5313, + "merged": 5314, + "anniversary": 5315, + "1908": 5316, + "coal": 5317, + "brick": 5318, + "understood": 5319, + "causes": 5320, + "dynasty": 5321, + "queensland": 5322, + "establish": 5323, + "stores": 5324, + "crisis": 5325, + "promote": 5326, + "hoping": 5327, + "views": 5328, + "cards": 5329, + "referee": 5330, + "extension": 5331, + "##si": 5332, + "raise": 5333, + "arizona": 5334, + "improve": 5335, + "colonial": 5336, + "formal": 5337, + "charged": 5338, + "##rt": 5339, + "palm": 5340, + "lucky": 5341, + "hide": 5342, + "rescue": 5343, + "faces": 5344, + "95": 5345, + "feelings": 5346, + "candidates": 5347, + "juan": 5348, + "##ell": 5349, + "goods": 5350, + "6th": 5351, + "courses": 5352, + "weekend": 5353, + "59": 5354, + "luke": 5355, + "cash": 5356, + "fallen": 5357, + "##om": 5358, + "delivered": 5359, + "affected": 5360, + "installed": 5361, + "carefully": 5362, + "tries": 5363, + "swiss": 5364, + "hollywood": 5365, + "costs": 5366, + "lincoln": 5367, + "responsibility": 5368, + "##he": 5369, + "shore": 5370, + "file": 5371, + "proper": 5372, + "normally": 5373, + "maryland": 5374, + "assistance": 5375, + "jump": 5376, + "constant": 5377, + "offering": 5378, + "friendly": 5379, + "waters": 5380, + "persons": 5381, + "realize": 5382, + "contain": 5383, + "trophy": 5384, + "800": 5385, + "partnership": 5386, + "factor": 5387, + "58": 5388, + "musicians": 5389, + "cry": 5390, + "bound": 5391, + "oregon": 5392, + "indicated": 5393, + "hero": 5394, + "houston": 5395, + "medium": 5396, + "##ure": 5397, + "consisting": 5398, + "somewhat": 5399, + "##ara": 5400, + "57": 5401, + "cycle": 5402, + "##che": 5403, + "beer": 5404, + "moore": 5405, + "frederick": 5406, + "gotten": 5407, + "eleven": 5408, + "worst": 5409, + "weak": 5410, + "approached": 5411, + "arranged": 5412, + "chin": 5413, + "loan": 5414, + "universal": 5415, + "bond": 5416, + "fifteen": 5417, + "pattern": 5418, + "disappeared": 5419, + "##ney": 5420, + "translated": 5421, + "##zed": 5422, + "lip": 5423, + "arab": 5424, + "capture": 5425, + "interests": 5426, + "insurance": 5427, + "##chi": 5428, + "shifted": 5429, + "cave": 5430, + "prix": 5431, + "warning": 5432, + "sections": 5433, + "courts": 5434, + "coat": 5435, + "plot": 5436, + "smell": 5437, + "feed": 5438, + "golf": 5439, + "favorite": 5440, + "maintain": 5441, + "knife": 5442, + "vs": 5443, + "voted": 5444, + "degrees": 5445, + "finance": 5446, + "quebec": 5447, + "opinion": 5448, + "translation": 5449, + "manner": 5450, + "ruled": 5451, + "operate": 5452, + "productions": 5453, + "choose": 5454, + "musician": 5455, + "discovery": 5456, + "confused": 5457, + "tired": 5458, + "separated": 5459, + "stream": 5460, + "techniques": 5461, + "committed": 5462, + "attend": 5463, + "ranking": 5464, + "kings": 5465, + "throw": 5466, + "passengers": 5467, + "measure": 5468, + "horror": 5469, + "fan": 5470, + "mining": 5471, + "sand": 5472, + "danger": 5473, + "salt": 5474, + "calm": 5475, + "decade": 5476, + "dam": 5477, + "require": 5478, + "runner": 5479, + "##ik": 5480, + "rush": 5481, + "associate": 5482, + "greece": 5483, + "##ker": 5484, + "rivers": 5485, + "consecutive": 5486, + "matthew": 5487, + "##ski": 5488, + "sighed": 5489, + "sq": 5490, + "documents": 5491, + "steam": 5492, + "edited": 5493, + "closing": 5494, + "tie": 5495, + "accused": 5496, + "1905": 5497, + "##ini": 5498, + "islamic": 5499, + "distributed": 5500, + "directors": 5501, + "organisation": 5502, + "bruce": 5503, + "7th": 5504, + "breathing": 5505, + "mad": 5506, + "lit": 5507, + "arrival": 5508, + "concrete": 5509, + "taste": 5510, + "08": 5511, + "composition": 5512, + "shaking": 5513, + "faster": 5514, + "amateur": 5515, + "adjacent": 5516, + "stating": 5517, + "1906": 5518, + "twin": 5519, + "flew": 5520, + "##ran": 5521, + "tokyo": 5522, + "publications": 5523, + "##tone": 5524, + "obviously": 5525, + "ridge": 5526, + "storage": 5527, + "1907": 5528, + "carl": 5529, + "pages": 5530, + "concluded": 5531, + "desert": 5532, + "driven": 5533, + "universities": 5534, + "ages": 5535, + "terminal": 5536, + "sequence": 5537, + "borough": 5538, + "250": 5539, + "constituency": 5540, + "creative": 5541, + "cousin": 5542, + "economics": 5543, + "dreams": 5544, + "margaret": 5545, + "notably": 5546, + "reduce": 5547, + "montreal": 5548, + "mode": 5549, + "17th": 5550, + "ears": 5551, + "saved": 5552, + "jan": 5553, + "vocal": 5554, + "##ica": 5555, + "1909": 5556, + "andy": 5557, + "##jo": 5558, + "riding": 5559, + "roughly": 5560, + "threatened": 5561, + "##ise": 5562, + "meters": 5563, + "meanwhile": 5564, + "landed": 5565, + "compete": 5566, + "repeated": 5567, + "grass": 5568, + "czech": 5569, + "regularly": 5570, + "charges": 5571, + "tea": 5572, + "sudden": 5573, + "appeal": 5574, + "##ung": 5575, + "solution": 5576, + "describes": 5577, + "pierre": 5578, + "classification": 5579, + "glad": 5580, + "parking": 5581, + "##ning": 5582, + "belt": 5583, + "physics": 5584, + "99": 5585, + "rachel": 5586, + "add": 5587, + "hungarian": 5588, + "participate": 5589, + "expedition": 5590, + "damaged": 5591, + "gift": 5592, + "childhood": 5593, + "85": 5594, + "fifty": 5595, + "##red": 5596, + "mathematics": 5597, + "jumped": 5598, + "letting": 5599, + "defensive": 5600, + "mph": 5601, + "##ux": 5602, + "##gh": 5603, + "testing": 5604, + "##hip": 5605, + "hundreds": 5606, + "shoot": 5607, + "owners": 5608, + "matters": 5609, + "smoke": 5610, + "israeli": 5611, + "kentucky": 5612, + "dancing": 5613, + "mounted": 5614, + "grandfather": 5615, + "emma": 5616, + "designs": 5617, + "profit": 5618, + "argentina": 5619, + "##gs": 5620, + "truly": 5621, + "li": 5622, + "lawrence": 5623, + "cole": 5624, + "begun": 5625, + "detroit": 5626, + "willing": 5627, + "branches": 5628, + "smiling": 5629, + "decide": 5630, + "miami": 5631, + "enjoyed": 5632, + "recordings": 5633, + "##dale": 5634, + "poverty": 5635, + "ethnic": 5636, + "gay": 5637, + "##bi": 5638, + "gary": 5639, + "arabic": 5640, + "09": 5641, + "accompanied": 5642, + "##one": 5643, + "##ons": 5644, + "fishing": 5645, + "determine": 5646, + "residential": 5647, + "acid": 5648, + "##ary": 5649, + "alice": 5650, + "returns": 5651, + "starred": 5652, + "mail": 5653, + "##ang": 5654, + "jonathan": 5655, + "strategy": 5656, + "##ue": 5657, + "net": 5658, + "forty": 5659, + "cook": 5660, + "businesses": 5661, + "equivalent": 5662, + "commonwealth": 5663, + "distinct": 5664, + "ill": 5665, + "##cy": 5666, + "seriously": 5667, + "##ors": 5668, + "##ped": 5669, + "shift": 5670, + "harris": 5671, + "replace": 5672, + "rio": 5673, + "imagine": 5674, + "formula": 5675, + "ensure": 5676, + "##ber": 5677, + "additionally": 5678, + "scheme": 5679, + "conservation": 5680, + "occasionally": 5681, + "purposes": 5682, + "feels": 5683, + "favor": 5684, + "##and": 5685, + "##ore": 5686, + "1930s": 5687, + "contrast": 5688, + "hanging": 5689, + "hunt": 5690, + "movies": 5691, + "1904": 5692, + "instruments": 5693, + "victims": 5694, + "danish": 5695, + "christopher": 5696, + "busy": 5697, + "demon": 5698, + "sugar": 5699, + "earliest": 5700, + "colony": 5701, + "studying": 5702, + "balance": 5703, + "duties": 5704, + "##ks": 5705, + "belgium": 5706, + "slipped": 5707, + "carter": 5708, + "05": 5709, + "visible": 5710, + "stages": 5711, + "iraq": 5712, + "fifa": 5713, + "##im": 5714, + "commune": 5715, + "forming": 5716, + "zero": 5717, + "07": 5718, + "continuing": 5719, + "talked": 5720, + "counties": 5721, + "legend": 5722, + "bathroom": 5723, + "option": 5724, + "tail": 5725, + "clay": 5726, + "daughters": 5727, + "afterwards": 5728, + "severe": 5729, + "jaw": 5730, + "visitors": 5731, + "##ded": 5732, + "devices": 5733, + "aviation": 5734, + "russell": 5735, + "kate": 5736, + "##vi": 5737, + "entering": 5738, + "subjects": 5739, + "##ino": 5740, + "temporary": 5741, + "swimming": 5742, + "forth": 5743, + "smooth": 5744, + "ghost": 5745, + "audio": 5746, + "bush": 5747, + "operates": 5748, + "rocks": 5749, + "movements": 5750, + "signs": 5751, + "eddie": 5752, + "##tz": 5753, + "ann": 5754, + "voices": 5755, + "honorary": 5756, + "06": 5757, + "memories": 5758, + "dallas": 5759, + "pure": 5760, + "measures": 5761, + "racial": 5762, + "promised": 5763, + "66": 5764, + "harvard": 5765, + "ceo": 5766, + "16th": 5767, + "parliamentary": 5768, + "indicate": 5769, + "benefit": 5770, + "flesh": 5771, + "dublin": 5772, + "louisiana": 5773, + "1902": 5774, + "1901": 5775, + "patient": 5776, + "sleeping": 5777, + "1903": 5778, + "membership": 5779, + "coastal": 5780, + "medieval": 5781, + "wanting": 5782, + "element": 5783, + "scholars": 5784, + "rice": 5785, + "62": 5786, + "limit": 5787, + "survive": 5788, + "makeup": 5789, + "rating": 5790, + "definitely": 5791, + "collaboration": 5792, + "obvious": 5793, + "##tan": 5794, + "boss": 5795, + "ms": 5796, + "baron": 5797, + "birthday": 5798, + "linked": 5799, + "soil": 5800, + "diocese": 5801, + "##lan": 5802, + "ncaa": 5803, + "##mann": 5804, + "offensive": 5805, + "shell": 5806, + "shouldn": 5807, + "waist": 5808, + "##tus": 5809, + "plain": 5810, + "ross": 5811, + "organ": 5812, + "resolution": 5813, + "manufacturing": 5814, + "adding": 5815, + "relative": 5816, + "kennedy": 5817, + "98": 5818, + "whilst": 5819, + "moth": 5820, + "marketing": 5821, + "gardens": 5822, + "crash": 5823, + "72": 5824, + "heading": 5825, + "partners": 5826, + "credited": 5827, + "carlos": 5828, + "moves": 5829, + "cable": 5830, + "##zi": 5831, + "marshall": 5832, + "##out": 5833, + "depending": 5834, + "bottle": 5835, + "represents": 5836, + "rejected": 5837, + "responded": 5838, + "existed": 5839, + "04": 5840, + "jobs": 5841, + "denmark": 5842, + "lock": 5843, + "##ating": 5844, + "treated": 5845, + "graham": 5846, + "routes": 5847, + "talent": 5848, + "commissioner": 5849, + "drugs": 5850, + "secure": 5851, + "tests": 5852, + "reign": 5853, + "restored": 5854, + "photography": 5855, + "##gi": 5856, + "contributions": 5857, + "oklahoma": 5858, + "designer": 5859, + "disc": 5860, + "grin": 5861, + "seattle": 5862, + "robin": 5863, + "paused": 5864, + "atlanta": 5865, + "unusual": 5866, + "##gate": 5867, + "praised": 5868, + "las": 5869, + "laughing": 5870, + "satellite": 5871, + "hungary": 5872, + "visiting": 5873, + "##sky": 5874, + "interesting": 5875, + "factors": 5876, + "deck": 5877, + "poems": 5878, + "norman": 5879, + "##water": 5880, + "stuck": 5881, + "speaker": 5882, + "rifle": 5883, + "domain": 5884, + "premiered": 5885, + "##her": 5886, + "dc": 5887, + "comics": 5888, + "actors": 5889, + "01": 5890, + "reputation": 5891, + "eliminated": 5892, + "8th": 5893, + "ceiling": 5894, + "prisoners": 5895, + "script": 5896, + "##nce": 5897, + "leather": 5898, + "austin": 5899, + "mississippi": 5900, + "rapidly": 5901, + "admiral": 5902, + "parallel": 5903, + "charlotte": 5904, + "guilty": 5905, + "tools": 5906, + "gender": 5907, + "divisions": 5908, + "fruit": 5909, + "##bs": 5910, + "laboratory": 5911, + "nelson": 5912, + "fantasy": 5913, + "marry": 5914, + "rapid": 5915, + "aunt": 5916, + "tribe": 5917, + "requirements": 5918, + "aspects": 5919, + "suicide": 5920, + "amongst": 5921, + "adams": 5922, + "bone": 5923, + "ukraine": 5924, + "abc": 5925, + "kick": 5926, + "sees": 5927, + "edinburgh": 5928, + "clothing": 5929, + "column": 5930, + "rough": 5931, + "gods": 5932, + "hunting": 5933, + "broadway": 5934, + "gathered": 5935, + "concerns": 5936, + "##ek": 5937, + "spending": 5938, + "ty": 5939, + "12th": 5940, + "snapped": 5941, + "requires": 5942, + "solar": 5943, + "bones": 5944, + "cavalry": 5945, + "##tta": 5946, + "iowa": 5947, + "drinking": 5948, + "waste": 5949, + "index": 5950, + "franklin": 5951, + "charity": 5952, + "thompson": 5953, + "stewart": 5954, + "tip": 5955, + "flash": 5956, + "landscape": 5957, + "friday": 5958, + "enjoy": 5959, + "singh": 5960, + "poem": 5961, + "listening": 5962, + "##back": 5963, + "eighth": 5964, + "fred": 5965, + "differences": 5966, + "adapted": 5967, + "bomb": 5968, + "ukrainian": 5969, + "surgery": 5970, + "corporate": 5971, + "masters": 5972, + "anywhere": 5973, + "##more": 5974, + "waves": 5975, + "odd": 5976, + "sean": 5977, + "portugal": 5978, + "orleans": 5979, + "dick": 5980, + "debate": 5981, + "kent": 5982, + "eating": 5983, + "puerto": 5984, + "cleared": 5985, + "96": 5986, + "expect": 5987, + "cinema": 5988, + "97": 5989, + "guitarist": 5990, + "blocks": 5991, + "electrical": 5992, + "agree": 5993, + "involving": 5994, + "depth": 5995, + "dying": 5996, + "panel": 5997, + "struggle": 5998, + "##ged": 5999, + "peninsula": 6000, + "adults": 6001, + "novels": 6002, + "emerged": 6003, + "vienna": 6004, + "metro": 6005, + "debuted": 6006, + "shoes": 6007, + "tamil": 6008, + "songwriter": 6009, + "meets": 6010, + "prove": 6011, + "beating": 6012, + "instance": 6013, + "heaven": 6014, + "scared": 6015, + "sending": 6016, + "marks": 6017, + "artistic": 6018, + "passage": 6019, + "superior": 6020, + "03": 6021, + "significantly": 6022, + "shopping": 6023, + "##tive": 6024, + "retained": 6025, + "##izing": 6026, + "malaysia": 6027, + "technique": 6028, + "cheeks": 6029, + "##ola": 6030, + "warren": 6031, + "maintenance": 6032, + "destroy": 6033, + "extreme": 6034, + "allied": 6035, + "120": 6036, + "appearing": 6037, + "##yn": 6038, + "fill": 6039, + "advice": 6040, + "alabama": 6041, + "qualifying": 6042, + "policies": 6043, + "cleveland": 6044, + "hat": 6045, + "battery": 6046, + "smart": 6047, + "authors": 6048, + "10th": 6049, + "soundtrack": 6050, + "acted": 6051, + "dated": 6052, + "lb": 6053, + "glance": 6054, + "equipped": 6055, + "coalition": 6056, + "funny": 6057, + "outer": 6058, + "ambassador": 6059, + "roy": 6060, + "possibility": 6061, + "couples": 6062, + "campbell": 6063, + "dna": 6064, + "loose": 6065, + "ethan": 6066, + "supplies": 6067, + "1898": 6068, + "gonna": 6069, + "88": 6070, + "monster": 6071, + "##res": 6072, + "shake": 6073, + "agents": 6074, + "frequency": 6075, + "springs": 6076, + "dogs": 6077, + "practices": 6078, + "61": 6079, + "gang": 6080, + "plastic": 6081, + "easier": 6082, + "suggests": 6083, + "gulf": 6084, + "blade": 6085, + "exposed": 6086, + "colors": 6087, + "industries": 6088, + "markets": 6089, + "pan": 6090, + "nervous": 6091, + "electoral": 6092, + "charts": 6093, + "legislation": 6094, + "ownership": 6095, + "##idae": 6096, + "mac": 6097, + "appointment": 6098, + "shield": 6099, + "copy": 6100, + "assault": 6101, + "socialist": 6102, + "abbey": 6103, + "monument": 6104, + "license": 6105, + "throne": 6106, + "employment": 6107, + "jay": 6108, + "93": 6109, + "replacement": 6110, + "charter": 6111, + "cloud": 6112, + "powered": 6113, + "suffering": 6114, + "accounts": 6115, + "oak": 6116, + "connecticut": 6117, + "strongly": 6118, + "wright": 6119, + "colour": 6120, + "crystal": 6121, + "13th": 6122, + "context": 6123, + "welsh": 6124, + "networks": 6125, + "voiced": 6126, + "gabriel": 6127, + "jerry": 6128, + "##cing": 6129, + "forehead": 6130, + "mp": 6131, + "##ens": 6132, + "manage": 6133, + "schedule": 6134, + "totally": 6135, + "remix": 6136, + "##ii": 6137, + "forests": 6138, + "occupation": 6139, + "print": 6140, + "nicholas": 6141, + "brazilian": 6142, + "strategic": 6143, + "vampires": 6144, + "engineers": 6145, + "76": 6146, + "roots": 6147, + "seek": 6148, + "correct": 6149, + "instrumental": 6150, + "und": 6151, + "alfred": 6152, + "backed": 6153, + "hop": 6154, + "##des": 6155, + "stanley": 6156, + "robinson": 6157, + "traveled": 6158, + "wayne": 6159, + "welcome": 6160, + "austrian": 6161, + "achieve": 6162, + "67": 6163, + "exit": 6164, + "rates": 6165, + "1899": 6166, + "strip": 6167, + "whereas": 6168, + "##cs": 6169, + "sing": 6170, + "deeply": 6171, + "adventure": 6172, + "bobby": 6173, + "rick": 6174, + "jamie": 6175, + "careful": 6176, + "components": 6177, + "cap": 6178, + "useful": 6179, + "personality": 6180, + "knee": 6181, + "##shi": 6182, + "pushing": 6183, + "hosts": 6184, + "02": 6185, + "protest": 6186, + "ca": 6187, + "ottoman": 6188, + "symphony": 6189, + "##sis": 6190, + "63": 6191, + "boundary": 6192, + "1890": 6193, + "processes": 6194, + "considering": 6195, + "considerable": 6196, + "tons": 6197, + "##work": 6198, + "##ft": 6199, + "##nia": 6200, + "cooper": 6201, + "trading": 6202, + "dear": 6203, + "conduct": 6204, + "91": 6205, + "illegal": 6206, + "apple": 6207, + "revolutionary": 6208, + "holiday": 6209, + "definition": 6210, + "harder": 6211, + "##van": 6212, + "jacob": 6213, + "circumstances": 6214, + "destruction": 6215, + "##lle": 6216, + "popularity": 6217, + "grip": 6218, + "classified": 6219, + "liverpool": 6220, + "donald": 6221, + "baltimore": 6222, + "flows": 6223, + "seeking": 6224, + "honour": 6225, + "approval": 6226, + "92": 6227, + "mechanical": 6228, + "till": 6229, + "happening": 6230, + "statue": 6231, + "critic": 6232, + "increasingly": 6233, + "immediate": 6234, + "describe": 6235, + "commerce": 6236, + "stare": 6237, + "##ster": 6238, + "indonesia": 6239, + "meat": 6240, + "rounds": 6241, + "boats": 6242, + "baker": 6243, + "orthodox": 6244, + "depression": 6245, + "formally": 6246, + "worn": 6247, + "naked": 6248, + "claire": 6249, + "muttered": 6250, + "sentence": 6251, + "11th": 6252, + "emily": 6253, + "document": 6254, + "77": 6255, + "criticism": 6256, + "wished": 6257, + "vessel": 6258, + "spiritual": 6259, + "bent": 6260, + "virgin": 6261, + "parker": 6262, + "minimum": 6263, + "murray": 6264, + "lunch": 6265, + "danny": 6266, + "printed": 6267, + "compilation": 6268, + "keyboards": 6269, + "false": 6270, + "blow": 6271, + "belonged": 6272, + "68": 6273, + "raising": 6274, + "78": 6275, + "cutting": 6276, + "##board": 6277, + "pittsburgh": 6278, + "##up": 6279, + "9th": 6280, + "shadows": 6281, + "81": 6282, + "hated": 6283, + "indigenous": 6284, + "jon": 6285, + "15th": 6286, + "barry": 6287, + "scholar": 6288, + "ah": 6289, + "##zer": 6290, + "oliver": 6291, + "##gy": 6292, + "stick": 6293, + "susan": 6294, + "meetings": 6295, + "attracted": 6296, + "spell": 6297, + "romantic": 6298, + "##ver": 6299, + "ye": 6300, + "1895": 6301, + "photo": 6302, + "demanded": 6303, + "customers": 6304, + "##ac": 6305, + "1896": 6306, + "logan": 6307, + "revival": 6308, + "keys": 6309, + "modified": 6310, + "commanded": 6311, + "jeans": 6312, + "##ious": 6313, + "upset": 6314, + "raw": 6315, + "phil": 6316, + "detective": 6317, + "hiding": 6318, + "resident": 6319, + "vincent": 6320, + "##bly": 6321, + "experiences": 6322, + "diamond": 6323, + "defeating": 6324, + "coverage": 6325, + "lucas": 6326, + "external": 6327, + "parks": 6328, + "franchise": 6329, + "helen": 6330, + "bible": 6331, + "successor": 6332, + "percussion": 6333, + "celebrated": 6334, + "il": 6335, + "lift": 6336, + "profile": 6337, + "clan": 6338, + "romania": 6339, + "##ied": 6340, + "mills": 6341, + "##su": 6342, + "nobody": 6343, + "achievement": 6344, + "shrugged": 6345, + "fault": 6346, + "1897": 6347, + "rhythm": 6348, + "initiative": 6349, + "breakfast": 6350, + "carbon": 6351, + "700": 6352, + "69": 6353, + "lasted": 6354, + "violent": 6355, + "74": 6356, + "wound": 6357, + "ken": 6358, + "killer": 6359, + "gradually": 6360, + "filmed": 6361, + "°c": 6362, + "dollars": 6363, + "processing": 6364, + "94": 6365, + "remove": 6366, + "criticized": 6367, + "guests": 6368, + "sang": 6369, + "chemistry": 6370, + "##vin": 6371, + "legislature": 6372, + "disney": 6373, + "##bridge": 6374, + "uniform": 6375, + "escaped": 6376, + "integrated": 6377, + "proposal": 6378, + "purple": 6379, + "denied": 6380, + "liquid": 6381, + "karl": 6382, + "influential": 6383, + "morris": 6384, + "nights": 6385, + "stones": 6386, + "intense": 6387, + "experimental": 6388, + "twisted": 6389, + "71": 6390, + "84": 6391, + "##ld": 6392, + "pace": 6393, + "nazi": 6394, + "mitchell": 6395, + "ny": 6396, + "blind": 6397, + "reporter": 6398, + "newspapers": 6399, + "14th": 6400, + "centers": 6401, + "burn": 6402, + "basin": 6403, + "forgotten": 6404, + "surviving": 6405, + "filed": 6406, + "collections": 6407, + "monastery": 6408, + "losses": 6409, + "manual": 6410, + "couch": 6411, + "description": 6412, + "appropriate": 6413, + "merely": 6414, + "tag": 6415, + "missions": 6416, + "sebastian": 6417, + "restoration": 6418, + "replacing": 6419, + "triple": 6420, + "73": 6421, + "elder": 6422, + "julia": 6423, + "warriors": 6424, + "benjamin": 6425, + "julian": 6426, + "convinced": 6427, + "stronger": 6428, + "amazing": 6429, + "declined": 6430, + "versus": 6431, + "merchant": 6432, + "happens": 6433, + "output": 6434, + "finland": 6435, + "bare": 6436, + "barbara": 6437, + "absence": 6438, + "ignored": 6439, + "dawn": 6440, + "injuries": 6441, + "##port": 6442, + "producers": 6443, + "##ram": 6444, + "82": 6445, + "luis": 6446, + "##ities": 6447, + "kw": 6448, + "admit": 6449, + "expensive": 6450, + "electricity": 6451, + "nba": 6452, + "exception": 6453, + "symbol": 6454, + "##ving": 6455, + "ladies": 6456, + "shower": 6457, + "sheriff": 6458, + "characteristics": 6459, + "##je": 6460, + "aimed": 6461, + "button": 6462, + "ratio": 6463, + "effectively": 6464, + "summit": 6465, + "angle": 6466, + "jury": 6467, + "bears": 6468, + "foster": 6469, + "vessels": 6470, + "pants": 6471, + "executed": 6472, + "evans": 6473, + "dozen": 6474, + "advertising": 6475, + "kicked": 6476, + "patrol": 6477, + "1889": 6478, + "competitions": 6479, + "lifetime": 6480, + "principles": 6481, + "athletics": 6482, + "##logy": 6483, + "birmingham": 6484, + "sponsored": 6485, + "89": 6486, + "rob": 6487, + "nomination": 6488, + "1893": 6489, + "acoustic": 6490, + "##sm": 6491, + "creature": 6492, + "longest": 6493, + "##tra": 6494, + "credits": 6495, + "harbor": 6496, + "dust": 6497, + "josh": 6498, + "##so": 6499, + "territories": 6500, + "milk": 6501, + "infrastructure": 6502, + "completion": 6503, + "thailand": 6504, + "indians": 6505, + "leon": 6506, + "archbishop": 6507, + "##sy": 6508, + "assist": 6509, + "pitch": 6510, + "blake": 6511, + "arrangement": 6512, + "girlfriend": 6513, + "serbian": 6514, + "operational": 6515, + "hence": 6516, + "sad": 6517, + "scent": 6518, + "fur": 6519, + "dj": 6520, + "sessions": 6521, + "hp": 6522, + "refer": 6523, + "rarely": 6524, + "##ora": 6525, + "exists": 6526, + "1892": 6527, + "##ten": 6528, + "scientists": 6529, + "dirty": 6530, + "penalty": 6531, + "burst": 6532, + "portrait": 6533, + "seed": 6534, + "79": 6535, + "pole": 6536, + "limits": 6537, + "rival": 6538, + "1894": 6539, + "stable": 6540, + "alpha": 6541, + "grave": 6542, + "constitutional": 6543, + "alcohol": 6544, + "arrest": 6545, + "flower": 6546, + "mystery": 6547, + "devil": 6548, + "architectural": 6549, + "relationships": 6550, + "greatly": 6551, + "habitat": 6552, + "##istic": 6553, + "larry": 6554, + "progressive": 6555, + "remote": 6556, + "cotton": 6557, + "##ics": 6558, + "##ok": 6559, + "preserved": 6560, + "reaches": 6561, + "##ming": 6562, + "cited": 6563, + "86": 6564, + "vast": 6565, + "scholarship": 6566, + "decisions": 6567, + "cbs": 6568, + "joy": 6569, + "teach": 6570, + "1885": 6571, + "editions": 6572, + "knocked": 6573, + "eve": 6574, + "searching": 6575, + "partly": 6576, + "participation": 6577, + "gap": 6578, + "animated": 6579, + "fate": 6580, + "excellent": 6581, + "##ett": 6582, + "na": 6583, + "87": 6584, + "alternate": 6585, + "saints": 6586, + "youngest": 6587, + "##ily": 6588, + "climbed": 6589, + "##ita": 6590, + "##tors": 6591, + "suggest": 6592, + "##ct": 6593, + "discussion": 6594, + "staying": 6595, + "choir": 6596, + "lakes": 6597, + "jacket": 6598, + "revenue": 6599, + "nevertheless": 6600, + "peaked": 6601, + "instrument": 6602, + "wondering": 6603, + "annually": 6604, + "managing": 6605, + "neil": 6606, + "1891": 6607, + "signing": 6608, + "terry": 6609, + "##ice": 6610, + "apply": 6611, + "clinical": 6612, + "brooklyn": 6613, + "aim": 6614, + "catherine": 6615, + "fuck": 6616, + "farmers": 6617, + "figured": 6618, + "ninth": 6619, + "pride": 6620, + "hugh": 6621, + "evolution": 6622, + "ordinary": 6623, + "involvement": 6624, + "comfortable": 6625, + "shouted": 6626, + "tech": 6627, + "encouraged": 6628, + "taiwan": 6629, + "representation": 6630, + "sharing": 6631, + "##lia": 6632, + "##em": 6633, + "panic": 6634, + "exact": 6635, + "cargo": 6636, + "competing": 6637, + "fat": 6638, + "cried": 6639, + "83": 6640, + "1920s": 6641, + "occasions": 6642, + "pa": 6643, + "cabin": 6644, + "borders": 6645, + "utah": 6646, + "marcus": 6647, + "##isation": 6648, + "badly": 6649, + "muscles": 6650, + "##ance": 6651, + "victorian": 6652, + "transition": 6653, + "warner": 6654, + "bet": 6655, + "permission": 6656, + "##rin": 6657, + "slave": 6658, + "terrible": 6659, + "similarly": 6660, + "shares": 6661, + "seth": 6662, + "uefa": 6663, + "possession": 6664, + "medals": 6665, + "benefits": 6666, + "colleges": 6667, + "lowered": 6668, + "perfectly": 6669, + "mall": 6670, + "transit": 6671, + "##ye": 6672, + "##kar": 6673, + "publisher": 6674, + "##ened": 6675, + "harrison": 6676, + "deaths": 6677, + "elevation": 6678, + "##ae": 6679, + "asleep": 6680, + "machines": 6681, + "sigh": 6682, + "ash": 6683, + "hardly": 6684, + "argument": 6685, + "occasion": 6686, + "parent": 6687, + "leo": 6688, + "decline": 6689, + "1888": 6690, + "contribution": 6691, + "##ua": 6692, + "concentration": 6693, + "1000": 6694, + "opportunities": 6695, + "hispanic": 6696, + "guardian": 6697, + "extent": 6698, + "emotions": 6699, + "hips": 6700, + "mason": 6701, + "volumes": 6702, + "bloody": 6703, + "controversy": 6704, + "diameter": 6705, + "steady": 6706, + "mistake": 6707, + "phoenix": 6708, + "identify": 6709, + "violin": 6710, + "##sk": 6711, + "departure": 6712, + "richmond": 6713, + "spin": 6714, + "funeral": 6715, + "enemies": 6716, + "1864": 6717, + "gear": 6718, + "literally": 6719, + "connor": 6720, + "random": 6721, + "sergeant": 6722, + "grab": 6723, + "confusion": 6724, + "1865": 6725, + "transmission": 6726, + "informed": 6727, + "op": 6728, + "leaning": 6729, + "sacred": 6730, + "suspended": 6731, + "thinks": 6732, + "gates": 6733, + "portland": 6734, + "luck": 6735, + "agencies": 6736, + "yours": 6737, + "hull": 6738, + "expert": 6739, + "muscle": 6740, + "layer": 6741, + "practical": 6742, + "sculpture": 6743, + "jerusalem": 6744, + "latest": 6745, + "lloyd": 6746, + "statistics": 6747, + "deeper": 6748, + "recommended": 6749, + "warrior": 6750, + "arkansas": 6751, + "mess": 6752, + "supports": 6753, + "greg": 6754, + "eagle": 6755, + "1880": 6756, + "recovered": 6757, + "rated": 6758, + "concerts": 6759, + "rushed": 6760, + "##ano": 6761, + "stops": 6762, + "eggs": 6763, + "files": 6764, + "premiere": 6765, + "keith": 6766, + "##vo": 6767, + "delhi": 6768, + "turner": 6769, + "pit": 6770, + "affair": 6771, + "belief": 6772, + "paint": 6773, + "##zing": 6774, + "mate": 6775, + "##ach": 6776, + "##ev": 6777, + "victim": 6778, + "##ology": 6779, + "withdrew": 6780, + "bonus": 6781, + "styles": 6782, + "fled": 6783, + "##ud": 6784, + "glasgow": 6785, + "technologies": 6786, + "funded": 6787, + "nbc": 6788, + "adaptation": 6789, + "##ata": 6790, + "portrayed": 6791, + "cooperation": 6792, + "supporters": 6793, + "judges": 6794, + "bernard": 6795, + "justin": 6796, + "hallway": 6797, + "ralph": 6798, + "##ick": 6799, + "graduating": 6800, + "controversial": 6801, + "distant": 6802, + "continental": 6803, + "spider": 6804, + "bite": 6805, + "##ho": 6806, + "recognize": 6807, + "intention": 6808, + "mixing": 6809, + "##ese": 6810, + "egyptian": 6811, + "bow": 6812, + "tourism": 6813, + "suppose": 6814, + "claiming": 6815, + "tiger": 6816, + "dominated": 6817, + "participants": 6818, + "vi": 6819, + "##ru": 6820, + "nurse": 6821, + "partially": 6822, + "tape": 6823, + "##rum": 6824, + "psychology": 6825, + "##rn": 6826, + "essential": 6827, + "touring": 6828, + "duo": 6829, + "voting": 6830, + "civilian": 6831, + "emotional": 6832, + "channels": 6833, + "##king": 6834, + "apparent": 6835, + "hebrew": 6836, + "1887": 6837, + "tommy": 6838, + "carrier": 6839, + "intersection": 6840, + "beast": 6841, + "hudson": 6842, + "##gar": 6843, + "##zo": 6844, + "lab": 6845, + "nova": 6846, + "bench": 6847, + "discuss": 6848, + "costa": 6849, + "##ered": 6850, + "detailed": 6851, + "behalf": 6852, + "drivers": 6853, + "unfortunately": 6854, + "obtain": 6855, + "##lis": 6856, + "rocky": 6857, + "##dae": 6858, + "siege": 6859, + "friendship": 6860, + "honey": 6861, + "##rian": 6862, + "1861": 6863, + "amy": 6864, + "hang": 6865, + "posted": 6866, + "governments": 6867, + "collins": 6868, + "respond": 6869, + "wildlife": 6870, + "preferred": 6871, + "operator": 6872, + "##po": 6873, + "laura": 6874, + "pregnant": 6875, + "videos": 6876, + "dennis": 6877, + "suspected": 6878, + "boots": 6879, + "instantly": 6880, + "weird": 6881, + "automatic": 6882, + "businessman": 6883, + "alleged": 6884, + "placing": 6885, + "throwing": 6886, + "ph": 6887, + "mood": 6888, + "1862": 6889, + "perry": 6890, + "venue": 6891, + "jet": 6892, + "remainder": 6893, + "##lli": 6894, + "##ci": 6895, + "passion": 6896, + "biological": 6897, + "boyfriend": 6898, + "1863": 6899, + "dirt": 6900, + "buffalo": 6901, + "ron": 6902, + "segment": 6903, + "fa": 6904, + "abuse": 6905, + "##era": 6906, + "genre": 6907, + "thrown": 6908, + "stroke": 6909, + "colored": 6910, + "stress": 6911, + "exercise": 6912, + "displayed": 6913, + "##gen": 6914, + "struggled": 6915, + "##tti": 6916, + "abroad": 6917, + "dramatic": 6918, + "wonderful": 6919, + "thereafter": 6920, + "madrid": 6921, + "component": 6922, + "widespread": 6923, + "##sed": 6924, + "tale": 6925, + "citizen": 6926, + "todd": 6927, + "monday": 6928, + "1886": 6929, + "vancouver": 6930, + "overseas": 6931, + "forcing": 6932, + "crying": 6933, + "descent": 6934, + "##ris": 6935, + "discussed": 6936, + "substantial": 6937, + "ranks": 6938, + "regime": 6939, + "1870": 6940, + "provinces": 6941, + "switch": 6942, + "drum": 6943, + "zane": 6944, + "ted": 6945, + "tribes": 6946, + "proof": 6947, + "lp": 6948, + "cream": 6949, + "researchers": 6950, + "volunteer": 6951, + "manor": 6952, + "silk": 6953, + "milan": 6954, + "donated": 6955, + "allies": 6956, + "venture": 6957, + "principle": 6958, + "delivery": 6959, + "enterprise": 6960, + "##ves": 6961, + "##ans": 6962, + "bars": 6963, + "traditionally": 6964, + "witch": 6965, + "reminded": 6966, + "copper": 6967, + "##uk": 6968, + "pete": 6969, + "inter": 6970, + "links": 6971, + "colin": 6972, + "grinned": 6973, + "elsewhere": 6974, + "competitive": 6975, + "frequent": 6976, + "##oy": 6977, + "scream": 6978, + "##hu": 6979, + "tension": 6980, + "texts": 6981, + "submarine": 6982, + "finnish": 6983, + "defending": 6984, + "defend": 6985, + "pat": 6986, + "detail": 6987, + "1884": 6988, + "affiliated": 6989, + "stuart": 6990, + "themes": 6991, + "villa": 6992, + "periods": 6993, + "tool": 6994, + "belgian": 6995, + "ruling": 6996, + "crimes": 6997, + "answers": 6998, + "folded": 6999, + "licensed": 7000, + "resort": 7001, + "demolished": 7002, + "hans": 7003, + "lucy": 7004, + "1881": 7005, + "lion": 7006, + "traded": 7007, + "photographs": 7008, + "writes": 7009, + "craig": 7010, + "##fa": 7011, + "trials": 7012, + "generated": 7013, + "beth": 7014, + "noble": 7015, + "debt": 7016, + "percentage": 7017, + "yorkshire": 7018, + "erected": 7019, + "ss": 7020, + "viewed": 7021, + "grades": 7022, + "confidence": 7023, + "ceased": 7024, + "islam": 7025, + "telephone": 7026, + "retail": 7027, + "##ible": 7028, + "chile": 7029, + "m²": 7030, + "roberts": 7031, + "sixteen": 7032, + "##ich": 7033, + "commented": 7034, + "hampshire": 7035, + "innocent": 7036, + "dual": 7037, + "pounds": 7038, + "checked": 7039, + "regulations": 7040, + "afghanistan": 7041, + "sung": 7042, + "rico": 7043, + "liberty": 7044, + "assets": 7045, + "bigger": 7046, + "options": 7047, + "angels": 7048, + "relegated": 7049, + "tribute": 7050, + "wells": 7051, + "attending": 7052, + "leaf": 7053, + "##yan": 7054, + "butler": 7055, + "romanian": 7056, + "forum": 7057, + "monthly": 7058, + "lisa": 7059, + "patterns": 7060, + "gmina": 7061, + "##tory": 7062, + "madison": 7063, + "hurricane": 7064, + "rev": 7065, + "##ians": 7066, + "bristol": 7067, + "##ula": 7068, + "elite": 7069, + "valuable": 7070, + "disaster": 7071, + "democracy": 7072, + "awareness": 7073, + "germans": 7074, + "freyja": 7075, + "##ins": 7076, + "loop": 7077, + "absolutely": 7078, + "paying": 7079, + "populations": 7080, + "maine": 7081, + "sole": 7082, + "prayer": 7083, + "spencer": 7084, + "releases": 7085, + "doorway": 7086, + "bull": 7087, + "##ani": 7088, + "lover": 7089, + "midnight": 7090, + "conclusion": 7091, + "##sson": 7092, + "thirteen": 7093, + "lily": 7094, + "mediterranean": 7095, + "##lt": 7096, + "nhl": 7097, + "proud": 7098, + "sample": 7099, + "##hill": 7100, + "drummer": 7101, + "guinea": 7102, + "##ova": 7103, + "murphy": 7104, + "climb": 7105, + "##ston": 7106, + "instant": 7107, + "attributed": 7108, + "horn": 7109, + "ain": 7110, + "railways": 7111, + "steven": 7112, + "##ao": 7113, + "autumn": 7114, + "ferry": 7115, + "opponent": 7116, + "root": 7117, + "traveling": 7118, + "secured": 7119, + "corridor": 7120, + "stretched": 7121, + "tales": 7122, + "sheet": 7123, + "trinity": 7124, + "cattle": 7125, + "helps": 7126, + "indicates": 7127, + "manhattan": 7128, + "murdered": 7129, + "fitted": 7130, + "1882": 7131, + "gentle": 7132, + "grandmother": 7133, + "mines": 7134, + "shocked": 7135, + "vegas": 7136, + "produces": 7137, + "##light": 7138, + "caribbean": 7139, + "##ou": 7140, + "belong": 7141, + "continuous": 7142, + "desperate": 7143, + "drunk": 7144, + "historically": 7145, + "trio": 7146, + "waved": 7147, + "raf": 7148, + "dealing": 7149, + "nathan": 7150, + "bat": 7151, + "murmured": 7152, + "interrupted": 7153, + "residing": 7154, + "scientist": 7155, + "pioneer": 7156, + "harold": 7157, + "aaron": 7158, + "##net": 7159, + "delta": 7160, + "attempting": 7161, + "minority": 7162, + "mini": 7163, + "believes": 7164, + "chorus": 7165, + "tend": 7166, + "lots": 7167, + "eyed": 7168, + "indoor": 7169, + "load": 7170, + "shots": 7171, + "updated": 7172, + "jail": 7173, + "##llo": 7174, + "concerning": 7175, + "connecting": 7176, + "wealth": 7177, + "##ved": 7178, + "slaves": 7179, + "arrive": 7180, + "rangers": 7181, + "sufficient": 7182, + "rebuilt": 7183, + "##wick": 7184, + "cardinal": 7185, + "flood": 7186, + "muhammad": 7187, + "whenever": 7188, + "relation": 7189, + "runners": 7190, + "moral": 7191, + "repair": 7192, + "viewers": 7193, + "arriving": 7194, + "revenge": 7195, + "punk": 7196, + "assisted": 7197, + "bath": 7198, + "fairly": 7199, + "breathe": 7200, + "lists": 7201, + "innings": 7202, + "illustrated": 7203, + "whisper": 7204, + "nearest": 7205, + "voters": 7206, + "clinton": 7207, + "ties": 7208, + "ultimate": 7209, + "screamed": 7210, + "beijing": 7211, + "lions": 7212, + "andre": 7213, + "fictional": 7214, + "gathering": 7215, + "comfort": 7216, + "radar": 7217, + "suitable": 7218, + "dismissed": 7219, + "hms": 7220, + "ban": 7221, + "pine": 7222, + "wrist": 7223, + "atmosphere": 7224, + "voivodeship": 7225, + "bid": 7226, + "timber": 7227, + "##ned": 7228, + "##nan": 7229, + "giants": 7230, + "##ane": 7231, + "cameron": 7232, + "recovery": 7233, + "uss": 7234, + "identical": 7235, + "categories": 7236, + "switched": 7237, + "serbia": 7238, + "laughter": 7239, + "noah": 7240, + "ensemble": 7241, + "therapy": 7242, + "peoples": 7243, + "touching": 7244, + "##off": 7245, + "locally": 7246, + "pearl": 7247, + "platforms": 7248, + "everywhere": 7249, + "ballet": 7250, + "tables": 7251, + "lanka": 7252, + "herbert": 7253, + "outdoor": 7254, + "toured": 7255, + "derek": 7256, + "1883": 7257, + "spaces": 7258, + "contested": 7259, + "swept": 7260, + "1878": 7261, + "exclusive": 7262, + "slight": 7263, + "connections": 7264, + "##dra": 7265, + "winds": 7266, + "prisoner": 7267, + "collective": 7268, + "bangladesh": 7269, + "tube": 7270, + "publicly": 7271, + "wealthy": 7272, + "thai": 7273, + "##ys": 7274, + "isolated": 7275, + "select": 7276, + "##ric": 7277, + "insisted": 7278, + "pen": 7279, + "fortune": 7280, + "ticket": 7281, + "spotted": 7282, + "reportedly": 7283, + "animation": 7284, + "enforcement": 7285, + "tanks": 7286, + "110": 7287, + "decides": 7288, + "wider": 7289, + "lowest": 7290, + "owen": 7291, + "##time": 7292, + "nod": 7293, + "hitting": 7294, + "##hn": 7295, + "gregory": 7296, + "furthermore": 7297, + "magazines": 7298, + "fighters": 7299, + "solutions": 7300, + "##ery": 7301, + "pointing": 7302, + "requested": 7303, + "peru": 7304, + "reed": 7305, + "chancellor": 7306, + "knights": 7307, + "mask": 7308, + "worker": 7309, + "eldest": 7310, + "flames": 7311, + "reduction": 7312, + "1860": 7313, + "volunteers": 7314, + "##tis": 7315, + "reporting": 7316, + "##hl": 7317, + "wire": 7318, + "advisory": 7319, + "endemic": 7320, + "origins": 7321, + "settlers": 7322, + "pursue": 7323, + "knock": 7324, + "consumer": 7325, + "1876": 7326, + "eu": 7327, + "compound": 7328, + "creatures": 7329, + "mansion": 7330, + "sentenced": 7331, + "ivan": 7332, + "deployed": 7333, + "guitars": 7334, + "frowned": 7335, + "involves": 7336, + "mechanism": 7337, + "kilometers": 7338, + "perspective": 7339, + "shops": 7340, + "maps": 7341, + "terminus": 7342, + "duncan": 7343, + "alien": 7344, + "fist": 7345, + "bridges": 7346, + "##pers": 7347, + "heroes": 7348, + "fed": 7349, + "derby": 7350, + "swallowed": 7351, + "##ros": 7352, + "patent": 7353, + "sara": 7354, + "illness": 7355, + "characterized": 7356, + "adventures": 7357, + "slide": 7358, + "hawaii": 7359, + "jurisdiction": 7360, + "##op": 7361, + "organised": 7362, + "##side": 7363, + "adelaide": 7364, + "walks": 7365, + "biology": 7366, + "se": 7367, + "##ties": 7368, + "rogers": 7369, + "swing": 7370, + "tightly": 7371, + "boundaries": 7372, + "##rie": 7373, + "prepare": 7374, + "implementation": 7375, + "stolen": 7376, + "##sha": 7377, + "certified": 7378, + "colombia": 7379, + "edwards": 7380, + "garage": 7381, + "##mm": 7382, + "recalled": 7383, + "##ball": 7384, + "rage": 7385, + "harm": 7386, + "nigeria": 7387, + "breast": 7388, + "##ren": 7389, + "furniture": 7390, + "pupils": 7391, + "settle": 7392, + "##lus": 7393, + "cuba": 7394, + "balls": 7395, + "client": 7396, + "alaska": 7397, + "21st": 7398, + "linear": 7399, + "thrust": 7400, + "celebration": 7401, + "latino": 7402, + "genetic": 7403, + "terror": 7404, + "##cia": 7405, + "##ening": 7406, + "lightning": 7407, + "fee": 7408, + "witness": 7409, + "lodge": 7410, + "establishing": 7411, + "skull": 7412, + "##ique": 7413, + "earning": 7414, + "hood": 7415, + "##ei": 7416, + "rebellion": 7417, + "wang": 7418, + "sporting": 7419, + "warned": 7420, + "missile": 7421, + "devoted": 7422, + "activist": 7423, + "porch": 7424, + "worship": 7425, + "fourteen": 7426, + "package": 7427, + "1871": 7428, + "decorated": 7429, + "##shire": 7430, + "housed": 7431, + "##ock": 7432, + "chess": 7433, + "sailed": 7434, + "doctors": 7435, + "oscar": 7436, + "joan": 7437, + "treat": 7438, + "garcia": 7439, + "harbour": 7440, + "jeremy": 7441, + "##ire": 7442, + "traditions": 7443, + "dominant": 7444, + "jacques": 7445, + "##gon": 7446, + "##wan": 7447, + "relocated": 7448, + "1879": 7449, + "amendment": 7450, + "sized": 7451, + "companion": 7452, + "simultaneously": 7453, + "volleyball": 7454, + "spun": 7455, + "acre": 7456, + "increases": 7457, + "stopping": 7458, + "loves": 7459, + "belongs": 7460, + "affect": 7461, + "drafted": 7462, + "tossed": 7463, + "scout": 7464, + "battles": 7465, + "1875": 7466, + "filming": 7467, + "shoved": 7468, + "munich": 7469, + "tenure": 7470, + "vertical": 7471, + "romance": 7472, + "pc": 7473, + "##cher": 7474, + "argue": 7475, + "##ical": 7476, + "craft": 7477, + "ranging": 7478, + "www": 7479, + "opens": 7480, + "honest": 7481, + "tyler": 7482, + "yesterday": 7483, + "virtual": 7484, + "##let": 7485, + "muslims": 7486, + "reveal": 7487, + "snake": 7488, + "immigrants": 7489, + "radical": 7490, + "screaming": 7491, + "speakers": 7492, + "firing": 7493, + "saving": 7494, + "belonging": 7495, + "ease": 7496, + "lighting": 7497, + "prefecture": 7498, + "blame": 7499, + "farmer": 7500, + "hungry": 7501, + "grows": 7502, + "rubbed": 7503, + "beam": 7504, + "sur": 7505, + "subsidiary": 7506, + "##cha": 7507, + "armenian": 7508, + "sao": 7509, + "dropping": 7510, + "conventional": 7511, + "##fer": 7512, + "microsoft": 7513, + "reply": 7514, + "qualify": 7515, + "spots": 7516, + "1867": 7517, + "sweat": 7518, + "festivals": 7519, + "##ken": 7520, + "immigration": 7521, + "physician": 7522, + "discover": 7523, + "exposure": 7524, + "sandy": 7525, + "explanation": 7526, + "isaac": 7527, + "implemented": 7528, + "##fish": 7529, + "hart": 7530, + "initiated": 7531, + "connect": 7532, + "stakes": 7533, + "presents": 7534, + "heights": 7535, + "householder": 7536, + "pleased": 7537, + "tourist": 7538, + "regardless": 7539, + "slip": 7540, + "closest": 7541, + "##ction": 7542, + "surely": 7543, + "sultan": 7544, + "brings": 7545, + "riley": 7546, + "preparation": 7547, + "aboard": 7548, + "slammed": 7549, + "baptist": 7550, + "experiment": 7551, + "ongoing": 7552, + "interstate": 7553, + "organic": 7554, + "playoffs": 7555, + "##ika": 7556, + "1877": 7557, + "130": 7558, + "##tar": 7559, + "hindu": 7560, + "error": 7561, + "tours": 7562, + "tier": 7563, + "plenty": 7564, + "arrangements": 7565, + "talks": 7566, + "trapped": 7567, + "excited": 7568, + "sank": 7569, + "ho": 7570, + "athens": 7571, + "1872": 7572, + "denver": 7573, + "welfare": 7574, + "suburb": 7575, + "athletes": 7576, + "trick": 7577, + "diverse": 7578, + "belly": 7579, + "exclusively": 7580, + "yelled": 7581, + "1868": 7582, + "##med": 7583, + "conversion": 7584, + "##ette": 7585, + "1874": 7586, + "internationally": 7587, + "computers": 7588, + "conductor": 7589, + "abilities": 7590, + "sensitive": 7591, + "hello": 7592, + "dispute": 7593, + "measured": 7594, + "globe": 7595, + "rocket": 7596, + "prices": 7597, + "amsterdam": 7598, + "flights": 7599, + "tigers": 7600, + "inn": 7601, + "municipalities": 7602, + "emotion": 7603, + "references": 7604, + "3d": 7605, + "##mus": 7606, + "explains": 7607, + "airlines": 7608, + "manufactured": 7609, + "pm": 7610, + "archaeological": 7611, + "1873": 7612, + "interpretation": 7613, + "devon": 7614, + "comment": 7615, + "##ites": 7616, + "settlements": 7617, + "kissing": 7618, + "absolute": 7619, + "improvement": 7620, + "suite": 7621, + "impressed": 7622, + "barcelona": 7623, + "sullivan": 7624, + "jefferson": 7625, + "towers": 7626, + "jesse": 7627, + "julie": 7628, + "##tin": 7629, + "##lu": 7630, + "grandson": 7631, + "hi": 7632, + "gauge": 7633, + "regard": 7634, + "rings": 7635, + "interviews": 7636, + "trace": 7637, + "raymond": 7638, + "thumb": 7639, + "departments": 7640, + "burns": 7641, + "serial": 7642, + "bulgarian": 7643, + "scores": 7644, + "demonstrated": 7645, + "##ix": 7646, + "1866": 7647, + "kyle": 7648, + "alberta": 7649, + "underneath": 7650, + "romanized": 7651, + "##ward": 7652, + "relieved": 7653, + "acquisition": 7654, + "phrase": 7655, + "cliff": 7656, + "reveals": 7657, + "han": 7658, + "cuts": 7659, + "merger": 7660, + "custom": 7661, + "##dar": 7662, + "nee": 7663, + "gilbert": 7664, + "graduation": 7665, + "##nts": 7666, + "assessment": 7667, + "cafe": 7668, + "difficulty": 7669, + "demands": 7670, + "swung": 7671, + "democrat": 7672, + "jennifer": 7673, + "commons": 7674, + "1940s": 7675, + "grove": 7676, + "##yo": 7677, + "completing": 7678, + "focuses": 7679, + "sum": 7680, + "substitute": 7681, + "bearing": 7682, + "stretch": 7683, + "reception": 7684, + "##py": 7685, + "reflected": 7686, + "essentially": 7687, + "destination": 7688, + "pairs": 7689, + "##ched": 7690, + "survival": 7691, + "resource": 7692, + "##bach": 7693, + "promoting": 7694, + "doubles": 7695, + "messages": 7696, + "tear": 7697, + "##down": 7698, + "##fully": 7699, + "parade": 7700, + "florence": 7701, + "harvey": 7702, + "incumbent": 7703, + "partial": 7704, + "framework": 7705, + "900": 7706, + "pedro": 7707, + "frozen": 7708, + "procedure": 7709, + "olivia": 7710, + "controls": 7711, + "##mic": 7712, + "shelter": 7713, + "personally": 7714, + "temperatures": 7715, + "##od": 7716, + "brisbane": 7717, + "tested": 7718, + "sits": 7719, + "marble": 7720, + "comprehensive": 7721, + "oxygen": 7722, + "leonard": 7723, + "##kov": 7724, + "inaugural": 7725, + "iranian": 7726, + "referring": 7727, + "quarters": 7728, + "attitude": 7729, + "##ivity": 7730, + "mainstream": 7731, + "lined": 7732, + "mars": 7733, + "dakota": 7734, + "norfolk": 7735, + "unsuccessful": 7736, + "##°": 7737, + "explosion": 7738, + "helicopter": 7739, + "congressional": 7740, + "##sing": 7741, + "inspector": 7742, + "bitch": 7743, + "seal": 7744, + "departed": 7745, + "divine": 7746, + "##ters": 7747, + "coaching": 7748, + "examination": 7749, + "punishment": 7750, + "manufacturer": 7751, + "sink": 7752, + "columns": 7753, + "unincorporated": 7754, + "signals": 7755, + "nevada": 7756, + "squeezed": 7757, + "dylan": 7758, + "dining": 7759, + "photos": 7760, + "martial": 7761, + "manuel": 7762, + "eighteen": 7763, + "elevator": 7764, + "brushed": 7765, + "plates": 7766, + "ministers": 7767, + "ivy": 7768, + "congregation": 7769, + "##len": 7770, + "slept": 7771, + "specialized": 7772, + "taxes": 7773, + "curve": 7774, + "restricted": 7775, + "negotiations": 7776, + "likes": 7777, + "statistical": 7778, + "arnold": 7779, + "inspiration": 7780, + "execution": 7781, + "bold": 7782, + "intermediate": 7783, + "significance": 7784, + "margin": 7785, + "ruler": 7786, + "wheels": 7787, + "gothic": 7788, + "intellectual": 7789, + "dependent": 7790, + "listened": 7791, + "eligible": 7792, + "buses": 7793, + "widow": 7794, + "syria": 7795, + "earn": 7796, + "cincinnati": 7797, + "collapsed": 7798, + "recipient": 7799, + "secrets": 7800, + "accessible": 7801, + "philippine": 7802, + "maritime": 7803, + "goddess": 7804, + "clerk": 7805, + "surrender": 7806, + "breaks": 7807, + "playoff": 7808, + "database": 7809, + "##ified": 7810, + "##lon": 7811, + "ideal": 7812, + "beetle": 7813, + "aspect": 7814, + "soap": 7815, + "regulation": 7816, + "strings": 7817, + "expand": 7818, + "anglo": 7819, + "shorter": 7820, + "crosses": 7821, + "retreat": 7822, + "tough": 7823, + "coins": 7824, + "wallace": 7825, + "directions": 7826, + "pressing": 7827, + "##oon": 7828, + "shipping": 7829, + "locomotives": 7830, + "comparison": 7831, + "topics": 7832, + "nephew": 7833, + "##mes": 7834, + "distinction": 7835, + "honors": 7836, + "travelled": 7837, + "sierra": 7838, + "ibn": 7839, + "##over": 7840, + "fortress": 7841, + "sa": 7842, + "recognised": 7843, + "carved": 7844, + "1869": 7845, + "clients": 7846, + "##dan": 7847, + "intent": 7848, + "##mar": 7849, + "coaches": 7850, + "describing": 7851, + "bread": 7852, + "##ington": 7853, + "beaten": 7854, + "northwestern": 7855, + "##ona": 7856, + "merit": 7857, + "youtube": 7858, + "collapse": 7859, + "challenges": 7860, + "em": 7861, + "historians": 7862, + "objective": 7863, + "submitted": 7864, + "virus": 7865, + "attacking": 7866, + "drake": 7867, + "assume": 7868, + "##ere": 7869, + "diseases": 7870, + "marc": 7871, + "stem": 7872, + "leeds": 7873, + "##cus": 7874, + "##ab": 7875, + "farming": 7876, + "glasses": 7877, + "##lock": 7878, + "visits": 7879, + "nowhere": 7880, + "fellowship": 7881, + "relevant": 7882, + "carries": 7883, + "restaurants": 7884, + "experiments": 7885, + "101": 7886, + "constantly": 7887, + "bases": 7888, + "targets": 7889, + "shah": 7890, + "tenth": 7891, + "opponents": 7892, + "verse": 7893, + "territorial": 7894, + "##ira": 7895, + "writings": 7896, + "corruption": 7897, + "##hs": 7898, + "instruction": 7899, + "inherited": 7900, + "reverse": 7901, + "emphasis": 7902, + "##vic": 7903, + "employee": 7904, + "arch": 7905, + "keeps": 7906, + "rabbi": 7907, + "watson": 7908, + "payment": 7909, + "uh": 7910, + "##ala": 7911, + "nancy": 7912, + "##tre": 7913, + "venice": 7914, + "fastest": 7915, + "sexy": 7916, + "banned": 7917, + "adrian": 7918, + "properly": 7919, + "ruth": 7920, + "touchdown": 7921, + "dollar": 7922, + "boards": 7923, + "metre": 7924, + "circles": 7925, + "edges": 7926, + "favour": 7927, + "comments": 7928, + "ok": 7929, + "travels": 7930, + "liberation": 7931, + "scattered": 7932, + "firmly": 7933, + "##ular": 7934, + "holland": 7935, + "permitted": 7936, + "diesel": 7937, + "kenya": 7938, + "den": 7939, + "originated": 7940, + "##ral": 7941, + "demons": 7942, + "resumed": 7943, + "dragged": 7944, + "rider": 7945, + "##rus": 7946, + "servant": 7947, + "blinked": 7948, + "extend": 7949, + "torn": 7950, + "##ias": 7951, + "##sey": 7952, + "input": 7953, + "meal": 7954, + "everybody": 7955, + "cylinder": 7956, + "kinds": 7957, + "camps": 7958, + "##fe": 7959, + "bullet": 7960, + "logic": 7961, + "##wn": 7962, + "croatian": 7963, + "evolved": 7964, + "healthy": 7965, + "fool": 7966, + "chocolate": 7967, + "wise": 7968, + "preserve": 7969, + "pradesh": 7970, + "##ess": 7971, + "respective": 7972, + "1850": 7973, + "##ew": 7974, + "chicken": 7975, + "artificial": 7976, + "gross": 7977, + "corresponding": 7978, + "convicted": 7979, + "cage": 7980, + "caroline": 7981, + "dialogue": 7982, + "##dor": 7983, + "narrative": 7984, + "stranger": 7985, + "mario": 7986, + "br": 7987, + "christianity": 7988, + "failing": 7989, + "trent": 7990, + "commanding": 7991, + "buddhist": 7992, + "1848": 7993, + "maurice": 7994, + "focusing": 7995, + "yale": 7996, + "bike": 7997, + "altitude": 7998, + "##ering": 7999, + "mouse": 8000, + "revised": 8001, + "##sley": 8002, + "veteran": 8003, + "##ig": 8004, + "pulls": 8005, + "theology": 8006, + "crashed": 8007, + "campaigns": 8008, + "legion": 8009, + "##ability": 8010, + "drag": 8011, + "excellence": 8012, + "customer": 8013, + "cancelled": 8014, + "intensity": 8015, + "excuse": 8016, + "##lar": 8017, + "liga": 8018, + "participating": 8019, + "contributing": 8020, + "printing": 8021, + "##burn": 8022, + "variable": 8023, + "##rk": 8024, + "curious": 8025, + "bin": 8026, + "legacy": 8027, + "renaissance": 8028, + "##my": 8029, + "symptoms": 8030, + "binding": 8031, + "vocalist": 8032, + "dancer": 8033, + "##nie": 8034, + "grammar": 8035, + "gospel": 8036, + "democrats": 8037, + "ya": 8038, + "enters": 8039, + "sc": 8040, + "diplomatic": 8041, + "hitler": 8042, + "##ser": 8043, + "clouds": 8044, + "mathematical": 8045, + "quit": 8046, + "defended": 8047, + "oriented": 8048, + "##heim": 8049, + "fundamental": 8050, + "hardware": 8051, + "impressive": 8052, + "equally": 8053, + "convince": 8054, + "confederate": 8055, + "guilt": 8056, + "chuck": 8057, + "sliding": 8058, + "##ware": 8059, + "magnetic": 8060, + "narrowed": 8061, + "petersburg": 8062, + "bulgaria": 8063, + "otto": 8064, + "phd": 8065, + "skill": 8066, + "##ama": 8067, + "reader": 8068, + "hopes": 8069, + "pitcher": 8070, + "reservoir": 8071, + "hearts": 8072, + "automatically": 8073, + "expecting": 8074, + "mysterious": 8075, + "bennett": 8076, + "extensively": 8077, + "imagined": 8078, + "seeds": 8079, + "monitor": 8080, + "fix": 8081, + "##ative": 8082, + "journalism": 8083, + "struggling": 8084, + "signature": 8085, + "ranch": 8086, + "encounter": 8087, + "photographer": 8088, + "observation": 8089, + "protests": 8090, + "##pin": 8091, + "influences": 8092, + "##hr": 8093, + "calendar": 8094, + "##all": 8095, + "cruz": 8096, + "croatia": 8097, + "locomotive": 8098, + "hughes": 8099, + "naturally": 8100, + "shakespeare": 8101, + "basement": 8102, + "hook": 8103, + "uncredited": 8104, + "faded": 8105, + "theories": 8106, + "approaches": 8107, + "dare": 8108, + "phillips": 8109, + "filling": 8110, + "fury": 8111, + "obama": 8112, + "##ain": 8113, + "efficient": 8114, + "arc": 8115, + "deliver": 8116, + "min": 8117, + "raid": 8118, + "breeding": 8119, + "inducted": 8120, + "leagues": 8121, + "efficiency": 8122, + "axis": 8123, + "montana": 8124, + "eagles": 8125, + "##ked": 8126, + "supplied": 8127, + "instructions": 8128, + "karen": 8129, + "picking": 8130, + "indicating": 8131, + "trap": 8132, + "anchor": 8133, + "practically": 8134, + "christians": 8135, + "tomb": 8136, + "vary": 8137, + "occasional": 8138, + "electronics": 8139, + "lords": 8140, + "readers": 8141, + "newcastle": 8142, + "faint": 8143, + "innovation": 8144, + "collect": 8145, + "situations": 8146, + "engagement": 8147, + "160": 8148, + "claude": 8149, + "mixture": 8150, + "##feld": 8151, + "peer": 8152, + "tissue": 8153, + "logo": 8154, + "lean": 8155, + "##ration": 8156, + "°f": 8157, + "floors": 8158, + "##ven": 8159, + "architects": 8160, + "reducing": 8161, + "##our": 8162, + "##ments": 8163, + "rope": 8164, + "1859": 8165, + "ottawa": 8166, + "##har": 8167, + "samples": 8168, + "banking": 8169, + "declaration": 8170, + "proteins": 8171, + "resignation": 8172, + "francois": 8173, + "saudi": 8174, + "advocate": 8175, + "exhibited": 8176, + "armor": 8177, + "twins": 8178, + "divorce": 8179, + "##ras": 8180, + "abraham": 8181, + "reviewed": 8182, + "jo": 8183, + "temporarily": 8184, + "matrix": 8185, + "physically": 8186, + "pulse": 8187, + "curled": 8188, + "##ena": 8189, + "difficulties": 8190, + "bengal": 8191, + "usage": 8192, + "##ban": 8193, + "annie": 8194, + "riders": 8195, + "certificate": 8196, + "##pi": 8197, + "holes": 8198, + "warsaw": 8199, + "distinctive": 8200, + "jessica": 8201, + "##mon": 8202, + "mutual": 8203, + "1857": 8204, + "customs": 8205, + "circular": 8206, + "eugene": 8207, + "removal": 8208, + "loaded": 8209, + "mere": 8210, + "vulnerable": 8211, + "depicted": 8212, + "generations": 8213, + "dame": 8214, + "heir": 8215, + "enormous": 8216, + "lightly": 8217, + "climbing": 8218, + "pitched": 8219, + "lessons": 8220, + "pilots": 8221, + "nepal": 8222, + "ram": 8223, + "google": 8224, + "preparing": 8225, + "brad": 8226, + "louise": 8227, + "renowned": 8228, + "##₂": 8229, + "liam": 8230, + "##ably": 8231, + "plaza": 8232, + "shaw": 8233, + "sophie": 8234, + "brilliant": 8235, + "bills": 8236, + "##bar": 8237, + "##nik": 8238, + "fucking": 8239, + "mainland": 8240, + "server": 8241, + "pleasant": 8242, + "seized": 8243, + "veterans": 8244, + "jerked": 8245, + "fail": 8246, + "beta": 8247, + "brush": 8248, + "radiation": 8249, + "stored": 8250, + "warmth": 8251, + "southeastern": 8252, + "nate": 8253, + "sin": 8254, + "raced": 8255, + "berkeley": 8256, + "joke": 8257, + "athlete": 8258, + "designation": 8259, + "trunk": 8260, + "##low": 8261, + "roland": 8262, + "qualification": 8263, + "archives": 8264, + "heels": 8265, + "artwork": 8266, + "receives": 8267, + "judicial": 8268, + "reserves": 8269, + "##bed": 8270, + "woke": 8271, + "installation": 8272, + "abu": 8273, + "floating": 8274, + "fake": 8275, + "lesser": 8276, + "excitement": 8277, + "interface": 8278, + "concentrated": 8279, + "addressed": 8280, + "characteristic": 8281, + "amanda": 8282, + "saxophone": 8283, + "monk": 8284, + "auto": 8285, + "##bus": 8286, + "releasing": 8287, + "egg": 8288, + "dies": 8289, + "interaction": 8290, + "defender": 8291, + "ce": 8292, + "outbreak": 8293, + "glory": 8294, + "loving": 8295, + "##bert": 8296, + "sequel": 8297, + "consciousness": 8298, + "http": 8299, + "awake": 8300, + "ski": 8301, + "enrolled": 8302, + "##ress": 8303, + "handling": 8304, + "rookie": 8305, + "brow": 8306, + "somebody": 8307, + "biography": 8308, + "warfare": 8309, + "amounts": 8310, + "contracts": 8311, + "presentation": 8312, + "fabric": 8313, + "dissolved": 8314, + "challenged": 8315, + "meter": 8316, + "psychological": 8317, + "lt": 8318, + "elevated": 8319, + "rally": 8320, + "accurate": 8321, + "##tha": 8322, + "hospitals": 8323, + "undergraduate": 8324, + "specialist": 8325, + "venezuela": 8326, + "exhibit": 8327, + "shed": 8328, + "nursing": 8329, + "protestant": 8330, + "fluid": 8331, + "structural": 8332, + "footage": 8333, + "jared": 8334, + "consistent": 8335, + "prey": 8336, + "##ska": 8337, + "succession": 8338, + "reflect": 8339, + "exile": 8340, + "lebanon": 8341, + "wiped": 8342, + "suspect": 8343, + "shanghai": 8344, + "resting": 8345, + "integration": 8346, + "preservation": 8347, + "marvel": 8348, + "variant": 8349, + "pirates": 8350, + "sheep": 8351, + "rounded": 8352, + "capita": 8353, + "sailing": 8354, + "colonies": 8355, + "manuscript": 8356, + "deemed": 8357, + "variations": 8358, + "clarke": 8359, + "functional": 8360, + "emerging": 8361, + "boxing": 8362, + "relaxed": 8363, + "curse": 8364, + "azerbaijan": 8365, + "heavyweight": 8366, + "nickname": 8367, + "editorial": 8368, + "rang": 8369, + "grid": 8370, + "tightened": 8371, + "earthquake": 8372, + "flashed": 8373, + "miguel": 8374, + "rushing": 8375, + "##ches": 8376, + "improvements": 8377, + "boxes": 8378, + "brooks": 8379, + "180": 8380, + "consumption": 8381, + "molecular": 8382, + "felix": 8383, + "societies": 8384, + "repeatedly": 8385, + "variation": 8386, + "aids": 8387, + "civic": 8388, + "graphics": 8389, + "professionals": 8390, + "realm": 8391, + "autonomous": 8392, + "receiver": 8393, + "delayed": 8394, + "workshop": 8395, + "militia": 8396, + "chairs": 8397, + "trump": 8398, + "canyon": 8399, + "##point": 8400, + "harsh": 8401, + "extending": 8402, + "lovely": 8403, + "happiness": 8404, + "##jan": 8405, + "stake": 8406, + "eyebrows": 8407, + "embassy": 8408, + "wellington": 8409, + "hannah": 8410, + "##ella": 8411, + "sony": 8412, + "corners": 8413, + "bishops": 8414, + "swear": 8415, + "cloth": 8416, + "contents": 8417, + "xi": 8418, + "namely": 8419, + "commenced": 8420, + "1854": 8421, + "stanford": 8422, + "nashville": 8423, + "courage": 8424, + "graphic": 8425, + "commitment": 8426, + "garrison": 8427, + "##bin": 8428, + "hamlet": 8429, + "clearing": 8430, + "rebels": 8431, + "attraction": 8432, + "literacy": 8433, + "cooking": 8434, + "ruins": 8435, + "temples": 8436, + "jenny": 8437, + "humanity": 8438, + "celebrate": 8439, + "hasn": 8440, + "freight": 8441, + "sixty": 8442, + "rebel": 8443, + "bastard": 8444, + "##art": 8445, + "newton": 8446, + "##ada": 8447, + "deer": 8448, + "##ges": 8449, + "##ching": 8450, + "smiles": 8451, + "delaware": 8452, + "singers": 8453, + "##ets": 8454, + "approaching": 8455, + "assists": 8456, + "flame": 8457, + "##ph": 8458, + "boulevard": 8459, + "barrel": 8460, + "planted": 8461, + "##ome": 8462, + "pursuit": 8463, + "##sia": 8464, + "consequences": 8465, + "posts": 8466, + "shallow": 8467, + "invitation": 8468, + "rode": 8469, + "depot": 8470, + "ernest": 8471, + "kane": 8472, + "rod": 8473, + "concepts": 8474, + "preston": 8475, + "topic": 8476, + "chambers": 8477, + "striking": 8478, + "blast": 8479, + "arrives": 8480, + "descendants": 8481, + "montgomery": 8482, + "ranges": 8483, + "worlds": 8484, + "##lay": 8485, + "##ari": 8486, + "span": 8487, + "chaos": 8488, + "praise": 8489, + "##ag": 8490, + "fewer": 8491, + "1855": 8492, + "sanctuary": 8493, + "mud": 8494, + "fbi": 8495, + "##ions": 8496, + "programmes": 8497, + "maintaining": 8498, + "unity": 8499, + "harper": 8500, + "bore": 8501, + "handsome": 8502, + "closure": 8503, + "tournaments": 8504, + "thunder": 8505, + "nebraska": 8506, + "linda": 8507, + "facade": 8508, + "puts": 8509, + "satisfied": 8510, + "argentine": 8511, + "dale": 8512, + "cork": 8513, + "dome": 8514, + "panama": 8515, + "##yl": 8516, + "1858": 8517, + "tasks": 8518, + "experts": 8519, + "##ates": 8520, + "feeding": 8521, + "equation": 8522, + "##las": 8523, + "##ida": 8524, + "##tu": 8525, + "engage": 8526, + "bryan": 8527, + "##ax": 8528, + "um": 8529, + "quartet": 8530, + "melody": 8531, + "disbanded": 8532, + "sheffield": 8533, + "blocked": 8534, + "gasped": 8535, + "delay": 8536, + "kisses": 8537, + "maggie": 8538, + "connects": 8539, + "##non": 8540, + "sts": 8541, + "poured": 8542, + "creator": 8543, + "publishers": 8544, + "##we": 8545, + "guided": 8546, + "ellis": 8547, + "extinct": 8548, + "hug": 8549, + "gaining": 8550, + "##ord": 8551, + "complicated": 8552, + "##bility": 8553, + "poll": 8554, + "clenched": 8555, + "investigate": 8556, + "##use": 8557, + "thereby": 8558, + "quantum": 8559, + "spine": 8560, + "cdp": 8561, + "humor": 8562, + "kills": 8563, + "administered": 8564, + "semifinals": 8565, + "##du": 8566, + "encountered": 8567, + "ignore": 8568, + "##bu": 8569, + "commentary": 8570, + "##maker": 8571, + "bother": 8572, + "roosevelt": 8573, + "140": 8574, + "plains": 8575, + "halfway": 8576, + "flowing": 8577, + "cultures": 8578, + "crack": 8579, + "imprisoned": 8580, + "neighboring": 8581, + "airline": 8582, + "##ses": 8583, + "##view": 8584, + "##mate": 8585, + "##ec": 8586, + "gather": 8587, + "wolves": 8588, + "marathon": 8589, + "transformed": 8590, + "##ill": 8591, + "cruise": 8592, + "organisations": 8593, + "carol": 8594, + "punch": 8595, + "exhibitions": 8596, + "numbered": 8597, + "alarm": 8598, + "ratings": 8599, + "daddy": 8600, + "silently": 8601, + "##stein": 8602, + "queens": 8603, + "colours": 8604, + "impression": 8605, + "guidance": 8606, + "liu": 8607, + "tactical": 8608, + "##rat": 8609, + "marshal": 8610, + "della": 8611, + "arrow": 8612, + "##ings": 8613, + "rested": 8614, + "feared": 8615, + "tender": 8616, + "owns": 8617, + "bitter": 8618, + "advisor": 8619, + "escort": 8620, + "##ides": 8621, + "spare": 8622, + "farms": 8623, + "grants": 8624, + "##ene": 8625, + "dragons": 8626, + "encourage": 8627, + "colleagues": 8628, + "cameras": 8629, + "##und": 8630, + "sucked": 8631, + "pile": 8632, + "spirits": 8633, + "prague": 8634, + "statements": 8635, + "suspension": 8636, + "landmark": 8637, + "fence": 8638, + "torture": 8639, + "recreation": 8640, + "bags": 8641, + "permanently": 8642, + "survivors": 8643, + "pond": 8644, + "spy": 8645, + "predecessor": 8646, + "bombing": 8647, + "coup": 8648, + "##og": 8649, + "protecting": 8650, + "transformation": 8651, + "glow": 8652, + "##lands": 8653, + "##book": 8654, + "dug": 8655, + "priests": 8656, + "andrea": 8657, + "feat": 8658, + "barn": 8659, + "jumping": 8660, + "##chen": 8661, + "##ologist": 8662, + "##con": 8663, + "casualties": 8664, + "stern": 8665, + "auckland": 8666, + "pipe": 8667, + "serie": 8668, + "revealing": 8669, + "ba": 8670, + "##bel": 8671, + "trevor": 8672, + "mercy": 8673, + "spectrum": 8674, + "yang": 8675, + "consist": 8676, + "governing": 8677, + "collaborated": 8678, + "possessed": 8679, + "epic": 8680, + "comprises": 8681, + "blew": 8682, + "shane": 8683, + "##ack": 8684, + "lopez": 8685, + "honored": 8686, + "magical": 8687, + "sacrifice": 8688, + "judgment": 8689, + "perceived": 8690, + "hammer": 8691, + "mtv": 8692, + "baronet": 8693, + "tune": 8694, + "das": 8695, + "missionary": 8696, + "sheets": 8697, + "350": 8698, + "neutral": 8699, + "oral": 8700, + "threatening": 8701, + "attractive": 8702, + "shade": 8703, + "aims": 8704, + "seminary": 8705, + "##master": 8706, + "estates": 8707, + "1856": 8708, + "michel": 8709, + "wounds": 8710, + "refugees": 8711, + "manufacturers": 8712, + "##nic": 8713, + "mercury": 8714, + "syndrome": 8715, + "porter": 8716, + "##iya": 8717, + "##din": 8718, + "hamburg": 8719, + "identification": 8720, + "upstairs": 8721, + "purse": 8722, + "widened": 8723, + "pause": 8724, + "cared": 8725, + "breathed": 8726, + "affiliate": 8727, + "santiago": 8728, + "prevented": 8729, + "celtic": 8730, + "fisher": 8731, + "125": 8732, + "recruited": 8733, + "byzantine": 8734, + "reconstruction": 8735, + "farther": 8736, + "##mp": 8737, + "diet": 8738, + "sake": 8739, + "au": 8740, + "spite": 8741, + "sensation": 8742, + "##ert": 8743, + "blank": 8744, + "separation": 8745, + "105": 8746, + "##hon": 8747, + "vladimir": 8748, + "armies": 8749, + "anime": 8750, + "##lie": 8751, + "accommodate": 8752, + "orbit": 8753, + "cult": 8754, + "sofia": 8755, + "archive": 8756, + "##ify": 8757, + "##box": 8758, + "founders": 8759, + "sustained": 8760, + "disorder": 8761, + "honours": 8762, + "northeastern": 8763, + "mia": 8764, + "crops": 8765, + "violet": 8766, + "threats": 8767, + "blanket": 8768, + "fires": 8769, + "canton": 8770, + "followers": 8771, + "southwestern": 8772, + "prototype": 8773, + "voyage": 8774, + "assignment": 8775, + "altered": 8776, + "moderate": 8777, + "protocol": 8778, + "pistol": 8779, + "##eo": 8780, + "questioned": 8781, + "brass": 8782, + "lifting": 8783, + "1852": 8784, + "math": 8785, + "authored": 8786, + "##ual": 8787, + "doug": 8788, + "dimensional": 8789, + "dynamic": 8790, + "##san": 8791, + "1851": 8792, + "pronounced": 8793, + "grateful": 8794, + "quest": 8795, + "uncomfortable": 8796, + "boom": 8797, + "presidency": 8798, + "stevens": 8799, + "relating": 8800, + "politicians": 8801, + "chen": 8802, + "barrier": 8803, + "quinn": 8804, + "diana": 8805, + "mosque": 8806, + "tribal": 8807, + "cheese": 8808, + "palmer": 8809, + "portions": 8810, + "sometime": 8811, + "chester": 8812, + "treasure": 8813, + "wu": 8814, + "bend": 8815, + "download": 8816, + "millions": 8817, + "reforms": 8818, + "registration": 8819, + "##osa": 8820, + "consequently": 8821, + "monitoring": 8822, + "ate": 8823, + "preliminary": 8824, + "brandon": 8825, + "invented": 8826, + "ps": 8827, + "eaten": 8828, + "exterior": 8829, + "intervention": 8830, + "ports": 8831, + "documented": 8832, + "log": 8833, + "displays": 8834, + "lecture": 8835, + "sally": 8836, + "favourite": 8837, + "##itz": 8838, + "vermont": 8839, + "lo": 8840, + "invisible": 8841, + "isle": 8842, + "breed": 8843, + "##ator": 8844, + "journalists": 8845, + "relay": 8846, + "speaks": 8847, + "backward": 8848, + "explore": 8849, + "midfielder": 8850, + "actively": 8851, + "stefan": 8852, + "procedures": 8853, + "cannon": 8854, + "blond": 8855, + "kenneth": 8856, + "centered": 8857, + "servants": 8858, + "chains": 8859, + "libraries": 8860, + "malcolm": 8861, + "essex": 8862, + "henri": 8863, + "slavery": 8864, + "##hal": 8865, + "facts": 8866, + "fairy": 8867, + "coached": 8868, + "cassie": 8869, + "cats": 8870, + "washed": 8871, + "cop": 8872, + "##fi": 8873, + "announcement": 8874, + "item": 8875, + "2000s": 8876, + "vinyl": 8877, + "activated": 8878, + "marco": 8879, + "frontier": 8880, + "growled": 8881, + "curriculum": 8882, + "##das": 8883, + "loyal": 8884, + "accomplished": 8885, + "leslie": 8886, + "ritual": 8887, + "kenny": 8888, + "##00": 8889, + "vii": 8890, + "napoleon": 8891, + "hollow": 8892, + "hybrid": 8893, + "jungle": 8894, + "stationed": 8895, + "friedrich": 8896, + "counted": 8897, + "##ulated": 8898, + "platinum": 8899, + "theatrical": 8900, + "seated": 8901, + "col": 8902, + "rubber": 8903, + "glen": 8904, + "1840": 8905, + "diversity": 8906, + "healing": 8907, + "extends": 8908, + "id": 8909, + "provisions": 8910, + "administrator": 8911, + "columbus": 8912, + "##oe": 8913, + "tributary": 8914, + "te": 8915, + "assured": 8916, + "org": 8917, + "##uous": 8918, + "prestigious": 8919, + "examined": 8920, + "lectures": 8921, + "grammy": 8922, + "ronald": 8923, + "associations": 8924, + "bailey": 8925, + "allan": 8926, + "essays": 8927, + "flute": 8928, + "believing": 8929, + "consultant": 8930, + "proceedings": 8931, + "travelling": 8932, + "1853": 8933, + "kit": 8934, + "kerala": 8935, + "yugoslavia": 8936, + "buddy": 8937, + "methodist": 8938, + "##ith": 8939, + "burial": 8940, + "centres": 8941, + "batman": 8942, + "##nda": 8943, + "discontinued": 8944, + "bo": 8945, + "dock": 8946, + "stockholm": 8947, + "lungs": 8948, + "severely": 8949, + "##nk": 8950, + "citing": 8951, + "manga": 8952, + "##ugh": 8953, + "steal": 8954, + "mumbai": 8955, + "iraqi": 8956, + "robot": 8957, + "celebrity": 8958, + "bride": 8959, + "broadcasts": 8960, + "abolished": 8961, + "pot": 8962, + "joel": 8963, + "overhead": 8964, + "franz": 8965, + "packed": 8966, + "reconnaissance": 8967, + "johann": 8968, + "acknowledged": 8969, + "introduce": 8970, + "handled": 8971, + "doctorate": 8972, + "developments": 8973, + "drinks": 8974, + "alley": 8975, + "palestine": 8976, + "##nis": 8977, + "##aki": 8978, + "proceeded": 8979, + "recover": 8980, + "bradley": 8981, + "grain": 8982, + "patch": 8983, + "afford": 8984, + "infection": 8985, + "nationalist": 8986, + "legendary": 8987, + "##ath": 8988, + "interchange": 8989, + "virtually": 8990, + "gen": 8991, + "gravity": 8992, + "exploration": 8993, + "amber": 8994, + "vital": 8995, + "wishes": 8996, + "powell": 8997, + "doctrine": 8998, + "elbow": 8999, + "screenplay": 9000, + "##bird": 9001, + "contribute": 9002, + "indonesian": 9003, + "pet": 9004, + "creates": 9005, + "##com": 9006, + "enzyme": 9007, + "kylie": 9008, + "discipline": 9009, + "drops": 9010, + "manila": 9011, + "hunger": 9012, + "##ien": 9013, + "layers": 9014, + "suffer": 9015, + "fever": 9016, + "bits": 9017, + "monica": 9018, + "keyboard": 9019, + "manages": 9020, + "##hood": 9021, + "searched": 9022, + "appeals": 9023, + "##bad": 9024, + "testament": 9025, + "grande": 9026, + "reid": 9027, + "##war": 9028, + "beliefs": 9029, + "congo": 9030, + "##ification": 9031, + "##dia": 9032, + "si": 9033, + "requiring": 9034, + "##via": 9035, + "casey": 9036, + "1849": 9037, + "regret": 9038, + "streak": 9039, + "rape": 9040, + "depends": 9041, + "syrian": 9042, + "sprint": 9043, + "pound": 9044, + "tourists": 9045, + "upcoming": 9046, + "pub": 9047, + "##xi": 9048, + "tense": 9049, + "##els": 9050, + "practiced": 9051, + "echo": 9052, + "nationwide": 9053, + "guild": 9054, + "motorcycle": 9055, + "liz": 9056, + "##zar": 9057, + "chiefs": 9058, + "desired": 9059, + "elena": 9060, + "bye": 9061, + "precious": 9062, + "absorbed": 9063, + "relatives": 9064, + "booth": 9065, + "pianist": 9066, + "##mal": 9067, + "citizenship": 9068, + "exhausted": 9069, + "wilhelm": 9070, + "##ceae": 9071, + "##hed": 9072, + "noting": 9073, + "quarterback": 9074, + "urge": 9075, + "hectares": 9076, + "##gue": 9077, + "ace": 9078, + "holly": 9079, + "##tal": 9080, + "blonde": 9081, + "davies": 9082, + "parked": 9083, + "sustainable": 9084, + "stepping": 9085, + "twentieth": 9086, + "airfield": 9087, + "galaxy": 9088, + "nest": 9089, + "chip": 9090, + "##nell": 9091, + "tan": 9092, + "shaft": 9093, + "paulo": 9094, + "requirement": 9095, + "##zy": 9096, + "paradise": 9097, + "tobacco": 9098, + "trans": 9099, + "renewed": 9100, + "vietnamese": 9101, + "##cker": 9102, + "##ju": 9103, + "suggesting": 9104, + "catching": 9105, + "holmes": 9106, + "enjoying": 9107, + "md": 9108, + "trips": 9109, + "colt": 9110, + "holder": 9111, + "butterfly": 9112, + "nerve": 9113, + "reformed": 9114, + "cherry": 9115, + "bowling": 9116, + "trailer": 9117, + "carriage": 9118, + "goodbye": 9119, + "appreciate": 9120, + "toy": 9121, + "joshua": 9122, + "interactive": 9123, + "enabled": 9124, + "involve": 9125, + "##kan": 9126, + "collar": 9127, + "determination": 9128, + "bunch": 9129, + "facebook": 9130, + "recall": 9131, + "shorts": 9132, + "superintendent": 9133, + "episcopal": 9134, + "frustration": 9135, + "giovanni": 9136, + "nineteenth": 9137, + "laser": 9138, + "privately": 9139, + "array": 9140, + "circulation": 9141, + "##ovic": 9142, + "armstrong": 9143, + "deals": 9144, + "painful": 9145, + "permit": 9146, + "discrimination": 9147, + "##wi": 9148, + "aires": 9149, + "retiring": 9150, + "cottage": 9151, + "ni": 9152, + "##sta": 9153, + "horizon": 9154, + "ellen": 9155, + "jamaica": 9156, + "ripped": 9157, + "fernando": 9158, + "chapters": 9159, + "playstation": 9160, + "patron": 9161, + "lecturer": 9162, + "navigation": 9163, + "behaviour": 9164, + "genes": 9165, + "georgian": 9166, + "export": 9167, + "solomon": 9168, + "rivals": 9169, + "swift": 9170, + "seventeen": 9171, + "rodriguez": 9172, + "princeton": 9173, + "independently": 9174, + "sox": 9175, + "1847": 9176, + "arguing": 9177, + "entity": 9178, + "casting": 9179, + "hank": 9180, + "criteria": 9181, + "oakland": 9182, + "geographic": 9183, + "milwaukee": 9184, + "reflection": 9185, + "expanding": 9186, + "conquest": 9187, + "dubbed": 9188, + "##tv": 9189, + "halt": 9190, + "brave": 9191, + "brunswick": 9192, + "doi": 9193, + "arched": 9194, + "curtis": 9195, + "divorced": 9196, + "predominantly": 9197, + "somerset": 9198, + "streams": 9199, + "ugly": 9200, + "zoo": 9201, + "horrible": 9202, + "curved": 9203, + "buenos": 9204, + "fierce": 9205, + "dictionary": 9206, + "vector": 9207, + "theological": 9208, + "unions": 9209, + "handful": 9210, + "stability": 9211, + "chan": 9212, + "punjab": 9213, + "segments": 9214, + "##lly": 9215, + "altar": 9216, + "ignoring": 9217, + "gesture": 9218, + "monsters": 9219, + "pastor": 9220, + "##stone": 9221, + "thighs": 9222, + "unexpected": 9223, + "operators": 9224, + "abruptly": 9225, + "coin": 9226, + "compiled": 9227, + "associates": 9228, + "improving": 9229, + "migration": 9230, + "pin": 9231, + "##ose": 9232, + "compact": 9233, + "collegiate": 9234, + "reserved": 9235, + "##urs": 9236, + "quarterfinals": 9237, + "roster": 9238, + "restore": 9239, + "assembled": 9240, + "hurry": 9241, + "oval": 9242, + "##cies": 9243, + "1846": 9244, + "flags": 9245, + "martha": 9246, + "##del": 9247, + "victories": 9248, + "sharply": 9249, + "##rated": 9250, + "argues": 9251, + "deadly": 9252, + "neo": 9253, + "drawings": 9254, + "symbols": 9255, + "performer": 9256, + "##iel": 9257, + "griffin": 9258, + "restrictions": 9259, + "editing": 9260, + "andrews": 9261, + "java": 9262, + "journals": 9263, + "arabia": 9264, + "compositions": 9265, + "dee": 9266, + "pierce": 9267, + "removing": 9268, + "hindi": 9269, + "casino": 9270, + "runway": 9271, + "civilians": 9272, + "minds": 9273, + "nasa": 9274, + "hotels": 9275, + "##zation": 9276, + "refuge": 9277, + "rent": 9278, + "retain": 9279, + "potentially": 9280, + "conferences": 9281, + "suburban": 9282, + "conducting": 9283, + "##tto": 9284, + "##tions": 9285, + "##tle": 9286, + "descended": 9287, + "massacre": 9288, + "##cal": 9289, + "ammunition": 9290, + "terrain": 9291, + "fork": 9292, + "souls": 9293, + "counts": 9294, + "chelsea": 9295, + "durham": 9296, + "drives": 9297, + "cab": 9298, + "##bank": 9299, + "perth": 9300, + "realizing": 9301, + "palestinian": 9302, + "finn": 9303, + "simpson": 9304, + "##dal": 9305, + "betty": 9306, + "##ule": 9307, + "moreover": 9308, + "particles": 9309, + "cardinals": 9310, + "tent": 9311, + "evaluation": 9312, + "extraordinary": 9313, + "##oid": 9314, + "inscription": 9315, + "##works": 9316, + "wednesday": 9317, + "chloe": 9318, + "maintains": 9319, + "panels": 9320, + "ashley": 9321, + "trucks": 9322, + "##nation": 9323, + "cluster": 9324, + "sunlight": 9325, + "strikes": 9326, + "zhang": 9327, + "##wing": 9328, + "dialect": 9329, + "canon": 9330, + "##ap": 9331, + "tucked": 9332, + "##ws": 9333, + "collecting": 9334, + "##mas": 9335, + "##can": 9336, + "##sville": 9337, + "maker": 9338, + "quoted": 9339, + "evan": 9340, + "franco": 9341, + "aria": 9342, + "buying": 9343, + "cleaning": 9344, + "eva": 9345, + "closet": 9346, + "provision": 9347, + "apollo": 9348, + "clinic": 9349, + "rat": 9350, + "##ez": 9351, + "necessarily": 9352, + "ac": 9353, + "##gle": 9354, + "##ising": 9355, + "venues": 9356, + "flipped": 9357, + "cent": 9358, + "spreading": 9359, + "trustees": 9360, + "checking": 9361, + "authorized": 9362, + "##sco": 9363, + "disappointed": 9364, + "##ado": 9365, + "notion": 9366, + "duration": 9367, + "trumpet": 9368, + "hesitated": 9369, + "topped": 9370, + "brussels": 9371, + "rolls": 9372, + "theoretical": 9373, + "hint": 9374, + "define": 9375, + "aggressive": 9376, + "repeat": 9377, + "wash": 9378, + "peaceful": 9379, + "optical": 9380, + "width": 9381, + "allegedly": 9382, + "mcdonald": 9383, + "strict": 9384, + "copyright": 9385, + "##illa": 9386, + "investors": 9387, + "mar": 9388, + "jam": 9389, + "witnesses": 9390, + "sounding": 9391, + "miranda": 9392, + "michelle": 9393, + "privacy": 9394, + "hugo": 9395, + "harmony": 9396, + "##pp": 9397, + "valid": 9398, + "lynn": 9399, + "glared": 9400, + "nina": 9401, + "102": 9402, + "headquartered": 9403, + "diving": 9404, + "boarding": 9405, + "gibson": 9406, + "##ncy": 9407, + "albanian": 9408, + "marsh": 9409, + "routine": 9410, + "dealt": 9411, + "enhanced": 9412, + "er": 9413, + "intelligent": 9414, + "substance": 9415, + "targeted": 9416, + "enlisted": 9417, + "discovers": 9418, + "spinning": 9419, + "observations": 9420, + "pissed": 9421, + "smoking": 9422, + "rebecca": 9423, + "capitol": 9424, + "visa": 9425, + "varied": 9426, + "costume": 9427, + "seemingly": 9428, + "indies": 9429, + "compensation": 9430, + "surgeon": 9431, + "thursday": 9432, + "arsenal": 9433, + "westminster": 9434, + "suburbs": 9435, + "rid": 9436, + "anglican": 9437, + "##ridge": 9438, + "knots": 9439, + "foods": 9440, + "alumni": 9441, + "lighter": 9442, + "fraser": 9443, + "whoever": 9444, + "portal": 9445, + "scandal": 9446, + "##ray": 9447, + "gavin": 9448, + "advised": 9449, + "instructor": 9450, + "flooding": 9451, + "terrorist": 9452, + "##ale": 9453, + "teenage": 9454, + "interim": 9455, + "senses": 9456, + "duck": 9457, + "teen": 9458, + "thesis": 9459, + "abby": 9460, + "eager": 9461, + "overcome": 9462, + "##ile": 9463, + "newport": 9464, + "glenn": 9465, + "rises": 9466, + "shame": 9467, + "##cc": 9468, + "prompted": 9469, + "priority": 9470, + "forgot": 9471, + "bomber": 9472, + "nicolas": 9473, + "protective": 9474, + "360": 9475, + "cartoon": 9476, + "katherine": 9477, + "breeze": 9478, + "lonely": 9479, + "trusted": 9480, + "henderson": 9481, + "richardson": 9482, + "relax": 9483, + "banner": 9484, + "candy": 9485, + "palms": 9486, + "remarkable": 9487, + "##rio": 9488, + "legends": 9489, + "cricketer": 9490, + "essay": 9491, + "ordained": 9492, + "edmund": 9493, + "rifles": 9494, + "trigger": 9495, + "##uri": 9496, + "##away": 9497, + "sail": 9498, + "alert": 9499, + "1830": 9500, + "audiences": 9501, + "penn": 9502, + "sussex": 9503, + "siblings": 9504, + "pursued": 9505, + "indianapolis": 9506, + "resist": 9507, + "rosa": 9508, + "consequence": 9509, + "succeed": 9510, + "avoided": 9511, + "1845": 9512, + "##ulation": 9513, + "inland": 9514, + "##tie": 9515, + "##nna": 9516, + "counsel": 9517, + "profession": 9518, + "chronicle": 9519, + "hurried": 9520, + "##una": 9521, + "eyebrow": 9522, + "eventual": 9523, + "bleeding": 9524, + "innovative": 9525, + "cure": 9526, + "##dom": 9527, + "committees": 9528, + "accounting": 9529, + "con": 9530, + "scope": 9531, + "hardy": 9532, + "heather": 9533, + "tenor": 9534, + "gut": 9535, + "herald": 9536, + "codes": 9537, + "tore": 9538, + "scales": 9539, + "wagon": 9540, + "##oo": 9541, + "luxury": 9542, + "tin": 9543, + "prefer": 9544, + "fountain": 9545, + "triangle": 9546, + "bonds": 9547, + "darling": 9548, + "convoy": 9549, + "dried": 9550, + "traced": 9551, + "beings": 9552, + "troy": 9553, + "accidentally": 9554, + "slam": 9555, + "findings": 9556, + "smelled": 9557, + "joey": 9558, + "lawyers": 9559, + "outcome": 9560, + "steep": 9561, + "bosnia": 9562, + "configuration": 9563, + "shifting": 9564, + "toll": 9565, + "brook": 9566, + "performers": 9567, + "lobby": 9568, + "philosophical": 9569, + "construct": 9570, + "shrine": 9571, + "aggregate": 9572, + "boot": 9573, + "cox": 9574, + "phenomenon": 9575, + "savage": 9576, + "insane": 9577, + "solely": 9578, + "reynolds": 9579, + "lifestyle": 9580, + "##ima": 9581, + "nationally": 9582, + "holdings": 9583, + "consideration": 9584, + "enable": 9585, + "edgar": 9586, + "mo": 9587, + "mama": 9588, + "##tein": 9589, + "fights": 9590, + "relegation": 9591, + "chances": 9592, + "atomic": 9593, + "hub": 9594, + "conjunction": 9595, + "awkward": 9596, + "reactions": 9597, + "currency": 9598, + "finale": 9599, + "kumar": 9600, + "underwent": 9601, + "steering": 9602, + "elaborate": 9603, + "gifts": 9604, + "comprising": 9605, + "melissa": 9606, + "veins": 9607, + "reasonable": 9608, + "sunshine": 9609, + "chi": 9610, + "solve": 9611, + "trails": 9612, + "inhabited": 9613, + "elimination": 9614, + "ethics": 9615, + "huh": 9616, + "ana": 9617, + "molly": 9618, + "consent": 9619, + "apartments": 9620, + "layout": 9621, + "marines": 9622, + "##ces": 9623, + "hunters": 9624, + "bulk": 9625, + "##oma": 9626, + "hometown": 9627, + "##wall": 9628, + "##mont": 9629, + "cracked": 9630, + "reads": 9631, + "neighbouring": 9632, + "withdrawn": 9633, + "admission": 9634, + "wingspan": 9635, + "damned": 9636, + "anthology": 9637, + "lancashire": 9638, + "brands": 9639, + "batting": 9640, + "forgive": 9641, + "cuban": 9642, + "awful": 9643, + "##lyn": 9644, + "104": 9645, + "dimensions": 9646, + "imagination": 9647, + "##ade": 9648, + "dante": 9649, + "##ship": 9650, + "tracking": 9651, + "desperately": 9652, + "goalkeeper": 9653, + "##yne": 9654, + "groaned": 9655, + "workshops": 9656, + "confident": 9657, + "burton": 9658, + "gerald": 9659, + "milton": 9660, + "circus": 9661, + "uncertain": 9662, + "slope": 9663, + "copenhagen": 9664, + "sophia": 9665, + "fog": 9666, + "philosopher": 9667, + "portraits": 9668, + "accent": 9669, + "cycling": 9670, + "varying": 9671, + "gripped": 9672, + "larvae": 9673, + "garrett": 9674, + "specified": 9675, + "scotia": 9676, + "mature": 9677, + "luther": 9678, + "kurt": 9679, + "rap": 9680, + "##kes": 9681, + "aerial": 9682, + "750": 9683, + "ferdinand": 9684, + "heated": 9685, + "es": 9686, + "transported": 9687, + "##shan": 9688, + "safely": 9689, + "nonetheless": 9690, + "##orn": 9691, + "##gal": 9692, + "motors": 9693, + "demanding": 9694, + "##sburg": 9695, + "startled": 9696, + "##brook": 9697, + "ally": 9698, + "generate": 9699, + "caps": 9700, + "ghana": 9701, + "stained": 9702, + "demo": 9703, + "mentions": 9704, + "beds": 9705, + "ap": 9706, + "afterward": 9707, + "diary": 9708, + "##bling": 9709, + "utility": 9710, + "##iro": 9711, + "richards": 9712, + "1837": 9713, + "conspiracy": 9714, + "conscious": 9715, + "shining": 9716, + "footsteps": 9717, + "observer": 9718, + "cyprus": 9719, + "urged": 9720, + "loyalty": 9721, + "developer": 9722, + "probability": 9723, + "olive": 9724, + "upgraded": 9725, + "gym": 9726, + "miracle": 9727, + "insects": 9728, + "graves": 9729, + "1844": 9730, + "ourselves": 9731, + "hydrogen": 9732, + "amazon": 9733, + "katie": 9734, + "tickets": 9735, + "poets": 9736, + "##pm": 9737, + "planes": 9738, + "##pan": 9739, + "prevention": 9740, + "witnessed": 9741, + "dense": 9742, + "jin": 9743, + "randy": 9744, + "tang": 9745, + "warehouse": 9746, + "monroe": 9747, + "bang": 9748, + "archived": 9749, + "elderly": 9750, + "investigations": 9751, + "alec": 9752, + "granite": 9753, + "mineral": 9754, + "conflicts": 9755, + "controlling": 9756, + "aboriginal": 9757, + "carlo": 9758, + "##zu": 9759, + "mechanics": 9760, + "stan": 9761, + "stark": 9762, + "rhode": 9763, + "skirt": 9764, + "est": 9765, + "##berry": 9766, + "bombs": 9767, + "respected": 9768, + "##horn": 9769, + "imposed": 9770, + "limestone": 9771, + "deny": 9772, + "nominee": 9773, + "memphis": 9774, + "grabbing": 9775, + "disabled": 9776, + "##als": 9777, + "amusement": 9778, + "aa": 9779, + "frankfurt": 9780, + "corn": 9781, + "referendum": 9782, + "varies": 9783, + "slowed": 9784, + "disk": 9785, + "firms": 9786, + "unconscious": 9787, + "incredible": 9788, + "clue": 9789, + "sue": 9790, + "##zhou": 9791, + "twist": 9792, + "##cio": 9793, + "joins": 9794, + "idaho": 9795, + "chad": 9796, + "developers": 9797, + "computing": 9798, + "destroyer": 9799, + "103": 9800, + "mortal": 9801, + "tucker": 9802, + "kingston": 9803, + "choices": 9804, + "yu": 9805, + "carson": 9806, + "1800": 9807, + "os": 9808, + "whitney": 9809, + "geneva": 9810, + "pretend": 9811, + "dimension": 9812, + "staged": 9813, + "plateau": 9814, + "maya": 9815, + "##une": 9816, + "freestyle": 9817, + "##bc": 9818, + "rovers": 9819, + "hiv": 9820, + "##ids": 9821, + "tristan": 9822, + "classroom": 9823, + "prospect": 9824, + "##hus": 9825, + "honestly": 9826, + "diploma": 9827, + "lied": 9828, + "thermal": 9829, + "auxiliary": 9830, + "feast": 9831, + "unlikely": 9832, + "iata": 9833, + "##tel": 9834, + "morocco": 9835, + "pounding": 9836, + "treasury": 9837, + "lithuania": 9838, + "considerably": 9839, + "1841": 9840, + "dish": 9841, + "1812": 9842, + "geological": 9843, + "matching": 9844, + "stumbled": 9845, + "destroying": 9846, + "marched": 9847, + "brien": 9848, + "advances": 9849, + "cake": 9850, + "nicole": 9851, + "belle": 9852, + "settling": 9853, + "measuring": 9854, + "directing": 9855, + "##mie": 9856, + "tuesday": 9857, + "bassist": 9858, + "capabilities": 9859, + "stunned": 9860, + "fraud": 9861, + "torpedo": 9862, + "##list": 9863, + "##phone": 9864, + "anton": 9865, + "wisdom": 9866, + "surveillance": 9867, + "ruined": 9868, + "##ulate": 9869, + "lawsuit": 9870, + "healthcare": 9871, + "theorem": 9872, + "halls": 9873, + "trend": 9874, + "aka": 9875, + "horizontal": 9876, + "dozens": 9877, + "acquire": 9878, + "lasting": 9879, + "swim": 9880, + "hawk": 9881, + "gorgeous": 9882, + "fees": 9883, + "vicinity": 9884, + "decrease": 9885, + "adoption": 9886, + "tactics": 9887, + "##ography": 9888, + "pakistani": 9889, + "##ole": 9890, + "draws": 9891, + "##hall": 9892, + "willie": 9893, + "burke": 9894, + "heath": 9895, + "algorithm": 9896, + "integral": 9897, + "powder": 9898, + "elliott": 9899, + "brigadier": 9900, + "jackie": 9901, + "tate": 9902, + "varieties": 9903, + "darker": 9904, + "##cho": 9905, + "lately": 9906, + "cigarette": 9907, + "specimens": 9908, + "adds": 9909, + "##ree": 9910, + "##ensis": 9911, + "##inger": 9912, + "exploded": 9913, + "finalist": 9914, + "cia": 9915, + "murders": 9916, + "wilderness": 9917, + "arguments": 9918, + "nicknamed": 9919, + "acceptance": 9920, + "onwards": 9921, + "manufacture": 9922, + "robertson": 9923, + "jets": 9924, + "tampa": 9925, + "enterprises": 9926, + "blog": 9927, + "loudly": 9928, + "composers": 9929, + "nominations": 9930, + "1838": 9931, + "ai": 9932, + "malta": 9933, + "inquiry": 9934, + "automobile": 9935, + "hosting": 9936, + "viii": 9937, + "rays": 9938, + "tilted": 9939, + "grief": 9940, + "museums": 9941, + "strategies": 9942, + "furious": 9943, + "euro": 9944, + "equality": 9945, + "cohen": 9946, + "poison": 9947, + "surrey": 9948, + "wireless": 9949, + "governed": 9950, + "ridiculous": 9951, + "moses": 9952, + "##esh": 9953, + "##room": 9954, + "vanished": 9955, + "##ito": 9956, + "barnes": 9957, + "attract": 9958, + "morrison": 9959, + "istanbul": 9960, + "##iness": 9961, + "absent": 9962, + "rotation": 9963, + "petition": 9964, + "janet": 9965, + "##logical": 9966, + "satisfaction": 9967, + "custody": 9968, + "deliberately": 9969, + "observatory": 9970, + "comedian": 9971, + "surfaces": 9972, + "pinyin": 9973, + "novelist": 9974, + "strictly": 9975, + "canterbury": 9976, + "oslo": 9977, + "monks": 9978, + "embrace": 9979, + "ibm": 9980, + "jealous": 9981, + "photograph": 9982, + "continent": 9983, + "dorothy": 9984, + "marina": 9985, + "doc": 9986, + "excess": 9987, + "holden": 9988, + "allegations": 9989, + "explaining": 9990, + "stack": 9991, + "avoiding": 9992, + "lance": 9993, + "storyline": 9994, + "majesty": 9995, + "poorly": 9996, + "spike": 9997, + "dos": 9998, + "bradford": 9999, + "raven": 10000, + "travis": 10001, + "classics": 10002, + "proven": 10003, + "voltage": 10004, + "pillow": 10005, + "fists": 10006, + "butt": 10007, + "1842": 10008, + "interpreted": 10009, + "##car": 10010, + "1839": 10011, + "gage": 10012, + "telegraph": 10013, + "lens": 10014, + "promising": 10015, + "expelled": 10016, + "casual": 10017, + "collector": 10018, + "zones": 10019, + "##min": 10020, + "silly": 10021, + "nintendo": 10022, + "##kh": 10023, + "##bra": 10024, + "downstairs": 10025, + "chef": 10026, + "suspicious": 10027, + "afl": 10028, + "flies": 10029, + "vacant": 10030, + "uganda": 10031, + "pregnancy": 10032, + "condemned": 10033, + "lutheran": 10034, + "estimates": 10035, + "cheap": 10036, + "decree": 10037, + "saxon": 10038, + "proximity": 10039, + "stripped": 10040, + "idiot": 10041, + "deposits": 10042, + "contrary": 10043, + "presenter": 10044, + "magnus": 10045, + "glacier": 10046, + "im": 10047, + "offense": 10048, + "edwin": 10049, + "##ori": 10050, + "upright": 10051, + "##long": 10052, + "bolt": 10053, + "##ois": 10054, + "toss": 10055, + "geographical": 10056, + "##izes": 10057, + "environments": 10058, + "delicate": 10059, + "marking": 10060, + "abstract": 10061, + "xavier": 10062, + "nails": 10063, + "windsor": 10064, + "plantation": 10065, + "occurring": 10066, + "equity": 10067, + "saskatchewan": 10068, + "fears": 10069, + "drifted": 10070, + "sequences": 10071, + "vegetation": 10072, + "revolt": 10073, + "##stic": 10074, + "1843": 10075, + "sooner": 10076, + "fusion": 10077, + "opposing": 10078, + "nato": 10079, + "skating": 10080, + "1836": 10081, + "secretly": 10082, + "ruin": 10083, + "lease": 10084, + "##oc": 10085, + "edit": 10086, + "##nne": 10087, + "flora": 10088, + "anxiety": 10089, + "ruby": 10090, + "##ological": 10091, + "##mia": 10092, + "tel": 10093, + "bout": 10094, + "taxi": 10095, + "emmy": 10096, + "frost": 10097, + "rainbow": 10098, + "compounds": 10099, + "foundations": 10100, + "rainfall": 10101, + "assassination": 10102, + "nightmare": 10103, + "dominican": 10104, + "##win": 10105, + "achievements": 10106, + "deserve": 10107, + "orlando": 10108, + "intact": 10109, + "armenia": 10110, + "##nte": 10111, + "calgary": 10112, + "valentine": 10113, + "106": 10114, + "marion": 10115, + "proclaimed": 10116, + "theodore": 10117, + "bells": 10118, + "courtyard": 10119, + "thigh": 10120, + "gonzalez": 10121, + "console": 10122, + "troop": 10123, + "minimal": 10124, + "monte": 10125, + "everyday": 10126, + "##ence": 10127, + "##if": 10128, + "supporter": 10129, + "terrorism": 10130, + "buck": 10131, + "openly": 10132, + "presbyterian": 10133, + "activists": 10134, + "carpet": 10135, + "##iers": 10136, + "rubbing": 10137, + "uprising": 10138, + "##yi": 10139, + "cute": 10140, + "conceived": 10141, + "legally": 10142, + "##cht": 10143, + "millennium": 10144, + "cello": 10145, + "velocity": 10146, + "ji": 10147, + "rescued": 10148, + "cardiff": 10149, + "1835": 10150, + "rex": 10151, + "concentrate": 10152, + "senators": 10153, + "beard": 10154, + "rendered": 10155, + "glowing": 10156, + "battalions": 10157, + "scouts": 10158, + "competitors": 10159, + "sculptor": 10160, + "catalogue": 10161, + "arctic": 10162, + "ion": 10163, + "raja": 10164, + "bicycle": 10165, + "wow": 10166, + "glancing": 10167, + "lawn": 10168, + "##woman": 10169, + "gentleman": 10170, + "lighthouse": 10171, + "publish": 10172, + "predicted": 10173, + "calculated": 10174, + "##val": 10175, + "variants": 10176, + "##gne": 10177, + "strain": 10178, + "##ui": 10179, + "winston": 10180, + "deceased": 10181, + "##nus": 10182, + "touchdowns": 10183, + "brady": 10184, + "caleb": 10185, + "sinking": 10186, + "echoed": 10187, + "crush": 10188, + "hon": 10189, + "blessed": 10190, + "protagonist": 10191, + "hayes": 10192, + "endangered": 10193, + "magnitude": 10194, + "editors": 10195, + "##tine": 10196, + "estimate": 10197, + "responsibilities": 10198, + "##mel": 10199, + "backup": 10200, + "laying": 10201, + "consumed": 10202, + "sealed": 10203, + "zurich": 10204, + "lovers": 10205, + "frustrated": 10206, + "##eau": 10207, + "ahmed": 10208, + "kicking": 10209, + "mit": 10210, + "treasurer": 10211, + "1832": 10212, + "biblical": 10213, + "refuse": 10214, + "terrified": 10215, + "pump": 10216, + "agrees": 10217, + "genuine": 10218, + "imprisonment": 10219, + "refuses": 10220, + "plymouth": 10221, + "##hen": 10222, + "lou": 10223, + "##nen": 10224, + "tara": 10225, + "trembling": 10226, + "antarctic": 10227, + "ton": 10228, + "learns": 10229, + "##tas": 10230, + "crap": 10231, + "crucial": 10232, + "faction": 10233, + "atop": 10234, + "##borough": 10235, + "wrap": 10236, + "lancaster": 10237, + "odds": 10238, + "hopkins": 10239, + "erik": 10240, + "lyon": 10241, + "##eon": 10242, + "bros": 10243, + "##ode": 10244, + "snap": 10245, + "locality": 10246, + "tips": 10247, + "empress": 10248, + "crowned": 10249, + "cal": 10250, + "acclaimed": 10251, + "chuckled": 10252, + "##ory": 10253, + "clara": 10254, + "sends": 10255, + "mild": 10256, + "towel": 10257, + "##fl": 10258, + "##day": 10259, + "##а": 10260, + "wishing": 10261, + "assuming": 10262, + "interviewed": 10263, + "##bal": 10264, + "##die": 10265, + "interactions": 10266, + "eden": 10267, + "cups": 10268, + "helena": 10269, + "##lf": 10270, + "indie": 10271, + "beck": 10272, + "##fire": 10273, + "batteries": 10274, + "filipino": 10275, + "wizard": 10276, + "parted": 10277, + "##lam": 10278, + "traces": 10279, + "##born": 10280, + "rows": 10281, + "idol": 10282, + "albany": 10283, + "delegates": 10284, + "##ees": 10285, + "##sar": 10286, + "discussions": 10287, + "##ex": 10288, + "notre": 10289, + "instructed": 10290, + "belgrade": 10291, + "highways": 10292, + "suggestion": 10293, + "lauren": 10294, + "possess": 10295, + "orientation": 10296, + "alexandria": 10297, + "abdul": 10298, + "beats": 10299, + "salary": 10300, + "reunion": 10301, + "ludwig": 10302, + "alright": 10303, + "wagner": 10304, + "intimate": 10305, + "pockets": 10306, + "slovenia": 10307, + "hugged": 10308, + "brighton": 10309, + "merchants": 10310, + "cruel": 10311, + "stole": 10312, + "trek": 10313, + "slopes": 10314, + "repairs": 10315, + "enrollment": 10316, + "politically": 10317, + "underlying": 10318, + "promotional": 10319, + "counting": 10320, + "boeing": 10321, + "##bb": 10322, + "isabella": 10323, + "naming": 10324, + "##и": 10325, + "keen": 10326, + "bacteria": 10327, + "listing": 10328, + "separately": 10329, + "belfast": 10330, + "ussr": 10331, + "450": 10332, + "lithuanian": 10333, + "anybody": 10334, + "ribs": 10335, + "sphere": 10336, + "martinez": 10337, + "cock": 10338, + "embarrassed": 10339, + "proposals": 10340, + "fragments": 10341, + "nationals": 10342, + "##fs": 10343, + "##wski": 10344, + "premises": 10345, + "fin": 10346, + "1500": 10347, + "alpine": 10348, + "matched": 10349, + "freely": 10350, + "bounded": 10351, + "jace": 10352, + "sleeve": 10353, + "##af": 10354, + "gaming": 10355, + "pier": 10356, + "populated": 10357, + "evident": 10358, + "##like": 10359, + "frances": 10360, + "flooded": 10361, + "##dle": 10362, + "frightened": 10363, + "pour": 10364, + "trainer": 10365, + "framed": 10366, + "visitor": 10367, + "challenging": 10368, + "pig": 10369, + "wickets": 10370, + "##fold": 10371, + "infected": 10372, + "email": 10373, + "##pes": 10374, + "arose": 10375, + "##aw": 10376, + "reward": 10377, + "ecuador": 10378, + "oblast": 10379, + "vale": 10380, + "ch": 10381, + "shuttle": 10382, + "##usa": 10383, + "bach": 10384, + "rankings": 10385, + "forbidden": 10386, + "cornwall": 10387, + "accordance": 10388, + "salem": 10389, + "consumers": 10390, + "bruno": 10391, + "fantastic": 10392, + "toes": 10393, + "machinery": 10394, + "resolved": 10395, + "julius": 10396, + "remembering": 10397, + "propaganda": 10398, + "iceland": 10399, + "bombardment": 10400, + "tide": 10401, + "contacts": 10402, + "wives": 10403, + "##rah": 10404, + "concerto": 10405, + "macdonald": 10406, + "albania": 10407, + "implement": 10408, + "daisy": 10409, + "tapped": 10410, + "sudan": 10411, + "helmet": 10412, + "angela": 10413, + "mistress": 10414, + "##lic": 10415, + "crop": 10416, + "sunk": 10417, + "finest": 10418, + "##craft": 10419, + "hostile": 10420, + "##ute": 10421, + "##tsu": 10422, + "boxer": 10423, + "fr": 10424, + "paths": 10425, + "adjusted": 10426, + "habit": 10427, + "ballot": 10428, + "supervision": 10429, + "soprano": 10430, + "##zen": 10431, + "bullets": 10432, + "wicked": 10433, + "sunset": 10434, + "regiments": 10435, + "disappear": 10436, + "lamp": 10437, + "performs": 10438, + "app": 10439, + "##gia": 10440, + "##oa": 10441, + "rabbit": 10442, + "digging": 10443, + "incidents": 10444, + "entries": 10445, + "##cion": 10446, + "dishes": 10447, + "##oi": 10448, + "introducing": 10449, + "##ati": 10450, + "##fied": 10451, + "freshman": 10452, + "slot": 10453, + "jill": 10454, + "tackles": 10455, + "baroque": 10456, + "backs": 10457, + "##iest": 10458, + "lone": 10459, + "sponsor": 10460, + "destiny": 10461, + "altogether": 10462, + "convert": 10463, + "##aro": 10464, + "consensus": 10465, + "shapes": 10466, + "demonstration": 10467, + "basically": 10468, + "feminist": 10469, + "auction": 10470, + "artifacts": 10471, + "##bing": 10472, + "strongest": 10473, + "twitter": 10474, + "halifax": 10475, + "2019": 10476, + "allmusic": 10477, + "mighty": 10478, + "smallest": 10479, + "precise": 10480, + "alexandra": 10481, + "viola": 10482, + "##los": 10483, + "##ille": 10484, + "manuscripts": 10485, + "##illo": 10486, + "dancers": 10487, + "ari": 10488, + "managers": 10489, + "monuments": 10490, + "blades": 10491, + "barracks": 10492, + "springfield": 10493, + "maiden": 10494, + "consolidated": 10495, + "electron": 10496, + "##end": 10497, + "berry": 10498, + "airing": 10499, + "wheat": 10500, + "nobel": 10501, + "inclusion": 10502, + "blair": 10503, + "payments": 10504, + "geography": 10505, + "bee": 10506, + "cc": 10507, + "eleanor": 10508, + "react": 10509, + "##hurst": 10510, + "afc": 10511, + "manitoba": 10512, + "##yu": 10513, + "su": 10514, + "lineup": 10515, + "fitness": 10516, + "recreational": 10517, + "investments": 10518, + "airborne": 10519, + "disappointment": 10520, + "##dis": 10521, + "edmonton": 10522, + "viewing": 10523, + "##row": 10524, + "renovation": 10525, + "##cast": 10526, + "infant": 10527, + "bankruptcy": 10528, + "roses": 10529, + "aftermath": 10530, + "pavilion": 10531, + "##yer": 10532, + "carpenter": 10533, + "withdrawal": 10534, + "ladder": 10535, + "##hy": 10536, + "discussing": 10537, + "popped": 10538, + "reliable": 10539, + "agreements": 10540, + "rochester": 10541, + "##abad": 10542, + "curves": 10543, + "bombers": 10544, + "220": 10545, + "rao": 10546, + "reverend": 10547, + "decreased": 10548, + "choosing": 10549, + "107": 10550, + "stiff": 10551, + "consulting": 10552, + "naples": 10553, + "crawford": 10554, + "tracy": 10555, + "ka": 10556, + "ribbon": 10557, + "cops": 10558, + "##lee": 10559, + "crushed": 10560, + "deciding": 10561, + "unified": 10562, + "teenager": 10563, + "accepting": 10564, + "flagship": 10565, + "explorer": 10566, + "poles": 10567, + "sanchez": 10568, + "inspection": 10569, + "revived": 10570, + "skilled": 10571, + "induced": 10572, + "exchanged": 10573, + "flee": 10574, + "locals": 10575, + "tragedy": 10576, + "swallow": 10577, + "loading": 10578, + "hanna": 10579, + "demonstrate": 10580, + "##ela": 10581, + "salvador": 10582, + "flown": 10583, + "contestants": 10584, + "civilization": 10585, + "##ines": 10586, + "wanna": 10587, + "rhodes": 10588, + "fletcher": 10589, + "hector": 10590, + "knocking": 10591, + "considers": 10592, + "##ough": 10593, + "nash": 10594, + "mechanisms": 10595, + "sensed": 10596, + "mentally": 10597, + "walt": 10598, + "unclear": 10599, + "##eus": 10600, + "renovated": 10601, + "madame": 10602, + "##cks": 10603, + "crews": 10604, + "governmental": 10605, + "##hin": 10606, + "undertaken": 10607, + "monkey": 10608, + "##ben": 10609, + "##ato": 10610, + "fatal": 10611, + "armored": 10612, + "copa": 10613, + "caves": 10614, + "governance": 10615, + "grasp": 10616, + "perception": 10617, + "certification": 10618, + "froze": 10619, + "damp": 10620, + "tugged": 10621, + "wyoming": 10622, + "##rg": 10623, + "##ero": 10624, + "newman": 10625, + "##lor": 10626, + "nerves": 10627, + "curiosity": 10628, + "graph": 10629, + "115": 10630, + "##ami": 10631, + "withdraw": 10632, + "tunnels": 10633, + "dull": 10634, + "meredith": 10635, + "moss": 10636, + "exhibits": 10637, + "neighbors": 10638, + "communicate": 10639, + "accuracy": 10640, + "explored": 10641, + "raiders": 10642, + "republicans": 10643, + "secular": 10644, + "kat": 10645, + "superman": 10646, + "penny": 10647, + "criticised": 10648, + "##tch": 10649, + "freed": 10650, + "update": 10651, + "conviction": 10652, + "wade": 10653, + "ham": 10654, + "likewise": 10655, + "delegation": 10656, + "gotta": 10657, + "doll": 10658, + "promises": 10659, + "technological": 10660, + "myth": 10661, + "nationality": 10662, + "resolve": 10663, + "convent": 10664, + "##mark": 10665, + "sharon": 10666, + "dig": 10667, + "sip": 10668, + "coordinator": 10669, + "entrepreneur": 10670, + "fold": 10671, + "##dine": 10672, + "capability": 10673, + "councillor": 10674, + "synonym": 10675, + "blown": 10676, + "swan": 10677, + "cursed": 10678, + "1815": 10679, + "jonas": 10680, + "haired": 10681, + "sofa": 10682, + "canvas": 10683, + "keeper": 10684, + "rivalry": 10685, + "##hart": 10686, + "rapper": 10687, + "speedway": 10688, + "swords": 10689, + "postal": 10690, + "maxwell": 10691, + "estonia": 10692, + "potter": 10693, + "recurring": 10694, + "##nn": 10695, + "##ave": 10696, + "errors": 10697, + "##oni": 10698, + "cognitive": 10699, + "1834": 10700, + "##²": 10701, + "claws": 10702, + "nadu": 10703, + "roberto": 10704, + "bce": 10705, + "wrestler": 10706, + "ellie": 10707, + "##ations": 10708, + "infinite": 10709, + "ink": 10710, + "##tia": 10711, + "presumably": 10712, + "finite": 10713, + "staircase": 10714, + "108": 10715, + "noel": 10716, + "patricia": 10717, + "nacional": 10718, + "##cation": 10719, + "chill": 10720, + "eternal": 10721, + "tu": 10722, + "preventing": 10723, + "prussia": 10724, + "fossil": 10725, + "limbs": 10726, + "##logist": 10727, + "ernst": 10728, + "frog": 10729, + "perez": 10730, + "rene": 10731, + "##ace": 10732, + "pizza": 10733, + "prussian": 10734, + "##ios": 10735, + "##vy": 10736, + "molecules": 10737, + "regulatory": 10738, + "answering": 10739, + "opinions": 10740, + "sworn": 10741, + "lengths": 10742, + "supposedly": 10743, + "hypothesis": 10744, + "upward": 10745, + "habitats": 10746, + "seating": 10747, + "ancestors": 10748, + "drank": 10749, + "yield": 10750, + "hd": 10751, + "synthesis": 10752, + "researcher": 10753, + "modest": 10754, + "##var": 10755, + "mothers": 10756, + "peered": 10757, + "voluntary": 10758, + "homeland": 10759, + "##the": 10760, + "acclaim": 10761, + "##igan": 10762, + "static": 10763, + "valve": 10764, + "luxembourg": 10765, + "alto": 10766, + "carroll": 10767, + "fe": 10768, + "receptor": 10769, + "norton": 10770, + "ambulance": 10771, + "##tian": 10772, + "johnston": 10773, + "catholics": 10774, + "depicting": 10775, + "jointly": 10776, + "elephant": 10777, + "gloria": 10778, + "mentor": 10779, + "badge": 10780, + "ahmad": 10781, + "distinguish": 10782, + "remarked": 10783, + "councils": 10784, + "precisely": 10785, + "allison": 10786, + "advancing": 10787, + "detection": 10788, + "crowded": 10789, + "##10": 10790, + "cooperative": 10791, + "ankle": 10792, + "mercedes": 10793, + "dagger": 10794, + "surrendered": 10795, + "pollution": 10796, + "commit": 10797, + "subway": 10798, + "jeffrey": 10799, + "lesson": 10800, + "sculptures": 10801, + "provider": 10802, + "##fication": 10803, + "membrane": 10804, + "timothy": 10805, + "rectangular": 10806, + "fiscal": 10807, + "heating": 10808, + "teammate": 10809, + "basket": 10810, + "particle": 10811, + "anonymous": 10812, + "deployment": 10813, + "##ple": 10814, + "missiles": 10815, + "courthouse": 10816, + "proportion": 10817, + "shoe": 10818, + "sec": 10819, + "##ller": 10820, + "complaints": 10821, + "forbes": 10822, + "blacks": 10823, + "abandon": 10824, + "remind": 10825, + "sizes": 10826, + "overwhelming": 10827, + "autobiography": 10828, + "natalie": 10829, + "##awa": 10830, + "risks": 10831, + "contestant": 10832, + "countryside": 10833, + "babies": 10834, + "scorer": 10835, + "invaded": 10836, + "enclosed": 10837, + "proceed": 10838, + "hurling": 10839, + "disorders": 10840, + "##cu": 10841, + "reflecting": 10842, + "continuously": 10843, + "cruiser": 10844, + "graduates": 10845, + "freeway": 10846, + "investigated": 10847, + "ore": 10848, + "deserved": 10849, + "maid": 10850, + "blocking": 10851, + "phillip": 10852, + "jorge": 10853, + "shakes": 10854, + "dove": 10855, + "mann": 10856, + "variables": 10857, + "lacked": 10858, + "burden": 10859, + "accompanying": 10860, + "que": 10861, + "consistently": 10862, + "organizing": 10863, + "provisional": 10864, + "complained": 10865, + "endless": 10866, + "##rm": 10867, + "tubes": 10868, + "juice": 10869, + "georges": 10870, + "krishna": 10871, + "mick": 10872, + "labels": 10873, + "thriller": 10874, + "##uch": 10875, + "laps": 10876, + "arcade": 10877, + "sage": 10878, + "snail": 10879, + "##table": 10880, + "shannon": 10881, + "fi": 10882, + "laurence": 10883, + "seoul": 10884, + "vacation": 10885, + "presenting": 10886, + "hire": 10887, + "churchill": 10888, + "surprisingly": 10889, + "prohibited": 10890, + "savannah": 10891, + "technically": 10892, + "##oli": 10893, + "170": 10894, + "##lessly": 10895, + "testimony": 10896, + "suited": 10897, + "speeds": 10898, + "toys": 10899, + "romans": 10900, + "mlb": 10901, + "flowering": 10902, + "measurement": 10903, + "talented": 10904, + "kay": 10905, + "settings": 10906, + "charleston": 10907, + "expectations": 10908, + "shattered": 10909, + "achieving": 10910, + "triumph": 10911, + "ceremonies": 10912, + "portsmouth": 10913, + "lanes": 10914, + "mandatory": 10915, + "loser": 10916, + "stretching": 10917, + "cologne": 10918, + "realizes": 10919, + "seventy": 10920, + "cornell": 10921, + "careers": 10922, + "webb": 10923, + "##ulating": 10924, + "americas": 10925, + "budapest": 10926, + "ava": 10927, + "suspicion": 10928, + "##ison": 10929, + "yo": 10930, + "conrad": 10931, + "##hai": 10932, + "sterling": 10933, + "jessie": 10934, + "rector": 10935, + "##az": 10936, + "1831": 10937, + "transform": 10938, + "organize": 10939, + "loans": 10940, + "christine": 10941, + "volcanic": 10942, + "warrant": 10943, + "slender": 10944, + "summers": 10945, + "subfamily": 10946, + "newer": 10947, + "danced": 10948, + "dynamics": 10949, + "rhine": 10950, + "proceeds": 10951, + "heinrich": 10952, + "gastropod": 10953, + "commands": 10954, + "sings": 10955, + "facilitate": 10956, + "easter": 10957, + "ra": 10958, + "positioned": 10959, + "responses": 10960, + "expense": 10961, + "fruits": 10962, + "yanked": 10963, + "imported": 10964, + "25th": 10965, + "velvet": 10966, + "vic": 10967, + "primitive": 10968, + "tribune": 10969, + "baldwin": 10970, + "neighbourhood": 10971, + "donna": 10972, + "rip": 10973, + "hay": 10974, + "pr": 10975, + "##uro": 10976, + "1814": 10977, + "espn": 10978, + "welcomed": 10979, + "##aria": 10980, + "qualifier": 10981, + "glare": 10982, + "highland": 10983, + "timing": 10984, + "##cted": 10985, + "shells": 10986, + "eased": 10987, + "geometry": 10988, + "louder": 10989, + "exciting": 10990, + "slovakia": 10991, + "##sion": 10992, + "##iz": 10993, + "##lot": 10994, + "savings": 10995, + "prairie": 10996, + "##ques": 10997, + "marching": 10998, + "rafael": 10999, + "tonnes": 11000, + "##lled": 11001, + "curtain": 11002, + "preceding": 11003, + "shy": 11004, + "heal": 11005, + "greene": 11006, + "worthy": 11007, + "##pot": 11008, + "detachment": 11009, + "bury": 11010, + "sherman": 11011, + "##eck": 11012, + "reinforced": 11013, + "seeks": 11014, + "bottles": 11015, + "contracted": 11016, + "duchess": 11017, + "outfit": 11018, + "walsh": 11019, + "##sc": 11020, + "mickey": 11021, + "##ase": 11022, + "geoffrey": 11023, + "archer": 11024, + "squeeze": 11025, + "dawson": 11026, + "eliminate": 11027, + "invention": 11028, + "##enberg": 11029, + "neal": 11030, + "##eth": 11031, + "stance": 11032, + "dealer": 11033, + "coral": 11034, + "maple": 11035, + "retire": 11036, + "polo": 11037, + "simplified": 11038, + "##ht": 11039, + "1833": 11040, + "hid": 11041, + "watts": 11042, + "backwards": 11043, + "jules": 11044, + "##oke": 11045, + "genesis": 11046, + "mt": 11047, + "frames": 11048, + "rebounds": 11049, + "burma": 11050, + "woodland": 11051, + "moist": 11052, + "santos": 11053, + "whispers": 11054, + "drained": 11055, + "subspecies": 11056, + "##aa": 11057, + "streaming": 11058, + "ulster": 11059, + "burnt": 11060, + "correspondence": 11061, + "maternal": 11062, + "gerard": 11063, + "denis": 11064, + "stealing": 11065, + "##load": 11066, + "genius": 11067, + "duchy": 11068, + "##oria": 11069, + "inaugurated": 11070, + "momentum": 11071, + "suits": 11072, + "placement": 11073, + "sovereign": 11074, + "clause": 11075, + "thames": 11076, + "##hara": 11077, + "confederation": 11078, + "reservation": 11079, + "sketch": 11080, + "yankees": 11081, + "lets": 11082, + "rotten": 11083, + "charm": 11084, + "hal": 11085, + "verses": 11086, + "ultra": 11087, + "commercially": 11088, + "dot": 11089, + "salon": 11090, + "citation": 11091, + "adopt": 11092, + "winnipeg": 11093, + "mist": 11094, + "allocated": 11095, + "cairo": 11096, + "##boy": 11097, + "jenkins": 11098, + "interference": 11099, + "objectives": 11100, + "##wind": 11101, + "1820": 11102, + "portfolio": 11103, + "armoured": 11104, + "sectors": 11105, + "##eh": 11106, + "initiatives": 11107, + "##world": 11108, + "integrity": 11109, + "exercises": 11110, + "robe": 11111, + "tap": 11112, + "ab": 11113, + "gazed": 11114, + "##tones": 11115, + "distracted": 11116, + "rulers": 11117, + "111": 11118, + "favorable": 11119, + "jerome": 11120, + "tended": 11121, + "cart": 11122, + "factories": 11123, + "##eri": 11124, + "diplomat": 11125, + "valued": 11126, + "gravel": 11127, + "charitable": 11128, + "##try": 11129, + "calvin": 11130, + "exploring": 11131, + "chang": 11132, + "shepherd": 11133, + "terrace": 11134, + "pdf": 11135, + "pupil": 11136, + "##ural": 11137, + "reflects": 11138, + "ups": 11139, + "##rch": 11140, + "governors": 11141, + "shelf": 11142, + "depths": 11143, + "##nberg": 11144, + "trailed": 11145, + "crest": 11146, + "tackle": 11147, + "##nian": 11148, + "##ats": 11149, + "hatred": 11150, + "##kai": 11151, + "clare": 11152, + "makers": 11153, + "ethiopia": 11154, + "longtime": 11155, + "detected": 11156, + "embedded": 11157, + "lacking": 11158, + "slapped": 11159, + "rely": 11160, + "thomson": 11161, + "anticipation": 11162, + "iso": 11163, + "morton": 11164, + "successive": 11165, + "agnes": 11166, + "screenwriter": 11167, + "straightened": 11168, + "philippe": 11169, + "playwright": 11170, + "haunted": 11171, + "licence": 11172, + "iris": 11173, + "intentions": 11174, + "sutton": 11175, + "112": 11176, + "logical": 11177, + "correctly": 11178, + "##weight": 11179, + "branded": 11180, + "licked": 11181, + "tipped": 11182, + "silva": 11183, + "ricky": 11184, + "narrator": 11185, + "requests": 11186, + "##ents": 11187, + "greeted": 11188, + "supernatural": 11189, + "cow": 11190, + "##wald": 11191, + "lung": 11192, + "refusing": 11193, + "employer": 11194, + "strait": 11195, + "gaelic": 11196, + "liner": 11197, + "##piece": 11198, + "zoe": 11199, + "sabha": 11200, + "##mba": 11201, + "driveway": 11202, + "harvest": 11203, + "prints": 11204, + "bates": 11205, + "reluctantly": 11206, + "threshold": 11207, + "algebra": 11208, + "ira": 11209, + "wherever": 11210, + "coupled": 11211, + "240": 11212, + "assumption": 11213, + "picks": 11214, + "##air": 11215, + "designers": 11216, + "raids": 11217, + "gentlemen": 11218, + "##ean": 11219, + "roller": 11220, + "blowing": 11221, + "leipzig": 11222, + "locks": 11223, + "screw": 11224, + "dressing": 11225, + "strand": 11226, + "##lings": 11227, + "scar": 11228, + "dwarf": 11229, + "depicts": 11230, + "##nu": 11231, + "nods": 11232, + "##mine": 11233, + "differ": 11234, + "boris": 11235, + "##eur": 11236, + "yuan": 11237, + "flip": 11238, + "##gie": 11239, + "mob": 11240, + "invested": 11241, + "questioning": 11242, + "applying": 11243, + "##ture": 11244, + "shout": 11245, + "##sel": 11246, + "gameplay": 11247, + "blamed": 11248, + "illustrations": 11249, + "bothered": 11250, + "weakness": 11251, + "rehabilitation": 11252, + "##of": 11253, + "##zes": 11254, + "envelope": 11255, + "rumors": 11256, + "miners": 11257, + "leicester": 11258, + "subtle": 11259, + "kerry": 11260, + "##ico": 11261, + "ferguson": 11262, + "##fu": 11263, + "premiership": 11264, + "ne": 11265, + "##cat": 11266, + "bengali": 11267, + "prof": 11268, + "catches": 11269, + "remnants": 11270, + "dana": 11271, + "##rily": 11272, + "shouting": 11273, + "presidents": 11274, + "baltic": 11275, + "ought": 11276, + "ghosts": 11277, + "dances": 11278, + "sailors": 11279, + "shirley": 11280, + "fancy": 11281, + "dominic": 11282, + "##bie": 11283, + "madonna": 11284, + "##rick": 11285, + "bark": 11286, + "buttons": 11287, + "gymnasium": 11288, + "ashes": 11289, + "liver": 11290, + "toby": 11291, + "oath": 11292, + "providence": 11293, + "doyle": 11294, + "evangelical": 11295, + "nixon": 11296, + "cement": 11297, + "carnegie": 11298, + "embarked": 11299, + "hatch": 11300, + "surroundings": 11301, + "guarantee": 11302, + "needing": 11303, + "pirate": 11304, + "essence": 11305, + "##bee": 11306, + "filter": 11307, + "crane": 11308, + "hammond": 11309, + "projected": 11310, + "immune": 11311, + "percy": 11312, + "twelfth": 11313, + "##ult": 11314, + "regent": 11315, + "doctoral": 11316, + "damon": 11317, + "mikhail": 11318, + "##ichi": 11319, + "lu": 11320, + "critically": 11321, + "elect": 11322, + "realised": 11323, + "abortion": 11324, + "acute": 11325, + "screening": 11326, + "mythology": 11327, + "steadily": 11328, + "##fc": 11329, + "frown": 11330, + "nottingham": 11331, + "kirk": 11332, + "wa": 11333, + "minneapolis": 11334, + "##rra": 11335, + "module": 11336, + "algeria": 11337, + "mc": 11338, + "nautical": 11339, + "encounters": 11340, + "surprising": 11341, + "statues": 11342, + "availability": 11343, + "shirts": 11344, + "pie": 11345, + "alma": 11346, + "brows": 11347, + "munster": 11348, + "mack": 11349, + "soup": 11350, + "crater": 11351, + "tornado": 11352, + "sanskrit": 11353, + "cedar": 11354, + "explosive": 11355, + "bordered": 11356, + "dixon": 11357, + "planets": 11358, + "stamp": 11359, + "exam": 11360, + "happily": 11361, + "##bble": 11362, + "carriers": 11363, + "kidnapped": 11364, + "##vis": 11365, + "accommodation": 11366, + "emigrated": 11367, + "##met": 11368, + "knockout": 11369, + "correspondent": 11370, + "violation": 11371, + "profits": 11372, + "peaks": 11373, + "lang": 11374, + "specimen": 11375, + "agenda": 11376, + "ancestry": 11377, + "pottery": 11378, + "spelling": 11379, + "equations": 11380, + "obtaining": 11381, + "ki": 11382, + "linking": 11383, + "1825": 11384, + "debris": 11385, + "asylum": 11386, + "##20": 11387, + "buddhism": 11388, + "teddy": 11389, + "##ants": 11390, + "gazette": 11391, + "##nger": 11392, + "##sse": 11393, + "dental": 11394, + "eligibility": 11395, + "utc": 11396, + "fathers": 11397, + "averaged": 11398, + "zimbabwe": 11399, + "francesco": 11400, + "coloured": 11401, + "hissed": 11402, + "translator": 11403, + "lynch": 11404, + "mandate": 11405, + "humanities": 11406, + "mackenzie": 11407, + "uniforms": 11408, + "lin": 11409, + "##iana": 11410, + "##gio": 11411, + "asset": 11412, + "mhz": 11413, + "fitting": 11414, + "samantha": 11415, + "genera": 11416, + "wei": 11417, + "rim": 11418, + "beloved": 11419, + "shark": 11420, + "riot": 11421, + "entities": 11422, + "expressions": 11423, + "indo": 11424, + "carmen": 11425, + "slipping": 11426, + "owing": 11427, + "abbot": 11428, + "neighbor": 11429, + "sidney": 11430, + "##av": 11431, + "rats": 11432, + "recommendations": 11433, + "encouraging": 11434, + "squadrons": 11435, + "anticipated": 11436, + "commanders": 11437, + "conquered": 11438, + "##oto": 11439, + "donations": 11440, + "diagnosed": 11441, + "##mond": 11442, + "divide": 11443, + "##iva": 11444, + "guessed": 11445, + "decoration": 11446, + "vernon": 11447, + "auditorium": 11448, + "revelation": 11449, + "conversations": 11450, + "##kers": 11451, + "##power": 11452, + "herzegovina": 11453, + "dash": 11454, + "alike": 11455, + "protested": 11456, + "lateral": 11457, + "herman": 11458, + "accredited": 11459, + "mg": 11460, + "##gent": 11461, + "freeman": 11462, + "mel": 11463, + "fiji": 11464, + "crow": 11465, + "crimson": 11466, + "##rine": 11467, + "livestock": 11468, + "##pped": 11469, + "humanitarian": 11470, + "bored": 11471, + "oz": 11472, + "whip": 11473, + "##lene": 11474, + "##ali": 11475, + "legitimate": 11476, + "alter": 11477, + "grinning": 11478, + "spelled": 11479, + "anxious": 11480, + "oriental": 11481, + "wesley": 11482, + "##nin": 11483, + "##hole": 11484, + "carnival": 11485, + "controller": 11486, + "detect": 11487, + "##ssa": 11488, + "bowed": 11489, + "educator": 11490, + "kosovo": 11491, + "macedonia": 11492, + "##sin": 11493, + "occupy": 11494, + "mastering": 11495, + "stephanie": 11496, + "janeiro": 11497, + "para": 11498, + "unaware": 11499, + "nurses": 11500, + "noon": 11501, + "135": 11502, + "cam": 11503, + "hopefully": 11504, + "ranger": 11505, + "combine": 11506, + "sociology": 11507, + "polar": 11508, + "rica": 11509, + "##eer": 11510, + "neill": 11511, + "##sman": 11512, + "holocaust": 11513, + "##ip": 11514, + "doubled": 11515, + "lust": 11516, + "1828": 11517, + "109": 11518, + "decent": 11519, + "cooling": 11520, + "unveiled": 11521, + "##card": 11522, + "1829": 11523, + "nsw": 11524, + "homer": 11525, + "chapman": 11526, + "meyer": 11527, + "##gin": 11528, + "dive": 11529, + "mae": 11530, + "reagan": 11531, + "expertise": 11532, + "##gled": 11533, + "darwin": 11534, + "brooke": 11535, + "sided": 11536, + "prosecution": 11537, + "investigating": 11538, + "comprised": 11539, + "petroleum": 11540, + "genres": 11541, + "reluctant": 11542, + "differently": 11543, + "trilogy": 11544, + "johns": 11545, + "vegetables": 11546, + "corpse": 11547, + "highlighted": 11548, + "lounge": 11549, + "pension": 11550, + "unsuccessfully": 11551, + "elegant": 11552, + "aided": 11553, + "ivory": 11554, + "beatles": 11555, + "amelia": 11556, + "cain": 11557, + "dubai": 11558, + "sunny": 11559, + "immigrant": 11560, + "babe": 11561, + "click": 11562, + "##nder": 11563, + "underwater": 11564, + "pepper": 11565, + "combining": 11566, + "mumbled": 11567, + "atlas": 11568, + "horns": 11569, + "accessed": 11570, + "ballad": 11571, + "physicians": 11572, + "homeless": 11573, + "gestured": 11574, + "rpm": 11575, + "freak": 11576, + "louisville": 11577, + "corporations": 11578, + "patriots": 11579, + "prizes": 11580, + "rational": 11581, + "warn": 11582, + "modes": 11583, + "decorative": 11584, + "overnight": 11585, + "din": 11586, + "troubled": 11587, + "phantom": 11588, + "##ort": 11589, + "monarch": 11590, + "sheer": 11591, + "##dorf": 11592, + "generals": 11593, + "guidelines": 11594, + "organs": 11595, + "addresses": 11596, + "##zon": 11597, + "enhance": 11598, + "curling": 11599, + "parishes": 11600, + "cord": 11601, + "##kie": 11602, + "linux": 11603, + "caesar": 11604, + "deutsche": 11605, + "bavaria": 11606, + "##bia": 11607, + "coleman": 11608, + "cyclone": 11609, + "##eria": 11610, + "bacon": 11611, + "petty": 11612, + "##yama": 11613, + "##old": 11614, + "hampton": 11615, + "diagnosis": 11616, + "1824": 11617, + "throws": 11618, + "complexity": 11619, + "rita": 11620, + "disputed": 11621, + "##₃": 11622, + "pablo": 11623, + "##sch": 11624, + "marketed": 11625, + "trafficking": 11626, + "##ulus": 11627, + "examine": 11628, + "plague": 11629, + "formats": 11630, + "##oh": 11631, + "vault": 11632, + "faithful": 11633, + "##bourne": 11634, + "webster": 11635, + "##ox": 11636, + "highlights": 11637, + "##ient": 11638, + "##ann": 11639, + "phones": 11640, + "vacuum": 11641, + "sandwich": 11642, + "modeling": 11643, + "##gated": 11644, + "bolivia": 11645, + "clergy": 11646, + "qualities": 11647, + "isabel": 11648, + "##nas": 11649, + "##ars": 11650, + "wears": 11651, + "screams": 11652, + "reunited": 11653, + "annoyed": 11654, + "bra": 11655, + "##ancy": 11656, + "##rate": 11657, + "differential": 11658, + "transmitter": 11659, + "tattoo": 11660, + "container": 11661, + "poker": 11662, + "##och": 11663, + "excessive": 11664, + "resides": 11665, + "cowboys": 11666, + "##tum": 11667, + "augustus": 11668, + "trash": 11669, + "providers": 11670, + "statute": 11671, + "retreated": 11672, + "balcony": 11673, + "reversed": 11674, + "void": 11675, + "storey": 11676, + "preceded": 11677, + "masses": 11678, + "leap": 11679, + "laughs": 11680, + "neighborhoods": 11681, + "wards": 11682, + "schemes": 11683, + "falcon": 11684, + "santo": 11685, + "battlefield": 11686, + "pad": 11687, + "ronnie": 11688, + "thread": 11689, + "lesbian": 11690, + "venus": 11691, + "##dian": 11692, + "beg": 11693, + "sandstone": 11694, + "daylight": 11695, + "punched": 11696, + "gwen": 11697, + "analog": 11698, + "stroked": 11699, + "wwe": 11700, + "acceptable": 11701, + "measurements": 11702, + "dec": 11703, + "toxic": 11704, + "##kel": 11705, + "adequate": 11706, + "surgical": 11707, + "economist": 11708, + "parameters": 11709, + "varsity": 11710, + "##sberg": 11711, + "quantity": 11712, + "ella": 11713, + "##chy": 11714, + "##rton": 11715, + "countess": 11716, + "generating": 11717, + "precision": 11718, + "diamonds": 11719, + "expressway": 11720, + "ga": 11721, + "##ı": 11722, + "1821": 11723, + "uruguay": 11724, + "talents": 11725, + "galleries": 11726, + "expenses": 11727, + "scanned": 11728, + "colleague": 11729, + "outlets": 11730, + "ryder": 11731, + "lucien": 11732, + "##ila": 11733, + "paramount": 11734, + "##bon": 11735, + "syracuse": 11736, + "dim": 11737, + "fangs": 11738, + "gown": 11739, + "sweep": 11740, + "##sie": 11741, + "toyota": 11742, + "missionaries": 11743, + "websites": 11744, + "##nsis": 11745, + "sentences": 11746, + "adviser": 11747, + "val": 11748, + "trademark": 11749, + "spells": 11750, + "##plane": 11751, + "patience": 11752, + "starter": 11753, + "slim": 11754, + "##borg": 11755, + "toe": 11756, + "incredibly": 11757, + "shoots": 11758, + "elliot": 11759, + "nobility": 11760, + "##wyn": 11761, + "cowboy": 11762, + "endorsed": 11763, + "gardner": 11764, + "tendency": 11765, + "persuaded": 11766, + "organisms": 11767, + "emissions": 11768, + "kazakhstan": 11769, + "amused": 11770, + "boring": 11771, + "chips": 11772, + "themed": 11773, + "##hand": 11774, + "llc": 11775, + "constantinople": 11776, + "chasing": 11777, + "systematic": 11778, + "guatemala": 11779, + "borrowed": 11780, + "erin": 11781, + "carey": 11782, + "##hard": 11783, + "highlands": 11784, + "struggles": 11785, + "1810": 11786, + "##ifying": 11787, + "##ced": 11788, + "wong": 11789, + "exceptions": 11790, + "develops": 11791, + "enlarged": 11792, + "kindergarten": 11793, + "castro": 11794, + "##ern": 11795, + "##rina": 11796, + "leigh": 11797, + "zombie": 11798, + "juvenile": 11799, + "##most": 11800, + "consul": 11801, + "##nar": 11802, + "sailor": 11803, + "hyde": 11804, + "clarence": 11805, + "intensive": 11806, + "pinned": 11807, + "nasty": 11808, + "useless": 11809, + "jung": 11810, + "clayton": 11811, + "stuffed": 11812, + "exceptional": 11813, + "ix": 11814, + "apostolic": 11815, + "230": 11816, + "transactions": 11817, + "##dge": 11818, + "exempt": 11819, + "swinging": 11820, + "cove": 11821, + "religions": 11822, + "##ash": 11823, + "shields": 11824, + "dairy": 11825, + "bypass": 11826, + "190": 11827, + "pursuing": 11828, + "bug": 11829, + "joyce": 11830, + "bombay": 11831, + "chassis": 11832, + "southampton": 11833, + "chat": 11834, + "interact": 11835, + "redesignated": 11836, + "##pen": 11837, + "nascar": 11838, + "pray": 11839, + "salmon": 11840, + "rigid": 11841, + "regained": 11842, + "malaysian": 11843, + "grim": 11844, + "publicity": 11845, + "constituted": 11846, + "capturing": 11847, + "toilet": 11848, + "delegate": 11849, + "purely": 11850, + "tray": 11851, + "drift": 11852, + "loosely": 11853, + "striker": 11854, + "weakened": 11855, + "trinidad": 11856, + "mitch": 11857, + "itv": 11858, + "defines": 11859, + "transmitted": 11860, + "ming": 11861, + "scarlet": 11862, + "nodding": 11863, + "fitzgerald": 11864, + "fu": 11865, + "narrowly": 11866, + "sp": 11867, + "tooth": 11868, + "standings": 11869, + "virtue": 11870, + "##₁": 11871, + "##wara": 11872, + "##cting": 11873, + "chateau": 11874, + "gloves": 11875, + "lid": 11876, + "##nel": 11877, + "hurting": 11878, + "conservatory": 11879, + "##pel": 11880, + "sinclair": 11881, + "reopened": 11882, + "sympathy": 11883, + "nigerian": 11884, + "strode": 11885, + "advocated": 11886, + "optional": 11887, + "chronic": 11888, + "discharge": 11889, + "##rc": 11890, + "suck": 11891, + "compatible": 11892, + "laurel": 11893, + "stella": 11894, + "shi": 11895, + "fails": 11896, + "wage": 11897, + "dodge": 11898, + "128": 11899, + "informal": 11900, + "sorts": 11901, + "levi": 11902, + "buddha": 11903, + "villagers": 11904, + "##aka": 11905, + "chronicles": 11906, + "heavier": 11907, + "summoned": 11908, + "gateway": 11909, + "3000": 11910, + "eleventh": 11911, + "jewelry": 11912, + "translations": 11913, + "accordingly": 11914, + "seas": 11915, + "##ency": 11916, + "fiber": 11917, + "pyramid": 11918, + "cubic": 11919, + "dragging": 11920, + "##ista": 11921, + "caring": 11922, + "##ops": 11923, + "android": 11924, + "contacted": 11925, + "lunar": 11926, + "##dt": 11927, + "kai": 11928, + "lisbon": 11929, + "patted": 11930, + "1826": 11931, + "sacramento": 11932, + "theft": 11933, + "madagascar": 11934, + "subtropical": 11935, + "disputes": 11936, + "ta": 11937, + "holidays": 11938, + "piper": 11939, + "willow": 11940, + "mare": 11941, + "cane": 11942, + "itunes": 11943, + "newfoundland": 11944, + "benny": 11945, + "companions": 11946, + "dong": 11947, + "raj": 11948, + "observe": 11949, + "roar": 11950, + "charming": 11951, + "plaque": 11952, + "tibetan": 11953, + "fossils": 11954, + "enacted": 11955, + "manning": 11956, + "bubble": 11957, + "tina": 11958, + "tanzania": 11959, + "##eda": 11960, + "##hir": 11961, + "funk": 11962, + "swamp": 11963, + "deputies": 11964, + "cloak": 11965, + "ufc": 11966, + "scenario": 11967, + "par": 11968, + "scratch": 11969, + "metals": 11970, + "anthem": 11971, + "guru": 11972, + "engaging": 11973, + "specially": 11974, + "##boat": 11975, + "dialects": 11976, + "nineteen": 11977, + "cecil": 11978, + "duet": 11979, + "disability": 11980, + "messenger": 11981, + "unofficial": 11982, + "##lies": 11983, + "defunct": 11984, + "eds": 11985, + "moonlight": 11986, + "drainage": 11987, + "surname": 11988, + "puzzle": 11989, + "honda": 11990, + "switching": 11991, + "conservatives": 11992, + "mammals": 11993, + "knox": 11994, + "broadcaster": 11995, + "sidewalk": 11996, + "cope": 11997, + "##ried": 11998, + "benson": 11999, + "princes": 12000, + "peterson": 12001, + "##sal": 12002, + "bedford": 12003, + "sharks": 12004, + "eli": 12005, + "wreck": 12006, + "alberto": 12007, + "gasp": 12008, + "archaeology": 12009, + "lgbt": 12010, + "teaches": 12011, + "securities": 12012, + "madness": 12013, + "compromise": 12014, + "waving": 12015, + "coordination": 12016, + "davidson": 12017, + "visions": 12018, + "leased": 12019, + "possibilities": 12020, + "eighty": 12021, + "jun": 12022, + "fernandez": 12023, + "enthusiasm": 12024, + "assassin": 12025, + "sponsorship": 12026, + "reviewer": 12027, + "kingdoms": 12028, + "estonian": 12029, + "laboratories": 12030, + "##fy": 12031, + "##nal": 12032, + "applies": 12033, + "verb": 12034, + "celebrations": 12035, + "##zzo": 12036, + "rowing": 12037, + "lightweight": 12038, + "sadness": 12039, + "submit": 12040, + "mvp": 12041, + "balanced": 12042, + "dude": 12043, + "##vas": 12044, + "explicitly": 12045, + "metric": 12046, + "magnificent": 12047, + "mound": 12048, + "brett": 12049, + "mohammad": 12050, + "mistakes": 12051, + "irregular": 12052, + "##hing": 12053, + "##ass": 12054, + "sanders": 12055, + "betrayed": 12056, + "shipped": 12057, + "surge": 12058, + "##enburg": 12059, + "reporters": 12060, + "termed": 12061, + "georg": 12062, + "pity": 12063, + "verbal": 12064, + "bulls": 12065, + "abbreviated": 12066, + "enabling": 12067, + "appealed": 12068, + "##are": 12069, + "##atic": 12070, + "sicily": 12071, + "sting": 12072, + "heel": 12073, + "sweetheart": 12074, + "bart": 12075, + "spacecraft": 12076, + "brutal": 12077, + "monarchy": 12078, + "##tter": 12079, + "aberdeen": 12080, + "cameo": 12081, + "diane": 12082, + "##ub": 12083, + "survivor": 12084, + "clyde": 12085, + "##aries": 12086, + "complaint": 12087, + "##makers": 12088, + "clarinet": 12089, + "delicious": 12090, + "chilean": 12091, + "karnataka": 12092, + "coordinates": 12093, + "1818": 12094, + "panties": 12095, + "##rst": 12096, + "pretending": 12097, + "ar": 12098, + "dramatically": 12099, + "kiev": 12100, + "bella": 12101, + "tends": 12102, + "distances": 12103, + "113": 12104, + "catalog": 12105, + "launching": 12106, + "instances": 12107, + "telecommunications": 12108, + "portable": 12109, + "lindsay": 12110, + "vatican": 12111, + "##eim": 12112, + "angles": 12113, + "aliens": 12114, + "marker": 12115, + "stint": 12116, + "screens": 12117, + "bolton": 12118, + "##rne": 12119, + "judy": 12120, + "wool": 12121, + "benedict": 12122, + "plasma": 12123, + "europa": 12124, + "spark": 12125, + "imaging": 12126, + "filmmaker": 12127, + "swiftly": 12128, + "##een": 12129, + "contributor": 12130, + "##nor": 12131, + "opted": 12132, + "stamps": 12133, + "apologize": 12134, + "financing": 12135, + "butter": 12136, + "gideon": 12137, + "sophisticated": 12138, + "alignment": 12139, + "avery": 12140, + "chemicals": 12141, + "yearly": 12142, + "speculation": 12143, + "prominence": 12144, + "professionally": 12145, + "##ils": 12146, + "immortal": 12147, + "institutional": 12148, + "inception": 12149, + "wrists": 12150, + "identifying": 12151, + "tribunal": 12152, + "derives": 12153, + "gains": 12154, + "##wo": 12155, + "papal": 12156, + "preference": 12157, + "linguistic": 12158, + "vince": 12159, + "operative": 12160, + "brewery": 12161, + "##ont": 12162, + "unemployment": 12163, + "boyd": 12164, + "##ured": 12165, + "##outs": 12166, + "albeit": 12167, + "prophet": 12168, + "1813": 12169, + "bi": 12170, + "##rr": 12171, + "##face": 12172, + "##rad": 12173, + "quarterly": 12174, + "asteroid": 12175, + "cleaned": 12176, + "radius": 12177, + "temper": 12178, + "##llen": 12179, + "telugu": 12180, + "jerk": 12181, + "viscount": 12182, + "menu": 12183, + "##ote": 12184, + "glimpse": 12185, + "##aya": 12186, + "yacht": 12187, + "hawaiian": 12188, + "baden": 12189, + "##rl": 12190, + "laptop": 12191, + "readily": 12192, + "##gu": 12193, + "monetary": 12194, + "offshore": 12195, + "scots": 12196, + "watches": 12197, + "##yang": 12198, + "##arian": 12199, + "upgrade": 12200, + "needle": 12201, + "xbox": 12202, + "lea": 12203, + "encyclopedia": 12204, + "flank": 12205, + "fingertips": 12206, + "##pus": 12207, + "delight": 12208, + "teachings": 12209, + "confirm": 12210, + "roth": 12211, + "beaches": 12212, + "midway": 12213, + "winters": 12214, + "##iah": 12215, + "teasing": 12216, + "daytime": 12217, + "beverly": 12218, + "gambling": 12219, + "bonnie": 12220, + "##backs": 12221, + "regulated": 12222, + "clement": 12223, + "hermann": 12224, + "tricks": 12225, + "knot": 12226, + "##shing": 12227, + "##uring": 12228, + "##vre": 12229, + "detached": 12230, + "ecological": 12231, + "owed": 12232, + "specialty": 12233, + "byron": 12234, + "inventor": 12235, + "bats": 12236, + "stays": 12237, + "screened": 12238, + "unesco": 12239, + "midland": 12240, + "trim": 12241, + "affection": 12242, + "##ander": 12243, + "##rry": 12244, + "jess": 12245, + "thoroughly": 12246, + "feedback": 12247, + "##uma": 12248, + "chennai": 12249, + "strained": 12250, + "heartbeat": 12251, + "wrapping": 12252, + "overtime": 12253, + "pleaded": 12254, + "##sworth": 12255, + "mon": 12256, + "leisure": 12257, + "oclc": 12258, + "##tate": 12259, + "##ele": 12260, + "feathers": 12261, + "angelo": 12262, + "thirds": 12263, + "nuts": 12264, + "surveys": 12265, + "clever": 12266, + "gill": 12267, + "commentator": 12268, + "##dos": 12269, + "darren": 12270, + "rides": 12271, + "gibraltar": 12272, + "##nc": 12273, + "##mu": 12274, + "dissolution": 12275, + "dedication": 12276, + "shin": 12277, + "meals": 12278, + "saddle": 12279, + "elvis": 12280, + "reds": 12281, + "chaired": 12282, + "taller": 12283, + "appreciation": 12284, + "functioning": 12285, + "niece": 12286, + "favored": 12287, + "advocacy": 12288, + "robbie": 12289, + "criminals": 12290, + "suffolk": 12291, + "yugoslav": 12292, + "passport": 12293, + "constable": 12294, + "congressman": 12295, + "hastings": 12296, + "vera": 12297, + "##rov": 12298, + "consecrated": 12299, + "sparks": 12300, + "ecclesiastical": 12301, + "confined": 12302, + "##ovich": 12303, + "muller": 12304, + "floyd": 12305, + "nora": 12306, + "1822": 12307, + "paved": 12308, + "1827": 12309, + "cumberland": 12310, + "ned": 12311, + "saga": 12312, + "spiral": 12313, + "##flow": 12314, + "appreciated": 12315, + "yi": 12316, + "collaborative": 12317, + "treating": 12318, + "similarities": 12319, + "feminine": 12320, + "finishes": 12321, + "##ib": 12322, + "jade": 12323, + "import": 12324, + "##nse": 12325, + "##hot": 12326, + "champagne": 12327, + "mice": 12328, + "securing": 12329, + "celebrities": 12330, + "helsinki": 12331, + "attributes": 12332, + "##gos": 12333, + "cousins": 12334, + "phases": 12335, + "ache": 12336, + "lucia": 12337, + "gandhi": 12338, + "submission": 12339, + "vicar": 12340, + "spear": 12341, + "shine": 12342, + "tasmania": 12343, + "biting": 12344, + "detention": 12345, + "constitute": 12346, + "tighter": 12347, + "seasonal": 12348, + "##gus": 12349, + "terrestrial": 12350, + "matthews": 12351, + "##oka": 12352, + "effectiveness": 12353, + "parody": 12354, + "philharmonic": 12355, + "##onic": 12356, + "1816": 12357, + "strangers": 12358, + "encoded": 12359, + "consortium": 12360, + "guaranteed": 12361, + "regards": 12362, + "shifts": 12363, + "tortured": 12364, + "collision": 12365, + "supervisor": 12366, + "inform": 12367, + "broader": 12368, + "insight": 12369, + "theaters": 12370, + "armour": 12371, + "emeritus": 12372, + "blink": 12373, + "incorporates": 12374, + "mapping": 12375, + "##50": 12376, + "##ein": 12377, + "handball": 12378, + "flexible": 12379, + "##nta": 12380, + "substantially": 12381, + "generous": 12382, + "thief": 12383, + "##own": 12384, + "carr": 12385, + "loses": 12386, + "1793": 12387, + "prose": 12388, + "ucla": 12389, + "romeo": 12390, + "generic": 12391, + "metallic": 12392, + "realization": 12393, + "damages": 12394, + "mk": 12395, + "commissioners": 12396, + "zach": 12397, + "default": 12398, + "##ther": 12399, + "helicopters": 12400, + "lengthy": 12401, + "stems": 12402, + "spa": 12403, + "partnered": 12404, + "spectators": 12405, + "rogue": 12406, + "indication": 12407, + "penalties": 12408, + "teresa": 12409, + "1801": 12410, + "sen": 12411, + "##tric": 12412, + "dalton": 12413, + "##wich": 12414, + "irving": 12415, + "photographic": 12416, + "##vey": 12417, + "dell": 12418, + "deaf": 12419, + "peters": 12420, + "excluded": 12421, + "unsure": 12422, + "##vable": 12423, + "patterson": 12424, + "crawled": 12425, + "##zio": 12426, + "resided": 12427, + "whipped": 12428, + "latvia": 12429, + "slower": 12430, + "ecole": 12431, + "pipes": 12432, + "employers": 12433, + "maharashtra": 12434, + "comparable": 12435, + "va": 12436, + "textile": 12437, + "pageant": 12438, + "##gel": 12439, + "alphabet": 12440, + "binary": 12441, + "irrigation": 12442, + "chartered": 12443, + "choked": 12444, + "antoine": 12445, + "offs": 12446, + "waking": 12447, + "supplement": 12448, + "##wen": 12449, + "quantities": 12450, + "demolition": 12451, + "regain": 12452, + "locate": 12453, + "urdu": 12454, + "folks": 12455, + "alt": 12456, + "114": 12457, + "##mc": 12458, + "scary": 12459, + "andreas": 12460, + "whites": 12461, + "##ava": 12462, + "classrooms": 12463, + "mw": 12464, + "aesthetic": 12465, + "publishes": 12466, + "valleys": 12467, + "guides": 12468, + "cubs": 12469, + "johannes": 12470, + "bryant": 12471, + "conventions": 12472, + "affecting": 12473, + "##itt": 12474, + "drain": 12475, + "awesome": 12476, + "isolation": 12477, + "prosecutor": 12478, + "ambitious": 12479, + "apology": 12480, + "captive": 12481, + "downs": 12482, + "atmospheric": 12483, + "lorenzo": 12484, + "aisle": 12485, + "beef": 12486, + "foul": 12487, + "##onia": 12488, + "kidding": 12489, + "composite": 12490, + "disturbed": 12491, + "illusion": 12492, + "natives": 12493, + "##ffer": 12494, + "emi": 12495, + "rockets": 12496, + "riverside": 12497, + "wartime": 12498, + "painters": 12499, + "adolf": 12500, + "melted": 12501, + "##ail": 12502, + "uncertainty": 12503, + "simulation": 12504, + "hawks": 12505, + "progressed": 12506, + "meantime": 12507, + "builder": 12508, + "spray": 12509, + "breach": 12510, + "unhappy": 12511, + "regina": 12512, + "russians": 12513, + "##urg": 12514, + "determining": 12515, + "##tation": 12516, + "tram": 12517, + "1806": 12518, + "##quin": 12519, + "aging": 12520, + "##12": 12521, + "1823": 12522, + "garion": 12523, + "rented": 12524, + "mister": 12525, + "diaz": 12526, + "terminated": 12527, + "clip": 12528, + "1817": 12529, + "depend": 12530, + "nervously": 12531, + "disco": 12532, + "owe": 12533, + "defenders": 12534, + "shiva": 12535, + "notorious": 12536, + "disbelief": 12537, + "shiny": 12538, + "worcester": 12539, + "##gation": 12540, + "##yr": 12541, + "trailing": 12542, + "undertook": 12543, + "islander": 12544, + "belarus": 12545, + "limitations": 12546, + "watershed": 12547, + "fuller": 12548, + "overlooking": 12549, + "utilized": 12550, + "raphael": 12551, + "1819": 12552, + "synthetic": 12553, + "breakdown": 12554, + "klein": 12555, + "##nate": 12556, + "moaned": 12557, + "memoir": 12558, + "lamb": 12559, + "practicing": 12560, + "##erly": 12561, + "cellular": 12562, + "arrows": 12563, + "exotic": 12564, + "##graphy": 12565, + "witches": 12566, + "117": 12567, + "charted": 12568, + "rey": 12569, + "hut": 12570, + "hierarchy": 12571, + "subdivision": 12572, + "freshwater": 12573, + "giuseppe": 12574, + "aloud": 12575, + "reyes": 12576, + "qatar": 12577, + "marty": 12578, + "sideways": 12579, + "utterly": 12580, + "sexually": 12581, + "jude": 12582, + "prayers": 12583, + "mccarthy": 12584, + "softball": 12585, + "blend": 12586, + "damien": 12587, + "##gging": 12588, + "##metric": 12589, + "wholly": 12590, + "erupted": 12591, + "lebanese": 12592, + "negro": 12593, + "revenues": 12594, + "tasted": 12595, + "comparative": 12596, + "teamed": 12597, + "transaction": 12598, + "labeled": 12599, + "maori": 12600, + "sovereignty": 12601, + "parkway": 12602, + "trauma": 12603, + "gran": 12604, + "malay": 12605, + "121": 12606, + "advancement": 12607, + "descendant": 12608, + "2020": 12609, + "buzz": 12610, + "salvation": 12611, + "inventory": 12612, + "symbolic": 12613, + "##making": 12614, + "antarctica": 12615, + "mps": 12616, + "##gas": 12617, + "##bro": 12618, + "mohammed": 12619, + "myanmar": 12620, + "holt": 12621, + "submarines": 12622, + "tones": 12623, + "##lman": 12624, + "locker": 12625, + "patriarch": 12626, + "bangkok": 12627, + "emerson": 12628, + "remarks": 12629, + "predators": 12630, + "kin": 12631, + "afghan": 12632, + "confession": 12633, + "norwich": 12634, + "rental": 12635, + "emerge": 12636, + "advantages": 12637, + "##zel": 12638, + "rca": 12639, + "##hold": 12640, + "shortened": 12641, + "storms": 12642, + "aidan": 12643, + "##matic": 12644, + "autonomy": 12645, + "compliance": 12646, + "##quet": 12647, + "dudley": 12648, + "atp": 12649, + "##osis": 12650, + "1803": 12651, + "motto": 12652, + "documentation": 12653, + "summary": 12654, + "professors": 12655, + "spectacular": 12656, + "christina": 12657, + "archdiocese": 12658, + "flashing": 12659, + "innocence": 12660, + "remake": 12661, + "##dell": 12662, + "psychic": 12663, + "reef": 12664, + "scare": 12665, + "employ": 12666, + "rs": 12667, + "sticks": 12668, + "meg": 12669, + "gus": 12670, + "leans": 12671, + "##ude": 12672, + "accompany": 12673, + "bergen": 12674, + "tomas": 12675, + "##iko": 12676, + "doom": 12677, + "wages": 12678, + "pools": 12679, + "##nch": 12680, + "##bes": 12681, + "breasts": 12682, + "scholarly": 12683, + "alison": 12684, + "outline": 12685, + "brittany": 12686, + "breakthrough": 12687, + "willis": 12688, + "realistic": 12689, + "##cut": 12690, + "##boro": 12691, + "competitor": 12692, + "##stan": 12693, + "pike": 12694, + "picnic": 12695, + "icon": 12696, + "designing": 12697, + "commercials": 12698, + "washing": 12699, + "villain": 12700, + "skiing": 12701, + "micro": 12702, + "costumes": 12703, + "auburn": 12704, + "halted": 12705, + "executives": 12706, + "##hat": 12707, + "logistics": 12708, + "cycles": 12709, + "vowel": 12710, + "applicable": 12711, + "barrett": 12712, + "exclaimed": 12713, + "eurovision": 12714, + "eternity": 12715, + "ramon": 12716, + "##umi": 12717, + "##lls": 12718, + "modifications": 12719, + "sweeping": 12720, + "disgust": 12721, + "##uck": 12722, + "torch": 12723, + "aviv": 12724, + "ensuring": 12725, + "rude": 12726, + "dusty": 12727, + "sonic": 12728, + "donovan": 12729, + "outskirts": 12730, + "cu": 12731, + "pathway": 12732, + "##band": 12733, + "##gun": 12734, + "##lines": 12735, + "disciplines": 12736, + "acids": 12737, + "cadet": 12738, + "paired": 12739, + "##40": 12740, + "sketches": 12741, + "##sive": 12742, + "marriages": 12743, + "##⁺": 12744, + "folding": 12745, + "peers": 12746, + "slovak": 12747, + "implies": 12748, + "admired": 12749, + "##beck": 12750, + "1880s": 12751, + "leopold": 12752, + "instinct": 12753, + "attained": 12754, + "weston": 12755, + "megan": 12756, + "horace": 12757, + "##ination": 12758, + "dorsal": 12759, + "ingredients": 12760, + "evolutionary": 12761, + "##its": 12762, + "complications": 12763, + "deity": 12764, + "lethal": 12765, + "brushing": 12766, + "levy": 12767, + "deserted": 12768, + "institutes": 12769, + "posthumously": 12770, + "delivering": 12771, + "telescope": 12772, + "coronation": 12773, + "motivated": 12774, + "rapids": 12775, + "luc": 12776, + "flicked": 12777, + "pays": 12778, + "volcano": 12779, + "tanner": 12780, + "weighed": 12781, + "##nica": 12782, + "crowds": 12783, + "frankie": 12784, + "gifted": 12785, + "addressing": 12786, + "granddaughter": 12787, + "winding": 12788, + "##rna": 12789, + "constantine": 12790, + "gomez": 12791, + "##front": 12792, + "landscapes": 12793, + "rudolf": 12794, + "anthropology": 12795, + "slate": 12796, + "werewolf": 12797, + "##lio": 12798, + "astronomy": 12799, + "circa": 12800, + "rouge": 12801, + "dreaming": 12802, + "sack": 12803, + "knelt": 12804, + "drowned": 12805, + "naomi": 12806, + "prolific": 12807, + "tracked": 12808, + "freezing": 12809, + "herb": 12810, + "##dium": 12811, + "agony": 12812, + "randall": 12813, + "twisting": 12814, + "wendy": 12815, + "deposit": 12816, + "touches": 12817, + "vein": 12818, + "wheeler": 12819, + "##bbled": 12820, + "##bor": 12821, + "batted": 12822, + "retaining": 12823, + "tire": 12824, + "presently": 12825, + "compare": 12826, + "specification": 12827, + "daemon": 12828, + "nigel": 12829, + "##grave": 12830, + "merry": 12831, + "recommendation": 12832, + "czechoslovakia": 12833, + "sandra": 12834, + "ng": 12835, + "roma": 12836, + "##sts": 12837, + "lambert": 12838, + "inheritance": 12839, + "sheikh": 12840, + "winchester": 12841, + "cries": 12842, + "examining": 12843, + "##yle": 12844, + "comeback": 12845, + "cuisine": 12846, + "nave": 12847, + "##iv": 12848, + "ko": 12849, + "retrieve": 12850, + "tomatoes": 12851, + "barker": 12852, + "polished": 12853, + "defining": 12854, + "irene": 12855, + "lantern": 12856, + "personalities": 12857, + "begging": 12858, + "tract": 12859, + "swore": 12860, + "1809": 12861, + "175": 12862, + "##gic": 12863, + "omaha": 12864, + "brotherhood": 12865, + "##rley": 12866, + "haiti": 12867, + "##ots": 12868, + "exeter": 12869, + "##ete": 12870, + "##zia": 12871, + "steele": 12872, + "dumb": 12873, + "pearson": 12874, + "210": 12875, + "surveyed": 12876, + "elisabeth": 12877, + "trends": 12878, + "##ef": 12879, + "fritz": 12880, + "##rf": 12881, + "premium": 12882, + "bugs": 12883, + "fraction": 12884, + "calmly": 12885, + "viking": 12886, + "##birds": 12887, + "tug": 12888, + "inserted": 12889, + "unusually": 12890, + "##ield": 12891, + "confronted": 12892, + "distress": 12893, + "crashing": 12894, + "brent": 12895, + "turks": 12896, + "resign": 12897, + "##olo": 12898, + "cambodia": 12899, + "gabe": 12900, + "sauce": 12901, + "##kal": 12902, + "evelyn": 12903, + "116": 12904, + "extant": 12905, + "clusters": 12906, + "quarry": 12907, + "teenagers": 12908, + "luna": 12909, + "##lers": 12910, + "##ister": 12911, + "affiliation": 12912, + "drill": 12913, + "##ashi": 12914, + "panthers": 12915, + "scenic": 12916, + "libya": 12917, + "anita": 12918, + "strengthen": 12919, + "inscriptions": 12920, + "##cated": 12921, + "lace": 12922, + "sued": 12923, + "judith": 12924, + "riots": 12925, + "##uted": 12926, + "mint": 12927, + "##eta": 12928, + "preparations": 12929, + "midst": 12930, + "dub": 12931, + "challenger": 12932, + "##vich": 12933, + "mock": 12934, + "cf": 12935, + "displaced": 12936, + "wicket": 12937, + "breaths": 12938, + "enables": 12939, + "schmidt": 12940, + "analyst": 12941, + "##lum": 12942, + "ag": 12943, + "highlight": 12944, + "automotive": 12945, + "axe": 12946, + "josef": 12947, + "newark": 12948, + "sufficiently": 12949, + "resembles": 12950, + "50th": 12951, + "##pal": 12952, + "flushed": 12953, + "mum": 12954, + "traits": 12955, + "##ante": 12956, + "commodore": 12957, + "incomplete": 12958, + "warming": 12959, + "titular": 12960, + "ceremonial": 12961, + "ethical": 12962, + "118": 12963, + "celebrating": 12964, + "eighteenth": 12965, + "cao": 12966, + "lima": 12967, + "medalist": 12968, + "mobility": 12969, + "strips": 12970, + "snakes": 12971, + "##city": 12972, + "miniature": 12973, + "zagreb": 12974, + "barton": 12975, + "escapes": 12976, + "umbrella": 12977, + "automated": 12978, + "doubted": 12979, + "differs": 12980, + "cooled": 12981, + "georgetown": 12982, + "dresden": 12983, + "cooked": 12984, + "fade": 12985, + "wyatt": 12986, + "rna": 12987, + "jacobs": 12988, + "carlton": 12989, + "abundant": 12990, + "stereo": 12991, + "boost": 12992, + "madras": 12993, + "inning": 12994, + "##hia": 12995, + "spur": 12996, + "ip": 12997, + "malayalam": 12998, + "begged": 12999, + "osaka": 13000, + "groan": 13001, + "escaping": 13002, + "charging": 13003, + "dose": 13004, + "vista": 13005, + "##aj": 13006, + "bud": 13007, + "papa": 13008, + "communists": 13009, + "advocates": 13010, + "edged": 13011, + "tri": 13012, + "##cent": 13013, + "resemble": 13014, + "peaking": 13015, + "necklace": 13016, + "fried": 13017, + "montenegro": 13018, + "saxony": 13019, + "goose": 13020, + "glances": 13021, + "stuttgart": 13022, + "curator": 13023, + "recruit": 13024, + "grocery": 13025, + "sympathetic": 13026, + "##tting": 13027, + "##fort": 13028, + "127": 13029, + "lotus": 13030, + "randolph": 13031, + "ancestor": 13032, + "##rand": 13033, + "succeeding": 13034, + "jupiter": 13035, + "1798": 13036, + "macedonian": 13037, + "##heads": 13038, + "hiking": 13039, + "1808": 13040, + "handing": 13041, + "fischer": 13042, + "##itive": 13043, + "garbage": 13044, + "node": 13045, + "##pies": 13046, + "prone": 13047, + "singular": 13048, + "papua": 13049, + "inclined": 13050, + "attractions": 13051, + "italia": 13052, + "pouring": 13053, + "motioned": 13054, + "grandma": 13055, + "garnered": 13056, + "jacksonville": 13057, + "corp": 13058, + "ego": 13059, + "ringing": 13060, + "aluminum": 13061, + "##hausen": 13062, + "ordering": 13063, + "##foot": 13064, + "drawer": 13065, + "traders": 13066, + "synagogue": 13067, + "##play": 13068, + "##kawa": 13069, + "resistant": 13070, + "wandering": 13071, + "fragile": 13072, + "fiona": 13073, + "teased": 13074, + "var": 13075, + "hardcore": 13076, + "soaked": 13077, + "jubilee": 13078, + "decisive": 13079, + "exposition": 13080, + "mercer": 13081, + "poster": 13082, + "valencia": 13083, + "hale": 13084, + "kuwait": 13085, + "1811": 13086, + "##ises": 13087, + "##wr": 13088, + "##eed": 13089, + "tavern": 13090, + "gamma": 13091, + "122": 13092, + "johan": 13093, + "##uer": 13094, + "airways": 13095, + "amino": 13096, + "gil": 13097, + "##ury": 13098, + "vocational": 13099, + "domains": 13100, + "torres": 13101, + "##sp": 13102, + "generator": 13103, + "folklore": 13104, + "outcomes": 13105, + "##keeper": 13106, + "canberra": 13107, + "shooter": 13108, + "fl": 13109, + "beams": 13110, + "confrontation": 13111, + "##lling": 13112, + "##gram": 13113, + "feb": 13114, + "aligned": 13115, + "forestry": 13116, + "pipeline": 13117, + "jax": 13118, + "motorway": 13119, + "conception": 13120, + "decay": 13121, + "##tos": 13122, + "coffin": 13123, + "##cott": 13124, + "stalin": 13125, + "1805": 13126, + "escorted": 13127, + "minded": 13128, + "##nam": 13129, + "sitcom": 13130, + "purchasing": 13131, + "twilight": 13132, + "veronica": 13133, + "additions": 13134, + "passive": 13135, + "tensions": 13136, + "straw": 13137, + "123": 13138, + "frequencies": 13139, + "1804": 13140, + "refugee": 13141, + "cultivation": 13142, + "##iate": 13143, + "christie": 13144, + "clary": 13145, + "bulletin": 13146, + "crept": 13147, + "disposal": 13148, + "##rich": 13149, + "##zong": 13150, + "processor": 13151, + "crescent": 13152, + "##rol": 13153, + "bmw": 13154, + "emphasized": 13155, + "whale": 13156, + "nazis": 13157, + "aurora": 13158, + "##eng": 13159, + "dwelling": 13160, + "hauled": 13161, + "sponsors": 13162, + "toledo": 13163, + "mega": 13164, + "ideology": 13165, + "theatres": 13166, + "tessa": 13167, + "cerambycidae": 13168, + "saves": 13169, + "turtle": 13170, + "cone": 13171, + "suspects": 13172, + "kara": 13173, + "rusty": 13174, + "yelling": 13175, + "greeks": 13176, + "mozart": 13177, + "shades": 13178, + "cocked": 13179, + "participant": 13180, + "##tro": 13181, + "shire": 13182, + "spit": 13183, + "freeze": 13184, + "necessity": 13185, + "##cos": 13186, + "inmates": 13187, + "nielsen": 13188, + "councillors": 13189, + "loaned": 13190, + "uncommon": 13191, + "omar": 13192, + "peasants": 13193, + "botanical": 13194, + "offspring": 13195, + "daniels": 13196, + "formations": 13197, + "jokes": 13198, + "1794": 13199, + "pioneers": 13200, + "sigma": 13201, + "licensing": 13202, + "##sus": 13203, + "wheelchair": 13204, + "polite": 13205, + "1807": 13206, + "liquor": 13207, + "pratt": 13208, + "trustee": 13209, + "##uta": 13210, + "forewings": 13211, + "balloon": 13212, + "##zz": 13213, + "kilometre": 13214, + "camping": 13215, + "explicit": 13216, + "casually": 13217, + "shawn": 13218, + "foolish": 13219, + "teammates": 13220, + "nm": 13221, + "hassan": 13222, + "carrie": 13223, + "judged": 13224, + "satisfy": 13225, + "vanessa": 13226, + "knives": 13227, + "selective": 13228, + "cnn": 13229, + "flowed": 13230, + "##lice": 13231, + "eclipse": 13232, + "stressed": 13233, + "eliza": 13234, + "mathematician": 13235, + "cease": 13236, + "cultivated": 13237, + "##roy": 13238, + "commissions": 13239, + "browns": 13240, + "##ania": 13241, + "destroyers": 13242, + "sheridan": 13243, + "meadow": 13244, + "##rius": 13245, + "minerals": 13246, + "##cial": 13247, + "downstream": 13248, + "clash": 13249, + "gram": 13250, + "memoirs": 13251, + "ventures": 13252, + "baha": 13253, + "seymour": 13254, + "archie": 13255, + "midlands": 13256, + "edith": 13257, + "fare": 13258, + "flynn": 13259, + "invite": 13260, + "canceled": 13261, + "tiles": 13262, + "stabbed": 13263, + "boulder": 13264, + "incorporate": 13265, + "amended": 13266, + "camden": 13267, + "facial": 13268, + "mollusk": 13269, + "unreleased": 13270, + "descriptions": 13271, + "yoga": 13272, + "grabs": 13273, + "550": 13274, + "raises": 13275, + "ramp": 13276, + "shiver": 13277, + "##rose": 13278, + "coined": 13279, + "pioneering": 13280, + "tunes": 13281, + "qing": 13282, + "warwick": 13283, + "tops": 13284, + "119": 13285, + "melanie": 13286, + "giles": 13287, + "##rous": 13288, + "wandered": 13289, + "##inal": 13290, + "annexed": 13291, + "nov": 13292, + "30th": 13293, + "unnamed": 13294, + "##ished": 13295, + "organizational": 13296, + "airplane": 13297, + "normandy": 13298, + "stoke": 13299, + "whistle": 13300, + "blessing": 13301, + "violations": 13302, + "chased": 13303, + "holders": 13304, + "shotgun": 13305, + "##ctic": 13306, + "outlet": 13307, + "reactor": 13308, + "##vik": 13309, + "tires": 13310, + "tearing": 13311, + "shores": 13312, + "fortified": 13313, + "mascot": 13314, + "constituencies": 13315, + "nc": 13316, + "columnist": 13317, + "productive": 13318, + "tibet": 13319, + "##rta": 13320, + "lineage": 13321, + "hooked": 13322, + "oct": 13323, + "tapes": 13324, + "judging": 13325, + "cody": 13326, + "##gger": 13327, + "hansen": 13328, + "kashmir": 13329, + "triggered": 13330, + "##eva": 13331, + "solved": 13332, + "cliffs": 13333, + "##tree": 13334, + "resisted": 13335, + "anatomy": 13336, + "protesters": 13337, + "transparent": 13338, + "implied": 13339, + "##iga": 13340, + "injection": 13341, + "mattress": 13342, + "excluding": 13343, + "##mbo": 13344, + "defenses": 13345, + "helpless": 13346, + "devotion": 13347, + "##elli": 13348, + "growl": 13349, + "liberals": 13350, + "weber": 13351, + "phenomena": 13352, + "atoms": 13353, + "plug": 13354, + "##iff": 13355, + "mortality": 13356, + "apprentice": 13357, + "howe": 13358, + "convincing": 13359, + "aaa": 13360, + "swimmer": 13361, + "barber": 13362, + "leone": 13363, + "promptly": 13364, + "sodium": 13365, + "def": 13366, + "nowadays": 13367, + "arise": 13368, + "##oning": 13369, + "gloucester": 13370, + "corrected": 13371, + "dignity": 13372, + "norm": 13373, + "erie": 13374, + "##ders": 13375, + "elders": 13376, + "evacuated": 13377, + "sylvia": 13378, + "compression": 13379, + "##yar": 13380, + "hartford": 13381, + "pose": 13382, + "backpack": 13383, + "reasoning": 13384, + "accepts": 13385, + "24th": 13386, + "wipe": 13387, + "millimetres": 13388, + "marcel": 13389, + "##oda": 13390, + "dodgers": 13391, + "albion": 13392, + "1790": 13393, + "overwhelmed": 13394, + "aerospace": 13395, + "oaks": 13396, + "1795": 13397, + "showcase": 13398, + "acknowledge": 13399, + "recovering": 13400, + "nolan": 13401, + "ashe": 13402, + "hurts": 13403, + "geology": 13404, + "fashioned": 13405, + "disappearance": 13406, + "farewell": 13407, + "swollen": 13408, + "shrug": 13409, + "marquis": 13410, + "wimbledon": 13411, + "124": 13412, + "rue": 13413, + "1792": 13414, + "commemorate": 13415, + "reduces": 13416, + "experiencing": 13417, + "inevitable": 13418, + "calcutta": 13419, + "intel": 13420, + "##court": 13421, + "murderer": 13422, + "sticking": 13423, + "fisheries": 13424, + "imagery": 13425, + "bloom": 13426, + "280": 13427, + "brake": 13428, + "##inus": 13429, + "gustav": 13430, + "hesitation": 13431, + "memorable": 13432, + "po": 13433, + "viral": 13434, + "beans": 13435, + "accidents": 13436, + "tunisia": 13437, + "antenna": 13438, + "spilled": 13439, + "consort": 13440, + "treatments": 13441, + "aye": 13442, + "perimeter": 13443, + "##gard": 13444, + "donation": 13445, + "hostage": 13446, + "migrated": 13447, + "banker": 13448, + "addiction": 13449, + "apex": 13450, + "lil": 13451, + "trout": 13452, + "##ously": 13453, + "conscience": 13454, + "##nova": 13455, + "rams": 13456, + "sands": 13457, + "genome": 13458, + "passionate": 13459, + "troubles": 13460, + "##lets": 13461, + "##set": 13462, + "amid": 13463, + "##ibility": 13464, + "##ret": 13465, + "higgins": 13466, + "exceed": 13467, + "vikings": 13468, + "##vie": 13469, + "payne": 13470, + "##zan": 13471, + "muscular": 13472, + "##ste": 13473, + "defendant": 13474, + "sucking": 13475, + "##wal": 13476, + "ibrahim": 13477, + "fuselage": 13478, + "claudia": 13479, + "vfl": 13480, + "europeans": 13481, + "snails": 13482, + "interval": 13483, + "##garh": 13484, + "preparatory": 13485, + "statewide": 13486, + "tasked": 13487, + "lacrosse": 13488, + "viktor": 13489, + "##lation": 13490, + "angola": 13491, + "##hra": 13492, + "flint": 13493, + "implications": 13494, + "employs": 13495, + "teens": 13496, + "patrons": 13497, + "stall": 13498, + "weekends": 13499, + "barriers": 13500, + "scrambled": 13501, + "nucleus": 13502, + "tehran": 13503, + "jenna": 13504, + "parsons": 13505, + "lifelong": 13506, + "robots": 13507, + "displacement": 13508, + "5000": 13509, + "##bles": 13510, + "precipitation": 13511, + "##gt": 13512, + "knuckles": 13513, + "clutched": 13514, + "1802": 13515, + "marrying": 13516, + "ecology": 13517, + "marx": 13518, + "accusations": 13519, + "declare": 13520, + "scars": 13521, + "kolkata": 13522, + "mat": 13523, + "meadows": 13524, + "bermuda": 13525, + "skeleton": 13526, + "finalists": 13527, + "vintage": 13528, + "crawl": 13529, + "coordinate": 13530, + "affects": 13531, + "subjected": 13532, + "orchestral": 13533, + "mistaken": 13534, + "##tc": 13535, + "mirrors": 13536, + "dipped": 13537, + "relied": 13538, + "260": 13539, + "arches": 13540, + "candle": 13541, + "##nick": 13542, + "incorporating": 13543, + "wildly": 13544, + "fond": 13545, + "basilica": 13546, + "owl": 13547, + "fringe": 13548, + "rituals": 13549, + "whispering": 13550, + "stirred": 13551, + "feud": 13552, + "tertiary": 13553, + "slick": 13554, + "goat": 13555, + "honorable": 13556, + "whereby": 13557, + "skip": 13558, + "ricardo": 13559, + "stripes": 13560, + "parachute": 13561, + "adjoining": 13562, + "submerged": 13563, + "synthesizer": 13564, + "##gren": 13565, + "intend": 13566, + "positively": 13567, + "ninety": 13568, + "phi": 13569, + "beaver": 13570, + "partition": 13571, + "fellows": 13572, + "alexis": 13573, + "prohibition": 13574, + "carlisle": 13575, + "bizarre": 13576, + "fraternity": 13577, + "##bre": 13578, + "doubts": 13579, + "icy": 13580, + "cbc": 13581, + "aquatic": 13582, + "sneak": 13583, + "sonny": 13584, + "combines": 13585, + "airports": 13586, + "crude": 13587, + "supervised": 13588, + "spatial": 13589, + "merge": 13590, + "alfonso": 13591, + "##bic": 13592, + "corrupt": 13593, + "scan": 13594, + "undergo": 13595, + "##ams": 13596, + "disabilities": 13597, + "colombian": 13598, + "comparing": 13599, + "dolphins": 13600, + "perkins": 13601, + "##lish": 13602, + "reprinted": 13603, + "unanimous": 13604, + "bounced": 13605, + "hairs": 13606, + "underworld": 13607, + "midwest": 13608, + "semester": 13609, + "bucket": 13610, + "paperback": 13611, + "miniseries": 13612, + "coventry": 13613, + "demise": 13614, + "##leigh": 13615, + "demonstrations": 13616, + "sensor": 13617, + "rotating": 13618, + "yan": 13619, + "##hler": 13620, + "arrange": 13621, + "soils": 13622, + "##idge": 13623, + "hyderabad": 13624, + "labs": 13625, + "##dr": 13626, + "brakes": 13627, + "grandchildren": 13628, + "##nde": 13629, + "negotiated": 13630, + "rover": 13631, + "ferrari": 13632, + "continuation": 13633, + "directorate": 13634, + "augusta": 13635, + "stevenson": 13636, + "counterpart": 13637, + "gore": 13638, + "##rda": 13639, + "nursery": 13640, + "rican": 13641, + "ave": 13642, + "collectively": 13643, + "broadly": 13644, + "pastoral": 13645, + "repertoire": 13646, + "asserted": 13647, + "discovering": 13648, + "nordic": 13649, + "styled": 13650, + "fiba": 13651, + "cunningham": 13652, + "harley": 13653, + "middlesex": 13654, + "survives": 13655, + "tumor": 13656, + "tempo": 13657, + "zack": 13658, + "aiming": 13659, + "lok": 13660, + "urgent": 13661, + "##rade": 13662, + "##nto": 13663, + "devils": 13664, + "##ement": 13665, + "contractor": 13666, + "turin": 13667, + "##wl": 13668, + "##ool": 13669, + "bliss": 13670, + "repaired": 13671, + "simmons": 13672, + "moan": 13673, + "astronomical": 13674, + "cr": 13675, + "negotiate": 13676, + "lyric": 13677, + "1890s": 13678, + "lara": 13679, + "bred": 13680, + "clad": 13681, + "angus": 13682, + "pbs": 13683, + "##ience": 13684, + "engineered": 13685, + "posed": 13686, + "##lk": 13687, + "hernandez": 13688, + "possessions": 13689, + "elbows": 13690, + "psychiatric": 13691, + "strokes": 13692, + "confluence": 13693, + "electorate": 13694, + "lifts": 13695, + "campuses": 13696, + "lava": 13697, + "alps": 13698, + "##ep": 13699, + "##ution": 13700, + "##date": 13701, + "physicist": 13702, + "woody": 13703, + "##page": 13704, + "##ographic": 13705, + "##itis": 13706, + "juliet": 13707, + "reformation": 13708, + "sparhawk": 13709, + "320": 13710, + "complement": 13711, + "suppressed": 13712, + "jewel": 13713, + "##½": 13714, + "floated": 13715, + "##kas": 13716, + "continuity": 13717, + "sadly": 13718, + "##ische": 13719, + "inability": 13720, + "melting": 13721, + "scanning": 13722, + "paula": 13723, + "flour": 13724, + "judaism": 13725, + "safer": 13726, + "vague": 13727, + "##lm": 13728, + "solving": 13729, + "curb": 13730, + "##stown": 13731, + "financially": 13732, + "gable": 13733, + "bees": 13734, + "expired": 13735, + "miserable": 13736, + "cassidy": 13737, + "dominion": 13738, + "1789": 13739, + "cupped": 13740, + "145": 13741, + "robbery": 13742, + "facto": 13743, + "amos": 13744, + "warden": 13745, + "resume": 13746, + "tallest": 13747, + "marvin": 13748, + "ing": 13749, + "pounded": 13750, + "usd": 13751, + "declaring": 13752, + "gasoline": 13753, + "##aux": 13754, + "darkened": 13755, + "270": 13756, + "650": 13757, + "sophomore": 13758, + "##mere": 13759, + "erection": 13760, + "gossip": 13761, + "televised": 13762, + "risen": 13763, + "dial": 13764, + "##eu": 13765, + "pillars": 13766, + "##link": 13767, + "passages": 13768, + "profound": 13769, + "##tina": 13770, + "arabian": 13771, + "ashton": 13772, + "silicon": 13773, + "nail": 13774, + "##ead": 13775, + "##lated": 13776, + "##wer": 13777, + "##hardt": 13778, + "fleming": 13779, + "firearms": 13780, + "ducked": 13781, + "circuits": 13782, + "blows": 13783, + "waterloo": 13784, + "titans": 13785, + "##lina": 13786, + "atom": 13787, + "fireplace": 13788, + "cheshire": 13789, + "financed": 13790, + "activation": 13791, + "algorithms": 13792, + "##zzi": 13793, + "constituent": 13794, + "catcher": 13795, + "cherokee": 13796, + "partnerships": 13797, + "sexuality": 13798, + "platoon": 13799, + "tragic": 13800, + "vivian": 13801, + "guarded": 13802, + "whiskey": 13803, + "meditation": 13804, + "poetic": 13805, + "##late": 13806, + "##nga": 13807, + "##ake": 13808, + "porto": 13809, + "listeners": 13810, + "dominance": 13811, + "kendra": 13812, + "mona": 13813, + "chandler": 13814, + "factions": 13815, + "22nd": 13816, + "salisbury": 13817, + "attitudes": 13818, + "derivative": 13819, + "##ido": 13820, + "##haus": 13821, + "intake": 13822, + "paced": 13823, + "javier": 13824, + "illustrator": 13825, + "barrels": 13826, + "bias": 13827, + "cockpit": 13828, + "burnett": 13829, + "dreamed": 13830, + "ensuing": 13831, + "##anda": 13832, + "receptors": 13833, + "someday": 13834, + "hawkins": 13835, + "mattered": 13836, + "##lal": 13837, + "slavic": 13838, + "1799": 13839, + "jesuit": 13840, + "cameroon": 13841, + "wasted": 13842, + "tai": 13843, + "wax": 13844, + "lowering": 13845, + "victorious": 13846, + "freaking": 13847, + "outright": 13848, + "hancock": 13849, + "librarian": 13850, + "sensing": 13851, + "bald": 13852, + "calcium": 13853, + "myers": 13854, + "tablet": 13855, + "announcing": 13856, + "barack": 13857, + "shipyard": 13858, + "pharmaceutical": 13859, + "##uan": 13860, + "greenwich": 13861, + "flush": 13862, + "medley": 13863, + "patches": 13864, + "wolfgang": 13865, + "pt": 13866, + "speeches": 13867, + "acquiring": 13868, + "exams": 13869, + "nikolai": 13870, + "##gg": 13871, + "hayden": 13872, + "kannada": 13873, + "##type": 13874, + "reilly": 13875, + "##pt": 13876, + "waitress": 13877, + "abdomen": 13878, + "devastated": 13879, + "capped": 13880, + "pseudonym": 13881, + "pharmacy": 13882, + "fulfill": 13883, + "paraguay": 13884, + "1796": 13885, + "clicked": 13886, + "##trom": 13887, + "archipelago": 13888, + "syndicated": 13889, + "##hman": 13890, + "lumber": 13891, + "orgasm": 13892, + "rejection": 13893, + "clifford": 13894, + "lorraine": 13895, + "advent": 13896, + "mafia": 13897, + "rodney": 13898, + "brock": 13899, + "##ght": 13900, + "##used": 13901, + "##elia": 13902, + "cassette": 13903, + "chamberlain": 13904, + "despair": 13905, + "mongolia": 13906, + "sensors": 13907, + "developmental": 13908, + "upstream": 13909, + "##eg": 13910, + "##alis": 13911, + "spanning": 13912, + "165": 13913, + "trombone": 13914, + "basque": 13915, + "seeded": 13916, + "interred": 13917, + "renewable": 13918, + "rhys": 13919, + "leapt": 13920, + "revision": 13921, + "molecule": 13922, + "##ages": 13923, + "chord": 13924, + "vicious": 13925, + "nord": 13926, + "shivered": 13927, + "23rd": 13928, + "arlington": 13929, + "debts": 13930, + "corpus": 13931, + "sunrise": 13932, + "bays": 13933, + "blackburn": 13934, + "centimetres": 13935, + "##uded": 13936, + "shuddered": 13937, + "gm": 13938, + "strangely": 13939, + "gripping": 13940, + "cartoons": 13941, + "isabelle": 13942, + "orbital": 13943, + "##ppa": 13944, + "seals": 13945, + "proving": 13946, + "##lton": 13947, + "refusal": 13948, + "strengthened": 13949, + "bust": 13950, + "assisting": 13951, + "baghdad": 13952, + "batsman": 13953, + "portrayal": 13954, + "mara": 13955, + "pushes": 13956, + "spears": 13957, + "og": 13958, + "##cock": 13959, + "reside": 13960, + "nathaniel": 13961, + "brennan": 13962, + "1776": 13963, + "confirmation": 13964, + "caucus": 13965, + "##worthy": 13966, + "markings": 13967, + "yemen": 13968, + "nobles": 13969, + "ku": 13970, + "lazy": 13971, + "viewer": 13972, + "catalan": 13973, + "encompasses": 13974, + "sawyer": 13975, + "##fall": 13976, + "sparked": 13977, + "substances": 13978, + "patents": 13979, + "braves": 13980, + "arranger": 13981, + "evacuation": 13982, + "sergio": 13983, + "persuade": 13984, + "dover": 13985, + "tolerance": 13986, + "penguin": 13987, + "cum": 13988, + "jockey": 13989, + "insufficient": 13990, + "townships": 13991, + "occupying": 13992, + "declining": 13993, + "plural": 13994, + "processed": 13995, + "projection": 13996, + "puppet": 13997, + "flanders": 13998, + "introduces": 13999, + "liability": 14000, + "##yon": 14001, + "gymnastics": 14002, + "antwerp": 14003, + "taipei": 14004, + "hobart": 14005, + "candles": 14006, + "jeep": 14007, + "wes": 14008, + "observers": 14009, + "126": 14010, + "chaplain": 14011, + "bundle": 14012, + "glorious": 14013, + "##hine": 14014, + "hazel": 14015, + "flung": 14016, + "sol": 14017, + "excavations": 14018, + "dumped": 14019, + "stares": 14020, + "sh": 14021, + "bangalore": 14022, + "triangular": 14023, + "icelandic": 14024, + "intervals": 14025, + "expressing": 14026, + "turbine": 14027, + "##vers": 14028, + "songwriting": 14029, + "crafts": 14030, + "##igo": 14031, + "jasmine": 14032, + "ditch": 14033, + "rite": 14034, + "##ways": 14035, + "entertaining": 14036, + "comply": 14037, + "sorrow": 14038, + "wrestlers": 14039, + "basel": 14040, + "emirates": 14041, + "marian": 14042, + "rivera": 14043, + "helpful": 14044, + "##some": 14045, + "caution": 14046, + "downward": 14047, + "networking": 14048, + "##atory": 14049, + "##tered": 14050, + "darted": 14051, + "genocide": 14052, + "emergence": 14053, + "replies": 14054, + "specializing": 14055, + "spokesman": 14056, + "convenient": 14057, + "unlocked": 14058, + "fading": 14059, + "augustine": 14060, + "concentrations": 14061, + "resemblance": 14062, + "elijah": 14063, + "investigator": 14064, + "andhra": 14065, + "##uda": 14066, + "promotes": 14067, + "bean": 14068, + "##rrell": 14069, + "fleeing": 14070, + "wan": 14071, + "simone": 14072, + "announcer": 14073, + "##ame": 14074, + "##bby": 14075, + "lydia": 14076, + "weaver": 14077, + "132": 14078, + "residency": 14079, + "modification": 14080, + "##fest": 14081, + "stretches": 14082, + "##ast": 14083, + "alternatively": 14084, + "nat": 14085, + "lowe": 14086, + "lacks": 14087, + "##ented": 14088, + "pam": 14089, + "tile": 14090, + "concealed": 14091, + "inferior": 14092, + "abdullah": 14093, + "residences": 14094, + "tissues": 14095, + "vengeance": 14096, + "##ided": 14097, + "moisture": 14098, + "peculiar": 14099, + "groove": 14100, + "zip": 14101, + "bologna": 14102, + "jennings": 14103, + "ninja": 14104, + "oversaw": 14105, + "zombies": 14106, + "pumping": 14107, + "batch": 14108, + "livingston": 14109, + "emerald": 14110, + "installations": 14111, + "1797": 14112, + "peel": 14113, + "nitrogen": 14114, + "rama": 14115, + "##fying": 14116, + "##star": 14117, + "schooling": 14118, + "strands": 14119, + "responding": 14120, + "werner": 14121, + "##ost": 14122, + "lime": 14123, + "casa": 14124, + "accurately": 14125, + "targeting": 14126, + "##rod": 14127, + "underway": 14128, + "##uru": 14129, + "hemisphere": 14130, + "lester": 14131, + "##yard": 14132, + "occupies": 14133, + "2d": 14134, + "griffith": 14135, + "angrily": 14136, + "reorganized": 14137, + "##owing": 14138, + "courtney": 14139, + "deposited": 14140, + "##dd": 14141, + "##30": 14142, + "estadio": 14143, + "##ifies": 14144, + "dunn": 14145, + "exiled": 14146, + "##ying": 14147, + "checks": 14148, + "##combe": 14149, + "##о": 14150, + "##fly": 14151, + "successes": 14152, + "unexpectedly": 14153, + "blu": 14154, + "assessed": 14155, + "##flower": 14156, + "##ه": 14157, + "observing": 14158, + "sacked": 14159, + "spiders": 14160, + "kn": 14161, + "##tail": 14162, + "mu": 14163, + "nodes": 14164, + "prosperity": 14165, + "audrey": 14166, + "divisional": 14167, + "155": 14168, + "broncos": 14169, + "tangled": 14170, + "adjust": 14171, + "feeds": 14172, + "erosion": 14173, + "paolo": 14174, + "surf": 14175, + "directory": 14176, + "snatched": 14177, + "humid": 14178, + "admiralty": 14179, + "screwed": 14180, + "gt": 14181, + "reddish": 14182, + "##nese": 14183, + "modules": 14184, + "trench": 14185, + "lamps": 14186, + "bind": 14187, + "leah": 14188, + "bucks": 14189, + "competes": 14190, + "##nz": 14191, + "##form": 14192, + "transcription": 14193, + "##uc": 14194, + "isles": 14195, + "violently": 14196, + "clutching": 14197, + "pga": 14198, + "cyclist": 14199, + "inflation": 14200, + "flats": 14201, + "ragged": 14202, + "unnecessary": 14203, + "##hian": 14204, + "stubborn": 14205, + "coordinated": 14206, + "harriet": 14207, + "baba": 14208, + "disqualified": 14209, + "330": 14210, + "insect": 14211, + "wolfe": 14212, + "##fies": 14213, + "reinforcements": 14214, + "rocked": 14215, + "duel": 14216, + "winked": 14217, + "embraced": 14218, + "bricks": 14219, + "##raj": 14220, + "hiatus": 14221, + "defeats": 14222, + "pending": 14223, + "brightly": 14224, + "jealousy": 14225, + "##xton": 14226, + "##hm": 14227, + "##uki": 14228, + "lena": 14229, + "gdp": 14230, + "colorful": 14231, + "##dley": 14232, + "stein": 14233, + "kidney": 14234, + "##shu": 14235, + "underwear": 14236, + "wanderers": 14237, + "##haw": 14238, + "##icus": 14239, + "guardians": 14240, + "m³": 14241, + "roared": 14242, + "habits": 14243, + "##wise": 14244, + "permits": 14245, + "gp": 14246, + "uranium": 14247, + "punished": 14248, + "disguise": 14249, + "bundesliga": 14250, + "elise": 14251, + "dundee": 14252, + "erotic": 14253, + "partisan": 14254, + "pi": 14255, + "collectors": 14256, + "float": 14257, + "individually": 14258, + "rendering": 14259, + "behavioral": 14260, + "bucharest": 14261, + "ser": 14262, + "hare": 14263, + "valerie": 14264, + "corporal": 14265, + "nutrition": 14266, + "proportional": 14267, + "##isa": 14268, + "immense": 14269, + "##kis": 14270, + "pavement": 14271, + "##zie": 14272, + "##eld": 14273, + "sutherland": 14274, + "crouched": 14275, + "1775": 14276, + "##lp": 14277, + "suzuki": 14278, + "trades": 14279, + "endurance": 14280, + "operas": 14281, + "crosby": 14282, + "prayed": 14283, + "priory": 14284, + "rory": 14285, + "socially": 14286, + "##urn": 14287, + "gujarat": 14288, + "##pu": 14289, + "walton": 14290, + "cube": 14291, + "pasha": 14292, + "privilege": 14293, + "lennon": 14294, + "floods": 14295, + "thorne": 14296, + "waterfall": 14297, + "nipple": 14298, + "scouting": 14299, + "approve": 14300, + "##lov": 14301, + "minorities": 14302, + "voter": 14303, + "dwight": 14304, + "extensions": 14305, + "assure": 14306, + "ballroom": 14307, + "slap": 14308, + "dripping": 14309, + "privileges": 14310, + "rejoined": 14311, + "confessed": 14312, + "demonstrating": 14313, + "patriotic": 14314, + "yell": 14315, + "investor": 14316, + "##uth": 14317, + "pagan": 14318, + "slumped": 14319, + "squares": 14320, + "##cle": 14321, + "##kins": 14322, + "confront": 14323, + "bert": 14324, + "embarrassment": 14325, + "##aid": 14326, + "aston": 14327, + "urging": 14328, + "sweater": 14329, + "starr": 14330, + "yuri": 14331, + "brains": 14332, + "williamson": 14333, + "commuter": 14334, + "mortar": 14335, + "structured": 14336, + "selfish": 14337, + "exports": 14338, + "##jon": 14339, + "cds": 14340, + "##him": 14341, + "unfinished": 14342, + "##rre": 14343, + "mortgage": 14344, + "destinations": 14345, + "##nagar": 14346, + "canoe": 14347, + "solitary": 14348, + "buchanan": 14349, + "delays": 14350, + "magistrate": 14351, + "fk": 14352, + "##pling": 14353, + "motivation": 14354, + "##lier": 14355, + "##vier": 14356, + "recruiting": 14357, + "assess": 14358, + "##mouth": 14359, + "malik": 14360, + "antique": 14361, + "1791": 14362, + "pius": 14363, + "rahman": 14364, + "reich": 14365, + "tub": 14366, + "zhou": 14367, + "smashed": 14368, + "airs": 14369, + "galway": 14370, + "xii": 14371, + "conditioning": 14372, + "honduras": 14373, + "discharged": 14374, + "dexter": 14375, + "##pf": 14376, + "lionel": 14377, + "129": 14378, + "debates": 14379, + "lemon": 14380, + "tiffany": 14381, + "volunteered": 14382, + "dom": 14383, + "dioxide": 14384, + "procession": 14385, + "devi": 14386, + "sic": 14387, + "tremendous": 14388, + "advertisements": 14389, + "colts": 14390, + "transferring": 14391, + "verdict": 14392, + "hanover": 14393, + "decommissioned": 14394, + "utter": 14395, + "relate": 14396, + "pac": 14397, + "racism": 14398, + "##top": 14399, + "beacon": 14400, + "limp": 14401, + "similarity": 14402, + "terra": 14403, + "occurrence": 14404, + "ant": 14405, + "##how": 14406, + "becky": 14407, + "capt": 14408, + "updates": 14409, + "armament": 14410, + "richie": 14411, + "pal": 14412, + "##graph": 14413, + "halloween": 14414, + "mayo": 14415, + "##ssen": 14416, + "##bone": 14417, + "cara": 14418, + "serena": 14419, + "fcc": 14420, + "dolls": 14421, + "obligations": 14422, + "##dling": 14423, + "violated": 14424, + "lafayette": 14425, + "jakarta": 14426, + "exploitation": 14427, + "##ime": 14428, + "infamous": 14429, + "iconic": 14430, + "##lah": 14431, + "##park": 14432, + "kitty": 14433, + "moody": 14434, + "reginald": 14435, + "dread": 14436, + "spill": 14437, + "crystals": 14438, + "olivier": 14439, + "modeled": 14440, + "bluff": 14441, + "equilibrium": 14442, + "separating": 14443, + "notices": 14444, + "ordnance": 14445, + "extinction": 14446, + "onset": 14447, + "cosmic": 14448, + "attachment": 14449, + "sammy": 14450, + "expose": 14451, + "privy": 14452, + "anchored": 14453, + "##bil": 14454, + "abbott": 14455, + "admits": 14456, + "bending": 14457, + "baritone": 14458, + "emmanuel": 14459, + "policeman": 14460, + "vaughan": 14461, + "winged": 14462, + "climax": 14463, + "dresses": 14464, + "denny": 14465, + "polytechnic": 14466, + "mohamed": 14467, + "burmese": 14468, + "authentic": 14469, + "nikki": 14470, + "genetics": 14471, + "grandparents": 14472, + "homestead": 14473, + "gaza": 14474, + "postponed": 14475, + "metacritic": 14476, + "una": 14477, + "##sby": 14478, + "##bat": 14479, + "unstable": 14480, + "dissertation": 14481, + "##rial": 14482, + "##cian": 14483, + "curls": 14484, + "obscure": 14485, + "uncovered": 14486, + "bronx": 14487, + "praying": 14488, + "disappearing": 14489, + "##hoe": 14490, + "prehistoric": 14491, + "coke": 14492, + "turret": 14493, + "mutations": 14494, + "nonprofit": 14495, + "pits": 14496, + "monaco": 14497, + "##ي": 14498, + "##usion": 14499, + "prominently": 14500, + "dispatched": 14501, + "podium": 14502, + "##mir": 14503, + "uci": 14504, + "##uation": 14505, + "133": 14506, + "fortifications": 14507, + "birthplace": 14508, + "kendall": 14509, + "##lby": 14510, + "##oll": 14511, + "preacher": 14512, + "rack": 14513, + "goodman": 14514, + "##rman": 14515, + "persistent": 14516, + "##ott": 14517, + "countless": 14518, + "jaime": 14519, + "recorder": 14520, + "lexington": 14521, + "persecution": 14522, + "jumps": 14523, + "renewal": 14524, + "wagons": 14525, + "##11": 14526, + "crushing": 14527, + "##holder": 14528, + "decorations": 14529, + "##lake": 14530, + "abundance": 14531, + "wrath": 14532, + "laundry": 14533, + "£1": 14534, + "garde": 14535, + "##rp": 14536, + "jeanne": 14537, + "beetles": 14538, + "peasant": 14539, + "##sl": 14540, + "splitting": 14541, + "caste": 14542, + "sergei": 14543, + "##rer": 14544, + "##ema": 14545, + "scripts": 14546, + "##ively": 14547, + "rub": 14548, + "satellites": 14549, + "##vor": 14550, + "inscribed": 14551, + "verlag": 14552, + "scrapped": 14553, + "gale": 14554, + "packages": 14555, + "chick": 14556, + "potato": 14557, + "slogan": 14558, + "kathleen": 14559, + "arabs": 14560, + "##culture": 14561, + "counterparts": 14562, + "reminiscent": 14563, + "choral": 14564, + "##tead": 14565, + "rand": 14566, + "retains": 14567, + "bushes": 14568, + "dane": 14569, + "accomplish": 14570, + "courtesy": 14571, + "closes": 14572, + "##oth": 14573, + "slaughter": 14574, + "hague": 14575, + "krakow": 14576, + "lawson": 14577, + "tailed": 14578, + "elias": 14579, + "ginger": 14580, + "##ttes": 14581, + "canopy": 14582, + "betrayal": 14583, + "rebuilding": 14584, + "turf": 14585, + "##hof": 14586, + "frowning": 14587, + "allegiance": 14588, + "brigades": 14589, + "kicks": 14590, + "rebuild": 14591, + "polls": 14592, + "alias": 14593, + "nationalism": 14594, + "td": 14595, + "rowan": 14596, + "audition": 14597, + "bowie": 14598, + "fortunately": 14599, + "recognizes": 14600, + "harp": 14601, + "dillon": 14602, + "horrified": 14603, + "##oro": 14604, + "renault": 14605, + "##tics": 14606, + "ropes": 14607, + "##α": 14608, + "presumed": 14609, + "rewarded": 14610, + "infrared": 14611, + "wiping": 14612, + "accelerated": 14613, + "illustration": 14614, + "##rid": 14615, + "presses": 14616, + "practitioners": 14617, + "badminton": 14618, + "##iard": 14619, + "detained": 14620, + "##tera": 14621, + "recognizing": 14622, + "relates": 14623, + "misery": 14624, + "##sies": 14625, + "##tly": 14626, + "reproduction": 14627, + "piercing": 14628, + "potatoes": 14629, + "thornton": 14630, + "esther": 14631, + "manners": 14632, + "hbo": 14633, + "##aan": 14634, + "ours": 14635, + "bullshit": 14636, + "ernie": 14637, + "perennial": 14638, + "sensitivity": 14639, + "illuminated": 14640, + "rupert": 14641, + "##jin": 14642, + "##iss": 14643, + "##ear": 14644, + "rfc": 14645, + "nassau": 14646, + "##dock": 14647, + "staggered": 14648, + "socialism": 14649, + "##haven": 14650, + "appointments": 14651, + "nonsense": 14652, + "prestige": 14653, + "sharma": 14654, + "haul": 14655, + "##tical": 14656, + "solidarity": 14657, + "gps": 14658, + "##ook": 14659, + "##rata": 14660, + "igor": 14661, + "pedestrian": 14662, + "##uit": 14663, + "baxter": 14664, + "tenants": 14665, + "wires": 14666, + "medication": 14667, + "unlimited": 14668, + "guiding": 14669, + "impacts": 14670, + "diabetes": 14671, + "##rama": 14672, + "sasha": 14673, + "pas": 14674, + "clive": 14675, + "extraction": 14676, + "131": 14677, + "continually": 14678, + "constraints": 14679, + "##bilities": 14680, + "sonata": 14681, + "hunted": 14682, + "sixteenth": 14683, + "chu": 14684, + "planting": 14685, + "quote": 14686, + "mayer": 14687, + "pretended": 14688, + "abs": 14689, + "spat": 14690, + "##hua": 14691, + "ceramic": 14692, + "##cci": 14693, + "curtains": 14694, + "pigs": 14695, + "pitching": 14696, + "##dad": 14697, + "latvian": 14698, + "sore": 14699, + "dayton": 14700, + "##sted": 14701, + "##qi": 14702, + "patrols": 14703, + "slice": 14704, + "playground": 14705, + "##nted": 14706, + "shone": 14707, + "stool": 14708, + "apparatus": 14709, + "inadequate": 14710, + "mates": 14711, + "treason": 14712, + "##ija": 14713, + "desires": 14714, + "##liga": 14715, + "##croft": 14716, + "somalia": 14717, + "laurent": 14718, + "mir": 14719, + "leonardo": 14720, + "oracle": 14721, + "grape": 14722, + "obliged": 14723, + "chevrolet": 14724, + "thirteenth": 14725, + "stunning": 14726, + "enthusiastic": 14727, + "##ede": 14728, + "accounted": 14729, + "concludes": 14730, + "currents": 14731, + "basil": 14732, + "##kovic": 14733, + "drought": 14734, + "##rica": 14735, + "mai": 14736, + "##aire": 14737, + "shove": 14738, + "posting": 14739, + "##shed": 14740, + "pilgrimage": 14741, + "humorous": 14742, + "packing": 14743, + "fry": 14744, + "pencil": 14745, + "wines": 14746, + "smells": 14747, + "144": 14748, + "marilyn": 14749, + "aching": 14750, + "newest": 14751, + "clung": 14752, + "bon": 14753, + "neighbours": 14754, + "sanctioned": 14755, + "##pie": 14756, + "mug": 14757, + "##stock": 14758, + "drowning": 14759, + "##mma": 14760, + "hydraulic": 14761, + "##vil": 14762, + "hiring": 14763, + "reminder": 14764, + "lilly": 14765, + "investigators": 14766, + "##ncies": 14767, + "sour": 14768, + "##eous": 14769, + "compulsory": 14770, + "packet": 14771, + "##rion": 14772, + "##graphic": 14773, + "##elle": 14774, + "cannes": 14775, + "##inate": 14776, + "depressed": 14777, + "##rit": 14778, + "heroic": 14779, + "importantly": 14780, + "theresa": 14781, + "##tled": 14782, + "conway": 14783, + "saturn": 14784, + "marginal": 14785, + "rae": 14786, + "##xia": 14787, + "corresponds": 14788, + "royce": 14789, + "pact": 14790, + "jasper": 14791, + "explosives": 14792, + "packaging": 14793, + "aluminium": 14794, + "##ttered": 14795, + "denotes": 14796, + "rhythmic": 14797, + "spans": 14798, + "assignments": 14799, + "hereditary": 14800, + "outlined": 14801, + "originating": 14802, + "sundays": 14803, + "lad": 14804, + "reissued": 14805, + "greeting": 14806, + "beatrice": 14807, + "##dic": 14808, + "pillar": 14809, + "marcos": 14810, + "plots": 14811, + "handbook": 14812, + "alcoholic": 14813, + "judiciary": 14814, + "avant": 14815, + "slides": 14816, + "extract": 14817, + "masculine": 14818, + "blur": 14819, + "##eum": 14820, + "##force": 14821, + "homage": 14822, + "trembled": 14823, + "owens": 14824, + "hymn": 14825, + "trey": 14826, + "omega": 14827, + "signaling": 14828, + "socks": 14829, + "accumulated": 14830, + "reacted": 14831, + "attic": 14832, + "theo": 14833, + "lining": 14834, + "angie": 14835, + "distraction": 14836, + "primera": 14837, + "talbot": 14838, + "##key": 14839, + "1200": 14840, + "ti": 14841, + "creativity": 14842, + "billed": 14843, + "##hey": 14844, + "deacon": 14845, + "eduardo": 14846, + "identifies": 14847, + "proposition": 14848, + "dizzy": 14849, + "gunner": 14850, + "hogan": 14851, + "##yam": 14852, + "##pping": 14853, + "##hol": 14854, + "ja": 14855, + "##chan": 14856, + "jensen": 14857, + "reconstructed": 14858, + "##berger": 14859, + "clearance": 14860, + "darius": 14861, + "##nier": 14862, + "abe": 14863, + "harlem": 14864, + "plea": 14865, + "dei": 14866, + "circled": 14867, + "emotionally": 14868, + "notation": 14869, + "fascist": 14870, + "neville": 14871, + "exceeded": 14872, + "upwards": 14873, + "viable": 14874, + "ducks": 14875, + "##fo": 14876, + "workforce": 14877, + "racer": 14878, + "limiting": 14879, + "shri": 14880, + "##lson": 14881, + "possesses": 14882, + "1600": 14883, + "kerr": 14884, + "moths": 14885, + "devastating": 14886, + "laden": 14887, + "disturbing": 14888, + "locking": 14889, + "##cture": 14890, + "gal": 14891, + "fearing": 14892, + "accreditation": 14893, + "flavor": 14894, + "aide": 14895, + "1870s": 14896, + "mountainous": 14897, + "##baum": 14898, + "melt": 14899, + "##ures": 14900, + "motel": 14901, + "texture": 14902, + "servers": 14903, + "soda": 14904, + "##mb": 14905, + "herd": 14906, + "##nium": 14907, + "erect": 14908, + "puzzled": 14909, + "hum": 14910, + "peggy": 14911, + "examinations": 14912, + "gould": 14913, + "testified": 14914, + "geoff": 14915, + "ren": 14916, + "devised": 14917, + "sacks": 14918, + "##law": 14919, + "denial": 14920, + "posters": 14921, + "grunted": 14922, + "cesar": 14923, + "tutor": 14924, + "ec": 14925, + "gerry": 14926, + "offerings": 14927, + "byrne": 14928, + "falcons": 14929, + "combinations": 14930, + "ct": 14931, + "incoming": 14932, + "pardon": 14933, + "rocking": 14934, + "26th": 14935, + "avengers": 14936, + "flared": 14937, + "mankind": 14938, + "seller": 14939, + "uttar": 14940, + "loch": 14941, + "nadia": 14942, + "stroking": 14943, + "exposing": 14944, + "##hd": 14945, + "fertile": 14946, + "ancestral": 14947, + "instituted": 14948, + "##has": 14949, + "noises": 14950, + "prophecy": 14951, + "taxation": 14952, + "eminent": 14953, + "vivid": 14954, + "pol": 14955, + "##bol": 14956, + "dart": 14957, + "indirect": 14958, + "multimedia": 14959, + "notebook": 14960, + "upside": 14961, + "displaying": 14962, + "adrenaline": 14963, + "referenced": 14964, + "geometric": 14965, + "##iving": 14966, + "progression": 14967, + "##ddy": 14968, + "blunt": 14969, + "announce": 14970, + "##far": 14971, + "implementing": 14972, + "##lav": 14973, + "aggression": 14974, + "liaison": 14975, + "cooler": 14976, + "cares": 14977, + "headache": 14978, + "plantations": 14979, + "gorge": 14980, + "dots": 14981, + "impulse": 14982, + "thickness": 14983, + "ashamed": 14984, + "averaging": 14985, + "kathy": 14986, + "obligation": 14987, + "precursor": 14988, + "137": 14989, + "fowler": 14990, + "symmetry": 14991, + "thee": 14992, + "225": 14993, + "hears": 14994, + "##rai": 14995, + "undergoing": 14996, + "ads": 14997, + "butcher": 14998, + "bowler": 14999, + "##lip": 15000, + "cigarettes": 15001, + "subscription": 15002, + "goodness": 15003, + "##ically": 15004, + "browne": 15005, + "##hos": 15006, + "##tech": 15007, + "kyoto": 15008, + "donor": 15009, + "##erty": 15010, + "damaging": 15011, + "friction": 15012, + "drifting": 15013, + "expeditions": 15014, + "hardened": 15015, + "prostitution": 15016, + "152": 15017, + "fauna": 15018, + "blankets": 15019, + "claw": 15020, + "tossing": 15021, + "snarled": 15022, + "butterflies": 15023, + "recruits": 15024, + "investigative": 15025, + "coated": 15026, + "healed": 15027, + "138": 15028, + "communal": 15029, + "hai": 15030, + "xiii": 15031, + "academics": 15032, + "boone": 15033, + "psychologist": 15034, + "restless": 15035, + "lahore": 15036, + "stephens": 15037, + "mba": 15038, + "brendan": 15039, + "foreigners": 15040, + "printer": 15041, + "##pc": 15042, + "ached": 15043, + "explode": 15044, + "27th": 15045, + "deed": 15046, + "scratched": 15047, + "dared": 15048, + "##pole": 15049, + "cardiac": 15050, + "1780": 15051, + "okinawa": 15052, + "proto": 15053, + "commando": 15054, + "compelled": 15055, + "oddly": 15056, + "electrons": 15057, + "##base": 15058, + "replica": 15059, + "thanksgiving": 15060, + "##rist": 15061, + "sheila": 15062, + "deliberate": 15063, + "stafford": 15064, + "tidal": 15065, + "representations": 15066, + "hercules": 15067, + "ou": 15068, + "##path": 15069, + "##iated": 15070, + "kidnapping": 15071, + "lenses": 15072, + "##tling": 15073, + "deficit": 15074, + "samoa": 15075, + "mouths": 15076, + "consuming": 15077, + "computational": 15078, + "maze": 15079, + "granting": 15080, + "smirk": 15081, + "razor": 15082, + "fixture": 15083, + "ideals": 15084, + "inviting": 15085, + "aiden": 15086, + "nominal": 15087, + "##vs": 15088, + "issuing": 15089, + "julio": 15090, + "pitt": 15091, + "ramsey": 15092, + "docks": 15093, + "##oss": 15094, + "exhaust": 15095, + "##owed": 15096, + "bavarian": 15097, + "draped": 15098, + "anterior": 15099, + "mating": 15100, + "ethiopian": 15101, + "explores": 15102, + "noticing": 15103, + "##nton": 15104, + "discarded": 15105, + "convenience": 15106, + "hoffman": 15107, + "endowment": 15108, + "beasts": 15109, + "cartridge": 15110, + "mormon": 15111, + "paternal": 15112, + "probe": 15113, + "sleeves": 15114, + "interfere": 15115, + "lump": 15116, + "deadline": 15117, + "##rail": 15118, + "jenks": 15119, + "bulldogs": 15120, + "scrap": 15121, + "alternating": 15122, + "justified": 15123, + "reproductive": 15124, + "nam": 15125, + "seize": 15126, + "descending": 15127, + "secretariat": 15128, + "kirby": 15129, + "coupe": 15130, + "grouped": 15131, + "smash": 15132, + "panther": 15133, + "sedan": 15134, + "tapping": 15135, + "##18": 15136, + "lola": 15137, + "cheer": 15138, + "germanic": 15139, + "unfortunate": 15140, + "##eter": 15141, + "unrelated": 15142, + "##fan": 15143, + "subordinate": 15144, + "##sdale": 15145, + "suzanne": 15146, + "advertisement": 15147, + "##ility": 15148, + "horsepower": 15149, + "##lda": 15150, + "cautiously": 15151, + "discourse": 15152, + "luigi": 15153, + "##mans": 15154, + "##fields": 15155, + "noun": 15156, + "prevalent": 15157, + "mao": 15158, + "schneider": 15159, + "everett": 15160, + "surround": 15161, + "governorate": 15162, + "kira": 15163, + "##avia": 15164, + "westward": 15165, + "##take": 15166, + "misty": 15167, + "rails": 15168, + "sustainability": 15169, + "134": 15170, + "unused": 15171, + "##rating": 15172, + "packs": 15173, + "toast": 15174, + "unwilling": 15175, + "regulate": 15176, + "thy": 15177, + "suffrage": 15178, + "nile": 15179, + "awe": 15180, + "assam": 15181, + "definitions": 15182, + "travelers": 15183, + "affordable": 15184, + "##rb": 15185, + "conferred": 15186, + "sells": 15187, + "undefeated": 15188, + "beneficial": 15189, + "torso": 15190, + "basal": 15191, + "repeating": 15192, + "remixes": 15193, + "##pass": 15194, + "bahrain": 15195, + "cables": 15196, + "fang": 15197, + "##itated": 15198, + "excavated": 15199, + "numbering": 15200, + "statutory": 15201, + "##rey": 15202, + "deluxe": 15203, + "##lian": 15204, + "forested": 15205, + "ramirez": 15206, + "derbyshire": 15207, + "zeus": 15208, + "slamming": 15209, + "transfers": 15210, + "astronomer": 15211, + "banana": 15212, + "lottery": 15213, + "berg": 15214, + "histories": 15215, + "bamboo": 15216, + "##uchi": 15217, + "resurrection": 15218, + "posterior": 15219, + "bowls": 15220, + "vaguely": 15221, + "##thi": 15222, + "thou": 15223, + "preserving": 15224, + "tensed": 15225, + "offence": 15226, + "##inas": 15227, + "meyrick": 15228, + "callum": 15229, + "ridden": 15230, + "watt": 15231, + "langdon": 15232, + "tying": 15233, + "lowland": 15234, + "snorted": 15235, + "daring": 15236, + "truman": 15237, + "##hale": 15238, + "##girl": 15239, + "aura": 15240, + "overly": 15241, + "filing": 15242, + "weighing": 15243, + "goa": 15244, + "infections": 15245, + "philanthropist": 15246, + "saunders": 15247, + "eponymous": 15248, + "##owski": 15249, + "latitude": 15250, + "perspectives": 15251, + "reviewing": 15252, + "mets": 15253, + "commandant": 15254, + "radial": 15255, + "##kha": 15256, + "flashlight": 15257, + "reliability": 15258, + "koch": 15259, + "vowels": 15260, + "amazed": 15261, + "ada": 15262, + "elaine": 15263, + "supper": 15264, + "##rth": 15265, + "##encies": 15266, + "predator": 15267, + "debated": 15268, + "soviets": 15269, + "cola": 15270, + "##boards": 15271, + "##nah": 15272, + "compartment": 15273, + "crooked": 15274, + "arbitrary": 15275, + "fourteenth": 15276, + "##ctive": 15277, + "havana": 15278, + "majors": 15279, + "steelers": 15280, + "clips": 15281, + "profitable": 15282, + "ambush": 15283, + "exited": 15284, + "packers": 15285, + "##tile": 15286, + "nude": 15287, + "cracks": 15288, + "fungi": 15289, + "##е": 15290, + "limb": 15291, + "trousers": 15292, + "josie": 15293, + "shelby": 15294, + "tens": 15295, + "frederic": 15296, + "##ος": 15297, + "definite": 15298, + "smoothly": 15299, + "constellation": 15300, + "insult": 15301, + "baton": 15302, + "discs": 15303, + "lingering": 15304, + "##nco": 15305, + "conclusions": 15306, + "lent": 15307, + "staging": 15308, + "becker": 15309, + "grandpa": 15310, + "shaky": 15311, + "##tron": 15312, + "einstein": 15313, + "obstacles": 15314, + "sk": 15315, + "adverse": 15316, + "elle": 15317, + "economically": 15318, + "##moto": 15319, + "mccartney": 15320, + "thor": 15321, + "dismissal": 15322, + "motions": 15323, + "readings": 15324, + "nostrils": 15325, + "treatise": 15326, + "##pace": 15327, + "squeezing": 15328, + "evidently": 15329, + "prolonged": 15330, + "1783": 15331, + "venezuelan": 15332, + "je": 15333, + "marguerite": 15334, + "beirut": 15335, + "takeover": 15336, + "shareholders": 15337, + "##vent": 15338, + "denise": 15339, + "digit": 15340, + "airplay": 15341, + "norse": 15342, + "##bbling": 15343, + "imaginary": 15344, + "pills": 15345, + "hubert": 15346, + "blaze": 15347, + "vacated": 15348, + "eliminating": 15349, + "##ello": 15350, + "vine": 15351, + "mansfield": 15352, + "##tty": 15353, + "retrospective": 15354, + "barrow": 15355, + "borne": 15356, + "clutch": 15357, + "bail": 15358, + "forensic": 15359, + "weaving": 15360, + "##nett": 15361, + "##witz": 15362, + "desktop": 15363, + "citadel": 15364, + "promotions": 15365, + "worrying": 15366, + "dorset": 15367, + "ieee": 15368, + "subdivided": 15369, + "##iating": 15370, + "manned": 15371, + "expeditionary": 15372, + "pickup": 15373, + "synod": 15374, + "chuckle": 15375, + "185": 15376, + "barney": 15377, + "##rz": 15378, + "##ffin": 15379, + "functionality": 15380, + "karachi": 15381, + "litigation": 15382, + "meanings": 15383, + "uc": 15384, + "lick": 15385, + "turbo": 15386, + "anders": 15387, + "##ffed": 15388, + "execute": 15389, + "curl": 15390, + "oppose": 15391, + "ankles": 15392, + "typhoon": 15393, + "##د": 15394, + "##ache": 15395, + "##asia": 15396, + "linguistics": 15397, + "compassion": 15398, + "pressures": 15399, + "grazing": 15400, + "perfection": 15401, + "##iting": 15402, + "immunity": 15403, + "monopoly": 15404, + "muddy": 15405, + "backgrounds": 15406, + "136": 15407, + "namibia": 15408, + "francesca": 15409, + "monitors": 15410, + "attracting": 15411, + "stunt": 15412, + "tuition": 15413, + "##ии": 15414, + "vegetable": 15415, + "##mates": 15416, + "##quent": 15417, + "mgm": 15418, + "jen": 15419, + "complexes": 15420, + "forts": 15421, + "##ond": 15422, + "cellar": 15423, + "bites": 15424, + "seventeenth": 15425, + "royals": 15426, + "flemish": 15427, + "failures": 15428, + "mast": 15429, + "charities": 15430, + "##cular": 15431, + "peruvian": 15432, + "capitals": 15433, + "macmillan": 15434, + "ipswich": 15435, + "outward": 15436, + "frigate": 15437, + "postgraduate": 15438, + "folds": 15439, + "employing": 15440, + "##ouse": 15441, + "concurrently": 15442, + "fiery": 15443, + "##tai": 15444, + "contingent": 15445, + "nightmares": 15446, + "monumental": 15447, + "nicaragua": 15448, + "##kowski": 15449, + "lizard": 15450, + "mal": 15451, + "fielding": 15452, + "gig": 15453, + "reject": 15454, + "##pad": 15455, + "harding": 15456, + "##ipe": 15457, + "coastline": 15458, + "##cin": 15459, + "##nos": 15460, + "beethoven": 15461, + "humphrey": 15462, + "innovations": 15463, + "##tam": 15464, + "##nge": 15465, + "norris": 15466, + "doris": 15467, + "solicitor": 15468, + "huang": 15469, + "obey": 15470, + "141": 15471, + "##lc": 15472, + "niagara": 15473, + "##tton": 15474, + "shelves": 15475, + "aug": 15476, + "bourbon": 15477, + "curry": 15478, + "nightclub": 15479, + "specifications": 15480, + "hilton": 15481, + "##ndo": 15482, + "centennial": 15483, + "dispersed": 15484, + "worm": 15485, + "neglected": 15486, + "briggs": 15487, + "sm": 15488, + "font": 15489, + "kuala": 15490, + "uneasy": 15491, + "plc": 15492, + "##nstein": 15493, + "##bound": 15494, + "##aking": 15495, + "##burgh": 15496, + "awaiting": 15497, + "pronunciation": 15498, + "##bbed": 15499, + "##quest": 15500, + "eh": 15501, + "optimal": 15502, + "zhu": 15503, + "raped": 15504, + "greens": 15505, + "presided": 15506, + "brenda": 15507, + "worries": 15508, + "##life": 15509, + "venetian": 15510, + "marxist": 15511, + "turnout": 15512, + "##lius": 15513, + "refined": 15514, + "braced": 15515, + "sins": 15516, + "grasped": 15517, + "sunderland": 15518, + "nickel": 15519, + "speculated": 15520, + "lowell": 15521, + "cyrillic": 15522, + "communism": 15523, + "fundraising": 15524, + "resembling": 15525, + "colonists": 15526, + "mutant": 15527, + "freddie": 15528, + "usc": 15529, + "##mos": 15530, + "gratitude": 15531, + "##run": 15532, + "mural": 15533, + "##lous": 15534, + "chemist": 15535, + "wi": 15536, + "reminds": 15537, + "28th": 15538, + "steals": 15539, + "tess": 15540, + "pietro": 15541, + "##ingen": 15542, + "promoter": 15543, + "ri": 15544, + "microphone": 15545, + "honoured": 15546, + "rai": 15547, + "sant": 15548, + "##qui": 15549, + "feather": 15550, + "##nson": 15551, + "burlington": 15552, + "kurdish": 15553, + "terrorists": 15554, + "deborah": 15555, + "sickness": 15556, + "##wed": 15557, + "##eet": 15558, + "hazard": 15559, + "irritated": 15560, + "desperation": 15561, + "veil": 15562, + "clarity": 15563, + "##rik": 15564, + "jewels": 15565, + "xv": 15566, + "##gged": 15567, + "##ows": 15568, + "##cup": 15569, + "berkshire": 15570, + "unfair": 15571, + "mysteries": 15572, + "orchid": 15573, + "winced": 15574, + "exhaustion": 15575, + "renovations": 15576, + "stranded": 15577, + "obe": 15578, + "infinity": 15579, + "##nies": 15580, + "adapt": 15581, + "redevelopment": 15582, + "thanked": 15583, + "registry": 15584, + "olga": 15585, + "domingo": 15586, + "noir": 15587, + "tudor": 15588, + "ole": 15589, + "##atus": 15590, + "commenting": 15591, + "behaviors": 15592, + "##ais": 15593, + "crisp": 15594, + "pauline": 15595, + "probable": 15596, + "stirling": 15597, + "wigan": 15598, + "##bian": 15599, + "paralympics": 15600, + "panting": 15601, + "surpassed": 15602, + "##rew": 15603, + "luca": 15604, + "barred": 15605, + "pony": 15606, + "famed": 15607, + "##sters": 15608, + "cassandra": 15609, + "waiter": 15610, + "carolyn": 15611, + "exported": 15612, + "##orted": 15613, + "andres": 15614, + "destructive": 15615, + "deeds": 15616, + "jonah": 15617, + "castles": 15618, + "vacancy": 15619, + "suv": 15620, + "##glass": 15621, + "1788": 15622, + "orchard": 15623, + "yep": 15624, + "famine": 15625, + "belarusian": 15626, + "sprang": 15627, + "##forth": 15628, + "skinny": 15629, + "##mis": 15630, + "administrators": 15631, + "rotterdam": 15632, + "zambia": 15633, + "zhao": 15634, + "boiler": 15635, + "discoveries": 15636, + "##ride": 15637, + "##physics": 15638, + "lucius": 15639, + "disappointing": 15640, + "outreach": 15641, + "spoon": 15642, + "##frame": 15643, + "qualifications": 15644, + "unanimously": 15645, + "enjoys": 15646, + "regency": 15647, + "##iidae": 15648, + "stade": 15649, + "realism": 15650, + "veterinary": 15651, + "rodgers": 15652, + "dump": 15653, + "alain": 15654, + "chestnut": 15655, + "castile": 15656, + "censorship": 15657, + "rumble": 15658, + "gibbs": 15659, + "##itor": 15660, + "communion": 15661, + "reggae": 15662, + "inactivated": 15663, + "logs": 15664, + "loads": 15665, + "##houses": 15666, + "homosexual": 15667, + "##iano": 15668, + "ale": 15669, + "informs": 15670, + "##cas": 15671, + "phrases": 15672, + "plaster": 15673, + "linebacker": 15674, + "ambrose": 15675, + "kaiser": 15676, + "fascinated": 15677, + "850": 15678, + "limerick": 15679, + "recruitment": 15680, + "forge": 15681, + "mastered": 15682, + "##nding": 15683, + "leinster": 15684, + "rooted": 15685, + "threaten": 15686, + "##strom": 15687, + "borneo": 15688, + "##hes": 15689, + "suggestions": 15690, + "scholarships": 15691, + "propeller": 15692, + "documentaries": 15693, + "patronage": 15694, + "coats": 15695, + "constructing": 15696, + "invest": 15697, + "neurons": 15698, + "comet": 15699, + "entirety": 15700, + "shouts": 15701, + "identities": 15702, + "annoying": 15703, + "unchanged": 15704, + "wary": 15705, + "##antly": 15706, + "##ogy": 15707, + "neat": 15708, + "oversight": 15709, + "##kos": 15710, + "phillies": 15711, + "replay": 15712, + "constance": 15713, + "##kka": 15714, + "incarnation": 15715, + "humble": 15716, + "skies": 15717, + "minus": 15718, + "##acy": 15719, + "smithsonian": 15720, + "##chel": 15721, + "guerrilla": 15722, + "jar": 15723, + "cadets": 15724, + "##plate": 15725, + "surplus": 15726, + "audit": 15727, + "##aru": 15728, + "cracking": 15729, + "joanna": 15730, + "louisa": 15731, + "pacing": 15732, + "##lights": 15733, + "intentionally": 15734, + "##iri": 15735, + "diner": 15736, + "nwa": 15737, + "imprint": 15738, + "australians": 15739, + "tong": 15740, + "unprecedented": 15741, + "bunker": 15742, + "naive": 15743, + "specialists": 15744, + "ark": 15745, + "nichols": 15746, + "railing": 15747, + "leaked": 15748, + "pedal": 15749, + "##uka": 15750, + "shrub": 15751, + "longing": 15752, + "roofs": 15753, + "v8": 15754, + "captains": 15755, + "neural": 15756, + "tuned": 15757, + "##ntal": 15758, + "##jet": 15759, + "emission": 15760, + "medina": 15761, + "frantic": 15762, + "codex": 15763, + "definitive": 15764, + "sid": 15765, + "abolition": 15766, + "intensified": 15767, + "stocks": 15768, + "enrique": 15769, + "sustain": 15770, + "genoa": 15771, + "oxide": 15772, + "##written": 15773, + "clues": 15774, + "cha": 15775, + "##gers": 15776, + "tributaries": 15777, + "fragment": 15778, + "venom": 15779, + "##rity": 15780, + "##ente": 15781, + "##sca": 15782, + "muffled": 15783, + "vain": 15784, + "sire": 15785, + "laos": 15786, + "##ingly": 15787, + "##hana": 15788, + "hastily": 15789, + "snapping": 15790, + "surfaced": 15791, + "sentiment": 15792, + "motive": 15793, + "##oft": 15794, + "contests": 15795, + "approximate": 15796, + "mesa": 15797, + "luckily": 15798, + "dinosaur": 15799, + "exchanges": 15800, + "propelled": 15801, + "accord": 15802, + "bourne": 15803, + "relieve": 15804, + "tow": 15805, + "masks": 15806, + "offended": 15807, + "##ues": 15808, + "cynthia": 15809, + "##mmer": 15810, + "rains": 15811, + "bartender": 15812, + "zinc": 15813, + "reviewers": 15814, + "lois": 15815, + "##sai": 15816, + "legged": 15817, + "arrogant": 15818, + "rafe": 15819, + "rosie": 15820, + "comprise": 15821, + "handicap": 15822, + "blockade": 15823, + "inlet": 15824, + "lagoon": 15825, + "copied": 15826, + "drilling": 15827, + "shelley": 15828, + "petals": 15829, + "##inian": 15830, + "mandarin": 15831, + "obsolete": 15832, + "##inated": 15833, + "onward": 15834, + "arguably": 15835, + "productivity": 15836, + "cindy": 15837, + "praising": 15838, + "seldom": 15839, + "busch": 15840, + "discusses": 15841, + "raleigh": 15842, + "shortage": 15843, + "ranged": 15844, + "stanton": 15845, + "encouragement": 15846, + "firstly": 15847, + "conceded": 15848, + "overs": 15849, + "temporal": 15850, + "##uke": 15851, + "cbe": 15852, + "##bos": 15853, + "woo": 15854, + "certainty": 15855, + "pumps": 15856, + "##pton": 15857, + "stalked": 15858, + "##uli": 15859, + "lizzie": 15860, + "periodic": 15861, + "thieves": 15862, + "weaker": 15863, + "##night": 15864, + "gases": 15865, + "shoving": 15866, + "chooses": 15867, + "wc": 15868, + "##chemical": 15869, + "prompting": 15870, + "weights": 15871, + "##kill": 15872, + "robust": 15873, + "flanked": 15874, + "sticky": 15875, + "hu": 15876, + "tuberculosis": 15877, + "##eb": 15878, + "##eal": 15879, + "christchurch": 15880, + "resembled": 15881, + "wallet": 15882, + "reese": 15883, + "inappropriate": 15884, + "pictured": 15885, + "distract": 15886, + "fixing": 15887, + "fiddle": 15888, + "giggled": 15889, + "burger": 15890, + "heirs": 15891, + "hairy": 15892, + "mechanic": 15893, + "torque": 15894, + "apache": 15895, + "obsessed": 15896, + "chiefly": 15897, + "cheng": 15898, + "logging": 15899, + "##tag": 15900, + "extracted": 15901, + "meaningful": 15902, + "numb": 15903, + "##vsky": 15904, + "gloucestershire": 15905, + "reminding": 15906, + "##bay": 15907, + "unite": 15908, + "##lit": 15909, + "breeds": 15910, + "diminished": 15911, + "clown": 15912, + "glove": 15913, + "1860s": 15914, + "##ن": 15915, + "##ug": 15916, + "archibald": 15917, + "focal": 15918, + "freelance": 15919, + "sliced": 15920, + "depiction": 15921, + "##yk": 15922, + "organism": 15923, + "switches": 15924, + "sights": 15925, + "stray": 15926, + "crawling": 15927, + "##ril": 15928, + "lever": 15929, + "leningrad": 15930, + "interpretations": 15931, + "loops": 15932, + "anytime": 15933, + "reel": 15934, + "alicia": 15935, + "delighted": 15936, + "##ech": 15937, + "inhaled": 15938, + "xiv": 15939, + "suitcase": 15940, + "bernie": 15941, + "vega": 15942, + "licenses": 15943, + "northampton": 15944, + "exclusion": 15945, + "induction": 15946, + "monasteries": 15947, + "racecourse": 15948, + "homosexuality": 15949, + "##right": 15950, + "##sfield": 15951, + "##rky": 15952, + "dimitri": 15953, + "michele": 15954, + "alternatives": 15955, + "ions": 15956, + "commentators": 15957, + "genuinely": 15958, + "objected": 15959, + "pork": 15960, + "hospitality": 15961, + "fencing": 15962, + "stephan": 15963, + "warships": 15964, + "peripheral": 15965, + "wit": 15966, + "drunken": 15967, + "wrinkled": 15968, + "quentin": 15969, + "spends": 15970, + "departing": 15971, + "chung": 15972, + "numerical": 15973, + "spokesperson": 15974, + "##zone": 15975, + "johannesburg": 15976, + "caliber": 15977, + "killers": 15978, + "##udge": 15979, + "assumes": 15980, + "neatly": 15981, + "demographic": 15982, + "abigail": 15983, + "bloc": 15984, + "##vel": 15985, + "mounting": 15986, + "##lain": 15987, + "bentley": 15988, + "slightest": 15989, + "xu": 15990, + "recipients": 15991, + "##jk": 15992, + "merlin": 15993, + "##writer": 15994, + "seniors": 15995, + "prisons": 15996, + "blinking": 15997, + "hindwings": 15998, + "flickered": 15999, + "kappa": 16000, + "##hel": 16001, + "80s": 16002, + "strengthening": 16003, + "appealing": 16004, + "brewing": 16005, + "gypsy": 16006, + "mali": 16007, + "lashes": 16008, + "hulk": 16009, + "unpleasant": 16010, + "harassment": 16011, + "bio": 16012, + "treaties": 16013, + "predict": 16014, + "instrumentation": 16015, + "pulp": 16016, + "troupe": 16017, + "boiling": 16018, + "mantle": 16019, + "##ffe": 16020, + "ins": 16021, + "##vn": 16022, + "dividing": 16023, + "handles": 16024, + "verbs": 16025, + "##onal": 16026, + "coconut": 16027, + "senegal": 16028, + "340": 16029, + "thorough": 16030, + "gum": 16031, + "momentarily": 16032, + "##sto": 16033, + "cocaine": 16034, + "panicked": 16035, + "destined": 16036, + "##turing": 16037, + "teatro": 16038, + "denying": 16039, + "weary": 16040, + "captained": 16041, + "mans": 16042, + "##hawks": 16043, + "##code": 16044, + "wakefield": 16045, + "bollywood": 16046, + "thankfully": 16047, + "##16": 16048, + "cyril": 16049, + "##wu": 16050, + "amendments": 16051, + "##bahn": 16052, + "consultation": 16053, + "stud": 16054, + "reflections": 16055, + "kindness": 16056, + "1787": 16057, + "internally": 16058, + "##ovo": 16059, + "tex": 16060, + "mosaic": 16061, + "distribute": 16062, + "paddy": 16063, + "seeming": 16064, + "143": 16065, + "##hic": 16066, + "piers": 16067, + "##15": 16068, + "##mura": 16069, + "##verse": 16070, + "popularly": 16071, + "winger": 16072, + "kang": 16073, + "sentinel": 16074, + "mccoy": 16075, + "##anza": 16076, + "covenant": 16077, + "##bag": 16078, + "verge": 16079, + "fireworks": 16080, + "suppress": 16081, + "thrilled": 16082, + "dominate": 16083, + "##jar": 16084, + "swansea": 16085, + "##60": 16086, + "142": 16087, + "reconciliation": 16088, + "##ndi": 16089, + "stiffened": 16090, + "cue": 16091, + "dorian": 16092, + "##uf": 16093, + "damascus": 16094, + "amor": 16095, + "ida": 16096, + "foremost": 16097, + "##aga": 16098, + "porsche": 16099, + "unseen": 16100, + "dir": 16101, + "##had": 16102, + "##azi": 16103, + "stony": 16104, + "lexi": 16105, + "melodies": 16106, + "##nko": 16107, + "angular": 16108, + "integer": 16109, + "podcast": 16110, + "ants": 16111, + "inherent": 16112, + "jaws": 16113, + "justify": 16114, + "persona": 16115, + "##olved": 16116, + "josephine": 16117, + "##nr": 16118, + "##ressed": 16119, + "customary": 16120, + "flashes": 16121, + "gala": 16122, + "cyrus": 16123, + "glaring": 16124, + "backyard": 16125, + "ariel": 16126, + "physiology": 16127, + "greenland": 16128, + "html": 16129, + "stir": 16130, + "avon": 16131, + "atletico": 16132, + "finch": 16133, + "methodology": 16134, + "ked": 16135, + "##lent": 16136, + "mas": 16137, + "catholicism": 16138, + "townsend": 16139, + "branding": 16140, + "quincy": 16141, + "fits": 16142, + "containers": 16143, + "1777": 16144, + "ashore": 16145, + "aragon": 16146, + "##19": 16147, + "forearm": 16148, + "poisoning": 16149, + "##sd": 16150, + "adopting": 16151, + "conquer": 16152, + "grinding": 16153, + "amnesty": 16154, + "keller": 16155, + "finances": 16156, + "evaluate": 16157, + "forged": 16158, + "lankan": 16159, + "instincts": 16160, + "##uto": 16161, + "guam": 16162, + "bosnian": 16163, + "photographed": 16164, + "workplace": 16165, + "desirable": 16166, + "protector": 16167, + "##dog": 16168, + "allocation": 16169, + "intently": 16170, + "encourages": 16171, + "willy": 16172, + "##sten": 16173, + "bodyguard": 16174, + "electro": 16175, + "brighter": 16176, + "##ν": 16177, + "bihar": 16178, + "##chev": 16179, + "lasts": 16180, + "opener": 16181, + "amphibious": 16182, + "sal": 16183, + "verde": 16184, + "arte": 16185, + "##cope": 16186, + "captivity": 16187, + "vocabulary": 16188, + "yields": 16189, + "##tted": 16190, + "agreeing": 16191, + "desmond": 16192, + "pioneered": 16193, + "##chus": 16194, + "strap": 16195, + "campaigned": 16196, + "railroads": 16197, + "##ович": 16198, + "emblem": 16199, + "##dre": 16200, + "stormed": 16201, + "501": 16202, + "##ulous": 16203, + "marijuana": 16204, + "northumberland": 16205, + "##gn": 16206, + "##nath": 16207, + "bowen": 16208, + "landmarks": 16209, + "beaumont": 16210, + "##qua": 16211, + "danube": 16212, + "##bler": 16213, + "attorneys": 16214, + "th": 16215, + "ge": 16216, + "flyers": 16217, + "critique": 16218, + "villains": 16219, + "cass": 16220, + "mutation": 16221, + "acc": 16222, + "##0s": 16223, + "colombo": 16224, + "mckay": 16225, + "motif": 16226, + "sampling": 16227, + "concluding": 16228, + "syndicate": 16229, + "##rell": 16230, + "neon": 16231, + "stables": 16232, + "ds": 16233, + "warnings": 16234, + "clint": 16235, + "mourning": 16236, + "wilkinson": 16237, + "##tated": 16238, + "merrill": 16239, + "leopard": 16240, + "evenings": 16241, + "exhaled": 16242, + "emil": 16243, + "sonia": 16244, + "ezra": 16245, + "discrete": 16246, + "stove": 16247, + "farrell": 16248, + "fifteenth": 16249, + "prescribed": 16250, + "superhero": 16251, + "##rier": 16252, + "worms": 16253, + "helm": 16254, + "wren": 16255, + "##duction": 16256, + "##hc": 16257, + "expo": 16258, + "##rator": 16259, + "hq": 16260, + "unfamiliar": 16261, + "antony": 16262, + "prevents": 16263, + "acceleration": 16264, + "fiercely": 16265, + "mari": 16266, + "painfully": 16267, + "calculations": 16268, + "cheaper": 16269, + "ign": 16270, + "clifton": 16271, + "irvine": 16272, + "davenport": 16273, + "mozambique": 16274, + "##np": 16275, + "pierced": 16276, + "##evich": 16277, + "wonders": 16278, + "##wig": 16279, + "##cate": 16280, + "##iling": 16281, + "crusade": 16282, + "ware": 16283, + "##uel": 16284, + "enzymes": 16285, + "reasonably": 16286, + "mls": 16287, + "##coe": 16288, + "mater": 16289, + "ambition": 16290, + "bunny": 16291, + "eliot": 16292, + "kernel": 16293, + "##fin": 16294, + "asphalt": 16295, + "headmaster": 16296, + "torah": 16297, + "aden": 16298, + "lush": 16299, + "pins": 16300, + "waived": 16301, + "##care": 16302, + "##yas": 16303, + "joao": 16304, + "substrate": 16305, + "enforce": 16306, + "##grad": 16307, + "##ules": 16308, + "alvarez": 16309, + "selections": 16310, + "epidemic": 16311, + "tempted": 16312, + "##bit": 16313, + "bremen": 16314, + "translates": 16315, + "ensured": 16316, + "waterfront": 16317, + "29th": 16318, + "forrest": 16319, + "manny": 16320, + "malone": 16321, + "kramer": 16322, + "reigning": 16323, + "cookies": 16324, + "simpler": 16325, + "absorption": 16326, + "205": 16327, + "engraved": 16328, + "##ffy": 16329, + "evaluated": 16330, + "1778": 16331, + "haze": 16332, + "146": 16333, + "comforting": 16334, + "crossover": 16335, + "##abe": 16336, + "thorn": 16337, + "##rift": 16338, + "##imo": 16339, + "##pop": 16340, + "suppression": 16341, + "fatigue": 16342, + "cutter": 16343, + "##tr": 16344, + "201": 16345, + "wurttemberg": 16346, + "##orf": 16347, + "enforced": 16348, + "hovering": 16349, + "proprietary": 16350, + "gb": 16351, + "samurai": 16352, + "syllable": 16353, + "ascent": 16354, + "lacey": 16355, + "tick": 16356, + "lars": 16357, + "tractor": 16358, + "merchandise": 16359, + "rep": 16360, + "bouncing": 16361, + "defendants": 16362, + "##yre": 16363, + "huntington": 16364, + "##ground": 16365, + "##oko": 16366, + "standardized": 16367, + "##hor": 16368, + "##hima": 16369, + "assassinated": 16370, + "nu": 16371, + "predecessors": 16372, + "rainy": 16373, + "liar": 16374, + "assurance": 16375, + "lyrical": 16376, + "##uga": 16377, + "secondly": 16378, + "flattened": 16379, + "ios": 16380, + "parameter": 16381, + "undercover": 16382, + "##mity": 16383, + "bordeaux": 16384, + "punish": 16385, + "ridges": 16386, + "markers": 16387, + "exodus": 16388, + "inactive": 16389, + "hesitate": 16390, + "debbie": 16391, + "nyc": 16392, + "pledge": 16393, + "savoy": 16394, + "nagar": 16395, + "offset": 16396, + "organist": 16397, + "##tium": 16398, + "hesse": 16399, + "marin": 16400, + "converting": 16401, + "##iver": 16402, + "diagram": 16403, + "propulsion": 16404, + "pu": 16405, + "validity": 16406, + "reverted": 16407, + "supportive": 16408, + "##dc": 16409, + "ministries": 16410, + "clans": 16411, + "responds": 16412, + "proclamation": 16413, + "##inae": 16414, + "##ø": 16415, + "##rea": 16416, + "ein": 16417, + "pleading": 16418, + "patriot": 16419, + "sf": 16420, + "birch": 16421, + "islanders": 16422, + "strauss": 16423, + "hates": 16424, + "##dh": 16425, + "brandenburg": 16426, + "concession": 16427, + "rd": 16428, + "##ob": 16429, + "1900s": 16430, + "killings": 16431, + "textbook": 16432, + "antiquity": 16433, + "cinematography": 16434, + "wharf": 16435, + "embarrassing": 16436, + "setup": 16437, + "creed": 16438, + "farmland": 16439, + "inequality": 16440, + "centred": 16441, + "signatures": 16442, + "fallon": 16443, + "370": 16444, + "##ingham": 16445, + "##uts": 16446, + "ceylon": 16447, + "gazing": 16448, + "directive": 16449, + "laurie": 16450, + "##tern": 16451, + "globally": 16452, + "##uated": 16453, + "##dent": 16454, + "allah": 16455, + "excavation": 16456, + "threads": 16457, + "##cross": 16458, + "148": 16459, + "frantically": 16460, + "icc": 16461, + "utilize": 16462, + "determines": 16463, + "respiratory": 16464, + "thoughtful": 16465, + "receptions": 16466, + "##dicate": 16467, + "merging": 16468, + "chandra": 16469, + "seine": 16470, + "147": 16471, + "builders": 16472, + "builds": 16473, + "diagnostic": 16474, + "dev": 16475, + "visibility": 16476, + "goddamn": 16477, + "analyses": 16478, + "dhaka": 16479, + "cho": 16480, + "proves": 16481, + "chancel": 16482, + "concurrent": 16483, + "curiously": 16484, + "canadians": 16485, + "pumped": 16486, + "restoring": 16487, + "1850s": 16488, + "turtles": 16489, + "jaguar": 16490, + "sinister": 16491, + "spinal": 16492, + "traction": 16493, + "declan": 16494, + "vows": 16495, + "1784": 16496, + "glowed": 16497, + "capitalism": 16498, + "swirling": 16499, + "install": 16500, + "universidad": 16501, + "##lder": 16502, + "##oat": 16503, + "soloist": 16504, + "##genic": 16505, + "##oor": 16506, + "coincidence": 16507, + "beginnings": 16508, + "nissan": 16509, + "dip": 16510, + "resorts": 16511, + "caucasus": 16512, + "combustion": 16513, + "infectious": 16514, + "##eno": 16515, + "pigeon": 16516, + "serpent": 16517, + "##itating": 16518, + "conclude": 16519, + "masked": 16520, + "salad": 16521, + "jew": 16522, + "##gr": 16523, + "surreal": 16524, + "toni": 16525, + "##wc": 16526, + "harmonica": 16527, + "151": 16528, + "##gins": 16529, + "##etic": 16530, + "##coat": 16531, + "fishermen": 16532, + "intending": 16533, + "bravery": 16534, + "##wave": 16535, + "klaus": 16536, + "titan": 16537, + "wembley": 16538, + "taiwanese": 16539, + "ransom": 16540, + "40th": 16541, + "incorrect": 16542, + "hussein": 16543, + "eyelids": 16544, + "jp": 16545, + "cooke": 16546, + "dramas": 16547, + "utilities": 16548, + "##etta": 16549, + "##print": 16550, + "eisenhower": 16551, + "principally": 16552, + "granada": 16553, + "lana": 16554, + "##rak": 16555, + "openings": 16556, + "concord": 16557, + "##bl": 16558, + "bethany": 16559, + "connie": 16560, + "morality": 16561, + "sega": 16562, + "##mons": 16563, + "##nard": 16564, + "earnings": 16565, + "##kara": 16566, + "##cine": 16567, + "wii": 16568, + "communes": 16569, + "##rel": 16570, + "coma": 16571, + "composing": 16572, + "softened": 16573, + "severed": 16574, + "grapes": 16575, + "##17": 16576, + "nguyen": 16577, + "analyzed": 16578, + "warlord": 16579, + "hubbard": 16580, + "heavenly": 16581, + "behave": 16582, + "slovenian": 16583, + "##hit": 16584, + "##ony": 16585, + "hailed": 16586, + "filmmakers": 16587, + "trance": 16588, + "caldwell": 16589, + "skye": 16590, + "unrest": 16591, + "coward": 16592, + "likelihood": 16593, + "##aging": 16594, + "bern": 16595, + "sci": 16596, + "taliban": 16597, + "honolulu": 16598, + "propose": 16599, + "##wang": 16600, + "1700": 16601, + "browser": 16602, + "imagining": 16603, + "cobra": 16604, + "contributes": 16605, + "dukes": 16606, + "instinctively": 16607, + "conan": 16608, + "violinist": 16609, + "##ores": 16610, + "accessories": 16611, + "gradual": 16612, + "##amp": 16613, + "quotes": 16614, + "sioux": 16615, + "##dating": 16616, + "undertake": 16617, + "intercepted": 16618, + "sparkling": 16619, + "compressed": 16620, + "139": 16621, + "fungus": 16622, + "tombs": 16623, + "haley": 16624, + "imposing": 16625, + "rests": 16626, + "degradation": 16627, + "lincolnshire": 16628, + "retailers": 16629, + "wetlands": 16630, + "tulsa": 16631, + "distributor": 16632, + "dungeon": 16633, + "nun": 16634, + "greenhouse": 16635, + "convey": 16636, + "atlantis": 16637, + "aft": 16638, + "exits": 16639, + "oman": 16640, + "dresser": 16641, + "lyons": 16642, + "##sti": 16643, + "joking": 16644, + "eddy": 16645, + "judgement": 16646, + "omitted": 16647, + "digits": 16648, + "##cts": 16649, + "##game": 16650, + "juniors": 16651, + "##rae": 16652, + "cents": 16653, + "stricken": 16654, + "une": 16655, + "##ngo": 16656, + "wizards": 16657, + "weir": 16658, + "breton": 16659, + "nan": 16660, + "technician": 16661, + "fibers": 16662, + "liking": 16663, + "royalty": 16664, + "##cca": 16665, + "154": 16666, + "persia": 16667, + "terribly": 16668, + "magician": 16669, + "##rable": 16670, + "##unt": 16671, + "vance": 16672, + "cafeteria": 16673, + "booker": 16674, + "camille": 16675, + "warmer": 16676, + "##static": 16677, + "consume": 16678, + "cavern": 16679, + "gaps": 16680, + "compass": 16681, + "contemporaries": 16682, + "foyer": 16683, + "soothing": 16684, + "graveyard": 16685, + "maj": 16686, + "plunged": 16687, + "blush": 16688, + "##wear": 16689, + "cascade": 16690, + "demonstrates": 16691, + "ordinance": 16692, + "##nov": 16693, + "boyle": 16694, + "##lana": 16695, + "rockefeller": 16696, + "shaken": 16697, + "banjo": 16698, + "izzy": 16699, + "##ense": 16700, + "breathless": 16701, + "vines": 16702, + "##32": 16703, + "##eman": 16704, + "alterations": 16705, + "chromosome": 16706, + "dwellings": 16707, + "feudal": 16708, + "mole": 16709, + "153": 16710, + "catalonia": 16711, + "relics": 16712, + "tenant": 16713, + "mandated": 16714, + "##fm": 16715, + "fridge": 16716, + "hats": 16717, + "honesty": 16718, + "patented": 16719, + "raul": 16720, + "heap": 16721, + "cruisers": 16722, + "accusing": 16723, + "enlightenment": 16724, + "infants": 16725, + "wherein": 16726, + "chatham": 16727, + "contractors": 16728, + "zen": 16729, + "affinity": 16730, + "hc": 16731, + "osborne": 16732, + "piston": 16733, + "156": 16734, + "traps": 16735, + "maturity": 16736, + "##rana": 16737, + "lagos": 16738, + "##zal": 16739, + "peering": 16740, + "##nay": 16741, + "attendant": 16742, + "dealers": 16743, + "protocols": 16744, + "subset": 16745, + "prospects": 16746, + "biographical": 16747, + "##cre": 16748, + "artery": 16749, + "##zers": 16750, + "insignia": 16751, + "nuns": 16752, + "endured": 16753, + "##eration": 16754, + "recommend": 16755, + "schwartz": 16756, + "serbs": 16757, + "berger": 16758, + "cromwell": 16759, + "crossroads": 16760, + "##ctor": 16761, + "enduring": 16762, + "clasped": 16763, + "grounded": 16764, + "##bine": 16765, + "marseille": 16766, + "twitched": 16767, + "abel": 16768, + "choke": 16769, + "https": 16770, + "catalyst": 16771, + "moldova": 16772, + "italians": 16773, + "##tist": 16774, + "disastrous": 16775, + "wee": 16776, + "##oured": 16777, + "##nti": 16778, + "wwf": 16779, + "nope": 16780, + "##piration": 16781, + "##asa": 16782, + "expresses": 16783, + "thumbs": 16784, + "167": 16785, + "##nza": 16786, + "coca": 16787, + "1781": 16788, + "cheating": 16789, + "##ption": 16790, + "skipped": 16791, + "sensory": 16792, + "heidelberg": 16793, + "spies": 16794, + "satan": 16795, + "dangers": 16796, + "semifinal": 16797, + "202": 16798, + "bohemia": 16799, + "whitish": 16800, + "confusing": 16801, + "shipbuilding": 16802, + "relies": 16803, + "surgeons": 16804, + "landings": 16805, + "ravi": 16806, + "baku": 16807, + "moor": 16808, + "suffix": 16809, + "alejandro": 16810, + "##yana": 16811, + "litre": 16812, + "upheld": 16813, + "##unk": 16814, + "rajasthan": 16815, + "##rek": 16816, + "coaster": 16817, + "insists": 16818, + "posture": 16819, + "scenarios": 16820, + "etienne": 16821, + "favoured": 16822, + "appoint": 16823, + "transgender": 16824, + "elephants": 16825, + "poked": 16826, + "greenwood": 16827, + "defences": 16828, + "fulfilled": 16829, + "militant": 16830, + "somali": 16831, + "1758": 16832, + "chalk": 16833, + "potent": 16834, + "##ucci": 16835, + "migrants": 16836, + "wink": 16837, + "assistants": 16838, + "nos": 16839, + "restriction": 16840, + "activism": 16841, + "niger": 16842, + "##ario": 16843, + "colon": 16844, + "shaun": 16845, + "##sat": 16846, + "daphne": 16847, + "##erated": 16848, + "swam": 16849, + "congregations": 16850, + "reprise": 16851, + "considerations": 16852, + "magnet": 16853, + "playable": 16854, + "xvi": 16855, + "##р": 16856, + "overthrow": 16857, + "tobias": 16858, + "knob": 16859, + "chavez": 16860, + "coding": 16861, + "##mers": 16862, + "propped": 16863, + "katrina": 16864, + "orient": 16865, + "newcomer": 16866, + "##suke": 16867, + "temperate": 16868, + "##pool": 16869, + "farmhouse": 16870, + "interrogation": 16871, + "##vd": 16872, + "committing": 16873, + "##vert": 16874, + "forthcoming": 16875, + "strawberry": 16876, + "joaquin": 16877, + "macau": 16878, + "ponds": 16879, + "shocking": 16880, + "siberia": 16881, + "##cellular": 16882, + "chant": 16883, + "contributors": 16884, + "##nant": 16885, + "##ologists": 16886, + "sped": 16887, + "absorb": 16888, + "hail": 16889, + "1782": 16890, + "spared": 16891, + "##hore": 16892, + "barbados": 16893, + "karate": 16894, + "opus": 16895, + "originates": 16896, + "saul": 16897, + "##xie": 16898, + "evergreen": 16899, + "leaped": 16900, + "##rock": 16901, + "correlation": 16902, + "exaggerated": 16903, + "weekday": 16904, + "unification": 16905, + "bump": 16906, + "tracing": 16907, + "brig": 16908, + "afb": 16909, + "pathways": 16910, + "utilizing": 16911, + "##ners": 16912, + "mod": 16913, + "mb": 16914, + "disturbance": 16915, + "kneeling": 16916, + "##stad": 16917, + "##guchi": 16918, + "100th": 16919, + "pune": 16920, + "##thy": 16921, + "decreasing": 16922, + "168": 16923, + "manipulation": 16924, + "miriam": 16925, + "academia": 16926, + "ecosystem": 16927, + "occupational": 16928, + "rbi": 16929, + "##lem": 16930, + "rift": 16931, + "##14": 16932, + "rotary": 16933, + "stacked": 16934, + "incorporation": 16935, + "awakening": 16936, + "generators": 16937, + "guerrero": 16938, + "racist": 16939, + "##omy": 16940, + "cyber": 16941, + "derivatives": 16942, + "culminated": 16943, + "allie": 16944, + "annals": 16945, + "panzer": 16946, + "sainte": 16947, + "wikipedia": 16948, + "pops": 16949, + "zu": 16950, + "austro": 16951, + "##vate": 16952, + "algerian": 16953, + "politely": 16954, + "nicholson": 16955, + "mornings": 16956, + "educate": 16957, + "tastes": 16958, + "thrill": 16959, + "dartmouth": 16960, + "##gating": 16961, + "db": 16962, + "##jee": 16963, + "regan": 16964, + "differing": 16965, + "concentrating": 16966, + "choreography": 16967, + "divinity": 16968, + "##media": 16969, + "pledged": 16970, + "alexandre": 16971, + "routing": 16972, + "gregor": 16973, + "madeline": 16974, + "##idal": 16975, + "apocalypse": 16976, + "##hora": 16977, + "gunfire": 16978, + "culminating": 16979, + "elves": 16980, + "fined": 16981, + "liang": 16982, + "lam": 16983, + "programmed": 16984, + "tar": 16985, + "guessing": 16986, + "transparency": 16987, + "gabrielle": 16988, + "##gna": 16989, + "cancellation": 16990, + "flexibility": 16991, + "##lining": 16992, + "accession": 16993, + "shea": 16994, + "stronghold": 16995, + "nets": 16996, + "specializes": 16997, + "##rgan": 16998, + "abused": 16999, + "hasan": 17000, + "sgt": 17001, + "ling": 17002, + "exceeding": 17003, + "##₄": 17004, + "admiration": 17005, + "supermarket": 17006, + "##ark": 17007, + "photographers": 17008, + "specialised": 17009, + "tilt": 17010, + "resonance": 17011, + "hmm": 17012, + "perfume": 17013, + "380": 17014, + "sami": 17015, + "threatens": 17016, + "garland": 17017, + "botany": 17018, + "guarding": 17019, + "boiled": 17020, + "greet": 17021, + "puppy": 17022, + "russo": 17023, + "supplier": 17024, + "wilmington": 17025, + "vibrant": 17026, + "vijay": 17027, + "##bius": 17028, + "paralympic": 17029, + "grumbled": 17030, + "paige": 17031, + "faa": 17032, + "licking": 17033, + "margins": 17034, + "hurricanes": 17035, + "##gong": 17036, + "fest": 17037, + "grenade": 17038, + "ripping": 17039, + "##uz": 17040, + "counseling": 17041, + "weigh": 17042, + "##sian": 17043, + "needles": 17044, + "wiltshire": 17045, + "edison": 17046, + "costly": 17047, + "##not": 17048, + "fulton": 17049, + "tramway": 17050, + "redesigned": 17051, + "staffordshire": 17052, + "cache": 17053, + "gasping": 17054, + "watkins": 17055, + "sleepy": 17056, + "candidacy": 17057, + "##group": 17058, + "monkeys": 17059, + "timeline": 17060, + "throbbing": 17061, + "##bid": 17062, + "##sos": 17063, + "berth": 17064, + "uzbekistan": 17065, + "vanderbilt": 17066, + "bothering": 17067, + "overturned": 17068, + "ballots": 17069, + "gem": 17070, + "##iger": 17071, + "sunglasses": 17072, + "subscribers": 17073, + "hooker": 17074, + "compelling": 17075, + "ang": 17076, + "exceptionally": 17077, + "saloon": 17078, + "stab": 17079, + "##rdi": 17080, + "carla": 17081, + "terrifying": 17082, + "rom": 17083, + "##vision": 17084, + "coil": 17085, + "##oids": 17086, + "satisfying": 17087, + "vendors": 17088, + "31st": 17089, + "mackay": 17090, + "deities": 17091, + "overlooked": 17092, + "ambient": 17093, + "bahamas": 17094, + "felipe": 17095, + "olympia": 17096, + "whirled": 17097, + "botanist": 17098, + "advertised": 17099, + "tugging": 17100, + "##dden": 17101, + "disciples": 17102, + "morales": 17103, + "unionist": 17104, + "rites": 17105, + "foley": 17106, + "morse": 17107, + "motives": 17108, + "creepy": 17109, + "##₀": 17110, + "soo": 17111, + "##sz": 17112, + "bargain": 17113, + "highness": 17114, + "frightening": 17115, + "turnpike": 17116, + "tory": 17117, + "reorganization": 17118, + "##cer": 17119, + "depict": 17120, + "biographer": 17121, + "##walk": 17122, + "unopposed": 17123, + "manifesto": 17124, + "##gles": 17125, + "institut": 17126, + "emile": 17127, + "accidental": 17128, + "kapoor": 17129, + "##dam": 17130, + "kilkenny": 17131, + "cortex": 17132, + "lively": 17133, + "##13": 17134, + "romanesque": 17135, + "jain": 17136, + "shan": 17137, + "cannons": 17138, + "##ood": 17139, + "##ske": 17140, + "petrol": 17141, + "echoing": 17142, + "amalgamated": 17143, + "disappears": 17144, + "cautious": 17145, + "proposes": 17146, + "sanctions": 17147, + "trenton": 17148, + "##ر": 17149, + "flotilla": 17150, + "aus": 17151, + "contempt": 17152, + "tor": 17153, + "canary": 17154, + "cote": 17155, + "theirs": 17156, + "##hun": 17157, + "conceptual": 17158, + "deleted": 17159, + "fascinating": 17160, + "paso": 17161, + "blazing": 17162, + "elf": 17163, + "honourable": 17164, + "hutchinson": 17165, + "##eiro": 17166, + "##outh": 17167, + "##zin": 17168, + "surveyor": 17169, + "tee": 17170, + "amidst": 17171, + "wooded": 17172, + "reissue": 17173, + "intro": 17174, + "##ono": 17175, + "cobb": 17176, + "shelters": 17177, + "newsletter": 17178, + "hanson": 17179, + "brace": 17180, + "encoding": 17181, + "confiscated": 17182, + "dem": 17183, + "caravan": 17184, + "marino": 17185, + "scroll": 17186, + "melodic": 17187, + "cows": 17188, + "imam": 17189, + "##adi": 17190, + "##aneous": 17191, + "northward": 17192, + "searches": 17193, + "biodiversity": 17194, + "cora": 17195, + "310": 17196, + "roaring": 17197, + "##bers": 17198, + "connell": 17199, + "theologian": 17200, + "halo": 17201, + "compose": 17202, + "pathetic": 17203, + "unmarried": 17204, + "dynamo": 17205, + "##oot": 17206, + "az": 17207, + "calculation": 17208, + "toulouse": 17209, + "deserves": 17210, + "humour": 17211, + "nr": 17212, + "forgiveness": 17213, + "tam": 17214, + "undergone": 17215, + "martyr": 17216, + "pamela": 17217, + "myths": 17218, + "whore": 17219, + "counselor": 17220, + "hicks": 17221, + "290": 17222, + "heavens": 17223, + "battleship": 17224, + "electromagnetic": 17225, + "##bbs": 17226, + "stellar": 17227, + "establishments": 17228, + "presley": 17229, + "hopped": 17230, + "##chin": 17231, + "temptation": 17232, + "90s": 17233, + "wills": 17234, + "nas": 17235, + "##yuan": 17236, + "nhs": 17237, + "##nya": 17238, + "seminars": 17239, + "##yev": 17240, + "adaptations": 17241, + "gong": 17242, + "asher": 17243, + "lex": 17244, + "indicator": 17245, + "sikh": 17246, + "tobago": 17247, + "cites": 17248, + "goin": 17249, + "##yte": 17250, + "satirical": 17251, + "##gies": 17252, + "characterised": 17253, + "correspond": 17254, + "bubbles": 17255, + "lure": 17256, + "participates": 17257, + "##vid": 17258, + "eruption": 17259, + "skate": 17260, + "therapeutic": 17261, + "1785": 17262, + "canals": 17263, + "wholesale": 17264, + "defaulted": 17265, + "sac": 17266, + "460": 17267, + "petit": 17268, + "##zzled": 17269, + "virgil": 17270, + "leak": 17271, + "ravens": 17272, + "256": 17273, + "portraying": 17274, + "##yx": 17275, + "ghetto": 17276, + "creators": 17277, + "dams": 17278, + "portray": 17279, + "vicente": 17280, + "##rington": 17281, + "fae": 17282, + "namesake": 17283, + "bounty": 17284, + "##arium": 17285, + "joachim": 17286, + "##ota": 17287, + "##iser": 17288, + "aforementioned": 17289, + "axle": 17290, + "snout": 17291, + "depended": 17292, + "dismantled": 17293, + "reuben": 17294, + "480": 17295, + "##ibly": 17296, + "gallagher": 17297, + "##lau": 17298, + "##pd": 17299, + "earnest": 17300, + "##ieu": 17301, + "##iary": 17302, + "inflicted": 17303, + "objections": 17304, + "##llar": 17305, + "asa": 17306, + "gritted": 17307, + "##athy": 17308, + "jericho": 17309, + "##sea": 17310, + "##was": 17311, + "flick": 17312, + "underside": 17313, + "ceramics": 17314, + "undead": 17315, + "substituted": 17316, + "195": 17317, + "eastward": 17318, + "undoubtedly": 17319, + "wheeled": 17320, + "chimney": 17321, + "##iche": 17322, + "guinness": 17323, + "cb": 17324, + "##ager": 17325, + "siding": 17326, + "##bell": 17327, + "traitor": 17328, + "baptiste": 17329, + "disguised": 17330, + "inauguration": 17331, + "149": 17332, + "tipperary": 17333, + "choreographer": 17334, + "perched": 17335, + "warmed": 17336, + "stationary": 17337, + "eco": 17338, + "##ike": 17339, + "##ntes": 17340, + "bacterial": 17341, + "##aurus": 17342, + "flores": 17343, + "phosphate": 17344, + "##core": 17345, + "attacker": 17346, + "invaders": 17347, + "alvin": 17348, + "intersects": 17349, + "a1": 17350, + "indirectly": 17351, + "immigrated": 17352, + "businessmen": 17353, + "cornelius": 17354, + "valves": 17355, + "narrated": 17356, + "pill": 17357, + "sober": 17358, + "ul": 17359, + "nationale": 17360, + "monastic": 17361, + "applicants": 17362, + "scenery": 17363, + "##jack": 17364, + "161": 17365, + "motifs": 17366, + "constitutes": 17367, + "cpu": 17368, + "##osh": 17369, + "jurisdictions": 17370, + "sd": 17371, + "tuning": 17372, + "irritation": 17373, + "woven": 17374, + "##uddin": 17375, + "fertility": 17376, + "gao": 17377, + "##erie": 17378, + "antagonist": 17379, + "impatient": 17380, + "glacial": 17381, + "hides": 17382, + "boarded": 17383, + "denominations": 17384, + "interception": 17385, + "##jas": 17386, + "cookie": 17387, + "nicola": 17388, + "##tee": 17389, + "algebraic": 17390, + "marquess": 17391, + "bahn": 17392, + "parole": 17393, + "buyers": 17394, + "bait": 17395, + "turbines": 17396, + "paperwork": 17397, + "bestowed": 17398, + "natasha": 17399, + "renee": 17400, + "oceans": 17401, + "purchases": 17402, + "157": 17403, + "vaccine": 17404, + "215": 17405, + "##tock": 17406, + "fixtures": 17407, + "playhouse": 17408, + "integrate": 17409, + "jai": 17410, + "oswald": 17411, + "intellectuals": 17412, + "##cky": 17413, + "booked": 17414, + "nests": 17415, + "mortimer": 17416, + "##isi": 17417, + "obsession": 17418, + "sept": 17419, + "##gler": 17420, + "##sum": 17421, + "440": 17422, + "scrutiny": 17423, + "simultaneous": 17424, + "squinted": 17425, + "##shin": 17426, + "collects": 17427, + "oven": 17428, + "shankar": 17429, + "penned": 17430, + "remarkably": 17431, + "##я": 17432, + "slips": 17433, + "luggage": 17434, + "spectral": 17435, + "1786": 17436, + "collaborations": 17437, + "louie": 17438, + "consolidation": 17439, + "##ailed": 17440, + "##ivating": 17441, + "420": 17442, + "hoover": 17443, + "blackpool": 17444, + "harness": 17445, + "ignition": 17446, + "vest": 17447, + "tails": 17448, + "belmont": 17449, + "mongol": 17450, + "skinner": 17451, + "##nae": 17452, + "visually": 17453, + "mage": 17454, + "derry": 17455, + "##tism": 17456, + "##unce": 17457, + "stevie": 17458, + "transitional": 17459, + "##rdy": 17460, + "redskins": 17461, + "drying": 17462, + "prep": 17463, + "prospective": 17464, + "##21": 17465, + "annoyance": 17466, + "oversee": 17467, + "##loaded": 17468, + "fills": 17469, + "##books": 17470, + "##iki": 17471, + "announces": 17472, + "fda": 17473, + "scowled": 17474, + "respects": 17475, + "prasad": 17476, + "mystic": 17477, + "tucson": 17478, + "##vale": 17479, + "revue": 17480, + "springer": 17481, + "bankrupt": 17482, + "1772": 17483, + "aristotle": 17484, + "salvatore": 17485, + "habsburg": 17486, + "##geny": 17487, + "dal": 17488, + "natal": 17489, + "nut": 17490, + "pod": 17491, + "chewing": 17492, + "darts": 17493, + "moroccan": 17494, + "walkover": 17495, + "rosario": 17496, + "lenin": 17497, + "punjabi": 17498, + "##ße": 17499, + "grossed": 17500, + "scattering": 17501, + "wired": 17502, + "invasive": 17503, + "hui": 17504, + "polynomial": 17505, + "corridors": 17506, + "wakes": 17507, + "gina": 17508, + "portrays": 17509, + "##cratic": 17510, + "arid": 17511, + "retreating": 17512, + "erich": 17513, + "irwin": 17514, + "sniper": 17515, + "##dha": 17516, + "linen": 17517, + "lindsey": 17518, + "maneuver": 17519, + "butch": 17520, + "shutting": 17521, + "socio": 17522, + "bounce": 17523, + "commemorative": 17524, + "postseason": 17525, + "jeremiah": 17526, + "pines": 17527, + "275": 17528, + "mystical": 17529, + "beads": 17530, + "bp": 17531, + "abbas": 17532, + "furnace": 17533, + "bidding": 17534, + "consulted": 17535, + "assaulted": 17536, + "empirical": 17537, + "rubble": 17538, + "enclosure": 17539, + "sob": 17540, + "weakly": 17541, + "cancel": 17542, + "polly": 17543, + "yielded": 17544, + "##emann": 17545, + "curly": 17546, + "prediction": 17547, + "battered": 17548, + "70s": 17549, + "vhs": 17550, + "jacqueline": 17551, + "render": 17552, + "sails": 17553, + "barked": 17554, + "detailing": 17555, + "grayson": 17556, + "riga": 17557, + "sloane": 17558, + "raging": 17559, + "##yah": 17560, + "herbs": 17561, + "bravo": 17562, + "##athlon": 17563, + "alloy": 17564, + "giggle": 17565, + "imminent": 17566, + "suffers": 17567, + "assumptions": 17568, + "waltz": 17569, + "##itate": 17570, + "accomplishments": 17571, + "##ited": 17572, + "bathing": 17573, + "remixed": 17574, + "deception": 17575, + "prefix": 17576, + "##emia": 17577, + "deepest": 17578, + "##tier": 17579, + "##eis": 17580, + "balkan": 17581, + "frogs": 17582, + "##rong": 17583, + "slab": 17584, + "##pate": 17585, + "philosophers": 17586, + "peterborough": 17587, + "grains": 17588, + "imports": 17589, + "dickinson": 17590, + "rwanda": 17591, + "##atics": 17592, + "1774": 17593, + "dirk": 17594, + "lan": 17595, + "tablets": 17596, + "##rove": 17597, + "clone": 17598, + "##rice": 17599, + "caretaker": 17600, + "hostilities": 17601, + "mclean": 17602, + "##gre": 17603, + "regimental": 17604, + "treasures": 17605, + "norms": 17606, + "impose": 17607, + "tsar": 17608, + "tango": 17609, + "diplomacy": 17610, + "variously": 17611, + "complain": 17612, + "192": 17613, + "recognise": 17614, + "arrests": 17615, + "1779": 17616, + "celestial": 17617, + "pulitzer": 17618, + "##dus": 17619, + "bing": 17620, + "libretto": 17621, + "##moor": 17622, + "adele": 17623, + "splash": 17624, + "##rite": 17625, + "expectation": 17626, + "lds": 17627, + "confronts": 17628, + "##izer": 17629, + "spontaneous": 17630, + "harmful": 17631, + "wedge": 17632, + "entrepreneurs": 17633, + "buyer": 17634, + "##ope": 17635, + "bilingual": 17636, + "translate": 17637, + "rugged": 17638, + "conner": 17639, + "circulated": 17640, + "uae": 17641, + "eaton": 17642, + "##gra": 17643, + "##zzle": 17644, + "lingered": 17645, + "lockheed": 17646, + "vishnu": 17647, + "reelection": 17648, + "alonso": 17649, + "##oom": 17650, + "joints": 17651, + "yankee": 17652, + "headline": 17653, + "cooperate": 17654, + "heinz": 17655, + "laureate": 17656, + "invading": 17657, + "##sford": 17658, + "echoes": 17659, + "scandinavian": 17660, + "##dham": 17661, + "hugging": 17662, + "vitamin": 17663, + "salute": 17664, + "micah": 17665, + "hind": 17666, + "trader": 17667, + "##sper": 17668, + "radioactive": 17669, + "##ndra": 17670, + "militants": 17671, + "poisoned": 17672, + "ratified": 17673, + "remark": 17674, + "campeonato": 17675, + "deprived": 17676, + "wander": 17677, + "prop": 17678, + "##dong": 17679, + "outlook": 17680, + "##tani": 17681, + "##rix": 17682, + "##eye": 17683, + "chiang": 17684, + "darcy": 17685, + "##oping": 17686, + "mandolin": 17687, + "spice": 17688, + "statesman": 17689, + "babylon": 17690, + "182": 17691, + "walled": 17692, + "forgetting": 17693, + "afro": 17694, + "##cap": 17695, + "158": 17696, + "giorgio": 17697, + "buffer": 17698, + "##polis": 17699, + "planetary": 17700, + "##gis": 17701, + "overlap": 17702, + "terminals": 17703, + "kinda": 17704, + "centenary": 17705, + "##bir": 17706, + "arising": 17707, + "manipulate": 17708, + "elm": 17709, + "ke": 17710, + "1770": 17711, + "ak": 17712, + "##tad": 17713, + "chrysler": 17714, + "mapped": 17715, + "moose": 17716, + "pomeranian": 17717, + "quad": 17718, + "macarthur": 17719, + "assemblies": 17720, + "shoreline": 17721, + "recalls": 17722, + "stratford": 17723, + "##rted": 17724, + "noticeable": 17725, + "##evic": 17726, + "imp": 17727, + "##rita": 17728, + "##sque": 17729, + "accustomed": 17730, + "supplying": 17731, + "tents": 17732, + "disgusted": 17733, + "vogue": 17734, + "sipped": 17735, + "filters": 17736, + "khz": 17737, + "reno": 17738, + "selecting": 17739, + "luftwaffe": 17740, + "mcmahon": 17741, + "tyne": 17742, + "masterpiece": 17743, + "carriages": 17744, + "collided": 17745, + "dunes": 17746, + "exercised": 17747, + "flare": 17748, + "remembers": 17749, + "muzzle": 17750, + "##mobile": 17751, + "heck": 17752, + "##rson": 17753, + "burgess": 17754, + "lunged": 17755, + "middleton": 17756, + "boycott": 17757, + "bilateral": 17758, + "##sity": 17759, + "hazardous": 17760, + "lumpur": 17761, + "multiplayer": 17762, + "spotlight": 17763, + "jackets": 17764, + "goldman": 17765, + "liege": 17766, + "porcelain": 17767, + "rag": 17768, + "waterford": 17769, + "benz": 17770, + "attracts": 17771, + "hopeful": 17772, + "battling": 17773, + "ottomans": 17774, + "kensington": 17775, + "baked": 17776, + "hymns": 17777, + "cheyenne": 17778, + "lattice": 17779, + "levine": 17780, + "borrow": 17781, + "polymer": 17782, + "clashes": 17783, + "michaels": 17784, + "monitored": 17785, + "commitments": 17786, + "denounced": 17787, + "##25": 17788, + "##von": 17789, + "cavity": 17790, + "##oney": 17791, + "hobby": 17792, + "akin": 17793, + "##holders": 17794, + "futures": 17795, + "intricate": 17796, + "cornish": 17797, + "patty": 17798, + "##oned": 17799, + "illegally": 17800, + "dolphin": 17801, + "##lag": 17802, + "barlow": 17803, + "yellowish": 17804, + "maddie": 17805, + "apologized": 17806, + "luton": 17807, + "plagued": 17808, + "##puram": 17809, + "nana": 17810, + "##rds": 17811, + "sway": 17812, + "fanny": 17813, + "łodz": 17814, + "##rino": 17815, + "psi": 17816, + "suspicions": 17817, + "hanged": 17818, + "##eding": 17819, + "initiate": 17820, + "charlton": 17821, + "##por": 17822, + "nak": 17823, + "competent": 17824, + "235": 17825, + "analytical": 17826, + "annex": 17827, + "wardrobe": 17828, + "reservations": 17829, + "##rma": 17830, + "sect": 17831, + "162": 17832, + "fairfax": 17833, + "hedge": 17834, + "piled": 17835, + "buckingham": 17836, + "uneven": 17837, + "bauer": 17838, + "simplicity": 17839, + "snyder": 17840, + "interpret": 17841, + "accountability": 17842, + "donors": 17843, + "moderately": 17844, + "byrd": 17845, + "continents": 17846, + "##cite": 17847, + "##max": 17848, + "disciple": 17849, + "hr": 17850, + "jamaican": 17851, + "ping": 17852, + "nominees": 17853, + "##uss": 17854, + "mongolian": 17855, + "diver": 17856, + "attackers": 17857, + "eagerly": 17858, + "ideological": 17859, + "pillows": 17860, + "miracles": 17861, + "apartheid": 17862, + "revolver": 17863, + "sulfur": 17864, + "clinics": 17865, + "moran": 17866, + "163": 17867, + "##enko": 17868, + "ile": 17869, + "katy": 17870, + "rhetoric": 17871, + "##icated": 17872, + "chronology": 17873, + "recycling": 17874, + "##hrer": 17875, + "elongated": 17876, + "mughal": 17877, + "pascal": 17878, + "profiles": 17879, + "vibration": 17880, + "databases": 17881, + "domination": 17882, + "##fare": 17883, + "##rant": 17884, + "matthias": 17885, + "digest": 17886, + "rehearsal": 17887, + "polling": 17888, + "weiss": 17889, + "initiation": 17890, + "reeves": 17891, + "clinging": 17892, + "flourished": 17893, + "impress": 17894, + "ngo": 17895, + "##hoff": 17896, + "##ume": 17897, + "buckley": 17898, + "symposium": 17899, + "rhythms": 17900, + "weed": 17901, + "emphasize": 17902, + "transforming": 17903, + "##taking": 17904, + "##gence": 17905, + "##yman": 17906, + "accountant": 17907, + "analyze": 17908, + "flicker": 17909, + "foil": 17910, + "priesthood": 17911, + "voluntarily": 17912, + "decreases": 17913, + "##80": 17914, + "##hya": 17915, + "slater": 17916, + "sv": 17917, + "charting": 17918, + "mcgill": 17919, + "##lde": 17920, + "moreno": 17921, + "##iu": 17922, + "besieged": 17923, + "zur": 17924, + "robes": 17925, + "##phic": 17926, + "admitting": 17927, + "api": 17928, + "deported": 17929, + "turmoil": 17930, + "peyton": 17931, + "earthquakes": 17932, + "##ares": 17933, + "nationalists": 17934, + "beau": 17935, + "clair": 17936, + "brethren": 17937, + "interrupt": 17938, + "welch": 17939, + "curated": 17940, + "galerie": 17941, + "requesting": 17942, + "164": 17943, + "##ested": 17944, + "impending": 17945, + "steward": 17946, + "viper": 17947, + "##vina": 17948, + "complaining": 17949, + "beautifully": 17950, + "brandy": 17951, + "foam": 17952, + "nl": 17953, + "1660": 17954, + "##cake": 17955, + "alessandro": 17956, + "punches": 17957, + "laced": 17958, + "explanations": 17959, + "##lim": 17960, + "attribute": 17961, + "clit": 17962, + "reggie": 17963, + "discomfort": 17964, + "##cards": 17965, + "smoothed": 17966, + "whales": 17967, + "##cene": 17968, + "adler": 17969, + "countered": 17970, + "duffy": 17971, + "disciplinary": 17972, + "widening": 17973, + "recipe": 17974, + "reliance": 17975, + "conducts": 17976, + "goats": 17977, + "gradient": 17978, + "preaching": 17979, + "##shaw": 17980, + "matilda": 17981, + "quasi": 17982, + "striped": 17983, + "meridian": 17984, + "cannabis": 17985, + "cordoba": 17986, + "certificates": 17987, + "##agh": 17988, + "##tering": 17989, + "graffiti": 17990, + "hangs": 17991, + "pilgrims": 17992, + "repeats": 17993, + "##ych": 17994, + "revive": 17995, + "urine": 17996, + "etat": 17997, + "##hawk": 17998, + "fueled": 17999, + "belts": 18000, + "fuzzy": 18001, + "susceptible": 18002, + "##hang": 18003, + "mauritius": 18004, + "salle": 18005, + "sincere": 18006, + "beers": 18007, + "hooks": 18008, + "##cki": 18009, + "arbitration": 18010, + "entrusted": 18011, + "advise": 18012, + "sniffed": 18013, + "seminar": 18014, + "junk": 18015, + "donnell": 18016, + "processors": 18017, + "principality": 18018, + "strapped": 18019, + "celia": 18020, + "mendoza": 18021, + "everton": 18022, + "fortunes": 18023, + "prejudice": 18024, + "starving": 18025, + "reassigned": 18026, + "steamer": 18027, + "##lund": 18028, + "tuck": 18029, + "evenly": 18030, + "foreman": 18031, + "##ffen": 18032, + "dans": 18033, + "375": 18034, + "envisioned": 18035, + "slit": 18036, + "##xy": 18037, + "baseman": 18038, + "liberia": 18039, + "rosemary": 18040, + "##weed": 18041, + "electrified": 18042, + "periodically": 18043, + "potassium": 18044, + "stride": 18045, + "contexts": 18046, + "sperm": 18047, + "slade": 18048, + "mariners": 18049, + "influx": 18050, + "bianca": 18051, + "subcommittee": 18052, + "##rane": 18053, + "spilling": 18054, + "icao": 18055, + "estuary": 18056, + "##nock": 18057, + "delivers": 18058, + "iphone": 18059, + "##ulata": 18060, + "isa": 18061, + "mira": 18062, + "bohemian": 18063, + "dessert": 18064, + "##sbury": 18065, + "welcoming": 18066, + "proudly": 18067, + "slowing": 18068, + "##chs": 18069, + "musee": 18070, + "ascension": 18071, + "russ": 18072, + "##vian": 18073, + "waits": 18074, + "##psy": 18075, + "africans": 18076, + "exploit": 18077, + "##morphic": 18078, + "gov": 18079, + "eccentric": 18080, + "crab": 18081, + "peck": 18082, + "##ull": 18083, + "entrances": 18084, + "formidable": 18085, + "marketplace": 18086, + "groom": 18087, + "bolted": 18088, + "metabolism": 18089, + "patton": 18090, + "robbins": 18091, + "courier": 18092, + "payload": 18093, + "endure": 18094, + "##ifier": 18095, + "andes": 18096, + "refrigerator": 18097, + "##pr": 18098, + "ornate": 18099, + "##uca": 18100, + "ruthless": 18101, + "illegitimate": 18102, + "masonry": 18103, + "strasbourg": 18104, + "bikes": 18105, + "adobe": 18106, + "##³": 18107, + "apples": 18108, + "quintet": 18109, + "willingly": 18110, + "niche": 18111, + "bakery": 18112, + "corpses": 18113, + "energetic": 18114, + "##cliffe": 18115, + "##sser": 18116, + "##ards": 18117, + "177": 18118, + "centimeters": 18119, + "centro": 18120, + "fuscous": 18121, + "cretaceous": 18122, + "rancho": 18123, + "##yde": 18124, + "andrei": 18125, + "telecom": 18126, + "tottenham": 18127, + "oasis": 18128, + "ordination": 18129, + "vulnerability": 18130, + "presiding": 18131, + "corey": 18132, + "cp": 18133, + "penguins": 18134, + "sims": 18135, + "##pis": 18136, + "malawi": 18137, + "piss": 18138, + "##48": 18139, + "correction": 18140, + "##cked": 18141, + "##ffle": 18142, + "##ryn": 18143, + "countdown": 18144, + "detectives": 18145, + "psychiatrist": 18146, + "psychedelic": 18147, + "dinosaurs": 18148, + "blouse": 18149, + "##get": 18150, + "choi": 18151, + "vowed": 18152, + "##oz": 18153, + "randomly": 18154, + "##pol": 18155, + "49ers": 18156, + "scrub": 18157, + "blanche": 18158, + "bruins": 18159, + "dusseldorf": 18160, + "##using": 18161, + "unwanted": 18162, + "##ums": 18163, + "212": 18164, + "dominique": 18165, + "elevations": 18166, + "headlights": 18167, + "om": 18168, + "laguna": 18169, + "##oga": 18170, + "1750": 18171, + "famously": 18172, + "ignorance": 18173, + "shrewsbury": 18174, + "##aine": 18175, + "ajax": 18176, + "breuning": 18177, + "che": 18178, + "confederacy": 18179, + "greco": 18180, + "overhaul": 18181, + "##screen": 18182, + "paz": 18183, + "skirts": 18184, + "disagreement": 18185, + "cruelty": 18186, + "jagged": 18187, + "phoebe": 18188, + "shifter": 18189, + "hovered": 18190, + "viruses": 18191, + "##wes": 18192, + "mandy": 18193, + "##lined": 18194, + "##gc": 18195, + "landlord": 18196, + "squirrel": 18197, + "dashed": 18198, + "##ι": 18199, + "ornamental": 18200, + "gag": 18201, + "wally": 18202, + "grange": 18203, + "literal": 18204, + "spurs": 18205, + "undisclosed": 18206, + "proceeding": 18207, + "yin": 18208, + "##text": 18209, + "billie": 18210, + "orphan": 18211, + "spanned": 18212, + "humidity": 18213, + "indy": 18214, + "weighted": 18215, + "presentations": 18216, + "explosions": 18217, + "lucian": 18218, + "##tary": 18219, + "vaughn": 18220, + "hindus": 18221, + "##anga": 18222, + "##hell": 18223, + "psycho": 18224, + "171": 18225, + "daytona": 18226, + "protects": 18227, + "efficiently": 18228, + "rematch": 18229, + "sly": 18230, + "tandem": 18231, + "##oya": 18232, + "rebranded": 18233, + "impaired": 18234, + "hee": 18235, + "metropolis": 18236, + "peach": 18237, + "godfrey": 18238, + "diaspora": 18239, + "ethnicity": 18240, + "prosperous": 18241, + "gleaming": 18242, + "dar": 18243, + "grossing": 18244, + "playback": 18245, + "##rden": 18246, + "stripe": 18247, + "pistols": 18248, + "##tain": 18249, + "births": 18250, + "labelled": 18251, + "##cating": 18252, + "172": 18253, + "rudy": 18254, + "alba": 18255, + "##onne": 18256, + "aquarium": 18257, + "hostility": 18258, + "##gb": 18259, + "##tase": 18260, + "shudder": 18261, + "sumatra": 18262, + "hardest": 18263, + "lakers": 18264, + "consonant": 18265, + "creeping": 18266, + "demos": 18267, + "homicide": 18268, + "capsule": 18269, + "zeke": 18270, + "liberties": 18271, + "expulsion": 18272, + "pueblo": 18273, + "##comb": 18274, + "trait": 18275, + "transporting": 18276, + "##ddin": 18277, + "##neck": 18278, + "##yna": 18279, + "depart": 18280, + "gregg": 18281, + "mold": 18282, + "ledge": 18283, + "hangar": 18284, + "oldham": 18285, + "playboy": 18286, + "termination": 18287, + "analysts": 18288, + "gmbh": 18289, + "romero": 18290, + "##itic": 18291, + "insist": 18292, + "cradle": 18293, + "filthy": 18294, + "brightness": 18295, + "slash": 18296, + "shootout": 18297, + "deposed": 18298, + "bordering": 18299, + "##truct": 18300, + "isis": 18301, + "microwave": 18302, + "tumbled": 18303, + "sheltered": 18304, + "cathy": 18305, + "werewolves": 18306, + "messy": 18307, + "andersen": 18308, + "convex": 18309, + "clapped": 18310, + "clinched": 18311, + "satire": 18312, + "wasting": 18313, + "edo": 18314, + "vc": 18315, + "rufus": 18316, + "##jak": 18317, + "mont": 18318, + "##etti": 18319, + "poznan": 18320, + "##keeping": 18321, + "restructuring": 18322, + "transverse": 18323, + "##rland": 18324, + "azerbaijani": 18325, + "slovene": 18326, + "gestures": 18327, + "roommate": 18328, + "choking": 18329, + "shear": 18330, + "##quist": 18331, + "vanguard": 18332, + "oblivious": 18333, + "##hiro": 18334, + "disagreed": 18335, + "baptism": 18336, + "##lich": 18337, + "coliseum": 18338, + "##aceae": 18339, + "salvage": 18340, + "societe": 18341, + "cory": 18342, + "locke": 18343, + "relocation": 18344, + "relying": 18345, + "versailles": 18346, + "ahl": 18347, + "swelling": 18348, + "##elo": 18349, + "cheerful": 18350, + "##word": 18351, + "##edes": 18352, + "gin": 18353, + "sarajevo": 18354, + "obstacle": 18355, + "diverted": 18356, + "##nac": 18357, + "messed": 18358, + "thoroughbred": 18359, + "fluttered": 18360, + "utrecht": 18361, + "chewed": 18362, + "acquaintance": 18363, + "assassins": 18364, + "dispatch": 18365, + "mirza": 18366, + "##wart": 18367, + "nike": 18368, + "salzburg": 18369, + "swell": 18370, + "yen": 18371, + "##gee": 18372, + "idle": 18373, + "ligue": 18374, + "samson": 18375, + "##nds": 18376, + "##igh": 18377, + "playful": 18378, + "spawned": 18379, + "##cise": 18380, + "tease": 18381, + "##case": 18382, + "burgundy": 18383, + "##bot": 18384, + "stirring": 18385, + "skeptical": 18386, + "interceptions": 18387, + "marathi": 18388, + "##dies": 18389, + "bedrooms": 18390, + "aroused": 18391, + "pinch": 18392, + "##lik": 18393, + "preferences": 18394, + "tattoos": 18395, + "buster": 18396, + "digitally": 18397, + "projecting": 18398, + "rust": 18399, + "##ital": 18400, + "kitten": 18401, + "priorities": 18402, + "addison": 18403, + "pseudo": 18404, + "##guard": 18405, + "dusk": 18406, + "icons": 18407, + "sermon": 18408, + "##psis": 18409, + "##iba": 18410, + "bt": 18411, + "##lift": 18412, + "##xt": 18413, + "ju": 18414, + "truce": 18415, + "rink": 18416, + "##dah": 18417, + "##wy": 18418, + "defects": 18419, + "psychiatry": 18420, + "offences": 18421, + "calculate": 18422, + "glucose": 18423, + "##iful": 18424, + "##rized": 18425, + "##unda": 18426, + "francaise": 18427, + "##hari": 18428, + "richest": 18429, + "warwickshire": 18430, + "carly": 18431, + "1763": 18432, + "purity": 18433, + "redemption": 18434, + "lending": 18435, + "##cious": 18436, + "muse": 18437, + "bruises": 18438, + "cerebral": 18439, + "aero": 18440, + "carving": 18441, + "##name": 18442, + "preface": 18443, + "terminology": 18444, + "invade": 18445, + "monty": 18446, + "##int": 18447, + "anarchist": 18448, + "blurred": 18449, + "##iled": 18450, + "rossi": 18451, + "treats": 18452, + "guts": 18453, + "shu": 18454, + "foothills": 18455, + "ballads": 18456, + "undertaking": 18457, + "premise": 18458, + "cecilia": 18459, + "affiliates": 18460, + "blasted": 18461, + "conditional": 18462, + "wilder": 18463, + "minors": 18464, + "drone": 18465, + "rudolph": 18466, + "buffy": 18467, + "swallowing": 18468, + "horton": 18469, + "attested": 18470, + "##hop": 18471, + "rutherford": 18472, + "howell": 18473, + "primetime": 18474, + "livery": 18475, + "penal": 18476, + "##bis": 18477, + "minimize": 18478, + "hydro": 18479, + "wrecked": 18480, + "wrought": 18481, + "palazzo": 18482, + "##gling": 18483, + "cans": 18484, + "vernacular": 18485, + "friedman": 18486, + "nobleman": 18487, + "shale": 18488, + "walnut": 18489, + "danielle": 18490, + "##ection": 18491, + "##tley": 18492, + "sears": 18493, + "##kumar": 18494, + "chords": 18495, + "lend": 18496, + "flipping": 18497, + "streamed": 18498, + "por": 18499, + "dracula": 18500, + "gallons": 18501, + "sacrifices": 18502, + "gamble": 18503, + "orphanage": 18504, + "##iman": 18505, + "mckenzie": 18506, + "##gible": 18507, + "boxers": 18508, + "daly": 18509, + "##balls": 18510, + "##ان": 18511, + "208": 18512, + "##ific": 18513, + "##rative": 18514, + "##iq": 18515, + "exploited": 18516, + "slated": 18517, + "##uity": 18518, + "circling": 18519, + "hillary": 18520, + "pinched": 18521, + "goldberg": 18522, + "provost": 18523, + "campaigning": 18524, + "lim": 18525, + "piles": 18526, + "ironically": 18527, + "jong": 18528, + "mohan": 18529, + "successors": 18530, + "usaf": 18531, + "##tem": 18532, + "##ught": 18533, + "autobiographical": 18534, + "haute": 18535, + "preserves": 18536, + "##ending": 18537, + "acquitted": 18538, + "comparisons": 18539, + "203": 18540, + "hydroelectric": 18541, + "gangs": 18542, + "cypriot": 18543, + "torpedoes": 18544, + "rushes": 18545, + "chrome": 18546, + "derive": 18547, + "bumps": 18548, + "instability": 18549, + "fiat": 18550, + "pets": 18551, + "##mbe": 18552, + "silas": 18553, + "dye": 18554, + "reckless": 18555, + "settler": 18556, + "##itation": 18557, + "info": 18558, + "heats": 18559, + "##writing": 18560, + "176": 18561, + "canonical": 18562, + "maltese": 18563, + "fins": 18564, + "mushroom": 18565, + "stacy": 18566, + "aspen": 18567, + "avid": 18568, + "##kur": 18569, + "##loading": 18570, + "vickers": 18571, + "gaston": 18572, + "hillside": 18573, + "statutes": 18574, + "wilde": 18575, + "gail": 18576, + "kung": 18577, + "sabine": 18578, + "comfortably": 18579, + "motorcycles": 18580, + "##rgo": 18581, + "169": 18582, + "pneumonia": 18583, + "fetch": 18584, + "##sonic": 18585, + "axel": 18586, + "faintly": 18587, + "parallels": 18588, + "##oop": 18589, + "mclaren": 18590, + "spouse": 18591, + "compton": 18592, + "interdisciplinary": 18593, + "miner": 18594, + "##eni": 18595, + "181": 18596, + "clamped": 18597, + "##chal": 18598, + "##llah": 18599, + "separates": 18600, + "versa": 18601, + "##mler": 18602, + "scarborough": 18603, + "labrador": 18604, + "##lity": 18605, + "##osing": 18606, + "rutgers": 18607, + "hurdles": 18608, + "como": 18609, + "166": 18610, + "burt": 18611, + "divers": 18612, + "##100": 18613, + "wichita": 18614, + "cade": 18615, + "coincided": 18616, + "##erson": 18617, + "bruised": 18618, + "mla": 18619, + "##pper": 18620, + "vineyard": 18621, + "##ili": 18622, + "##brush": 18623, + "notch": 18624, + "mentioning": 18625, + "jase": 18626, + "hearted": 18627, + "kits": 18628, + "doe": 18629, + "##acle": 18630, + "pomerania": 18631, + "##ady": 18632, + "ronan": 18633, + "seizure": 18634, + "pavel": 18635, + "problematic": 18636, + "##zaki": 18637, + "domenico": 18638, + "##ulin": 18639, + "catering": 18640, + "penelope": 18641, + "dependence": 18642, + "parental": 18643, + "emilio": 18644, + "ministerial": 18645, + "atkinson": 18646, + "##bolic": 18647, + "clarkson": 18648, + "chargers": 18649, + "colby": 18650, + "grill": 18651, + "peeked": 18652, + "arises": 18653, + "summon": 18654, + "##aged": 18655, + "fools": 18656, + "##grapher": 18657, + "faculties": 18658, + "qaeda": 18659, + "##vial": 18660, + "garner": 18661, + "refurbished": 18662, + "##hwa": 18663, + "geelong": 18664, + "disasters": 18665, + "nudged": 18666, + "bs": 18667, + "shareholder": 18668, + "lori": 18669, + "algae": 18670, + "reinstated": 18671, + "rot": 18672, + "##ades": 18673, + "##nous": 18674, + "invites": 18675, + "stainless": 18676, + "183": 18677, + "inclusive": 18678, + "##itude": 18679, + "diocesan": 18680, + "til": 18681, + "##icz": 18682, + "denomination": 18683, + "##xa": 18684, + "benton": 18685, + "floral": 18686, + "registers": 18687, + "##ider": 18688, + "##erman": 18689, + "##kell": 18690, + "absurd": 18691, + "brunei": 18692, + "guangzhou": 18693, + "hitter": 18694, + "retaliation": 18695, + "##uled": 18696, + "##eve": 18697, + "blanc": 18698, + "nh": 18699, + "consistency": 18700, + "contamination": 18701, + "##eres": 18702, + "##rner": 18703, + "dire": 18704, + "palermo": 18705, + "broadcasters": 18706, + "diaries": 18707, + "inspire": 18708, + "vols": 18709, + "brewer": 18710, + "tightening": 18711, + "ky": 18712, + "mixtape": 18713, + "hormone": 18714, + "##tok": 18715, + "stokes": 18716, + "##color": 18717, + "##dly": 18718, + "##ssi": 18719, + "pg": 18720, + "##ometer": 18721, + "##lington": 18722, + "sanitation": 18723, + "##tility": 18724, + "intercontinental": 18725, + "apps": 18726, + "##adt": 18727, + "¹⁄₂": 18728, + "cylinders": 18729, + "economies": 18730, + "favourable": 18731, + "unison": 18732, + "croix": 18733, + "gertrude": 18734, + "odyssey": 18735, + "vanity": 18736, + "dangling": 18737, + "##logists": 18738, + "upgrades": 18739, + "dice": 18740, + "middleweight": 18741, + "practitioner": 18742, + "##ight": 18743, + "206": 18744, + "henrik": 18745, + "parlor": 18746, + "orion": 18747, + "angered": 18748, + "lac": 18749, + "python": 18750, + "blurted": 18751, + "##rri": 18752, + "sensual": 18753, + "intends": 18754, + "swings": 18755, + "angled": 18756, + "##phs": 18757, + "husky": 18758, + "attain": 18759, + "peerage": 18760, + "precinct": 18761, + "textiles": 18762, + "cheltenham": 18763, + "shuffled": 18764, + "dai": 18765, + "confess": 18766, + "tasting": 18767, + "bhutan": 18768, + "##riation": 18769, + "tyrone": 18770, + "segregation": 18771, + "abrupt": 18772, + "ruiz": 18773, + "##rish": 18774, + "smirked": 18775, + "blackwell": 18776, + "confidential": 18777, + "browning": 18778, + "amounted": 18779, + "##put": 18780, + "vase": 18781, + "scarce": 18782, + "fabulous": 18783, + "raided": 18784, + "staple": 18785, + "guyana": 18786, + "unemployed": 18787, + "glider": 18788, + "shay": 18789, + "##tow": 18790, + "carmine": 18791, + "troll": 18792, + "intervene": 18793, + "squash": 18794, + "superstar": 18795, + "##uce": 18796, + "cylindrical": 18797, + "len": 18798, + "roadway": 18799, + "researched": 18800, + "handy": 18801, + "##rium": 18802, + "##jana": 18803, + "meta": 18804, + "lao": 18805, + "declares": 18806, + "##rring": 18807, + "##tadt": 18808, + "##elin": 18809, + "##kova": 18810, + "willem": 18811, + "shrubs": 18812, + "napoleonic": 18813, + "realms": 18814, + "skater": 18815, + "qi": 18816, + "volkswagen": 18817, + "##ł": 18818, + "tad": 18819, + "hara": 18820, + "archaeologist": 18821, + "awkwardly": 18822, + "eerie": 18823, + "##kind": 18824, + "wiley": 18825, + "##heimer": 18826, + "##24": 18827, + "titus": 18828, + "organizers": 18829, + "cfl": 18830, + "crusaders": 18831, + "lama": 18832, + "usb": 18833, + "vent": 18834, + "enraged": 18835, + "thankful": 18836, + "occupants": 18837, + "maximilian": 18838, + "##gaard": 18839, + "possessing": 18840, + "textbooks": 18841, + "##oran": 18842, + "collaborator": 18843, + "quaker": 18844, + "##ulo": 18845, + "avalanche": 18846, + "mono": 18847, + "silky": 18848, + "straits": 18849, + "isaiah": 18850, + "mustang": 18851, + "surged": 18852, + "resolutions": 18853, + "potomac": 18854, + "descend": 18855, + "cl": 18856, + "kilograms": 18857, + "plato": 18858, + "strains": 18859, + "saturdays": 18860, + "##olin": 18861, + "bernstein": 18862, + "##ype": 18863, + "holstein": 18864, + "ponytail": 18865, + "##watch": 18866, + "belize": 18867, + "conversely": 18868, + "heroine": 18869, + "perpetual": 18870, + "##ylus": 18871, + "charcoal": 18872, + "piedmont": 18873, + "glee": 18874, + "negotiating": 18875, + "backdrop": 18876, + "prologue": 18877, + "##jah": 18878, + "##mmy": 18879, + "pasadena": 18880, + "climbs": 18881, + "ramos": 18882, + "sunni": 18883, + "##holm": 18884, + "##tner": 18885, + "##tri": 18886, + "anand": 18887, + "deficiency": 18888, + "hertfordshire": 18889, + "stout": 18890, + "##avi": 18891, + "aperture": 18892, + "orioles": 18893, + "##irs": 18894, + "doncaster": 18895, + "intrigued": 18896, + "bombed": 18897, + "coating": 18898, + "otis": 18899, + "##mat": 18900, + "cocktail": 18901, + "##jit": 18902, + "##eto": 18903, + "amir": 18904, + "arousal": 18905, + "sar": 18906, + "##proof": 18907, + "##act": 18908, + "##ories": 18909, + "dixie": 18910, + "pots": 18911, + "##bow": 18912, + "whereabouts": 18913, + "159": 18914, + "##fted": 18915, + "drains": 18916, + "bullying": 18917, + "cottages": 18918, + "scripture": 18919, + "coherent": 18920, + "fore": 18921, + "poe": 18922, + "appetite": 18923, + "##uration": 18924, + "sampled": 18925, + "##ators": 18926, + "##dp": 18927, + "derrick": 18928, + "rotor": 18929, + "jays": 18930, + "peacock": 18931, + "installment": 18932, + "##rro": 18933, + "advisors": 18934, + "##coming": 18935, + "rodeo": 18936, + "scotch": 18937, + "##mot": 18938, + "##db": 18939, + "##fen": 18940, + "##vant": 18941, + "ensued": 18942, + "rodrigo": 18943, + "dictatorship": 18944, + "martyrs": 18945, + "twenties": 18946, + "##н": 18947, + "towed": 18948, + "incidence": 18949, + "marta": 18950, + "rainforest": 18951, + "sai": 18952, + "scaled": 18953, + "##cles": 18954, + "oceanic": 18955, + "qualifiers": 18956, + "symphonic": 18957, + "mcbride": 18958, + "dislike": 18959, + "generalized": 18960, + "aubrey": 18961, + "colonization": 18962, + "##iation": 18963, + "##lion": 18964, + "##ssing": 18965, + "disliked": 18966, + "lublin": 18967, + "salesman": 18968, + "##ulates": 18969, + "spherical": 18970, + "whatsoever": 18971, + "sweating": 18972, + "avalon": 18973, + "contention": 18974, + "punt": 18975, + "severity": 18976, + "alderman": 18977, + "atari": 18978, + "##dina": 18979, + "##grant": 18980, + "##rop": 18981, + "scarf": 18982, + "seville": 18983, + "vertices": 18984, + "annexation": 18985, + "fairfield": 18986, + "fascination": 18987, + "inspiring": 18988, + "launches": 18989, + "palatinate": 18990, + "regretted": 18991, + "##rca": 18992, + "feral": 18993, + "##iom": 18994, + "elk": 18995, + "nap": 18996, + "olsen": 18997, + "reddy": 18998, + "yong": 18999, + "##leader": 19000, + "##iae": 19001, + "garment": 19002, + "transports": 19003, + "feng": 19004, + "gracie": 19005, + "outrage": 19006, + "viceroy": 19007, + "insides": 19008, + "##esis": 19009, + "breakup": 19010, + "grady": 19011, + "organizer": 19012, + "softer": 19013, + "grimaced": 19014, + "222": 19015, + "murals": 19016, + "galicia": 19017, + "arranging": 19018, + "vectors": 19019, + "##rsten": 19020, + "bas": 19021, + "##sb": 19022, + "##cens": 19023, + "sloan": 19024, + "##eka": 19025, + "bitten": 19026, + "ara": 19027, + "fender": 19028, + "nausea": 19029, + "bumped": 19030, + "kris": 19031, + "banquet": 19032, + "comrades": 19033, + "detector": 19034, + "persisted": 19035, + "##llan": 19036, + "adjustment": 19037, + "endowed": 19038, + "cinemas": 19039, + "##shot": 19040, + "sellers": 19041, + "##uman": 19042, + "peek": 19043, + "epa": 19044, + "kindly": 19045, + "neglect": 19046, + "simpsons": 19047, + "talon": 19048, + "mausoleum": 19049, + "runaway": 19050, + "hangul": 19051, + "lookout": 19052, + "##cic": 19053, + "rewards": 19054, + "coughed": 19055, + "acquainted": 19056, + "chloride": 19057, + "##ald": 19058, + "quicker": 19059, + "accordion": 19060, + "neolithic": 19061, + "##qa": 19062, + "artemis": 19063, + "coefficient": 19064, + "lenny": 19065, + "pandora": 19066, + "tx": 19067, + "##xed": 19068, + "ecstasy": 19069, + "litter": 19070, + "segunda": 19071, + "chairperson": 19072, + "gemma": 19073, + "hiss": 19074, + "rumor": 19075, + "vow": 19076, + "nasal": 19077, + "antioch": 19078, + "compensate": 19079, + "patiently": 19080, + "transformers": 19081, + "##eded": 19082, + "judo": 19083, + "morrow": 19084, + "penis": 19085, + "posthumous": 19086, + "philips": 19087, + "bandits": 19088, + "husbands": 19089, + "denote": 19090, + "flaming": 19091, + "##any": 19092, + "##phones": 19093, + "langley": 19094, + "yorker": 19095, + "1760": 19096, + "walters": 19097, + "##uo": 19098, + "##kle": 19099, + "gubernatorial": 19100, + "fatty": 19101, + "samsung": 19102, + "leroy": 19103, + "outlaw": 19104, + "##nine": 19105, + "unpublished": 19106, + "poole": 19107, + "jakob": 19108, + "##ᵢ": 19109, + "##ₙ": 19110, + "crete": 19111, + "distorted": 19112, + "superiority": 19113, + "##dhi": 19114, + "intercept": 19115, + "crust": 19116, + "mig": 19117, + "claus": 19118, + "crashes": 19119, + "positioning": 19120, + "188": 19121, + "stallion": 19122, + "301": 19123, + "frontal": 19124, + "armistice": 19125, + "##estinal": 19126, + "elton": 19127, + "aj": 19128, + "encompassing": 19129, + "camel": 19130, + "commemorated": 19131, + "malaria": 19132, + "woodward": 19133, + "calf": 19134, + "cigar": 19135, + "penetrate": 19136, + "##oso": 19137, + "willard": 19138, + "##rno": 19139, + "##uche": 19140, + "illustrate": 19141, + "amusing": 19142, + "convergence": 19143, + "noteworthy": 19144, + "##lma": 19145, + "##rva": 19146, + "journeys": 19147, + "realise": 19148, + "manfred": 19149, + "##sable": 19150, + "410": 19151, + "##vocation": 19152, + "hearings": 19153, + "fiance": 19154, + "##posed": 19155, + "educators": 19156, + "provoked": 19157, + "adjusting": 19158, + "##cturing": 19159, + "modular": 19160, + "stockton": 19161, + "paterson": 19162, + "vlad": 19163, + "rejects": 19164, + "electors": 19165, + "selena": 19166, + "maureen": 19167, + "##tres": 19168, + "uber": 19169, + "##rce": 19170, + "swirled": 19171, + "##num": 19172, + "proportions": 19173, + "nanny": 19174, + "pawn": 19175, + "naturalist": 19176, + "parma": 19177, + "apostles": 19178, + "awoke": 19179, + "ethel": 19180, + "wen": 19181, + "##bey": 19182, + "monsoon": 19183, + "overview": 19184, + "##inating": 19185, + "mccain": 19186, + "rendition": 19187, + "risky": 19188, + "adorned": 19189, + "##ih": 19190, + "equestrian": 19191, + "germain": 19192, + "nj": 19193, + "conspicuous": 19194, + "confirming": 19195, + "##yoshi": 19196, + "shivering": 19197, + "##imeter": 19198, + "milestone": 19199, + "rumours": 19200, + "flinched": 19201, + "bounds": 19202, + "smacked": 19203, + "token": 19204, + "##bei": 19205, + "lectured": 19206, + "automobiles": 19207, + "##shore": 19208, + "impacted": 19209, + "##iable": 19210, + "nouns": 19211, + "nero": 19212, + "##leaf": 19213, + "ismail": 19214, + "prostitute": 19215, + "trams": 19216, + "##lace": 19217, + "bridget": 19218, + "sud": 19219, + "stimulus": 19220, + "impressions": 19221, + "reins": 19222, + "revolves": 19223, + "##oud": 19224, + "##gned": 19225, + "giro": 19226, + "honeymoon": 19227, + "##swell": 19228, + "criterion": 19229, + "##sms": 19230, + "##uil": 19231, + "libyan": 19232, + "prefers": 19233, + "##osition": 19234, + "211": 19235, + "preview": 19236, + "sucks": 19237, + "accusation": 19238, + "bursts": 19239, + "metaphor": 19240, + "diffusion": 19241, + "tolerate": 19242, + "faye": 19243, + "betting": 19244, + "cinematographer": 19245, + "liturgical": 19246, + "specials": 19247, + "bitterly": 19248, + "humboldt": 19249, + "##ckle": 19250, + "flux": 19251, + "rattled": 19252, + "##itzer": 19253, + "archaeologists": 19254, + "odor": 19255, + "authorised": 19256, + "marshes": 19257, + "discretion": 19258, + "##ов": 19259, + "alarmed": 19260, + "archaic": 19261, + "inverse": 19262, + "##leton": 19263, + "explorers": 19264, + "##pine": 19265, + "drummond": 19266, + "tsunami": 19267, + "woodlands": 19268, + "##minate": 19269, + "##tland": 19270, + "booklet": 19271, + "insanity": 19272, + "owning": 19273, + "insert": 19274, + "crafted": 19275, + "calculus": 19276, + "##tore": 19277, + "receivers": 19278, + "##bt": 19279, + "stung": 19280, + "##eca": 19281, + "##nched": 19282, + "prevailing": 19283, + "travellers": 19284, + "eyeing": 19285, + "lila": 19286, + "graphs": 19287, + "##borne": 19288, + "178": 19289, + "julien": 19290, + "##won": 19291, + "morale": 19292, + "adaptive": 19293, + "therapist": 19294, + "erica": 19295, + "cw": 19296, + "libertarian": 19297, + "bowman": 19298, + "pitches": 19299, + "vita": 19300, + "##ional": 19301, + "crook": 19302, + "##ads": 19303, + "##entation": 19304, + "caledonia": 19305, + "mutiny": 19306, + "##sible": 19307, + "1840s": 19308, + "automation": 19309, + "##ß": 19310, + "flock": 19311, + "##pia": 19312, + "ironic": 19313, + "pathology": 19314, + "##imus": 19315, + "remarried": 19316, + "##22": 19317, + "joker": 19318, + "withstand": 19319, + "energies": 19320, + "##att": 19321, + "shropshire": 19322, + "hostages": 19323, + "madeleine": 19324, + "tentatively": 19325, + "conflicting": 19326, + "mateo": 19327, + "recipes": 19328, + "euros": 19329, + "ol": 19330, + "mercenaries": 19331, + "nico": 19332, + "##ndon": 19333, + "albuquerque": 19334, + "augmented": 19335, + "mythical": 19336, + "bel": 19337, + "freud": 19338, + "##child": 19339, + "cough": 19340, + "##lica": 19341, + "365": 19342, + "freddy": 19343, + "lillian": 19344, + "genetically": 19345, + "nuremberg": 19346, + "calder": 19347, + "209": 19348, + "bonn": 19349, + "outdoors": 19350, + "paste": 19351, + "suns": 19352, + "urgency": 19353, + "vin": 19354, + "restraint": 19355, + "tyson": 19356, + "##cera": 19357, + "##selle": 19358, + "barrage": 19359, + "bethlehem": 19360, + "kahn": 19361, + "##par": 19362, + "mounts": 19363, + "nippon": 19364, + "barony": 19365, + "happier": 19366, + "ryu": 19367, + "makeshift": 19368, + "sheldon": 19369, + "blushed": 19370, + "castillo": 19371, + "barking": 19372, + "listener": 19373, + "taped": 19374, + "bethel": 19375, + "fluent": 19376, + "headlines": 19377, + "pornography": 19378, + "rum": 19379, + "disclosure": 19380, + "sighing": 19381, + "mace": 19382, + "doubling": 19383, + "gunther": 19384, + "manly": 19385, + "##plex": 19386, + "rt": 19387, + "interventions": 19388, + "physiological": 19389, + "forwards": 19390, + "emerges": 19391, + "##tooth": 19392, + "##gny": 19393, + "compliment": 19394, + "rib": 19395, + "recession": 19396, + "visibly": 19397, + "barge": 19398, + "faults": 19399, + "connector": 19400, + "exquisite": 19401, + "prefect": 19402, + "##rlin": 19403, + "patio": 19404, + "##cured": 19405, + "elevators": 19406, + "brandt": 19407, + "italics": 19408, + "pena": 19409, + "173": 19410, + "wasp": 19411, + "satin": 19412, + "ea": 19413, + "botswana": 19414, + "graceful": 19415, + "respectable": 19416, + "##jima": 19417, + "##rter": 19418, + "##oic": 19419, + "franciscan": 19420, + "generates": 19421, + "##dl": 19422, + "alfredo": 19423, + "disgusting": 19424, + "##olate": 19425, + "##iously": 19426, + "sherwood": 19427, + "warns": 19428, + "cod": 19429, + "promo": 19430, + "cheryl": 19431, + "sino": 19432, + "##ة": 19433, + "##escu": 19434, + "twitch": 19435, + "##zhi": 19436, + "brownish": 19437, + "thom": 19438, + "ortiz": 19439, + "##dron": 19440, + "densely": 19441, + "##beat": 19442, + "carmel": 19443, + "reinforce": 19444, + "##bana": 19445, + "187": 19446, + "anastasia": 19447, + "downhill": 19448, + "vertex": 19449, + "contaminated": 19450, + "remembrance": 19451, + "harmonic": 19452, + "homework": 19453, + "##sol": 19454, + "fiancee": 19455, + "gears": 19456, + "olds": 19457, + "angelica": 19458, + "loft": 19459, + "ramsay": 19460, + "quiz": 19461, + "colliery": 19462, + "sevens": 19463, + "##cape": 19464, + "autism": 19465, + "##hil": 19466, + "walkway": 19467, + "##boats": 19468, + "ruben": 19469, + "abnormal": 19470, + "ounce": 19471, + "khmer": 19472, + "##bbe": 19473, + "zachary": 19474, + "bedside": 19475, + "morphology": 19476, + "punching": 19477, + "##olar": 19478, + "sparrow": 19479, + "convinces": 19480, + "##35": 19481, + "hewitt": 19482, + "queer": 19483, + "remastered": 19484, + "rods": 19485, + "mabel": 19486, + "solemn": 19487, + "notified": 19488, + "lyricist": 19489, + "symmetric": 19490, + "##xide": 19491, + "174": 19492, + "encore": 19493, + "passports": 19494, + "wildcats": 19495, + "##uni": 19496, + "baja": 19497, + "##pac": 19498, + "mildly": 19499, + "##ease": 19500, + "bleed": 19501, + "commodity": 19502, + "mounds": 19503, + "glossy": 19504, + "orchestras": 19505, + "##omo": 19506, + "damian": 19507, + "prelude": 19508, + "ambitions": 19509, + "##vet": 19510, + "awhile": 19511, + "remotely": 19512, + "##aud": 19513, + "asserts": 19514, + "imply": 19515, + "##iques": 19516, + "distinctly": 19517, + "modelling": 19518, + "remedy": 19519, + "##dded": 19520, + "windshield": 19521, + "dani": 19522, + "xiao": 19523, + "##endra": 19524, + "audible": 19525, + "powerplant": 19526, + "1300": 19527, + "invalid": 19528, + "elemental": 19529, + "acquisitions": 19530, + "##hala": 19531, + "immaculate": 19532, + "libby": 19533, + "plata": 19534, + "smuggling": 19535, + "ventilation": 19536, + "denoted": 19537, + "minh": 19538, + "##morphism": 19539, + "430": 19540, + "differed": 19541, + "dion": 19542, + "kelley": 19543, + "lore": 19544, + "mocking": 19545, + "sabbath": 19546, + "spikes": 19547, + "hygiene": 19548, + "drown": 19549, + "runoff": 19550, + "stylized": 19551, + "tally": 19552, + "liberated": 19553, + "aux": 19554, + "interpreter": 19555, + "righteous": 19556, + "aba": 19557, + "siren": 19558, + "reaper": 19559, + "pearce": 19560, + "millie": 19561, + "##cier": 19562, + "##yra": 19563, + "gaius": 19564, + "##iso": 19565, + "captures": 19566, + "##ttering": 19567, + "dorm": 19568, + "claudio": 19569, + "##sic": 19570, + "benches": 19571, + "knighted": 19572, + "blackness": 19573, + "##ored": 19574, + "discount": 19575, + "fumble": 19576, + "oxidation": 19577, + "routed": 19578, + "##ς": 19579, + "novak": 19580, + "perpendicular": 19581, + "spoiled": 19582, + "fracture": 19583, + "splits": 19584, + "##urt": 19585, + "pads": 19586, + "topology": 19587, + "##cats": 19588, + "axes": 19589, + "fortunate": 19590, + "offenders": 19591, + "protestants": 19592, + "esteem": 19593, + "221": 19594, + "broadband": 19595, + "convened": 19596, + "frankly": 19597, + "hound": 19598, + "prototypes": 19599, + "isil": 19600, + "facilitated": 19601, + "keel": 19602, + "##sher": 19603, + "sahara": 19604, + "awaited": 19605, + "bubba": 19606, + "orb": 19607, + "prosecutors": 19608, + "186": 19609, + "hem": 19610, + "520": 19611, + "##xing": 19612, + "relaxing": 19613, + "remnant": 19614, + "romney": 19615, + "sorted": 19616, + "slalom": 19617, + "stefano": 19618, + "ulrich": 19619, + "##active": 19620, + "exemption": 19621, + "folder": 19622, + "pauses": 19623, + "foliage": 19624, + "hitchcock": 19625, + "epithet": 19626, + "204": 19627, + "criticisms": 19628, + "##aca": 19629, + "ballistic": 19630, + "brody": 19631, + "hinduism": 19632, + "chaotic": 19633, + "youths": 19634, + "equals": 19635, + "##pala": 19636, + "pts": 19637, + "thicker": 19638, + "analogous": 19639, + "capitalist": 19640, + "improvised": 19641, + "overseeing": 19642, + "sinatra": 19643, + "ascended": 19644, + "beverage": 19645, + "##tl": 19646, + "straightforward": 19647, + "##kon": 19648, + "curran": 19649, + "##west": 19650, + "bois": 19651, + "325": 19652, + "induce": 19653, + "surveying": 19654, + "emperors": 19655, + "sax": 19656, + "unpopular": 19657, + "##kk": 19658, + "cartoonist": 19659, + "fused": 19660, + "##mble": 19661, + "unto": 19662, + "##yuki": 19663, + "localities": 19664, + "##cko": 19665, + "##ln": 19666, + "darlington": 19667, + "slain": 19668, + "academie": 19669, + "lobbying": 19670, + "sediment": 19671, + "puzzles": 19672, + "##grass": 19673, + "defiance": 19674, + "dickens": 19675, + "manifest": 19676, + "tongues": 19677, + "alumnus": 19678, + "arbor": 19679, + "coincide": 19680, + "184": 19681, + "appalachian": 19682, + "mustafa": 19683, + "examiner": 19684, + "cabaret": 19685, + "traumatic": 19686, + "yves": 19687, + "bracelet": 19688, + "draining": 19689, + "heroin": 19690, + "magnum": 19691, + "baths": 19692, + "odessa": 19693, + "consonants": 19694, + "mitsubishi": 19695, + "##gua": 19696, + "kellan": 19697, + "vaudeville": 19698, + "##fr": 19699, + "joked": 19700, + "null": 19701, + "straps": 19702, + "probation": 19703, + "##ław": 19704, + "ceded": 19705, + "interfaces": 19706, + "##pas": 19707, + "##zawa": 19708, + "blinding": 19709, + "viet": 19710, + "224": 19711, + "rothschild": 19712, + "museo": 19713, + "640": 19714, + "huddersfield": 19715, + "##vr": 19716, + "tactic": 19717, + "##storm": 19718, + "brackets": 19719, + "dazed": 19720, + "incorrectly": 19721, + "##vu": 19722, + "reg": 19723, + "glazed": 19724, + "fearful": 19725, + "manifold": 19726, + "benefited": 19727, + "irony": 19728, + "##sun": 19729, + "stumbling": 19730, + "##rte": 19731, + "willingness": 19732, + "balkans": 19733, + "mei": 19734, + "wraps": 19735, + "##aba": 19736, + "injected": 19737, + "##lea": 19738, + "gu": 19739, + "syed": 19740, + "harmless": 19741, + "##hammer": 19742, + "bray": 19743, + "takeoff": 19744, + "poppy": 19745, + "timor": 19746, + "cardboard": 19747, + "astronaut": 19748, + "purdue": 19749, + "weeping": 19750, + "southbound": 19751, + "cursing": 19752, + "stalls": 19753, + "diagonal": 19754, + "##neer": 19755, + "lamar": 19756, + "bryce": 19757, + "comte": 19758, + "weekdays": 19759, + "harrington": 19760, + "##uba": 19761, + "negatively": 19762, + "##see": 19763, + "lays": 19764, + "grouping": 19765, + "##cken": 19766, + "##henko": 19767, + "affirmed": 19768, + "halle": 19769, + "modernist": 19770, + "##lai": 19771, + "hodges": 19772, + "smelling": 19773, + "aristocratic": 19774, + "baptized": 19775, + "dismiss": 19776, + "justification": 19777, + "oilers": 19778, + "##now": 19779, + "coupling": 19780, + "qin": 19781, + "snack": 19782, + "healer": 19783, + "##qing": 19784, + "gardener": 19785, + "layla": 19786, + "battled": 19787, + "formulated": 19788, + "stephenson": 19789, + "gravitational": 19790, + "##gill": 19791, + "##jun": 19792, + "1768": 19793, + "granny": 19794, + "coordinating": 19795, + "suites": 19796, + "##cd": 19797, + "##ioned": 19798, + "monarchs": 19799, + "##cote": 19800, + "##hips": 19801, + "sep": 19802, + "blended": 19803, + "apr": 19804, + "barrister": 19805, + "deposition": 19806, + "fia": 19807, + "mina": 19808, + "policemen": 19809, + "paranoid": 19810, + "##pressed": 19811, + "churchyard": 19812, + "covert": 19813, + "crumpled": 19814, + "creep": 19815, + "abandoning": 19816, + "tr": 19817, + "transmit": 19818, + "conceal": 19819, + "barr": 19820, + "understands": 19821, + "readiness": 19822, + "spire": 19823, + "##cology": 19824, + "##enia": 19825, + "##erry": 19826, + "610": 19827, + "startling": 19828, + "unlock": 19829, + "vida": 19830, + "bowled": 19831, + "slots": 19832, + "##nat": 19833, + "##islav": 19834, + "spaced": 19835, + "trusting": 19836, + "admire": 19837, + "rig": 19838, + "##ink": 19839, + "slack": 19840, + "##70": 19841, + "mv": 19842, + "207": 19843, + "casualty": 19844, + "##wei": 19845, + "classmates": 19846, + "##odes": 19847, + "##rar": 19848, + "##rked": 19849, + "amherst": 19850, + "furnished": 19851, + "evolve": 19852, + "foundry": 19853, + "menace": 19854, + "mead": 19855, + "##lein": 19856, + "flu": 19857, + "wesleyan": 19858, + "##kled": 19859, + "monterey": 19860, + "webber": 19861, + "##vos": 19862, + "wil": 19863, + "##mith": 19864, + "##на": 19865, + "bartholomew": 19866, + "justices": 19867, + "restrained": 19868, + "##cke": 19869, + "amenities": 19870, + "191": 19871, + "mediated": 19872, + "sewage": 19873, + "trenches": 19874, + "ml": 19875, + "mainz": 19876, + "##thus": 19877, + "1800s": 19878, + "##cula": 19879, + "##inski": 19880, + "caine": 19881, + "bonding": 19882, + "213": 19883, + "converts": 19884, + "spheres": 19885, + "superseded": 19886, + "marianne": 19887, + "crypt": 19888, + "sweaty": 19889, + "ensign": 19890, + "historia": 19891, + "##br": 19892, + "spruce": 19893, + "##post": 19894, + "##ask": 19895, + "forks": 19896, + "thoughtfully": 19897, + "yukon": 19898, + "pamphlet": 19899, + "ames": 19900, + "##uter": 19901, + "karma": 19902, + "##yya": 19903, + "bryn": 19904, + "negotiation": 19905, + "sighs": 19906, + "incapable": 19907, + "##mbre": 19908, + "##ntial": 19909, + "actresses": 19910, + "taft": 19911, + "##mill": 19912, + "luce": 19913, + "prevailed": 19914, + "##amine": 19915, + "1773": 19916, + "motionless": 19917, + "envoy": 19918, + "testify": 19919, + "investing": 19920, + "sculpted": 19921, + "instructors": 19922, + "provence": 19923, + "kali": 19924, + "cullen": 19925, + "horseback": 19926, + "##while": 19927, + "goodwin": 19928, + "##jos": 19929, + "gaa": 19930, + "norte": 19931, + "##ldon": 19932, + "modify": 19933, + "wavelength": 19934, + "abd": 19935, + "214": 19936, + "skinned": 19937, + "sprinter": 19938, + "forecast": 19939, + "scheduling": 19940, + "marries": 19941, + "squared": 19942, + "tentative": 19943, + "##chman": 19944, + "boer": 19945, + "##isch": 19946, + "bolts": 19947, + "swap": 19948, + "fisherman": 19949, + "assyrian": 19950, + "impatiently": 19951, + "guthrie": 19952, + "martins": 19953, + "murdoch": 19954, + "194": 19955, + "tanya": 19956, + "nicely": 19957, + "dolly": 19958, + "lacy": 19959, + "med": 19960, + "##45": 19961, + "syn": 19962, + "decks": 19963, + "fashionable": 19964, + "millionaire": 19965, + "##ust": 19966, + "surfing": 19967, + "##ml": 19968, + "##ision": 19969, + "heaved": 19970, + "tammy": 19971, + "consulate": 19972, + "attendees": 19973, + "routinely": 19974, + "197": 19975, + "fuse": 19976, + "saxophonist": 19977, + "backseat": 19978, + "malaya": 19979, + "##lord": 19980, + "scowl": 19981, + "tau": 19982, + "##ishly": 19983, + "193": 19984, + "sighted": 19985, + "steaming": 19986, + "##rks": 19987, + "303": 19988, + "911": 19989, + "##holes": 19990, + "##hong": 19991, + "ching": 19992, + "##wife": 19993, + "bless": 19994, + "conserved": 19995, + "jurassic": 19996, + "stacey": 19997, + "unix": 19998, + "zion": 19999, + "chunk": 20000, + "rigorous": 20001, + "blaine": 20002, + "198": 20003, + "peabody": 20004, + "slayer": 20005, + "dismay": 20006, + "brewers": 20007, + "nz": 20008, + "##jer": 20009, + "det": 20010, + "##glia": 20011, + "glover": 20012, + "postwar": 20013, + "int": 20014, + "penetration": 20015, + "sylvester": 20016, + "imitation": 20017, + "vertically": 20018, + "airlift": 20019, + "heiress": 20020, + "knoxville": 20021, + "viva": 20022, + "##uin": 20023, + "390": 20024, + "macon": 20025, + "##rim": 20026, + "##fighter": 20027, + "##gonal": 20028, + "janice": 20029, + "##orescence": 20030, + "##wari": 20031, + "marius": 20032, + "belongings": 20033, + "leicestershire": 20034, + "196": 20035, + "blanco": 20036, + "inverted": 20037, + "preseason": 20038, + "sanity": 20039, + "sobbing": 20040, + "##due": 20041, + "##elt": 20042, + "##dled": 20043, + "collingwood": 20044, + "regeneration": 20045, + "flickering": 20046, + "shortest": 20047, + "##mount": 20048, + "##osi": 20049, + "feminism": 20050, + "##lat": 20051, + "sherlock": 20052, + "cabinets": 20053, + "fumbled": 20054, + "northbound": 20055, + "precedent": 20056, + "snaps": 20057, + "##mme": 20058, + "researching": 20059, + "##akes": 20060, + "guillaume": 20061, + "insights": 20062, + "manipulated": 20063, + "vapor": 20064, + "neighbour": 20065, + "sap": 20066, + "gangster": 20067, + "frey": 20068, + "f1": 20069, + "stalking": 20070, + "scarcely": 20071, + "callie": 20072, + "barnett": 20073, + "tendencies": 20074, + "audi": 20075, + "doomed": 20076, + "assessing": 20077, + "slung": 20078, + "panchayat": 20079, + "ambiguous": 20080, + "bartlett": 20081, + "##etto": 20082, + "distributing": 20083, + "violating": 20084, + "wolverhampton": 20085, + "##hetic": 20086, + "swami": 20087, + "histoire": 20088, + "##urus": 20089, + "liable": 20090, + "pounder": 20091, + "groin": 20092, + "hussain": 20093, + "larsen": 20094, + "popping": 20095, + "surprises": 20096, + "##atter": 20097, + "vie": 20098, + "curt": 20099, + "##station": 20100, + "mute": 20101, + "relocate": 20102, + "musicals": 20103, + "authorization": 20104, + "richter": 20105, + "##sef": 20106, + "immortality": 20107, + "tna": 20108, + "bombings": 20109, + "##press": 20110, + "deteriorated": 20111, + "yiddish": 20112, + "##acious": 20113, + "robbed": 20114, + "colchester": 20115, + "cs": 20116, + "pmid": 20117, + "ao": 20118, + "verified": 20119, + "balancing": 20120, + "apostle": 20121, + "swayed": 20122, + "recognizable": 20123, + "oxfordshire": 20124, + "retention": 20125, + "nottinghamshire": 20126, + "contender": 20127, + "judd": 20128, + "invitational": 20129, + "shrimp": 20130, + "uhf": 20131, + "##icient": 20132, + "cleaner": 20133, + "longitudinal": 20134, + "tanker": 20135, + "##mur": 20136, + "acronym": 20137, + "broker": 20138, + "koppen": 20139, + "sundance": 20140, + "suppliers": 20141, + "##gil": 20142, + "4000": 20143, + "clipped": 20144, + "fuels": 20145, + "petite": 20146, + "##anne": 20147, + "landslide": 20148, + "helene": 20149, + "diversion": 20150, + "populous": 20151, + "landowners": 20152, + "auspices": 20153, + "melville": 20154, + "quantitative": 20155, + "##xes": 20156, + "ferries": 20157, + "nicky": 20158, + "##llus": 20159, + "doo": 20160, + "haunting": 20161, + "roche": 20162, + "carver": 20163, + "downed": 20164, + "unavailable": 20165, + "##pathy": 20166, + "approximation": 20167, + "hiroshima": 20168, + "##hue": 20169, + "garfield": 20170, + "valle": 20171, + "comparatively": 20172, + "keyboardist": 20173, + "traveler": 20174, + "##eit": 20175, + "congestion": 20176, + "calculating": 20177, + "subsidiaries": 20178, + "##bate": 20179, + "serb": 20180, + "modernization": 20181, + "fairies": 20182, + "deepened": 20183, + "ville": 20184, + "averages": 20185, + "##lore": 20186, + "inflammatory": 20187, + "tonga": 20188, + "##itch": 20189, + "co₂": 20190, + "squads": 20191, + "##hea": 20192, + "gigantic": 20193, + "serum": 20194, + "enjoyment": 20195, + "retailer": 20196, + "verona": 20197, + "35th": 20198, + "cis": 20199, + "##phobic": 20200, + "magna": 20201, + "technicians": 20202, + "##vati": 20203, + "arithmetic": 20204, + "##sport": 20205, + "levin": 20206, + "##dation": 20207, + "amtrak": 20208, + "chow": 20209, + "sienna": 20210, + "##eyer": 20211, + "backstage": 20212, + "entrepreneurship": 20213, + "##otic": 20214, + "learnt": 20215, + "tao": 20216, + "##udy": 20217, + "worcestershire": 20218, + "formulation": 20219, + "baggage": 20220, + "hesitant": 20221, + "bali": 20222, + "sabotage": 20223, + "##kari": 20224, + "barren": 20225, + "enhancing": 20226, + "murmur": 20227, + "pl": 20228, + "freshly": 20229, + "putnam": 20230, + "syntax": 20231, + "aces": 20232, + "medicines": 20233, + "resentment": 20234, + "bandwidth": 20235, + "##sier": 20236, + "grins": 20237, + "chili": 20238, + "guido": 20239, + "##sei": 20240, + "framing": 20241, + "implying": 20242, + "gareth": 20243, + "lissa": 20244, + "genevieve": 20245, + "pertaining": 20246, + "admissions": 20247, + "geo": 20248, + "thorpe": 20249, + "proliferation": 20250, + "sato": 20251, + "bela": 20252, + "analyzing": 20253, + "parting": 20254, + "##gor": 20255, + "awakened": 20256, + "##isman": 20257, + "huddled": 20258, + "secrecy": 20259, + "##kling": 20260, + "hush": 20261, + "gentry": 20262, + "540": 20263, + "dungeons": 20264, + "##ego": 20265, + "coasts": 20266, + "##utz": 20267, + "sacrificed": 20268, + "##chule": 20269, + "landowner": 20270, + "mutually": 20271, + "prevalence": 20272, + "programmer": 20273, + "adolescent": 20274, + "disrupted": 20275, + "seaside": 20276, + "gee": 20277, + "trusts": 20278, + "vamp": 20279, + "georgie": 20280, + "##nesian": 20281, + "##iol": 20282, + "schedules": 20283, + "sindh": 20284, + "##market": 20285, + "etched": 20286, + "hm": 20287, + "sparse": 20288, + "bey": 20289, + "beaux": 20290, + "scratching": 20291, + "gliding": 20292, + "unidentified": 20293, + "216": 20294, + "collaborating": 20295, + "gems": 20296, + "jesuits": 20297, + "oro": 20298, + "accumulation": 20299, + "shaping": 20300, + "mbe": 20301, + "anal": 20302, + "##xin": 20303, + "231": 20304, + "enthusiasts": 20305, + "newscast": 20306, + "##egan": 20307, + "janata": 20308, + "dewey": 20309, + "parkinson": 20310, + "179": 20311, + "ankara": 20312, + "biennial": 20313, + "towering": 20314, + "dd": 20315, + "inconsistent": 20316, + "950": 20317, + "##chet": 20318, + "thriving": 20319, + "terminate": 20320, + "cabins": 20321, + "furiously": 20322, + "eats": 20323, + "advocating": 20324, + "donkey": 20325, + "marley": 20326, + "muster": 20327, + "phyllis": 20328, + "leiden": 20329, + "##user": 20330, + "grassland": 20331, + "glittering": 20332, + "iucn": 20333, + "loneliness": 20334, + "217": 20335, + "memorandum": 20336, + "armenians": 20337, + "##ddle": 20338, + "popularized": 20339, + "rhodesia": 20340, + "60s": 20341, + "lame": 20342, + "##illon": 20343, + "sans": 20344, + "bikini": 20345, + "header": 20346, + "orbits": 20347, + "##xx": 20348, + "##finger": 20349, + "##ulator": 20350, + "sharif": 20351, + "spines": 20352, + "biotechnology": 20353, + "strolled": 20354, + "naughty": 20355, + "yates": 20356, + "##wire": 20357, + "fremantle": 20358, + "milo": 20359, + "##mour": 20360, + "abducted": 20361, + "removes": 20362, + "##atin": 20363, + "humming": 20364, + "wonderland": 20365, + "##chrome": 20366, + "##ester": 20367, + "hume": 20368, + "pivotal": 20369, + "##rates": 20370, + "armand": 20371, + "grams": 20372, + "believers": 20373, + "elector": 20374, + "rte": 20375, + "apron": 20376, + "bis": 20377, + "scraped": 20378, + "##yria": 20379, + "endorsement": 20380, + "initials": 20381, + "##llation": 20382, + "eps": 20383, + "dotted": 20384, + "hints": 20385, + "buzzing": 20386, + "emigration": 20387, + "nearer": 20388, + "##tom": 20389, + "indicators": 20390, + "##ulu": 20391, + "coarse": 20392, + "neutron": 20393, + "protectorate": 20394, + "##uze": 20395, + "directional": 20396, + "exploits": 20397, + "pains": 20398, + "loire": 20399, + "1830s": 20400, + "proponents": 20401, + "guggenheim": 20402, + "rabbits": 20403, + "ritchie": 20404, + "305": 20405, + "hectare": 20406, + "inputs": 20407, + "hutton": 20408, + "##raz": 20409, + "verify": 20410, + "##ako": 20411, + "boilers": 20412, + "longitude": 20413, + "##lev": 20414, + "skeletal": 20415, + "yer": 20416, + "emilia": 20417, + "citrus": 20418, + "compromised": 20419, + "##gau": 20420, + "pokemon": 20421, + "prescription": 20422, + "paragraph": 20423, + "eduard": 20424, + "cadillac": 20425, + "attire": 20426, + "categorized": 20427, + "kenyan": 20428, + "weddings": 20429, + "charley": 20430, + "##bourg": 20431, + "entertain": 20432, + "monmouth": 20433, + "##lles": 20434, + "nutrients": 20435, + "davey": 20436, + "mesh": 20437, + "incentive": 20438, + "practised": 20439, + "ecosystems": 20440, + "kemp": 20441, + "subdued": 20442, + "overheard": 20443, + "##rya": 20444, + "bodily": 20445, + "maxim": 20446, + "##nius": 20447, + "apprenticeship": 20448, + "ursula": 20449, + "##fight": 20450, + "lodged": 20451, + "rug": 20452, + "silesian": 20453, + "unconstitutional": 20454, + "patel": 20455, + "inspected": 20456, + "coyote": 20457, + "unbeaten": 20458, + "##hak": 20459, + "34th": 20460, + "disruption": 20461, + "convict": 20462, + "parcel": 20463, + "##cl": 20464, + "##nham": 20465, + "collier": 20466, + "implicated": 20467, + "mallory": 20468, + "##iac": 20469, + "##lab": 20470, + "susannah": 20471, + "winkler": 20472, + "##rber": 20473, + "shia": 20474, + "phelps": 20475, + "sediments": 20476, + "graphical": 20477, + "robotic": 20478, + "##sner": 20479, + "adulthood": 20480, + "mart": 20481, + "smoked": 20482, + "##isto": 20483, + "kathryn": 20484, + "clarified": 20485, + "##aran": 20486, + "divides": 20487, + "convictions": 20488, + "oppression": 20489, + "pausing": 20490, + "burying": 20491, + "##mt": 20492, + "federico": 20493, + "mathias": 20494, + "eileen": 20495, + "##tana": 20496, + "kite": 20497, + "hunched": 20498, + "##acies": 20499, + "189": 20500, + "##atz": 20501, + "disadvantage": 20502, + "liza": 20503, + "kinetic": 20504, + "greedy": 20505, + "paradox": 20506, + "yokohama": 20507, + "dowager": 20508, + "trunks": 20509, + "ventured": 20510, + "##gement": 20511, + "gupta": 20512, + "vilnius": 20513, + "olaf": 20514, + "##thest": 20515, + "crimean": 20516, + "hopper": 20517, + "##ej": 20518, + "progressively": 20519, + "arturo": 20520, + "mouthed": 20521, + "arrondissement": 20522, + "##fusion": 20523, + "rubin": 20524, + "simulcast": 20525, + "oceania": 20526, + "##orum": 20527, + "##stra": 20528, + "##rred": 20529, + "busiest": 20530, + "intensely": 20531, + "navigator": 20532, + "cary": 20533, + "##vine": 20534, + "##hini": 20535, + "##bies": 20536, + "fife": 20537, + "rowe": 20538, + "rowland": 20539, + "posing": 20540, + "insurgents": 20541, + "shafts": 20542, + "lawsuits": 20543, + "activate": 20544, + "conor": 20545, + "inward": 20546, + "culturally": 20547, + "garlic": 20548, + "265": 20549, + "##eering": 20550, + "eclectic": 20551, + "##hui": 20552, + "##kee": 20553, + "##nl": 20554, + "furrowed": 20555, + "vargas": 20556, + "meteorological": 20557, + "rendezvous": 20558, + "##aus": 20559, + "culinary": 20560, + "commencement": 20561, + "##dition": 20562, + "quota": 20563, + "##notes": 20564, + "mommy": 20565, + "salaries": 20566, + "overlapping": 20567, + "mule": 20568, + "##iology": 20569, + "##mology": 20570, + "sums": 20571, + "wentworth": 20572, + "##isk": 20573, + "##zione": 20574, + "mainline": 20575, + "subgroup": 20576, + "##illy": 20577, + "hack": 20578, + "plaintiff": 20579, + "verdi": 20580, + "bulb": 20581, + "differentiation": 20582, + "engagements": 20583, + "multinational": 20584, + "supplemented": 20585, + "bertrand": 20586, + "caller": 20587, + "regis": 20588, + "##naire": 20589, + "##sler": 20590, + "##arts": 20591, + "##imated": 20592, + "blossom": 20593, + "propagation": 20594, + "kilometer": 20595, + "viaduct": 20596, + "vineyards": 20597, + "##uate": 20598, + "beckett": 20599, + "optimization": 20600, + "golfer": 20601, + "songwriters": 20602, + "seminal": 20603, + "semitic": 20604, + "thud": 20605, + "volatile": 20606, + "evolving": 20607, + "ridley": 20608, + "##wley": 20609, + "trivial": 20610, + "distributions": 20611, + "scandinavia": 20612, + "jiang": 20613, + "##ject": 20614, + "wrestled": 20615, + "insistence": 20616, + "##dio": 20617, + "emphasizes": 20618, + "napkin": 20619, + "##ods": 20620, + "adjunct": 20621, + "rhyme": 20622, + "##ricted": 20623, + "##eti": 20624, + "hopeless": 20625, + "surrounds": 20626, + "tremble": 20627, + "32nd": 20628, + "smoky": 20629, + "##ntly": 20630, + "oils": 20631, + "medicinal": 20632, + "padded": 20633, + "steer": 20634, + "wilkes": 20635, + "219": 20636, + "255": 20637, + "concessions": 20638, + "hue": 20639, + "uniquely": 20640, + "blinded": 20641, + "landon": 20642, + "yahoo": 20643, + "##lane": 20644, + "hendrix": 20645, + "commemorating": 20646, + "dex": 20647, + "specify": 20648, + "chicks": 20649, + "##ggio": 20650, + "intercity": 20651, + "1400": 20652, + "morley": 20653, + "##torm": 20654, + "highlighting": 20655, + "##oting": 20656, + "pang": 20657, + "oblique": 20658, + "stalled": 20659, + "##liner": 20660, + "flirting": 20661, + "newborn": 20662, + "1769": 20663, + "bishopric": 20664, + "shaved": 20665, + "232": 20666, + "currie": 20667, + "##ush": 20668, + "dharma": 20669, + "spartan": 20670, + "##ooped": 20671, + "favorites": 20672, + "smug": 20673, + "novella": 20674, + "sirens": 20675, + "abusive": 20676, + "creations": 20677, + "espana": 20678, + "##lage": 20679, + "paradigm": 20680, + "semiconductor": 20681, + "sheen": 20682, + "##rdo": 20683, + "##yen": 20684, + "##zak": 20685, + "nrl": 20686, + "renew": 20687, + "##pose": 20688, + "##tur": 20689, + "adjutant": 20690, + "marches": 20691, + "norma": 20692, + "##enity": 20693, + "ineffective": 20694, + "weimar": 20695, + "grunt": 20696, + "##gat": 20697, + "lordship": 20698, + "plotting": 20699, + "expenditure": 20700, + "infringement": 20701, + "lbs": 20702, + "refrain": 20703, + "av": 20704, + "mimi": 20705, + "mistakenly": 20706, + "postmaster": 20707, + "1771": 20708, + "##bara": 20709, + "ras": 20710, + "motorsports": 20711, + "tito": 20712, + "199": 20713, + "subjective": 20714, + "##zza": 20715, + "bully": 20716, + "stew": 20717, + "##kaya": 20718, + "prescott": 20719, + "1a": 20720, + "##raphic": 20721, + "##zam": 20722, + "bids": 20723, + "styling": 20724, + "paranormal": 20725, + "reeve": 20726, + "sneaking": 20727, + "exploding": 20728, + "katz": 20729, + "akbar": 20730, + "migrant": 20731, + "syllables": 20732, + "indefinitely": 20733, + "##ogical": 20734, + "destroys": 20735, + "replaces": 20736, + "applause": 20737, + "##phine": 20738, + "pest": 20739, + "##fide": 20740, + "218": 20741, + "articulated": 20742, + "bertie": 20743, + "##thing": 20744, + "##cars": 20745, + "##ptic": 20746, + "courtroom": 20747, + "crowley": 20748, + "aesthetics": 20749, + "cummings": 20750, + "tehsil": 20751, + "hormones": 20752, + "titanic": 20753, + "dangerously": 20754, + "##ibe": 20755, + "stadion": 20756, + "jaenelle": 20757, + "auguste": 20758, + "ciudad": 20759, + "##chu": 20760, + "mysore": 20761, + "partisans": 20762, + "##sio": 20763, + "lucan": 20764, + "philipp": 20765, + "##aly": 20766, + "debating": 20767, + "henley": 20768, + "interiors": 20769, + "##rano": 20770, + "##tious": 20771, + "homecoming": 20772, + "beyonce": 20773, + "usher": 20774, + "henrietta": 20775, + "prepares": 20776, + "weeds": 20777, + "##oman": 20778, + "ely": 20779, + "plucked": 20780, + "##pire": 20781, + "##dable": 20782, + "luxurious": 20783, + "##aq": 20784, + "artifact": 20785, + "password": 20786, + "pasture": 20787, + "juno": 20788, + "maddy": 20789, + "minsk": 20790, + "##dder": 20791, + "##ologies": 20792, + "##rone": 20793, + "assessments": 20794, + "martian": 20795, + "royalist": 20796, + "1765": 20797, + "examines": 20798, + "##mani": 20799, + "##rge": 20800, + "nino": 20801, + "223": 20802, + "parry": 20803, + "scooped": 20804, + "relativity": 20805, + "##eli": 20806, + "##uting": 20807, + "##cao": 20808, + "congregational": 20809, + "noisy": 20810, + "traverse": 20811, + "##agawa": 20812, + "strikeouts": 20813, + "nickelodeon": 20814, + "obituary": 20815, + "transylvania": 20816, + "binds": 20817, + "depictions": 20818, + "polk": 20819, + "trolley": 20820, + "##yed": 20821, + "##lard": 20822, + "breeders": 20823, + "##under": 20824, + "dryly": 20825, + "hokkaido": 20826, + "1762": 20827, + "strengths": 20828, + "stacks": 20829, + "bonaparte": 20830, + "connectivity": 20831, + "neared": 20832, + "prostitutes": 20833, + "stamped": 20834, + "anaheim": 20835, + "gutierrez": 20836, + "sinai": 20837, + "##zzling": 20838, + "bram": 20839, + "fresno": 20840, + "madhya": 20841, + "##86": 20842, + "proton": 20843, + "##lena": 20844, + "##llum": 20845, + "##phon": 20846, + "reelected": 20847, + "wanda": 20848, + "##anus": 20849, + "##lb": 20850, + "ample": 20851, + "distinguishing": 20852, + "##yler": 20853, + "grasping": 20854, + "sermons": 20855, + "tomato": 20856, + "bland": 20857, + "stimulation": 20858, + "avenues": 20859, + "##eux": 20860, + "spreads": 20861, + "scarlett": 20862, + "fern": 20863, + "pentagon": 20864, + "assert": 20865, + "baird": 20866, + "chesapeake": 20867, + "ir": 20868, + "calmed": 20869, + "distortion": 20870, + "fatalities": 20871, + "##olis": 20872, + "correctional": 20873, + "pricing": 20874, + "##astic": 20875, + "##gina": 20876, + "prom": 20877, + "dammit": 20878, + "ying": 20879, + "collaborate": 20880, + "##chia": 20881, + "welterweight": 20882, + "33rd": 20883, + "pointer": 20884, + "substitution": 20885, + "bonded": 20886, + "umpire": 20887, + "communicating": 20888, + "multitude": 20889, + "paddle": 20890, + "##obe": 20891, + "federally": 20892, + "intimacy": 20893, + "##insky": 20894, + "betray": 20895, + "ssr": 20896, + "##lett": 20897, + "##lean": 20898, + "##lves": 20899, + "##therapy": 20900, + "airbus": 20901, + "##tery": 20902, + "functioned": 20903, + "ud": 20904, + "bearer": 20905, + "biomedical": 20906, + "netflix": 20907, + "##hire": 20908, + "##nca": 20909, + "condom": 20910, + "brink": 20911, + "ik": 20912, + "##nical": 20913, + "macy": 20914, + "##bet": 20915, + "flap": 20916, + "gma": 20917, + "experimented": 20918, + "jelly": 20919, + "lavender": 20920, + "##icles": 20921, + "##ulia": 20922, + "munro": 20923, + "##mian": 20924, + "##tial": 20925, + "rye": 20926, + "##rle": 20927, + "60th": 20928, + "gigs": 20929, + "hottest": 20930, + "rotated": 20931, + "predictions": 20932, + "fuji": 20933, + "bu": 20934, + "##erence": 20935, + "##omi": 20936, + "barangay": 20937, + "##fulness": 20938, + "##sas": 20939, + "clocks": 20940, + "##rwood": 20941, + "##liness": 20942, + "cereal": 20943, + "roe": 20944, + "wight": 20945, + "decker": 20946, + "uttered": 20947, + "babu": 20948, + "onion": 20949, + "xml": 20950, + "forcibly": 20951, + "##df": 20952, + "petra": 20953, + "sarcasm": 20954, + "hartley": 20955, + "peeled": 20956, + "storytelling": 20957, + "##42": 20958, + "##xley": 20959, + "##ysis": 20960, + "##ffa": 20961, + "fibre": 20962, + "kiel": 20963, + "auditor": 20964, + "fig": 20965, + "harald": 20966, + "greenville": 20967, + "##berries": 20968, + "geographically": 20969, + "nell": 20970, + "quartz": 20971, + "##athic": 20972, + "cemeteries": 20973, + "##lr": 20974, + "crossings": 20975, + "nah": 20976, + "holloway": 20977, + "reptiles": 20978, + "chun": 20979, + "sichuan": 20980, + "snowy": 20981, + "660": 20982, + "corrections": 20983, + "##ivo": 20984, + "zheng": 20985, + "ambassadors": 20986, + "blacksmith": 20987, + "fielded": 20988, + "fluids": 20989, + "hardcover": 20990, + "turnover": 20991, + "medications": 20992, + "melvin": 20993, + "academies": 20994, + "##erton": 20995, + "ro": 20996, + "roach": 20997, + "absorbing": 20998, + "spaniards": 20999, + "colton": 21000, + "##founded": 21001, + "outsider": 21002, + "espionage": 21003, + "kelsey": 21004, + "245": 21005, + "edible": 21006, + "##ulf": 21007, + "dora": 21008, + "establishes": 21009, + "##sham": 21010, + "##tries": 21011, + "contracting": 21012, + "##tania": 21013, + "cinematic": 21014, + "costello": 21015, + "nesting": 21016, + "##uron": 21017, + "connolly": 21018, + "duff": 21019, + "##nology": 21020, + "mma": 21021, + "##mata": 21022, + "fergus": 21023, + "sexes": 21024, + "gi": 21025, + "optics": 21026, + "spectator": 21027, + "woodstock": 21028, + "banning": 21029, + "##hee": 21030, + "##fle": 21031, + "differentiate": 21032, + "outfielder": 21033, + "refinery": 21034, + "226": 21035, + "312": 21036, + "gerhard": 21037, + "horde": 21038, + "lair": 21039, + "drastically": 21040, + "##udi": 21041, + "landfall": 21042, + "##cheng": 21043, + "motorsport": 21044, + "odi": 21045, + "##achi": 21046, + "predominant": 21047, + "quay": 21048, + "skins": 21049, + "##ental": 21050, + "edna": 21051, + "harshly": 21052, + "complementary": 21053, + "murdering": 21054, + "##aves": 21055, + "wreckage": 21056, + "##90": 21057, + "ono": 21058, + "outstretched": 21059, + "lennox": 21060, + "munitions": 21061, + "galen": 21062, + "reconcile": 21063, + "470": 21064, + "scalp": 21065, + "bicycles": 21066, + "gillespie": 21067, + "questionable": 21068, + "rosenberg": 21069, + "guillermo": 21070, + "hostel": 21071, + "jarvis": 21072, + "kabul": 21073, + "volvo": 21074, + "opium": 21075, + "yd": 21076, + "##twined": 21077, + "abuses": 21078, + "decca": 21079, + "outpost": 21080, + "##cino": 21081, + "sensible": 21082, + "neutrality": 21083, + "##64": 21084, + "ponce": 21085, + "anchorage": 21086, + "atkins": 21087, + "turrets": 21088, + "inadvertently": 21089, + "disagree": 21090, + "libre": 21091, + "vodka": 21092, + "reassuring": 21093, + "weighs": 21094, + "##yal": 21095, + "glide": 21096, + "jumper": 21097, + "ceilings": 21098, + "repertory": 21099, + "outs": 21100, + "stain": 21101, + "##bial": 21102, + "envy": 21103, + "##ucible": 21104, + "smashing": 21105, + "heightened": 21106, + "policing": 21107, + "hyun": 21108, + "mixes": 21109, + "lai": 21110, + "prima": 21111, + "##ples": 21112, + "celeste": 21113, + "##bina": 21114, + "lucrative": 21115, + "intervened": 21116, + "kc": 21117, + "manually": 21118, + "##rned": 21119, + "stature": 21120, + "staffed": 21121, + "bun": 21122, + "bastards": 21123, + "nairobi": 21124, + "priced": 21125, + "##auer": 21126, + "thatcher": 21127, + "##kia": 21128, + "tripped": 21129, + "comune": 21130, + "##ogan": 21131, + "##pled": 21132, + "brasil": 21133, + "incentives": 21134, + "emanuel": 21135, + "hereford": 21136, + "musica": 21137, + "##kim": 21138, + "benedictine": 21139, + "biennale": 21140, + "##lani": 21141, + "eureka": 21142, + "gardiner": 21143, + "rb": 21144, + "knocks": 21145, + "sha": 21146, + "##ael": 21147, + "##elled": 21148, + "##onate": 21149, + "efficacy": 21150, + "ventura": 21151, + "masonic": 21152, + "sanford": 21153, + "maize": 21154, + "leverage": 21155, + "##feit": 21156, + "capacities": 21157, + "santana": 21158, + "##aur": 21159, + "novelty": 21160, + "vanilla": 21161, + "##cter": 21162, + "##tour": 21163, + "benin": 21164, + "##oir": 21165, + "##rain": 21166, + "neptune": 21167, + "drafting": 21168, + "tallinn": 21169, + "##cable": 21170, + "humiliation": 21171, + "##boarding": 21172, + "schleswig": 21173, + "fabian": 21174, + "bernardo": 21175, + "liturgy": 21176, + "spectacle": 21177, + "sweeney": 21178, + "pont": 21179, + "routledge": 21180, + "##tment": 21181, + "cosmos": 21182, + "ut": 21183, + "hilt": 21184, + "sleek": 21185, + "universally": 21186, + "##eville": 21187, + "##gawa": 21188, + "typed": 21189, + "##dry": 21190, + "favors": 21191, + "allegheny": 21192, + "glaciers": 21193, + "##rly": 21194, + "recalling": 21195, + "aziz": 21196, + "##log": 21197, + "parasite": 21198, + "requiem": 21199, + "auf": 21200, + "##berto": 21201, + "##llin": 21202, + "illumination": 21203, + "##breaker": 21204, + "##issa": 21205, + "festivities": 21206, + "bows": 21207, + "govern": 21208, + "vibe": 21209, + "vp": 21210, + "333": 21211, + "sprawled": 21212, + "larson": 21213, + "pilgrim": 21214, + "bwf": 21215, + "leaping": 21216, + "##rts": 21217, + "##ssel": 21218, + "alexei": 21219, + "greyhound": 21220, + "hoarse": 21221, + "##dler": 21222, + "##oration": 21223, + "seneca": 21224, + "##cule": 21225, + "gaping": 21226, + "##ulously": 21227, + "##pura": 21228, + "cinnamon": 21229, + "##gens": 21230, + "##rricular": 21231, + "craven": 21232, + "fantasies": 21233, + "houghton": 21234, + "engined": 21235, + "reigned": 21236, + "dictator": 21237, + "supervising": 21238, + "##oris": 21239, + "bogota": 21240, + "commentaries": 21241, + "unnatural": 21242, + "fingernails": 21243, + "spirituality": 21244, + "tighten": 21245, + "##tm": 21246, + "canadiens": 21247, + "protesting": 21248, + "intentional": 21249, + "cheers": 21250, + "sparta": 21251, + "##ytic": 21252, + "##iere": 21253, + "##zine": 21254, + "widen": 21255, + "belgarath": 21256, + "controllers": 21257, + "dodd": 21258, + "iaaf": 21259, + "navarre": 21260, + "##ication": 21261, + "defect": 21262, + "squire": 21263, + "steiner": 21264, + "whisky": 21265, + "##mins": 21266, + "560": 21267, + "inevitably": 21268, + "tome": 21269, + "##gold": 21270, + "chew": 21271, + "##uid": 21272, + "##lid": 21273, + "elastic": 21274, + "##aby": 21275, + "streaked": 21276, + "alliances": 21277, + "jailed": 21278, + "regal": 21279, + "##ined": 21280, + "##phy": 21281, + "czechoslovak": 21282, + "narration": 21283, + "absently": 21284, + "##uld": 21285, + "bluegrass": 21286, + "guangdong": 21287, + "quran": 21288, + "criticizing": 21289, + "hose": 21290, + "hari": 21291, + "##liest": 21292, + "##owa": 21293, + "skier": 21294, + "streaks": 21295, + "deploy": 21296, + "##lom": 21297, + "raft": 21298, + "bose": 21299, + "dialed": 21300, + "huff": 21301, + "##eira": 21302, + "haifa": 21303, + "simplest": 21304, + "bursting": 21305, + "endings": 21306, + "ib": 21307, + "sultanate": 21308, + "##titled": 21309, + "franks": 21310, + "whitman": 21311, + "ensures": 21312, + "sven": 21313, + "##ggs": 21314, + "collaborators": 21315, + "forster": 21316, + "organising": 21317, + "ui": 21318, + "banished": 21319, + "napier": 21320, + "injustice": 21321, + "teller": 21322, + "layered": 21323, + "thump": 21324, + "##otti": 21325, + "roc": 21326, + "battleships": 21327, + "evidenced": 21328, + "fugitive": 21329, + "sadie": 21330, + "robotics": 21331, + "##roud": 21332, + "equatorial": 21333, + "geologist": 21334, + "##iza": 21335, + "yielding": 21336, + "##bron": 21337, + "##sr": 21338, + "internationale": 21339, + "mecca": 21340, + "##diment": 21341, + "sbs": 21342, + "skyline": 21343, + "toad": 21344, + "uploaded": 21345, + "reflective": 21346, + "undrafted": 21347, + "lal": 21348, + "leafs": 21349, + "bayern": 21350, + "##dai": 21351, + "lakshmi": 21352, + "shortlisted": 21353, + "##stick": 21354, + "##wicz": 21355, + "camouflage": 21356, + "donate": 21357, + "af": 21358, + "christi": 21359, + "lau": 21360, + "##acio": 21361, + "disclosed": 21362, + "nemesis": 21363, + "1761": 21364, + "assemble": 21365, + "straining": 21366, + "northamptonshire": 21367, + "tal": 21368, + "##asi": 21369, + "bernardino": 21370, + "premature": 21371, + "heidi": 21372, + "42nd": 21373, + "coefficients": 21374, + "galactic": 21375, + "reproduce": 21376, + "buzzed": 21377, + "sensations": 21378, + "zionist": 21379, + "monsieur": 21380, + "myrtle": 21381, + "##eme": 21382, + "archery": 21383, + "strangled": 21384, + "musically": 21385, + "viewpoint": 21386, + "antiquities": 21387, + "bei": 21388, + "trailers": 21389, + "seahawks": 21390, + "cured": 21391, + "pee": 21392, + "preferring": 21393, + "tasmanian": 21394, + "lange": 21395, + "sul": 21396, + "##mail": 21397, + "##working": 21398, + "colder": 21399, + "overland": 21400, + "lucivar": 21401, + "massey": 21402, + "gatherings": 21403, + "haitian": 21404, + "##smith": 21405, + "disapproval": 21406, + "flaws": 21407, + "##cco": 21408, + "##enbach": 21409, + "1766": 21410, + "npr": 21411, + "##icular": 21412, + "boroughs": 21413, + "creole": 21414, + "forums": 21415, + "techno": 21416, + "1755": 21417, + "dent": 21418, + "abdominal": 21419, + "streetcar": 21420, + "##eson": 21421, + "##stream": 21422, + "procurement": 21423, + "gemini": 21424, + "predictable": 21425, + "##tya": 21426, + "acheron": 21427, + "christoph": 21428, + "feeder": 21429, + "fronts": 21430, + "vendor": 21431, + "bernhard": 21432, + "jammu": 21433, + "tumors": 21434, + "slang": 21435, + "##uber": 21436, + "goaltender": 21437, + "twists": 21438, + "curving": 21439, + "manson": 21440, + "vuelta": 21441, + "mer": 21442, + "peanut": 21443, + "confessions": 21444, + "pouch": 21445, + "unpredictable": 21446, + "allowance": 21447, + "theodor": 21448, + "vascular": 21449, + "##factory": 21450, + "bala": 21451, + "authenticity": 21452, + "metabolic": 21453, + "coughing": 21454, + "nanjing": 21455, + "##cea": 21456, + "pembroke": 21457, + "##bard": 21458, + "splendid": 21459, + "36th": 21460, + "ff": 21461, + "hourly": 21462, + "##ahu": 21463, + "elmer": 21464, + "handel": 21465, + "##ivate": 21466, + "awarding": 21467, + "thrusting": 21468, + "dl": 21469, + "experimentation": 21470, + "##hesion": 21471, + "##46": 21472, + "caressed": 21473, + "entertained": 21474, + "steak": 21475, + "##rangle": 21476, + "biologist": 21477, + "orphans": 21478, + "baroness": 21479, + "oyster": 21480, + "stepfather": 21481, + "##dridge": 21482, + "mirage": 21483, + "reefs": 21484, + "speeding": 21485, + "##31": 21486, + "barons": 21487, + "1764": 21488, + "227": 21489, + "inhabit": 21490, + "preached": 21491, + "repealed": 21492, + "##tral": 21493, + "honoring": 21494, + "boogie": 21495, + "captives": 21496, + "administer": 21497, + "johanna": 21498, + "##imate": 21499, + "gel": 21500, + "suspiciously": 21501, + "1767": 21502, + "sobs": 21503, + "##dington": 21504, + "backbone": 21505, + "hayward": 21506, + "garry": 21507, + "##folding": 21508, + "##nesia": 21509, + "maxi": 21510, + "##oof": 21511, + "##ppe": 21512, + "ellison": 21513, + "galileo": 21514, + "##stand": 21515, + "crimea": 21516, + "frenzy": 21517, + "amour": 21518, + "bumper": 21519, + "matrices": 21520, + "natalia": 21521, + "baking": 21522, + "garth": 21523, + "palestinians": 21524, + "##grove": 21525, + "smack": 21526, + "conveyed": 21527, + "ensembles": 21528, + "gardening": 21529, + "##manship": 21530, + "##rup": 21531, + "##stituting": 21532, + "1640": 21533, + "harvesting": 21534, + "topography": 21535, + "jing": 21536, + "shifters": 21537, + "dormitory": 21538, + "##carriage": 21539, + "##lston": 21540, + "ist": 21541, + "skulls": 21542, + "##stadt": 21543, + "dolores": 21544, + "jewellery": 21545, + "sarawak": 21546, + "##wai": 21547, + "##zier": 21548, + "fences": 21549, + "christy": 21550, + "confinement": 21551, + "tumbling": 21552, + "credibility": 21553, + "fir": 21554, + "stench": 21555, + "##bria": 21556, + "##plication": 21557, + "##nged": 21558, + "##sam": 21559, + "virtues": 21560, + "##belt": 21561, + "marjorie": 21562, + "pba": 21563, + "##eem": 21564, + "##made": 21565, + "celebrates": 21566, + "schooner": 21567, + "agitated": 21568, + "barley": 21569, + "fulfilling": 21570, + "anthropologist": 21571, + "##pro": 21572, + "restrict": 21573, + "novi": 21574, + "regulating": 21575, + "##nent": 21576, + "padres": 21577, + "##rani": 21578, + "##hesive": 21579, + "loyola": 21580, + "tabitha": 21581, + "milky": 21582, + "olson": 21583, + "proprietor": 21584, + "crambidae": 21585, + "guarantees": 21586, + "intercollegiate": 21587, + "ljubljana": 21588, + "hilda": 21589, + "##sko": 21590, + "ignorant": 21591, + "hooded": 21592, + "##lts": 21593, + "sardinia": 21594, + "##lidae": 21595, + "##vation": 21596, + "frontman": 21597, + "privileged": 21598, + "witchcraft": 21599, + "##gp": 21600, + "jammed": 21601, + "laude": 21602, + "poking": 21603, + "##than": 21604, + "bracket": 21605, + "amazement": 21606, + "yunnan": 21607, + "##erus": 21608, + "maharaja": 21609, + "linnaeus": 21610, + "264": 21611, + "commissioning": 21612, + "milano": 21613, + "peacefully": 21614, + "##logies": 21615, + "akira": 21616, + "rani": 21617, + "regulator": 21618, + "##36": 21619, + "grasses": 21620, + "##rance": 21621, + "luzon": 21622, + "crows": 21623, + "compiler": 21624, + "gretchen": 21625, + "seaman": 21626, + "edouard": 21627, + "tab": 21628, + "buccaneers": 21629, + "ellington": 21630, + "hamlets": 21631, + "whig": 21632, + "socialists": 21633, + "##anto": 21634, + "directorial": 21635, + "easton": 21636, + "mythological": 21637, + "##kr": 21638, + "##vary": 21639, + "rhineland": 21640, + "semantic": 21641, + "taut": 21642, + "dune": 21643, + "inventions": 21644, + "succeeds": 21645, + "##iter": 21646, + "replication": 21647, + "branched": 21648, + "##pired": 21649, + "jul": 21650, + "prosecuted": 21651, + "kangaroo": 21652, + "penetrated": 21653, + "##avian": 21654, + "middlesbrough": 21655, + "doses": 21656, + "bleak": 21657, + "madam": 21658, + "predatory": 21659, + "relentless": 21660, + "##vili": 21661, + "reluctance": 21662, + "##vir": 21663, + "hailey": 21664, + "crore": 21665, + "silvery": 21666, + "1759": 21667, + "monstrous": 21668, + "swimmers": 21669, + "transmissions": 21670, + "hawthorn": 21671, + "informing": 21672, + "##eral": 21673, + "toilets": 21674, + "caracas": 21675, + "crouch": 21676, + "kb": 21677, + "##sett": 21678, + "295": 21679, + "cartel": 21680, + "hadley": 21681, + "##aling": 21682, + "alexia": 21683, + "yvonne": 21684, + "##biology": 21685, + "cinderella": 21686, + "eton": 21687, + "superb": 21688, + "blizzard": 21689, + "stabbing": 21690, + "industrialist": 21691, + "maximus": 21692, + "##gm": 21693, + "##orus": 21694, + "groves": 21695, + "maud": 21696, + "clade": 21697, + "oversized": 21698, + "comedic": 21699, + "##bella": 21700, + "rosen": 21701, + "nomadic": 21702, + "fulham": 21703, + "montane": 21704, + "beverages": 21705, + "galaxies": 21706, + "redundant": 21707, + "swarm": 21708, + "##rot": 21709, + "##folia": 21710, + "##llis": 21711, + "buckinghamshire": 21712, + "fen": 21713, + "bearings": 21714, + "bahadur": 21715, + "##rom": 21716, + "gilles": 21717, + "phased": 21718, + "dynamite": 21719, + "faber": 21720, + "benoit": 21721, + "vip": 21722, + "##ount": 21723, + "##wd": 21724, + "booking": 21725, + "fractured": 21726, + "tailored": 21727, + "anya": 21728, + "spices": 21729, + "westwood": 21730, + "cairns": 21731, + "auditions": 21732, + "inflammation": 21733, + "steamed": 21734, + "##rocity": 21735, + "##acion": 21736, + "##urne": 21737, + "skyla": 21738, + "thereof": 21739, + "watford": 21740, + "torment": 21741, + "archdeacon": 21742, + "transforms": 21743, + "lulu": 21744, + "demeanor": 21745, + "fucked": 21746, + "serge": 21747, + "##sor": 21748, + "mckenna": 21749, + "minas": 21750, + "entertainer": 21751, + "##icide": 21752, + "caress": 21753, + "originate": 21754, + "residue": 21755, + "##sty": 21756, + "1740": 21757, + "##ilised": 21758, + "##org": 21759, + "beech": 21760, + "##wana": 21761, + "subsidies": 21762, + "##ghton": 21763, + "emptied": 21764, + "gladstone": 21765, + "ru": 21766, + "firefighters": 21767, + "voodoo": 21768, + "##rcle": 21769, + "het": 21770, + "nightingale": 21771, + "tamara": 21772, + "edmond": 21773, + "ingredient": 21774, + "weaknesses": 21775, + "silhouette": 21776, + "285": 21777, + "compatibility": 21778, + "withdrawing": 21779, + "hampson": 21780, + "##mona": 21781, + "anguish": 21782, + "giggling": 21783, + "##mber": 21784, + "bookstore": 21785, + "##jiang": 21786, + "southernmost": 21787, + "tilting": 21788, + "##vance": 21789, + "bai": 21790, + "economical": 21791, + "rf": 21792, + "briefcase": 21793, + "dreadful": 21794, + "hinted": 21795, + "projections": 21796, + "shattering": 21797, + "totaling": 21798, + "##rogate": 21799, + "analogue": 21800, + "indicted": 21801, + "periodical": 21802, + "fullback": 21803, + "##dman": 21804, + "haynes": 21805, + "##tenberg": 21806, + "##ffs": 21807, + "##ishment": 21808, + "1745": 21809, + "thirst": 21810, + "stumble": 21811, + "penang": 21812, + "vigorous": 21813, + "##ddling": 21814, + "##kor": 21815, + "##lium": 21816, + "octave": 21817, + "##ove": 21818, + "##enstein": 21819, + "##inen": 21820, + "##ones": 21821, + "siberian": 21822, + "##uti": 21823, + "cbn": 21824, + "repeal": 21825, + "swaying": 21826, + "##vington": 21827, + "khalid": 21828, + "tanaka": 21829, + "unicorn": 21830, + "otago": 21831, + "plastered": 21832, + "lobe": 21833, + "riddle": 21834, + "##rella": 21835, + "perch": 21836, + "##ishing": 21837, + "croydon": 21838, + "filtered": 21839, + "graeme": 21840, + "tripoli": 21841, + "##ossa": 21842, + "crocodile": 21843, + "##chers": 21844, + "sufi": 21845, + "mined": 21846, + "##tung": 21847, + "inferno": 21848, + "lsu": 21849, + "##phi": 21850, + "swelled": 21851, + "utilizes": 21852, + "£2": 21853, + "cale": 21854, + "periodicals": 21855, + "styx": 21856, + "hike": 21857, + "informally": 21858, + "coop": 21859, + "lund": 21860, + "##tidae": 21861, + "ala": 21862, + "hen": 21863, + "qui": 21864, + "transformations": 21865, + "disposed": 21866, + "sheath": 21867, + "chickens": 21868, + "##cade": 21869, + "fitzroy": 21870, + "sas": 21871, + "silesia": 21872, + "unacceptable": 21873, + "odisha": 21874, + "1650": 21875, + "sabrina": 21876, + "pe": 21877, + "spokane": 21878, + "ratios": 21879, + "athena": 21880, + "massage": 21881, + "shen": 21882, + "dilemma": 21883, + "##drum": 21884, + "##riz": 21885, + "##hul": 21886, + "corona": 21887, + "doubtful": 21888, + "niall": 21889, + "##pha": 21890, + "##bino": 21891, + "fines": 21892, + "cite": 21893, + "acknowledging": 21894, + "bangor": 21895, + "ballard": 21896, + "bathurst": 21897, + "##resh": 21898, + "huron": 21899, + "mustered": 21900, + "alzheimer": 21901, + "garments": 21902, + "kinase": 21903, + "tyre": 21904, + "warship": 21905, + "##cp": 21906, + "flashback": 21907, + "pulmonary": 21908, + "braun": 21909, + "cheat": 21910, + "kamal": 21911, + "cyclists": 21912, + "constructions": 21913, + "grenades": 21914, + "ndp": 21915, + "traveller": 21916, + "excuses": 21917, + "stomped": 21918, + "signalling": 21919, + "trimmed": 21920, + "futsal": 21921, + "mosques": 21922, + "relevance": 21923, + "##wine": 21924, + "wta": 21925, + "##23": 21926, + "##vah": 21927, + "##lter": 21928, + "hoc": 21929, + "##riding": 21930, + "optimistic": 21931, + "##´s": 21932, + "deco": 21933, + "sim": 21934, + "interacting": 21935, + "rejecting": 21936, + "moniker": 21937, + "waterways": 21938, + "##ieri": 21939, + "##oku": 21940, + "mayors": 21941, + "gdansk": 21942, + "outnumbered": 21943, + "pearls": 21944, + "##ended": 21945, + "##hampton": 21946, + "fairs": 21947, + "totals": 21948, + "dominating": 21949, + "262": 21950, + "notions": 21951, + "stairway": 21952, + "compiling": 21953, + "pursed": 21954, + "commodities": 21955, + "grease": 21956, + "yeast": 21957, + "##jong": 21958, + "carthage": 21959, + "griffiths": 21960, + "residual": 21961, + "amc": 21962, + "contraction": 21963, + "laird": 21964, + "sapphire": 21965, + "##marine": 21966, + "##ivated": 21967, + "amalgamation": 21968, + "dissolve": 21969, + "inclination": 21970, + "lyle": 21971, + "packaged": 21972, + "altitudes": 21973, + "suez": 21974, + "canons": 21975, + "graded": 21976, + "lurched": 21977, + "narrowing": 21978, + "boasts": 21979, + "guise": 21980, + "wed": 21981, + "enrico": 21982, + "##ovsky": 21983, + "rower": 21984, + "scarred": 21985, + "bree": 21986, + "cub": 21987, + "iberian": 21988, + "protagonists": 21989, + "bargaining": 21990, + "proposing": 21991, + "trainers": 21992, + "voyages": 21993, + "vans": 21994, + "fishes": 21995, + "##aea": 21996, + "##ivist": 21997, + "##verance": 21998, + "encryption": 21999, + "artworks": 22000, + "kazan": 22001, + "sabre": 22002, + "cleopatra": 22003, + "hepburn": 22004, + "rotting": 22005, + "supremacy": 22006, + "mecklenburg": 22007, + "##brate": 22008, + "burrows": 22009, + "hazards": 22010, + "outgoing": 22011, + "flair": 22012, + "organizes": 22013, + "##ctions": 22014, + "scorpion": 22015, + "##usions": 22016, + "boo": 22017, + "234": 22018, + "chevalier": 22019, + "dunedin": 22020, + "slapping": 22021, + "##34": 22022, + "ineligible": 22023, + "pensions": 22024, + "##38": 22025, + "##omic": 22026, + "manufactures": 22027, + "emails": 22028, + "bismarck": 22029, + "238": 22030, + "weakening": 22031, + "blackish": 22032, + "ding": 22033, + "mcgee": 22034, + "quo": 22035, + "##rling": 22036, + "northernmost": 22037, + "xx": 22038, + "manpower": 22039, + "greed": 22040, + "sampson": 22041, + "clicking": 22042, + "##ange": 22043, + "##horpe": 22044, + "##inations": 22045, + "##roving": 22046, + "torre": 22047, + "##eptive": 22048, + "##moral": 22049, + "symbolism": 22050, + "38th": 22051, + "asshole": 22052, + "meritorious": 22053, + "outfits": 22054, + "splashed": 22055, + "biographies": 22056, + "sprung": 22057, + "astros": 22058, + "##tale": 22059, + "302": 22060, + "737": 22061, + "filly": 22062, + "raoul": 22063, + "nw": 22064, + "tokugawa": 22065, + "linden": 22066, + "clubhouse": 22067, + "##apa": 22068, + "tracts": 22069, + "romano": 22070, + "##pio": 22071, + "putin": 22072, + "tags": 22073, + "##note": 22074, + "chained": 22075, + "dickson": 22076, + "gunshot": 22077, + "moe": 22078, + "gunn": 22079, + "rashid": 22080, + "##tails": 22081, + "zipper": 22082, + "##bas": 22083, + "##nea": 22084, + "contrasted": 22085, + "##ply": 22086, + "##udes": 22087, + "plum": 22088, + "pharaoh": 22089, + "##pile": 22090, + "aw": 22091, + "comedies": 22092, + "ingrid": 22093, + "sandwiches": 22094, + "subdivisions": 22095, + "1100": 22096, + "mariana": 22097, + "nokia": 22098, + "kamen": 22099, + "hz": 22100, + "delaney": 22101, + "veto": 22102, + "herring": 22103, + "##words": 22104, + "possessive": 22105, + "outlines": 22106, + "##roup": 22107, + "siemens": 22108, + "stairwell": 22109, + "rc": 22110, + "gallantry": 22111, + "messiah": 22112, + "palais": 22113, + "yells": 22114, + "233": 22115, + "zeppelin": 22116, + "##dm": 22117, + "bolivar": 22118, + "##cede": 22119, + "smackdown": 22120, + "mckinley": 22121, + "##mora": 22122, + "##yt": 22123, + "muted": 22124, + "geologic": 22125, + "finely": 22126, + "unitary": 22127, + "avatar": 22128, + "hamas": 22129, + "maynard": 22130, + "rees": 22131, + "bog": 22132, + "contrasting": 22133, + "##rut": 22134, + "liv": 22135, + "chico": 22136, + "disposition": 22137, + "pixel": 22138, + "##erate": 22139, + "becca": 22140, + "dmitry": 22141, + "yeshiva": 22142, + "narratives": 22143, + "##lva": 22144, + "##ulton": 22145, + "mercenary": 22146, + "sharpe": 22147, + "tempered": 22148, + "navigate": 22149, + "stealth": 22150, + "amassed": 22151, + "keynes": 22152, + "##lini": 22153, + "untouched": 22154, + "##rrie": 22155, + "havoc": 22156, + "lithium": 22157, + "##fighting": 22158, + "abyss": 22159, + "graf": 22160, + "southward": 22161, + "wolverine": 22162, + "balloons": 22163, + "implements": 22164, + "ngos": 22165, + "transitions": 22166, + "##icum": 22167, + "ambushed": 22168, + "concacaf": 22169, + "dormant": 22170, + "economists": 22171, + "##dim": 22172, + "costing": 22173, + "csi": 22174, + "rana": 22175, + "universite": 22176, + "boulders": 22177, + "verity": 22178, + "##llon": 22179, + "collin": 22180, + "mellon": 22181, + "misses": 22182, + "cypress": 22183, + "fluorescent": 22184, + "lifeless": 22185, + "spence": 22186, + "##ulla": 22187, + "crewe": 22188, + "shepard": 22189, + "pak": 22190, + "revelations": 22191, + "##م": 22192, + "jolly": 22193, + "gibbons": 22194, + "paw": 22195, + "##dro": 22196, + "##quel": 22197, + "freeing": 22198, + "##test": 22199, + "shack": 22200, + "fries": 22201, + "palatine": 22202, + "##51": 22203, + "##hiko": 22204, + "accompaniment": 22205, + "cruising": 22206, + "recycled": 22207, + "##aver": 22208, + "erwin": 22209, + "sorting": 22210, + "synthesizers": 22211, + "dyke": 22212, + "realities": 22213, + "sg": 22214, + "strides": 22215, + "enslaved": 22216, + "wetland": 22217, + "##ghan": 22218, + "competence": 22219, + "gunpowder": 22220, + "grassy": 22221, + "maroon": 22222, + "reactors": 22223, + "objection": 22224, + "##oms": 22225, + "carlson": 22226, + "gearbox": 22227, + "macintosh": 22228, + "radios": 22229, + "shelton": 22230, + "##sho": 22231, + "clergyman": 22232, + "prakash": 22233, + "254": 22234, + "mongols": 22235, + "trophies": 22236, + "oricon": 22237, + "228": 22238, + "stimuli": 22239, + "twenty20": 22240, + "cantonese": 22241, + "cortes": 22242, + "mirrored": 22243, + "##saurus": 22244, + "bhp": 22245, + "cristina": 22246, + "melancholy": 22247, + "##lating": 22248, + "enjoyable": 22249, + "nuevo": 22250, + "##wny": 22251, + "downfall": 22252, + "schumacher": 22253, + "##ind": 22254, + "banging": 22255, + "lausanne": 22256, + "rumbled": 22257, + "paramilitary": 22258, + "reflex": 22259, + "ax": 22260, + "amplitude": 22261, + "migratory": 22262, + "##gall": 22263, + "##ups": 22264, + "midi": 22265, + "barnard": 22266, + "lastly": 22267, + "sherry": 22268, + "##hp": 22269, + "##nall": 22270, + "keystone": 22271, + "##kra": 22272, + "carleton": 22273, + "slippery": 22274, + "##53": 22275, + "coloring": 22276, + "foe": 22277, + "socket": 22278, + "otter": 22279, + "##rgos": 22280, + "mats": 22281, + "##tose": 22282, + "consultants": 22283, + "bafta": 22284, + "bison": 22285, + "topping": 22286, + "##km": 22287, + "490": 22288, + "primal": 22289, + "abandonment": 22290, + "transplant": 22291, + "atoll": 22292, + "hideous": 22293, + "mort": 22294, + "pained": 22295, + "reproduced": 22296, + "tae": 22297, + "howling": 22298, + "##turn": 22299, + "unlawful": 22300, + "billionaire": 22301, + "hotter": 22302, + "poised": 22303, + "lansing": 22304, + "##chang": 22305, + "dinamo": 22306, + "retro": 22307, + "messing": 22308, + "nfc": 22309, + "domesday": 22310, + "##mina": 22311, + "blitz": 22312, + "timed": 22313, + "##athing": 22314, + "##kley": 22315, + "ascending": 22316, + "gesturing": 22317, + "##izations": 22318, + "signaled": 22319, + "tis": 22320, + "chinatown": 22321, + "mermaid": 22322, + "savanna": 22323, + "jameson": 22324, + "##aint": 22325, + "catalina": 22326, + "##pet": 22327, + "##hers": 22328, + "cochrane": 22329, + "cy": 22330, + "chatting": 22331, + "##kus": 22332, + "alerted": 22333, + "computation": 22334, + "mused": 22335, + "noelle": 22336, + "majestic": 22337, + "mohawk": 22338, + "campo": 22339, + "octagonal": 22340, + "##sant": 22341, + "##hend": 22342, + "241": 22343, + "aspiring": 22344, + "##mart": 22345, + "comprehend": 22346, + "iona": 22347, + "paralyzed": 22348, + "shimmering": 22349, + "swindon": 22350, + "rhone": 22351, + "##eley": 22352, + "reputed": 22353, + "configurations": 22354, + "pitchfork": 22355, + "agitation": 22356, + "francais": 22357, + "gillian": 22358, + "lipstick": 22359, + "##ilo": 22360, + "outsiders": 22361, + "pontifical": 22362, + "resisting": 22363, + "bitterness": 22364, + "sewer": 22365, + "rockies": 22366, + "##edd": 22367, + "##ucher": 22368, + "misleading": 22369, + "1756": 22370, + "exiting": 22371, + "galloway": 22372, + "##nging": 22373, + "risked": 22374, + "##heart": 22375, + "246": 22376, + "commemoration": 22377, + "schultz": 22378, + "##rka": 22379, + "integrating": 22380, + "##rsa": 22381, + "poses": 22382, + "shrieked": 22383, + "##weiler": 22384, + "guineas": 22385, + "gladys": 22386, + "jerking": 22387, + "owls": 22388, + "goldsmith": 22389, + "nightly": 22390, + "penetrating": 22391, + "##unced": 22392, + "lia": 22393, + "##33": 22394, + "ignited": 22395, + "betsy": 22396, + "##aring": 22397, + "##thorpe": 22398, + "follower": 22399, + "vigorously": 22400, + "##rave": 22401, + "coded": 22402, + "kiran": 22403, + "knit": 22404, + "zoology": 22405, + "tbilisi": 22406, + "##28": 22407, + "##bered": 22408, + "repository": 22409, + "govt": 22410, + "deciduous": 22411, + "dino": 22412, + "growling": 22413, + "##bba": 22414, + "enhancement": 22415, + "unleashed": 22416, + "chanting": 22417, + "pussy": 22418, + "biochemistry": 22419, + "##eric": 22420, + "kettle": 22421, + "repression": 22422, + "toxicity": 22423, + "nrhp": 22424, + "##arth": 22425, + "##kko": 22426, + "##bush": 22427, + "ernesto": 22428, + "commended": 22429, + "outspoken": 22430, + "242": 22431, + "mca": 22432, + "parchment": 22433, + "sms": 22434, + "kristen": 22435, + "##aton": 22436, + "bisexual": 22437, + "raked": 22438, + "glamour": 22439, + "navajo": 22440, + "a2": 22441, + "conditioned": 22442, + "showcased": 22443, + "##hma": 22444, + "spacious": 22445, + "youthful": 22446, + "##esa": 22447, + "usl": 22448, + "appliances": 22449, + "junta": 22450, + "brest": 22451, + "layne": 22452, + "conglomerate": 22453, + "enchanted": 22454, + "chao": 22455, + "loosened": 22456, + "picasso": 22457, + "circulating": 22458, + "inspect": 22459, + "montevideo": 22460, + "##centric": 22461, + "##kti": 22462, + "piazza": 22463, + "spurred": 22464, + "##aith": 22465, + "bari": 22466, + "freedoms": 22467, + "poultry": 22468, + "stamford": 22469, + "lieu": 22470, + "##ect": 22471, + "indigo": 22472, + "sarcastic": 22473, + "bahia": 22474, + "stump": 22475, + "attach": 22476, + "dvds": 22477, + "frankenstein": 22478, + "lille": 22479, + "approx": 22480, + "scriptures": 22481, + "pollen": 22482, + "##script": 22483, + "nmi": 22484, + "overseen": 22485, + "##ivism": 22486, + "tides": 22487, + "proponent": 22488, + "newmarket": 22489, + "inherit": 22490, + "milling": 22491, + "##erland": 22492, + "centralized": 22493, + "##rou": 22494, + "distributors": 22495, + "credentials": 22496, + "drawers": 22497, + "abbreviation": 22498, + "##lco": 22499, + "##xon": 22500, + "downing": 22501, + "uncomfortably": 22502, + "ripe": 22503, + "##oes": 22504, + "erase": 22505, + "franchises": 22506, + "##ever": 22507, + "populace": 22508, + "##bery": 22509, + "##khar": 22510, + "decomposition": 22511, + "pleas": 22512, + "##tet": 22513, + "daryl": 22514, + "sabah": 22515, + "##stle": 22516, + "##wide": 22517, + "fearless": 22518, + "genie": 22519, + "lesions": 22520, + "annette": 22521, + "##ogist": 22522, + "oboe": 22523, + "appendix": 22524, + "nair": 22525, + "dripped": 22526, + "petitioned": 22527, + "maclean": 22528, + "mosquito": 22529, + "parrot": 22530, + "rpg": 22531, + "hampered": 22532, + "1648": 22533, + "operatic": 22534, + "reservoirs": 22535, + "##tham": 22536, + "irrelevant": 22537, + "jolt": 22538, + "summarized": 22539, + "##fp": 22540, + "medallion": 22541, + "##taff": 22542, + "##−": 22543, + "clawed": 22544, + "harlow": 22545, + "narrower": 22546, + "goddard": 22547, + "marcia": 22548, + "bodied": 22549, + "fremont": 22550, + "suarez": 22551, + "altering": 22552, + "tempest": 22553, + "mussolini": 22554, + "porn": 22555, + "##isms": 22556, + "sweetly": 22557, + "oversees": 22558, + "walkers": 22559, + "solitude": 22560, + "grimly": 22561, + "shrines": 22562, + "hk": 22563, + "ich": 22564, + "supervisors": 22565, + "hostess": 22566, + "dietrich": 22567, + "legitimacy": 22568, + "brushes": 22569, + "expressive": 22570, + "##yp": 22571, + "dissipated": 22572, + "##rse": 22573, + "localized": 22574, + "systemic": 22575, + "##nikov": 22576, + "gettysburg": 22577, + "##js": 22578, + "##uaries": 22579, + "dialogues": 22580, + "muttering": 22581, + "251": 22582, + "housekeeper": 22583, + "sicilian": 22584, + "discouraged": 22585, + "##frey": 22586, + "beamed": 22587, + "kaladin": 22588, + "halftime": 22589, + "kidnap": 22590, + "##amo": 22591, + "##llet": 22592, + "1754": 22593, + "synonymous": 22594, + "depleted": 22595, + "instituto": 22596, + "insulin": 22597, + "reprised": 22598, + "##opsis": 22599, + "clashed": 22600, + "##ctric": 22601, + "interrupting": 22602, + "radcliffe": 22603, + "insisting": 22604, + "medici": 22605, + "1715": 22606, + "ejected": 22607, + "playfully": 22608, + "turbulent": 22609, + "##47": 22610, + "starvation": 22611, + "##rini": 22612, + "shipment": 22613, + "rebellious": 22614, + "petersen": 22615, + "verification": 22616, + "merits": 22617, + "##rified": 22618, + "cakes": 22619, + "##charged": 22620, + "1757": 22621, + "milford": 22622, + "shortages": 22623, + "spying": 22624, + "fidelity": 22625, + "##aker": 22626, + "emitted": 22627, + "storylines": 22628, + "harvested": 22629, + "seismic": 22630, + "##iform": 22631, + "cheung": 22632, + "kilda": 22633, + "theoretically": 22634, + "barbie": 22635, + "lynx": 22636, + "##rgy": 22637, + "##tius": 22638, + "goblin": 22639, + "mata": 22640, + "poisonous": 22641, + "##nburg": 22642, + "reactive": 22643, + "residues": 22644, + "obedience": 22645, + "##евич": 22646, + "conjecture": 22647, + "##rac": 22648, + "401": 22649, + "hating": 22650, + "sixties": 22651, + "kicker": 22652, + "moaning": 22653, + "motown": 22654, + "##bha": 22655, + "emancipation": 22656, + "neoclassical": 22657, + "##hering": 22658, + "consoles": 22659, + "ebert": 22660, + "professorship": 22661, + "##tures": 22662, + "sustaining": 22663, + "assaults": 22664, + "obeyed": 22665, + "affluent": 22666, + "incurred": 22667, + "tornadoes": 22668, + "##eber": 22669, + "##zow": 22670, + "emphasizing": 22671, + "highlanders": 22672, + "cheated": 22673, + "helmets": 22674, + "##ctus": 22675, + "internship": 22676, + "terence": 22677, + "bony": 22678, + "executions": 22679, + "legislators": 22680, + "berries": 22681, + "peninsular": 22682, + "tinged": 22683, + "##aco": 22684, + "1689": 22685, + "amplifier": 22686, + "corvette": 22687, + "ribbons": 22688, + "lavish": 22689, + "pennant": 22690, + "##lander": 22691, + "worthless": 22692, + "##chfield": 22693, + "##forms": 22694, + "mariano": 22695, + "pyrenees": 22696, + "expenditures": 22697, + "##icides": 22698, + "chesterfield": 22699, + "mandir": 22700, + "tailor": 22701, + "39th": 22702, + "sergey": 22703, + "nestled": 22704, + "willed": 22705, + "aristocracy": 22706, + "devotees": 22707, + "goodnight": 22708, + "raaf": 22709, + "rumored": 22710, + "weaponry": 22711, + "remy": 22712, + "appropriations": 22713, + "harcourt": 22714, + "burr": 22715, + "riaa": 22716, + "##lence": 22717, + "limitation": 22718, + "unnoticed": 22719, + "guo": 22720, + "soaking": 22721, + "swamps": 22722, + "##tica": 22723, + "collapsing": 22724, + "tatiana": 22725, + "descriptive": 22726, + "brigham": 22727, + "psalm": 22728, + "##chment": 22729, + "maddox": 22730, + "##lization": 22731, + "patti": 22732, + "caliph": 22733, + "##aja": 22734, + "akron": 22735, + "injuring": 22736, + "serra": 22737, + "##ganj": 22738, + "basins": 22739, + "##sari": 22740, + "astonished": 22741, + "launcher": 22742, + "##church": 22743, + "hilary": 22744, + "wilkins": 22745, + "sewing": 22746, + "##sf": 22747, + "stinging": 22748, + "##fia": 22749, + "##ncia": 22750, + "underwood": 22751, + "startup": 22752, + "##ition": 22753, + "compilations": 22754, + "vibrations": 22755, + "embankment": 22756, + "jurist": 22757, + "##nity": 22758, + "bard": 22759, + "juventus": 22760, + "groundwater": 22761, + "kern": 22762, + "palaces": 22763, + "helium": 22764, + "boca": 22765, + "cramped": 22766, + "marissa": 22767, + "soto": 22768, + "##worm": 22769, + "jae": 22770, + "princely": 22771, + "##ggy": 22772, + "faso": 22773, + "bazaar": 22774, + "warmly": 22775, + "##voking": 22776, + "229": 22777, + "pairing": 22778, + "##lite": 22779, + "##grate": 22780, + "##nets": 22781, + "wien": 22782, + "freaked": 22783, + "ulysses": 22784, + "rebirth": 22785, + "##alia": 22786, + "##rent": 22787, + "mummy": 22788, + "guzman": 22789, + "jimenez": 22790, + "stilled": 22791, + "##nitz": 22792, + "trajectory": 22793, + "tha": 22794, + "woken": 22795, + "archival": 22796, + "professions": 22797, + "##pts": 22798, + "##pta": 22799, + "hilly": 22800, + "shadowy": 22801, + "shrink": 22802, + "##bolt": 22803, + "norwood": 22804, + "glued": 22805, + "migrate": 22806, + "stereotypes": 22807, + "devoid": 22808, + "##pheus": 22809, + "625": 22810, + "evacuate": 22811, + "horrors": 22812, + "infancy": 22813, + "gotham": 22814, + "knowles": 22815, + "optic": 22816, + "downloaded": 22817, + "sachs": 22818, + "kingsley": 22819, + "parramatta": 22820, + "darryl": 22821, + "mor": 22822, + "##onale": 22823, + "shady": 22824, + "commence": 22825, + "confesses": 22826, + "kan": 22827, + "##meter": 22828, + "##placed": 22829, + "marlborough": 22830, + "roundabout": 22831, + "regents": 22832, + "frigates": 22833, + "io": 22834, + "##imating": 22835, + "gothenburg": 22836, + "revoked": 22837, + "carvings": 22838, + "clockwise": 22839, + "convertible": 22840, + "intruder": 22841, + "##sche": 22842, + "banged": 22843, + "##ogo": 22844, + "vicky": 22845, + "bourgeois": 22846, + "##mony": 22847, + "dupont": 22848, + "footing": 22849, + "##gum": 22850, + "pd": 22851, + "##real": 22852, + "buckle": 22853, + "yun": 22854, + "penthouse": 22855, + "sane": 22856, + "720": 22857, + "serviced": 22858, + "stakeholders": 22859, + "neumann": 22860, + "bb": 22861, + "##eers": 22862, + "comb": 22863, + "##gam": 22864, + "catchment": 22865, + "pinning": 22866, + "rallies": 22867, + "typing": 22868, + "##elles": 22869, + "forefront": 22870, + "freiburg": 22871, + "sweetie": 22872, + "giacomo": 22873, + "widowed": 22874, + "goodwill": 22875, + "worshipped": 22876, + "aspirations": 22877, + "midday": 22878, + "##vat": 22879, + "fishery": 22880, + "##trick": 22881, + "bournemouth": 22882, + "turk": 22883, + "243": 22884, + "hearth": 22885, + "ethanol": 22886, + "guadalajara": 22887, + "murmurs": 22888, + "sl": 22889, + "##uge": 22890, + "afforded": 22891, + "scripted": 22892, + "##hta": 22893, + "wah": 22894, + "##jn": 22895, + "coroner": 22896, + "translucent": 22897, + "252": 22898, + "memorials": 22899, + "puck": 22900, + "progresses": 22901, + "clumsy": 22902, + "##race": 22903, + "315": 22904, + "candace": 22905, + "recounted": 22906, + "##27": 22907, + "##slin": 22908, + "##uve": 22909, + "filtering": 22910, + "##mac": 22911, + "howl": 22912, + "strata": 22913, + "heron": 22914, + "leveled": 22915, + "##ays": 22916, + "dubious": 22917, + "##oja": 22918, + "##т": 22919, + "##wheel": 22920, + "citations": 22921, + "exhibiting": 22922, + "##laya": 22923, + "##mics": 22924, + "##pods": 22925, + "turkic": 22926, + "##lberg": 22927, + "injunction": 22928, + "##ennial": 22929, + "##mit": 22930, + "antibodies": 22931, + "##44": 22932, + "organise": 22933, + "##rigues": 22934, + "cardiovascular": 22935, + "cushion": 22936, + "inverness": 22937, + "##zquez": 22938, + "dia": 22939, + "cocoa": 22940, + "sibling": 22941, + "##tman": 22942, + "##roid": 22943, + "expanse": 22944, + "feasible": 22945, + "tunisian": 22946, + "algiers": 22947, + "##relli": 22948, + "rus": 22949, + "bloomberg": 22950, + "dso": 22951, + "westphalia": 22952, + "bro": 22953, + "tacoma": 22954, + "281": 22955, + "downloads": 22956, + "##ours": 22957, + "konrad": 22958, + "duran": 22959, + "##hdi": 22960, + "continuum": 22961, + "jett": 22962, + "compares": 22963, + "legislator": 22964, + "secession": 22965, + "##nable": 22966, + "##gues": 22967, + "##zuka": 22968, + "translating": 22969, + "reacher": 22970, + "##gley": 22971, + "##ła": 22972, + "aleppo": 22973, + "##agi": 22974, + "tc": 22975, + "orchards": 22976, + "trapping": 22977, + "linguist": 22978, + "versatile": 22979, + "drumming": 22980, + "postage": 22981, + "calhoun": 22982, + "superiors": 22983, + "##mx": 22984, + "barefoot": 22985, + "leary": 22986, + "##cis": 22987, + "ignacio": 22988, + "alfa": 22989, + "kaplan": 22990, + "##rogen": 22991, + "bratislava": 22992, + "mori": 22993, + "##vot": 22994, + "disturb": 22995, + "haas": 22996, + "313": 22997, + "cartridges": 22998, + "gilmore": 22999, + "radiated": 23000, + "salford": 23001, + "tunic": 23002, + "hades": 23003, + "##ulsive": 23004, + "archeological": 23005, + "delilah": 23006, + "magistrates": 23007, + "auditioned": 23008, + "brewster": 23009, + "charters": 23010, + "empowerment": 23011, + "blogs": 23012, + "cappella": 23013, + "dynasties": 23014, + "iroquois": 23015, + "whipping": 23016, + "##krishna": 23017, + "raceway": 23018, + "truths": 23019, + "myra": 23020, + "weaken": 23021, + "judah": 23022, + "mcgregor": 23023, + "##horse": 23024, + "mic": 23025, + "refueling": 23026, + "37th": 23027, + "burnley": 23028, + "bosses": 23029, + "markus": 23030, + "premio": 23031, + "query": 23032, + "##gga": 23033, + "dunbar": 23034, + "##economic": 23035, + "darkest": 23036, + "lyndon": 23037, + "sealing": 23038, + "commendation": 23039, + "reappeared": 23040, + "##mun": 23041, + "addicted": 23042, + "ezio": 23043, + "slaughtered": 23044, + "satisfactory": 23045, + "shuffle": 23046, + "##eves": 23047, + "##thic": 23048, + "##uj": 23049, + "fortification": 23050, + "warrington": 23051, + "##otto": 23052, + "resurrected": 23053, + "fargo": 23054, + "mane": 23055, + "##utable": 23056, + "##lei": 23057, + "##space": 23058, + "foreword": 23059, + "ox": 23060, + "##aris": 23061, + "##vern": 23062, + "abrams": 23063, + "hua": 23064, + "##mento": 23065, + "sakura": 23066, + "##alo": 23067, + "uv": 23068, + "sentimental": 23069, + "##skaya": 23070, + "midfield": 23071, + "##eses": 23072, + "sturdy": 23073, + "scrolls": 23074, + "macleod": 23075, + "##kyu": 23076, + "entropy": 23077, + "##lance": 23078, + "mitochondrial": 23079, + "cicero": 23080, + "excelled": 23081, + "thinner": 23082, + "convoys": 23083, + "perceive": 23084, + "##oslav": 23085, + "##urable": 23086, + "systematically": 23087, + "grind": 23088, + "burkina": 23089, + "287": 23090, + "##tagram": 23091, + "ops": 23092, + "##aman": 23093, + "guantanamo": 23094, + "##cloth": 23095, + "##tite": 23096, + "forcefully": 23097, + "wavy": 23098, + "##jou": 23099, + "pointless": 23100, + "##linger": 23101, + "##tze": 23102, + "layton": 23103, + "portico": 23104, + "superficial": 23105, + "clerical": 23106, + "outlaws": 23107, + "##hism": 23108, + "burials": 23109, + "muir": 23110, + "##inn": 23111, + "creditors": 23112, + "hauling": 23113, + "rattle": 23114, + "##leg": 23115, + "calais": 23116, + "monde": 23117, + "archers": 23118, + "reclaimed": 23119, + "dwell": 23120, + "wexford": 23121, + "hellenic": 23122, + "falsely": 23123, + "remorse": 23124, + "##tek": 23125, + "dough": 23126, + "furnishings": 23127, + "##uttered": 23128, + "gabon": 23129, + "neurological": 23130, + "novice": 23131, + "##igraphy": 23132, + "contemplated": 23133, + "pulpit": 23134, + "nightstand": 23135, + "saratoga": 23136, + "##istan": 23137, + "documenting": 23138, + "pulsing": 23139, + "taluk": 23140, + "##firmed": 23141, + "busted": 23142, + "marital": 23143, + "##rien": 23144, + "disagreements": 23145, + "wasps": 23146, + "##yes": 23147, + "hodge": 23148, + "mcdonnell": 23149, + "mimic": 23150, + "fran": 23151, + "pendant": 23152, + "dhabi": 23153, + "musa": 23154, + "##nington": 23155, + "congratulations": 23156, + "argent": 23157, + "darrell": 23158, + "concussion": 23159, + "losers": 23160, + "regrets": 23161, + "thessaloniki": 23162, + "reversal": 23163, + "donaldson": 23164, + "hardwood": 23165, + "thence": 23166, + "achilles": 23167, + "ritter": 23168, + "##eran": 23169, + "demonic": 23170, + "jurgen": 23171, + "prophets": 23172, + "goethe": 23173, + "eki": 23174, + "classmate": 23175, + "buff": 23176, + "##cking": 23177, + "yank": 23178, + "irrational": 23179, + "##inging": 23180, + "perished": 23181, + "seductive": 23182, + "qur": 23183, + "sourced": 23184, + "##crat": 23185, + "##typic": 23186, + "mustard": 23187, + "ravine": 23188, + "barre": 23189, + "horizontally": 23190, + "characterization": 23191, + "phylogenetic": 23192, + "boise": 23193, + "##dit": 23194, + "##runner": 23195, + "##tower": 23196, + "brutally": 23197, + "intercourse": 23198, + "seduce": 23199, + "##bbing": 23200, + "fay": 23201, + "ferris": 23202, + "ogden": 23203, + "amar": 23204, + "nik": 23205, + "unarmed": 23206, + "##inator": 23207, + "evaluating": 23208, + "kyrgyzstan": 23209, + "sweetness": 23210, + "##lford": 23211, + "##oki": 23212, + "mccormick": 23213, + "meiji": 23214, + "notoriety": 23215, + "stimulate": 23216, + "disrupt": 23217, + "figuring": 23218, + "instructional": 23219, + "mcgrath": 23220, + "##zoo": 23221, + "groundbreaking": 23222, + "##lto": 23223, + "flinch": 23224, + "khorasan": 23225, + "agrarian": 23226, + "bengals": 23227, + "mixer": 23228, + "radiating": 23229, + "##sov": 23230, + "ingram": 23231, + "pitchers": 23232, + "nad": 23233, + "tariff": 23234, + "##cript": 23235, + "tata": 23236, + "##codes": 23237, + "##emi": 23238, + "##ungen": 23239, + "appellate": 23240, + "lehigh": 23241, + "##bled": 23242, + "##giri": 23243, + "brawl": 23244, + "duct": 23245, + "texans": 23246, + "##ciation": 23247, + "##ropolis": 23248, + "skipper": 23249, + "speculative": 23250, + "vomit": 23251, + "doctrines": 23252, + "stresses": 23253, + "253": 23254, + "davy": 23255, + "graders": 23256, + "whitehead": 23257, + "jozef": 23258, + "timely": 23259, + "cumulative": 23260, + "haryana": 23261, + "paints": 23262, + "appropriately": 23263, + "boon": 23264, + "cactus": 23265, + "##ales": 23266, + "##pid": 23267, + "dow": 23268, + "legions": 23269, + "##pit": 23270, + "perceptions": 23271, + "1730": 23272, + "picturesque": 23273, + "##yse": 23274, + "periphery": 23275, + "rune": 23276, + "wr": 23277, + "##aha": 23278, + "celtics": 23279, + "sentencing": 23280, + "whoa": 23281, + "##erin": 23282, + "confirms": 23283, + "variance": 23284, + "425": 23285, + "moines": 23286, + "mathews": 23287, + "spade": 23288, + "rave": 23289, + "m1": 23290, + "fronted": 23291, + "fx": 23292, + "blending": 23293, + "alleging": 23294, + "reared": 23295, + "##gl": 23296, + "237": 23297, + "##paper": 23298, + "grassroots": 23299, + "eroded": 23300, + "##free": 23301, + "##physical": 23302, + "directs": 23303, + "ordeal": 23304, + "##sław": 23305, + "accelerate": 23306, + "hacker": 23307, + "rooftop": 23308, + "##inia": 23309, + "lev": 23310, + "buys": 23311, + "cebu": 23312, + "devote": 23313, + "##lce": 23314, + "specialising": 23315, + "##ulsion": 23316, + "choreographed": 23317, + "repetition": 23318, + "warehouses": 23319, + "##ryl": 23320, + "paisley": 23321, + "tuscany": 23322, + "analogy": 23323, + "sorcerer": 23324, + "hash": 23325, + "huts": 23326, + "shards": 23327, + "descends": 23328, + "exclude": 23329, + "nix": 23330, + "chaplin": 23331, + "gaga": 23332, + "ito": 23333, + "vane": 23334, + "##drich": 23335, + "causeway": 23336, + "misconduct": 23337, + "limo": 23338, + "orchestrated": 23339, + "glands": 23340, + "jana": 23341, + "##kot": 23342, + "u2": 23343, + "##mple": 23344, + "##sons": 23345, + "branching": 23346, + "contrasts": 23347, + "scoop": 23348, + "longed": 23349, + "##virus": 23350, + "chattanooga": 23351, + "##75": 23352, + "syrup": 23353, + "cornerstone": 23354, + "##tized": 23355, + "##mind": 23356, + "##iaceae": 23357, + "careless": 23358, + "precedence": 23359, + "frescoes": 23360, + "##uet": 23361, + "chilled": 23362, + "consult": 23363, + "modelled": 23364, + "snatch": 23365, + "peat": 23366, + "##thermal": 23367, + "caucasian": 23368, + "humane": 23369, + "relaxation": 23370, + "spins": 23371, + "temperance": 23372, + "##lbert": 23373, + "occupations": 23374, + "lambda": 23375, + "hybrids": 23376, + "moons": 23377, + "mp3": 23378, + "##oese": 23379, + "247": 23380, + "rolf": 23381, + "societal": 23382, + "yerevan": 23383, + "ness": 23384, + "##ssler": 23385, + "befriended": 23386, + "mechanized": 23387, + "nominate": 23388, + "trough": 23389, + "boasted": 23390, + "cues": 23391, + "seater": 23392, + "##hom": 23393, + "bends": 23394, + "##tangle": 23395, + "conductors": 23396, + "emptiness": 23397, + "##lmer": 23398, + "eurasian": 23399, + "adriatic": 23400, + "tian": 23401, + "##cie": 23402, + "anxiously": 23403, + "lark": 23404, + "propellers": 23405, + "chichester": 23406, + "jock": 23407, + "ev": 23408, + "2a": 23409, + "##holding": 23410, + "credible": 23411, + "recounts": 23412, + "tori": 23413, + "loyalist": 23414, + "abduction": 23415, + "##hoot": 23416, + "##redo": 23417, + "nepali": 23418, + "##mite": 23419, + "ventral": 23420, + "tempting": 23421, + "##ango": 23422, + "##crats": 23423, + "steered": 23424, + "##wice": 23425, + "javelin": 23426, + "dipping": 23427, + "laborers": 23428, + "prentice": 23429, + "looming": 23430, + "titanium": 23431, + "##ː": 23432, + "badges": 23433, + "emir": 23434, + "tensor": 23435, + "##ntation": 23436, + "egyptians": 23437, + "rash": 23438, + "denies": 23439, + "hawthorne": 23440, + "lombard": 23441, + "showers": 23442, + "wehrmacht": 23443, + "dietary": 23444, + "trojan": 23445, + "##reus": 23446, + "welles": 23447, + "executing": 23448, + "horseshoe": 23449, + "lifeboat": 23450, + "##lak": 23451, + "elsa": 23452, + "infirmary": 23453, + "nearing": 23454, + "roberta": 23455, + "boyer": 23456, + "mutter": 23457, + "trillion": 23458, + "joanne": 23459, + "##fine": 23460, + "##oked": 23461, + "sinks": 23462, + "vortex": 23463, + "uruguayan": 23464, + "clasp": 23465, + "sirius": 23466, + "##block": 23467, + "accelerator": 23468, + "prohibit": 23469, + "sunken": 23470, + "byu": 23471, + "chronological": 23472, + "diplomats": 23473, + "ochreous": 23474, + "510": 23475, + "symmetrical": 23476, + "1644": 23477, + "maia": 23478, + "##tology": 23479, + "salts": 23480, + "reigns": 23481, + "atrocities": 23482, + "##ия": 23483, + "hess": 23484, + "bared": 23485, + "issn": 23486, + "##vyn": 23487, + "cater": 23488, + "saturated": 23489, + "##cycle": 23490, + "##isse": 23491, + "sable": 23492, + "voyager": 23493, + "dyer": 23494, + "yusuf": 23495, + "##inge": 23496, + "fountains": 23497, + "wolff": 23498, + "##39": 23499, + "##nni": 23500, + "engraving": 23501, + "rollins": 23502, + "atheist": 23503, + "ominous": 23504, + "##ault": 23505, + "herr": 23506, + "chariot": 23507, + "martina": 23508, + "strung": 23509, + "##fell": 23510, + "##farlane": 23511, + "horrific": 23512, + "sahib": 23513, + "gazes": 23514, + "saetan": 23515, + "erased": 23516, + "ptolemy": 23517, + "##olic": 23518, + "flushing": 23519, + "lauderdale": 23520, + "analytic": 23521, + "##ices": 23522, + "530": 23523, + "navarro": 23524, + "beak": 23525, + "gorilla": 23526, + "herrera": 23527, + "broom": 23528, + "guadalupe": 23529, + "raiding": 23530, + "sykes": 23531, + "311": 23532, + "bsc": 23533, + "deliveries": 23534, + "1720": 23535, + "invasions": 23536, + "carmichael": 23537, + "tajikistan": 23538, + "thematic": 23539, + "ecumenical": 23540, + "sentiments": 23541, + "onstage": 23542, + "##rians": 23543, + "##brand": 23544, + "##sume": 23545, + "catastrophic": 23546, + "flanks": 23547, + "molten": 23548, + "##arns": 23549, + "waller": 23550, + "aimee": 23551, + "terminating": 23552, + "##icing": 23553, + "alternately": 23554, + "##oche": 23555, + "nehru": 23556, + "printers": 23557, + "outraged": 23558, + "##eving": 23559, + "empires": 23560, + "template": 23561, + "banners": 23562, + "repetitive": 23563, + "za": 23564, + "##oise": 23565, + "vegetarian": 23566, + "##tell": 23567, + "guiana": 23568, + "opt": 23569, + "cavendish": 23570, + "lucknow": 23571, + "synthesized": 23572, + "##hani": 23573, + "##mada": 23574, + "finalized": 23575, + "##ctable": 23576, + "fictitious": 23577, + "mayoral": 23578, + "unreliable": 23579, + "##enham": 23580, + "embracing": 23581, + "peppers": 23582, + "rbis": 23583, + "##chio": 23584, + "##neo": 23585, + "inhibition": 23586, + "slashed": 23587, + "togo": 23588, + "orderly": 23589, + "embroidered": 23590, + "safari": 23591, + "salty": 23592, + "236": 23593, + "barron": 23594, + "benito": 23595, + "totaled": 23596, + "##dak": 23597, + "pubs": 23598, + "simulated": 23599, + "caden": 23600, + "devin": 23601, + "tolkien": 23602, + "momma": 23603, + "welding": 23604, + "sesame": 23605, + "##ept": 23606, + "gottingen": 23607, + "hardness": 23608, + "630": 23609, + "shaman": 23610, + "temeraire": 23611, + "620": 23612, + "adequately": 23613, + "pediatric": 23614, + "##kit": 23615, + "ck": 23616, + "assertion": 23617, + "radicals": 23618, + "composure": 23619, + "cadence": 23620, + "seafood": 23621, + "beaufort": 23622, + "lazarus": 23623, + "mani": 23624, + "warily": 23625, + "cunning": 23626, + "kurdistan": 23627, + "249": 23628, + "cantata": 23629, + "##kir": 23630, + "ares": 23631, + "##41": 23632, + "##clusive": 23633, + "nape": 23634, + "townland": 23635, + "geared": 23636, + "insulted": 23637, + "flutter": 23638, + "boating": 23639, + "violate": 23640, + "draper": 23641, + "dumping": 23642, + "malmo": 23643, + "##hh": 23644, + "##romatic": 23645, + "firearm": 23646, + "alta": 23647, + "bono": 23648, + "obscured": 23649, + "##clave": 23650, + "exceeds": 23651, + "panorama": 23652, + "unbelievable": 23653, + "##train": 23654, + "preschool": 23655, + "##essed": 23656, + "disconnected": 23657, + "installing": 23658, + "rescuing": 23659, + "secretaries": 23660, + "accessibility": 23661, + "##castle": 23662, + "##drive": 23663, + "##ifice": 23664, + "##film": 23665, + "bouts": 23666, + "slug": 23667, + "waterway": 23668, + "mindanao": 23669, + "##buro": 23670, + "##ratic": 23671, + "halves": 23672, + "##ل": 23673, + "calming": 23674, + "liter": 23675, + "maternity": 23676, + "adorable": 23677, + "bragg": 23678, + "electrification": 23679, + "mcc": 23680, + "##dote": 23681, + "roxy": 23682, + "schizophrenia": 23683, + "##body": 23684, + "munoz": 23685, + "kaye": 23686, + "whaling": 23687, + "239": 23688, + "mil": 23689, + "tingling": 23690, + "tolerant": 23691, + "##ago": 23692, + "unconventional": 23693, + "volcanoes": 23694, + "##finder": 23695, + "deportivo": 23696, + "##llie": 23697, + "robson": 23698, + "kaufman": 23699, + "neuroscience": 23700, + "wai": 23701, + "deportation": 23702, + "masovian": 23703, + "scraping": 23704, + "converse": 23705, + "##bh": 23706, + "hacking": 23707, + "bulge": 23708, + "##oun": 23709, + "administratively": 23710, + "yao": 23711, + "580": 23712, + "amp": 23713, + "mammoth": 23714, + "booster": 23715, + "claremont": 23716, + "hooper": 23717, + "nomenclature": 23718, + "pursuits": 23719, + "mclaughlin": 23720, + "melinda": 23721, + "##sul": 23722, + "catfish": 23723, + "barclay": 23724, + "substrates": 23725, + "taxa": 23726, + "zee": 23727, + "originals": 23728, + "kimberly": 23729, + "packets": 23730, + "padma": 23731, + "##ality": 23732, + "borrowing": 23733, + "ostensibly": 23734, + "solvent": 23735, + "##bri": 23736, + "##genesis": 23737, + "##mist": 23738, + "lukas": 23739, + "shreveport": 23740, + "veracruz": 23741, + "##ь": 23742, + "##lou": 23743, + "##wives": 23744, + "cheney": 23745, + "tt": 23746, + "anatolia": 23747, + "hobbs": 23748, + "##zyn": 23749, + "cyclic": 23750, + "radiant": 23751, + "alistair": 23752, + "greenish": 23753, + "siena": 23754, + "dat": 23755, + "independents": 23756, + "##bation": 23757, + "conform": 23758, + "pieter": 23759, + "hyper": 23760, + "applicant": 23761, + "bradshaw": 23762, + "spores": 23763, + "telangana": 23764, + "vinci": 23765, + "inexpensive": 23766, + "nuclei": 23767, + "322": 23768, + "jang": 23769, + "nme": 23770, + "soho": 23771, + "spd": 23772, + "##ign": 23773, + "cradled": 23774, + "receptionist": 23775, + "pow": 23776, + "##43": 23777, + "##rika": 23778, + "fascism": 23779, + "##ifer": 23780, + "experimenting": 23781, + "##ading": 23782, + "##iec": 23783, + "##region": 23784, + "345": 23785, + "jocelyn": 23786, + "maris": 23787, + "stair": 23788, + "nocturnal": 23789, + "toro": 23790, + "constabulary": 23791, + "elgin": 23792, + "##kker": 23793, + "msc": 23794, + "##giving": 23795, + "##schen": 23796, + "##rase": 23797, + "doherty": 23798, + "doping": 23799, + "sarcastically": 23800, + "batter": 23801, + "maneuvers": 23802, + "##cano": 23803, + "##apple": 23804, + "##gai": 23805, + "##git": 23806, + "intrinsic": 23807, + "##nst": 23808, + "##stor": 23809, + "1753": 23810, + "showtime": 23811, + "cafes": 23812, + "gasps": 23813, + "lviv": 23814, + "ushered": 23815, + "##thed": 23816, + "fours": 23817, + "restart": 23818, + "astonishment": 23819, + "transmitting": 23820, + "flyer": 23821, + "shrugs": 23822, + "##sau": 23823, + "intriguing": 23824, + "cones": 23825, + "dictated": 23826, + "mushrooms": 23827, + "medial": 23828, + "##kovsky": 23829, + "##elman": 23830, + "escorting": 23831, + "gaped": 23832, + "##26": 23833, + "godfather": 23834, + "##door": 23835, + "##sell": 23836, + "djs": 23837, + "recaptured": 23838, + "timetable": 23839, + "vila": 23840, + "1710": 23841, + "3a": 23842, + "aerodrome": 23843, + "mortals": 23844, + "scientology": 23845, + "##orne": 23846, + "angelina": 23847, + "mag": 23848, + "convection": 23849, + "unpaid": 23850, + "insertion": 23851, + "intermittent": 23852, + "lego": 23853, + "##nated": 23854, + "endeavor": 23855, + "kota": 23856, + "pereira": 23857, + "##lz": 23858, + "304": 23859, + "bwv": 23860, + "glamorgan": 23861, + "insults": 23862, + "agatha": 23863, + "fey": 23864, + "##cend": 23865, + "fleetwood": 23866, + "mahogany": 23867, + "protruding": 23868, + "steamship": 23869, + "zeta": 23870, + "##arty": 23871, + "mcguire": 23872, + "suspense": 23873, + "##sphere": 23874, + "advising": 23875, + "urges": 23876, + "##wala": 23877, + "hurriedly": 23878, + "meteor": 23879, + "gilded": 23880, + "inline": 23881, + "arroyo": 23882, + "stalker": 23883, + "##oge": 23884, + "excitedly": 23885, + "revered": 23886, + "##cure": 23887, + "earle": 23888, + "introductory": 23889, + "##break": 23890, + "##ilde": 23891, + "mutants": 23892, + "puff": 23893, + "pulses": 23894, + "reinforcement": 23895, + "##haling": 23896, + "curses": 23897, + "lizards": 23898, + "stalk": 23899, + "correlated": 23900, + "##fixed": 23901, + "fallout": 23902, + "macquarie": 23903, + "##unas": 23904, + "bearded": 23905, + "denton": 23906, + "heaving": 23907, + "802": 23908, + "##ocation": 23909, + "winery": 23910, + "assign": 23911, + "dortmund": 23912, + "##lkirk": 23913, + "everest": 23914, + "invariant": 23915, + "charismatic": 23916, + "susie": 23917, + "##elling": 23918, + "bled": 23919, + "lesley": 23920, + "telegram": 23921, + "sumner": 23922, + "bk": 23923, + "##ogen": 23924, + "##к": 23925, + "wilcox": 23926, + "needy": 23927, + "colbert": 23928, + "duval": 23929, + "##iferous": 23930, + "##mbled": 23931, + "allotted": 23932, + "attends": 23933, + "imperative": 23934, + "##hita": 23935, + "replacements": 23936, + "hawker": 23937, + "##inda": 23938, + "insurgency": 23939, + "##zee": 23940, + "##eke": 23941, + "casts": 23942, + "##yla": 23943, + "680": 23944, + "ives": 23945, + "transitioned": 23946, + "##pack": 23947, + "##powering": 23948, + "authoritative": 23949, + "baylor": 23950, + "flex": 23951, + "cringed": 23952, + "plaintiffs": 23953, + "woodrow": 23954, + "##skie": 23955, + "drastic": 23956, + "ape": 23957, + "aroma": 23958, + "unfolded": 23959, + "commotion": 23960, + "nt": 23961, + "preoccupied": 23962, + "theta": 23963, + "routines": 23964, + "lasers": 23965, + "privatization": 23966, + "wand": 23967, + "domino": 23968, + "ek": 23969, + "clenching": 23970, + "nsa": 23971, + "strategically": 23972, + "showered": 23973, + "bile": 23974, + "handkerchief": 23975, + "pere": 23976, + "storing": 23977, + "christophe": 23978, + "insulting": 23979, + "316": 23980, + "nakamura": 23981, + "romani": 23982, + "asiatic": 23983, + "magdalena": 23984, + "palma": 23985, + "cruises": 23986, + "stripping": 23987, + "405": 23988, + "konstantin": 23989, + "soaring": 23990, + "##berman": 23991, + "colloquially": 23992, + "forerunner": 23993, + "havilland": 23994, + "incarcerated": 23995, + "parasites": 23996, + "sincerity": 23997, + "##utus": 23998, + "disks": 23999, + "plank": 24000, + "saigon": 24001, + "##ining": 24002, + "corbin": 24003, + "homo": 24004, + "ornaments": 24005, + "powerhouse": 24006, + "##tlement": 24007, + "chong": 24008, + "fastened": 24009, + "feasibility": 24010, + "idf": 24011, + "morphological": 24012, + "usable": 24013, + "##nish": 24014, + "##zuki": 24015, + "aqueduct": 24016, + "jaguars": 24017, + "keepers": 24018, + "##flies": 24019, + "aleksandr": 24020, + "faust": 24021, + "assigns": 24022, + "ewing": 24023, + "bacterium": 24024, + "hurled": 24025, + "tricky": 24026, + "hungarians": 24027, + "integers": 24028, + "wallis": 24029, + "321": 24030, + "yamaha": 24031, + "##isha": 24032, + "hushed": 24033, + "oblivion": 24034, + "aviator": 24035, + "evangelist": 24036, + "friars": 24037, + "##eller": 24038, + "monograph": 24039, + "ode": 24040, + "##nary": 24041, + "airplanes": 24042, + "labourers": 24043, + "charms": 24044, + "##nee": 24045, + "1661": 24046, + "hagen": 24047, + "tnt": 24048, + "rudder": 24049, + "fiesta": 24050, + "transcript": 24051, + "dorothea": 24052, + "ska": 24053, + "inhibitor": 24054, + "maccabi": 24055, + "retorted": 24056, + "raining": 24057, + "encompassed": 24058, + "clauses": 24059, + "menacing": 24060, + "1642": 24061, + "lineman": 24062, + "##gist": 24063, + "vamps": 24064, + "##ape": 24065, + "##dick": 24066, + "gloom": 24067, + "##rera": 24068, + "dealings": 24069, + "easing": 24070, + "seekers": 24071, + "##nut": 24072, + "##pment": 24073, + "helens": 24074, + "unmanned": 24075, + "##anu": 24076, + "##isson": 24077, + "basics": 24078, + "##amy": 24079, + "##ckman": 24080, + "adjustments": 24081, + "1688": 24082, + "brutality": 24083, + "horne": 24084, + "##zell": 24085, + "sui": 24086, + "##55": 24087, + "##mable": 24088, + "aggregator": 24089, + "##thal": 24090, + "rhino": 24091, + "##drick": 24092, + "##vira": 24093, + "counters": 24094, + "zoom": 24095, + "##01": 24096, + "##rting": 24097, + "mn": 24098, + "montenegrin": 24099, + "packard": 24100, + "##unciation": 24101, + "##♭": 24102, + "##kki": 24103, + "reclaim": 24104, + "scholastic": 24105, + "thugs": 24106, + "pulsed": 24107, + "##icia": 24108, + "syriac": 24109, + "quan": 24110, + "saddam": 24111, + "banda": 24112, + "kobe": 24113, + "blaming": 24114, + "buddies": 24115, + "dissent": 24116, + "##lusion": 24117, + "##usia": 24118, + "corbett": 24119, + "jaya": 24120, + "delle": 24121, + "erratic": 24122, + "lexie": 24123, + "##hesis": 24124, + "435": 24125, + "amiga": 24126, + "hermes": 24127, + "##pressing": 24128, + "##leen": 24129, + "chapels": 24130, + "gospels": 24131, + "jamal": 24132, + "##uating": 24133, + "compute": 24134, + "revolving": 24135, + "warp": 24136, + "##sso": 24137, + "##thes": 24138, + "armory": 24139, + "##eras": 24140, + "##gol": 24141, + "antrim": 24142, + "loki": 24143, + "##kow": 24144, + "##asian": 24145, + "##good": 24146, + "##zano": 24147, + "braid": 24148, + "handwriting": 24149, + "subdistrict": 24150, + "funky": 24151, + "pantheon": 24152, + "##iculate": 24153, + "concurrency": 24154, + "estimation": 24155, + "improper": 24156, + "juliana": 24157, + "##his": 24158, + "newcomers": 24159, + "johnstone": 24160, + "staten": 24161, + "communicated": 24162, + "##oco": 24163, + "##alle": 24164, + "sausage": 24165, + "stormy": 24166, + "##stered": 24167, + "##tters": 24168, + "superfamily": 24169, + "##grade": 24170, + "acidic": 24171, + "collateral": 24172, + "tabloid": 24173, + "##oped": 24174, + "##rza": 24175, + "bladder": 24176, + "austen": 24177, + "##ellant": 24178, + "mcgraw": 24179, + "##hay": 24180, + "hannibal": 24181, + "mein": 24182, + "aquino": 24183, + "lucifer": 24184, + "wo": 24185, + "badger": 24186, + "boar": 24187, + "cher": 24188, + "christensen": 24189, + "greenberg": 24190, + "interruption": 24191, + "##kken": 24192, + "jem": 24193, + "244": 24194, + "mocked": 24195, + "bottoms": 24196, + "cambridgeshire": 24197, + "##lide": 24198, + "sprawling": 24199, + "##bbly": 24200, + "eastwood": 24201, + "ghent": 24202, + "synth": 24203, + "##buck": 24204, + "advisers": 24205, + "##bah": 24206, + "nominally": 24207, + "hapoel": 24208, + "qu": 24209, + "daggers": 24210, + "estranged": 24211, + "fabricated": 24212, + "towels": 24213, + "vinnie": 24214, + "wcw": 24215, + "misunderstanding": 24216, + "anglia": 24217, + "nothin": 24218, + "unmistakable": 24219, + "##dust": 24220, + "##lova": 24221, + "chilly": 24222, + "marquette": 24223, + "truss": 24224, + "##edge": 24225, + "##erine": 24226, + "reece": 24227, + "##lty": 24228, + "##chemist": 24229, + "##connected": 24230, + "272": 24231, + "308": 24232, + "41st": 24233, + "bash": 24234, + "raion": 24235, + "waterfalls": 24236, + "##ump": 24237, + "##main": 24238, + "labyrinth": 24239, + "queue": 24240, + "theorist": 24241, + "##istle": 24242, + "bharatiya": 24243, + "flexed": 24244, + "soundtracks": 24245, + "rooney": 24246, + "leftist": 24247, + "patrolling": 24248, + "wharton": 24249, + "plainly": 24250, + "alleviate": 24251, + "eastman": 24252, + "schuster": 24253, + "topographic": 24254, + "engages": 24255, + "immensely": 24256, + "unbearable": 24257, + "fairchild": 24258, + "1620": 24259, + "dona": 24260, + "lurking": 24261, + "parisian": 24262, + "oliveira": 24263, + "ia": 24264, + "indictment": 24265, + "hahn": 24266, + "bangladeshi": 24267, + "##aster": 24268, + "vivo": 24269, + "##uming": 24270, + "##ential": 24271, + "antonia": 24272, + "expects": 24273, + "indoors": 24274, + "kildare": 24275, + "harlan": 24276, + "##logue": 24277, + "##ogenic": 24278, + "##sities": 24279, + "forgiven": 24280, + "##wat": 24281, + "childish": 24282, + "tavi": 24283, + "##mide": 24284, + "##orra": 24285, + "plausible": 24286, + "grimm": 24287, + "successively": 24288, + "scooted": 24289, + "##bola": 24290, + "##dget": 24291, + "##rith": 24292, + "spartans": 24293, + "emery": 24294, + "flatly": 24295, + "azure": 24296, + "epilogue": 24297, + "##wark": 24298, + "flourish": 24299, + "##iny": 24300, + "##tracted": 24301, + "##overs": 24302, + "##oshi": 24303, + "bestseller": 24304, + "distressed": 24305, + "receipt": 24306, + "spitting": 24307, + "hermit": 24308, + "topological": 24309, + "##cot": 24310, + "drilled": 24311, + "subunit": 24312, + "francs": 24313, + "##layer": 24314, + "eel": 24315, + "##fk": 24316, + "##itas": 24317, + "octopus": 24318, + "footprint": 24319, + "petitions": 24320, + "ufo": 24321, + "##say": 24322, + "##foil": 24323, + "interfering": 24324, + "leaking": 24325, + "palo": 24326, + "##metry": 24327, + "thistle": 24328, + "valiant": 24329, + "##pic": 24330, + "narayan": 24331, + "mcpherson": 24332, + "##fast": 24333, + "gonzales": 24334, + "##ym": 24335, + "##enne": 24336, + "dustin": 24337, + "novgorod": 24338, + "solos": 24339, + "##zman": 24340, + "doin": 24341, + "##raph": 24342, + "##patient": 24343, + "##meyer": 24344, + "soluble": 24345, + "ashland": 24346, + "cuffs": 24347, + "carole": 24348, + "pendleton": 24349, + "whistling": 24350, + "vassal": 24351, + "##river": 24352, + "deviation": 24353, + "revisited": 24354, + "constituents": 24355, + "rallied": 24356, + "rotate": 24357, + "loomed": 24358, + "##eil": 24359, + "##nting": 24360, + "amateurs": 24361, + "augsburg": 24362, + "auschwitz": 24363, + "crowns": 24364, + "skeletons": 24365, + "##cona": 24366, + "bonnet": 24367, + "257": 24368, + "dummy": 24369, + "globalization": 24370, + "simeon": 24371, + "sleeper": 24372, + "mandal": 24373, + "differentiated": 24374, + "##crow": 24375, + "##mare": 24376, + "milne": 24377, + "bundled": 24378, + "exasperated": 24379, + "talmud": 24380, + "owes": 24381, + "segregated": 24382, + "##feng": 24383, + "##uary": 24384, + "dentist": 24385, + "piracy": 24386, + "props": 24387, + "##rang": 24388, + "devlin": 24389, + "##torium": 24390, + "malicious": 24391, + "paws": 24392, + "##laid": 24393, + "dependency": 24394, + "##ergy": 24395, + "##fers": 24396, + "##enna": 24397, + "258": 24398, + "pistons": 24399, + "rourke": 24400, + "jed": 24401, + "grammatical": 24402, + "tres": 24403, + "maha": 24404, + "wig": 24405, + "512": 24406, + "ghostly": 24407, + "jayne": 24408, + "##achal": 24409, + "##creen": 24410, + "##ilis": 24411, + "##lins": 24412, + "##rence": 24413, + "designate": 24414, + "##with": 24415, + "arrogance": 24416, + "cambodian": 24417, + "clones": 24418, + "showdown": 24419, + "throttle": 24420, + "twain": 24421, + "##ception": 24422, + "lobes": 24423, + "metz": 24424, + "nagoya": 24425, + "335": 24426, + "braking": 24427, + "##furt": 24428, + "385": 24429, + "roaming": 24430, + "##minster": 24431, + "amin": 24432, + "crippled": 24433, + "##37": 24434, + "##llary": 24435, + "indifferent": 24436, + "hoffmann": 24437, + "idols": 24438, + "intimidating": 24439, + "1751": 24440, + "261": 24441, + "influenza": 24442, + "memo": 24443, + "onions": 24444, + "1748": 24445, + "bandage": 24446, + "consciously": 24447, + "##landa": 24448, + "##rage": 24449, + "clandestine": 24450, + "observes": 24451, + "swiped": 24452, + "tangle": 24453, + "##ener": 24454, + "##jected": 24455, + "##trum": 24456, + "##bill": 24457, + "##lta": 24458, + "hugs": 24459, + "congresses": 24460, + "josiah": 24461, + "spirited": 24462, + "##dek": 24463, + "humanist": 24464, + "managerial": 24465, + "filmmaking": 24466, + "inmate": 24467, + "rhymes": 24468, + "debuting": 24469, + "grimsby": 24470, + "ur": 24471, + "##laze": 24472, + "duplicate": 24473, + "vigor": 24474, + "##tf": 24475, + "republished": 24476, + "bolshevik": 24477, + "refurbishment": 24478, + "antibiotics": 24479, + "martini": 24480, + "methane": 24481, + "newscasts": 24482, + "royale": 24483, + "horizons": 24484, + "levant": 24485, + "iain": 24486, + "visas": 24487, + "##ischen": 24488, + "paler": 24489, + "##around": 24490, + "manifestation": 24491, + "snuck": 24492, + "alf": 24493, + "chop": 24494, + "futile": 24495, + "pedestal": 24496, + "rehab": 24497, + "##kat": 24498, + "bmg": 24499, + "kerman": 24500, + "res": 24501, + "fairbanks": 24502, + "jarrett": 24503, + "abstraction": 24504, + "saharan": 24505, + "##zek": 24506, + "1746": 24507, + "procedural": 24508, + "clearer": 24509, + "kincaid": 24510, + "sash": 24511, + "luciano": 24512, + "##ffey": 24513, + "crunch": 24514, + "helmut": 24515, + "##vara": 24516, + "revolutionaries": 24517, + "##tute": 24518, + "creamy": 24519, + "leach": 24520, + "##mmon": 24521, + "1747": 24522, + "permitting": 24523, + "nes": 24524, + "plight": 24525, + "wendell": 24526, + "##lese": 24527, + "contra": 24528, + "ts": 24529, + "clancy": 24530, + "ipa": 24531, + "mach": 24532, + "staples": 24533, + "autopsy": 24534, + "disturbances": 24535, + "nueva": 24536, + "karin": 24537, + "pontiac": 24538, + "##uding": 24539, + "proxy": 24540, + "venerable": 24541, + "haunt": 24542, + "leto": 24543, + "bergman": 24544, + "expands": 24545, + "##helm": 24546, + "wal": 24547, + "##pipe": 24548, + "canning": 24549, + "celine": 24550, + "cords": 24551, + "obesity": 24552, + "##enary": 24553, + "intrusion": 24554, + "planner": 24555, + "##phate": 24556, + "reasoned": 24557, + "sequencing": 24558, + "307": 24559, + "harrow": 24560, + "##chon": 24561, + "##dora": 24562, + "marred": 24563, + "mcintyre": 24564, + "repay": 24565, + "tarzan": 24566, + "darting": 24567, + "248": 24568, + "harrisburg": 24569, + "margarita": 24570, + "repulsed": 24571, + "##hur": 24572, + "##lding": 24573, + "belinda": 24574, + "hamburger": 24575, + "novo": 24576, + "compliant": 24577, + "runways": 24578, + "bingham": 24579, + "registrar": 24580, + "skyscraper": 24581, + "ic": 24582, + "cuthbert": 24583, + "improvisation": 24584, + "livelihood": 24585, + "##corp": 24586, + "##elial": 24587, + "admiring": 24588, + "##dened": 24589, + "sporadic": 24590, + "believer": 24591, + "casablanca": 24592, + "popcorn": 24593, + "##29": 24594, + "asha": 24595, + "shovel": 24596, + "##bek": 24597, + "##dice": 24598, + "coiled": 24599, + "tangible": 24600, + "##dez": 24601, + "casper": 24602, + "elsie": 24603, + "resin": 24604, + "tenderness": 24605, + "rectory": 24606, + "##ivision": 24607, + "avail": 24608, + "sonar": 24609, + "##mori": 24610, + "boutique": 24611, + "##dier": 24612, + "guerre": 24613, + "bathed": 24614, + "upbringing": 24615, + "vaulted": 24616, + "sandals": 24617, + "blessings": 24618, + "##naut": 24619, + "##utnant": 24620, + "1680": 24621, + "306": 24622, + "foxes": 24623, + "pia": 24624, + "corrosion": 24625, + "hesitantly": 24626, + "confederates": 24627, + "crystalline": 24628, + "footprints": 24629, + "shapiro": 24630, + "tirana": 24631, + "valentin": 24632, + "drones": 24633, + "45th": 24634, + "microscope": 24635, + "shipments": 24636, + "texted": 24637, + "inquisition": 24638, + "wry": 24639, + "guernsey": 24640, + "unauthorized": 24641, + "resigning": 24642, + "760": 24643, + "ripple": 24644, + "schubert": 24645, + "stu": 24646, + "reassure": 24647, + "felony": 24648, + "##ardo": 24649, + "brittle": 24650, + "koreans": 24651, + "##havan": 24652, + "##ives": 24653, + "dun": 24654, + "implicit": 24655, + "tyres": 24656, + "##aldi": 24657, + "##lth": 24658, + "magnolia": 24659, + "##ehan": 24660, + "##puri": 24661, + "##poulos": 24662, + "aggressively": 24663, + "fei": 24664, + "gr": 24665, + "familiarity": 24666, + "##poo": 24667, + "indicative": 24668, + "##trust": 24669, + "fundamentally": 24670, + "jimmie": 24671, + "overrun": 24672, + "395": 24673, + "anchors": 24674, + "moans": 24675, + "##opus": 24676, + "britannia": 24677, + "armagh": 24678, + "##ggle": 24679, + "purposely": 24680, + "seizing": 24681, + "##vao": 24682, + "bewildered": 24683, + "mundane": 24684, + "avoidance": 24685, + "cosmopolitan": 24686, + "geometridae": 24687, + "quartermaster": 24688, + "caf": 24689, + "415": 24690, + "chatter": 24691, + "engulfed": 24692, + "gleam": 24693, + "purge": 24694, + "##icate": 24695, + "juliette": 24696, + "jurisprudence": 24697, + "guerra": 24698, + "revisions": 24699, + "##bn": 24700, + "casimir": 24701, + "brew": 24702, + "##jm": 24703, + "1749": 24704, + "clapton": 24705, + "cloudy": 24706, + "conde": 24707, + "hermitage": 24708, + "278": 24709, + "simulations": 24710, + "torches": 24711, + "vincenzo": 24712, + "matteo": 24713, + "##rill": 24714, + "hidalgo": 24715, + "booming": 24716, + "westbound": 24717, + "accomplishment": 24718, + "tentacles": 24719, + "unaffected": 24720, + "##sius": 24721, + "annabelle": 24722, + "flopped": 24723, + "sloping": 24724, + "##litz": 24725, + "dreamer": 24726, + "interceptor": 24727, + "vu": 24728, + "##loh": 24729, + "consecration": 24730, + "copying": 24731, + "messaging": 24732, + "breaker": 24733, + "climates": 24734, + "hospitalized": 24735, + "1752": 24736, + "torino": 24737, + "afternoons": 24738, + "winfield": 24739, + "witnessing": 24740, + "##teacher": 24741, + "breakers": 24742, + "choirs": 24743, + "sawmill": 24744, + "coldly": 24745, + "##ege": 24746, + "sipping": 24747, + "haste": 24748, + "uninhabited": 24749, + "conical": 24750, + "bibliography": 24751, + "pamphlets": 24752, + "severn": 24753, + "edict": 24754, + "##oca": 24755, + "deux": 24756, + "illnesses": 24757, + "grips": 24758, + "##pl": 24759, + "rehearsals": 24760, + "sis": 24761, + "thinkers": 24762, + "tame": 24763, + "##keepers": 24764, + "1690": 24765, + "acacia": 24766, + "reformer": 24767, + "##osed": 24768, + "##rys": 24769, + "shuffling": 24770, + "##iring": 24771, + "##shima": 24772, + "eastbound": 24773, + "ionic": 24774, + "rhea": 24775, + "flees": 24776, + "littered": 24777, + "##oum": 24778, + "rocker": 24779, + "vomiting": 24780, + "groaning": 24781, + "champ": 24782, + "overwhelmingly": 24783, + "civilizations": 24784, + "paces": 24785, + "sloop": 24786, + "adoptive": 24787, + "##tish": 24788, + "skaters": 24789, + "##vres": 24790, + "aiding": 24791, + "mango": 24792, + "##joy": 24793, + "nikola": 24794, + "shriek": 24795, + "##ignon": 24796, + "pharmaceuticals": 24797, + "##mg": 24798, + "tuna": 24799, + "calvert": 24800, + "gustavo": 24801, + "stocked": 24802, + "yearbook": 24803, + "##urai": 24804, + "##mana": 24805, + "computed": 24806, + "subsp": 24807, + "riff": 24808, + "hanoi": 24809, + "kelvin": 24810, + "hamid": 24811, + "moors": 24812, + "pastures": 24813, + "summons": 24814, + "jihad": 24815, + "nectar": 24816, + "##ctors": 24817, + "bayou": 24818, + "untitled": 24819, + "pleasing": 24820, + "vastly": 24821, + "republics": 24822, + "intellect": 24823, + "##η": 24824, + "##ulio": 24825, + "##tou": 24826, + "crumbling": 24827, + "stylistic": 24828, + "sb": 24829, + "##ی": 24830, + "consolation": 24831, + "frequented": 24832, + "h₂o": 24833, + "walden": 24834, + "widows": 24835, + "##iens": 24836, + "404": 24837, + "##ignment": 24838, + "chunks": 24839, + "improves": 24840, + "288": 24841, + "grit": 24842, + "recited": 24843, + "##dev": 24844, + "snarl": 24845, + "sociological": 24846, + "##arte": 24847, + "##gul": 24848, + "inquired": 24849, + "##held": 24850, + "bruise": 24851, + "clube": 24852, + "consultancy": 24853, + "homogeneous": 24854, + "hornets": 24855, + "multiplication": 24856, + "pasta": 24857, + "prick": 24858, + "savior": 24859, + "##grin": 24860, + "##kou": 24861, + "##phile": 24862, + "yoon": 24863, + "##gara": 24864, + "grimes": 24865, + "vanishing": 24866, + "cheering": 24867, + "reacting": 24868, + "bn": 24869, + "distillery": 24870, + "##quisite": 24871, + "##vity": 24872, + "coe": 24873, + "dockyard": 24874, + "massif": 24875, + "##jord": 24876, + "escorts": 24877, + "voss": 24878, + "##valent": 24879, + "byte": 24880, + "chopped": 24881, + "hawke": 24882, + "illusions": 24883, + "workings": 24884, + "floats": 24885, + "##koto": 24886, + "##vac": 24887, + "kv": 24888, + "annapolis": 24889, + "madden": 24890, + "##onus": 24891, + "alvaro": 24892, + "noctuidae": 24893, + "##cum": 24894, + "##scopic": 24895, + "avenge": 24896, + "steamboat": 24897, + "forte": 24898, + "illustrates": 24899, + "erika": 24900, + "##trip": 24901, + "570": 24902, + "dew": 24903, + "nationalities": 24904, + "bran": 24905, + "manifested": 24906, + "thirsty": 24907, + "diversified": 24908, + "muscled": 24909, + "reborn": 24910, + "##standing": 24911, + "arson": 24912, + "##lessness": 24913, + "##dran": 24914, + "##logram": 24915, + "##boys": 24916, + "##kushima": 24917, + "##vious": 24918, + "willoughby": 24919, + "##phobia": 24920, + "286": 24921, + "alsace": 24922, + "dashboard": 24923, + "yuki": 24924, + "##chai": 24925, + "granville": 24926, + "myspace": 24927, + "publicized": 24928, + "tricked": 24929, + "##gang": 24930, + "adjective": 24931, + "##ater": 24932, + "relic": 24933, + "reorganisation": 24934, + "enthusiastically": 24935, + "indications": 24936, + "saxe": 24937, + "##lassified": 24938, + "consolidate": 24939, + "iec": 24940, + "padua": 24941, + "helplessly": 24942, + "ramps": 24943, + "renaming": 24944, + "regulars": 24945, + "pedestrians": 24946, + "accents": 24947, + "convicts": 24948, + "inaccurate": 24949, + "lowers": 24950, + "mana": 24951, + "##pati": 24952, + "barrie": 24953, + "bjp": 24954, + "outta": 24955, + "someplace": 24956, + "berwick": 24957, + "flanking": 24958, + "invoked": 24959, + "marrow": 24960, + "sparsely": 24961, + "excerpts": 24962, + "clothed": 24963, + "rei": 24964, + "##ginal": 24965, + "wept": 24966, + "##straße": 24967, + "##vish": 24968, + "alexa": 24969, + "excel": 24970, + "##ptive": 24971, + "membranes": 24972, + "aquitaine": 24973, + "creeks": 24974, + "cutler": 24975, + "sheppard": 24976, + "implementations": 24977, + "ns": 24978, + "##dur": 24979, + "fragrance": 24980, + "budge": 24981, + "concordia": 24982, + "magnesium": 24983, + "marcelo": 24984, + "##antes": 24985, + "gladly": 24986, + "vibrating": 24987, + "##rral": 24988, + "##ggles": 24989, + "montrose": 24990, + "##omba": 24991, + "lew": 24992, + "seamus": 24993, + "1630": 24994, + "cocky": 24995, + "##ament": 24996, + "##uen": 24997, + "bjorn": 24998, + "##rrick": 24999, + "fielder": 25000, + "fluttering": 25001, + "##lase": 25002, + "methyl": 25003, + "kimberley": 25004, + "mcdowell": 25005, + "reductions": 25006, + "barbed": 25007, + "##jic": 25008, + "##tonic": 25009, + "aeronautical": 25010, + "condensed": 25011, + "distracting": 25012, + "##promising": 25013, + "huffed": 25014, + "##cala": 25015, + "##sle": 25016, + "claudius": 25017, + "invincible": 25018, + "missy": 25019, + "pious": 25020, + "balthazar": 25021, + "ci": 25022, + "##lang": 25023, + "butte": 25024, + "combo": 25025, + "orson": 25026, + "##dication": 25027, + "myriad": 25028, + "1707": 25029, + "silenced": 25030, + "##fed": 25031, + "##rh": 25032, + "coco": 25033, + "netball": 25034, + "yourselves": 25035, + "##oza": 25036, + "clarify": 25037, + "heller": 25038, + "peg": 25039, + "durban": 25040, + "etudes": 25041, + "offender": 25042, + "roast": 25043, + "blackmail": 25044, + "curvature": 25045, + "##woods": 25046, + "vile": 25047, + "309": 25048, + "illicit": 25049, + "suriname": 25050, + "##linson": 25051, + "overture": 25052, + "1685": 25053, + "bubbling": 25054, + "gymnast": 25055, + "tucking": 25056, + "##mming": 25057, + "##ouin": 25058, + "maldives": 25059, + "##bala": 25060, + "gurney": 25061, + "##dda": 25062, + "##eased": 25063, + "##oides": 25064, + "backside": 25065, + "pinto": 25066, + "jars": 25067, + "racehorse": 25068, + "tending": 25069, + "##rdial": 25070, + "baronetcy": 25071, + "wiener": 25072, + "duly": 25073, + "##rke": 25074, + "barbarian": 25075, + "cupping": 25076, + "flawed": 25077, + "##thesis": 25078, + "bertha": 25079, + "pleistocene": 25080, + "puddle": 25081, + "swearing": 25082, + "##nob": 25083, + "##tically": 25084, + "fleeting": 25085, + "prostate": 25086, + "amulet": 25087, + "educating": 25088, + "##mined": 25089, + "##iti": 25090, + "##tler": 25091, + "75th": 25092, + "jens": 25093, + "respondents": 25094, + "analytics": 25095, + "cavaliers": 25096, + "papacy": 25097, + "raju": 25098, + "##iente": 25099, + "##ulum": 25100, + "##tip": 25101, + "funnel": 25102, + "271": 25103, + "disneyland": 25104, + "##lley": 25105, + "sociologist": 25106, + "##iam": 25107, + "2500": 25108, + "faulkner": 25109, + "louvre": 25110, + "menon": 25111, + "##dson": 25112, + "276": 25113, + "##ower": 25114, + "afterlife": 25115, + "mannheim": 25116, + "peptide": 25117, + "referees": 25118, + "comedians": 25119, + "meaningless": 25120, + "##anger": 25121, + "##laise": 25122, + "fabrics": 25123, + "hurley": 25124, + "renal": 25125, + "sleeps": 25126, + "##bour": 25127, + "##icle": 25128, + "breakout": 25129, + "kristin": 25130, + "roadside": 25131, + "animator": 25132, + "clover": 25133, + "disdain": 25134, + "unsafe": 25135, + "redesign": 25136, + "##urity": 25137, + "firth": 25138, + "barnsley": 25139, + "portage": 25140, + "reset": 25141, + "narrows": 25142, + "268": 25143, + "commandos": 25144, + "expansive": 25145, + "speechless": 25146, + "tubular": 25147, + "##lux": 25148, + "essendon": 25149, + "eyelashes": 25150, + "smashwords": 25151, + "##yad": 25152, + "##bang": 25153, + "##claim": 25154, + "craved": 25155, + "sprinted": 25156, + "chet": 25157, + "somme": 25158, + "astor": 25159, + "wrocław": 25160, + "orton": 25161, + "266": 25162, + "bane": 25163, + "##erving": 25164, + "##uing": 25165, + "mischief": 25166, + "##amps": 25167, + "##sund": 25168, + "scaling": 25169, + "terre": 25170, + "##xious": 25171, + "impairment": 25172, + "offenses": 25173, + "undermine": 25174, + "moi": 25175, + "soy": 25176, + "contiguous": 25177, + "arcadia": 25178, + "inuit": 25179, + "seam": 25180, + "##tops": 25181, + "macbeth": 25182, + "rebelled": 25183, + "##icative": 25184, + "##iot": 25185, + "590": 25186, + "elaborated": 25187, + "frs": 25188, + "uniformed": 25189, + "##dberg": 25190, + "259": 25191, + "powerless": 25192, + "priscilla": 25193, + "stimulated": 25194, + "980": 25195, + "qc": 25196, + "arboretum": 25197, + "frustrating": 25198, + "trieste": 25199, + "bullock": 25200, + "##nified": 25201, + "enriched": 25202, + "glistening": 25203, + "intern": 25204, + "##adia": 25205, + "locus": 25206, + "nouvelle": 25207, + "ollie": 25208, + "ike": 25209, + "lash": 25210, + "starboard": 25211, + "ee": 25212, + "tapestry": 25213, + "headlined": 25214, + "hove": 25215, + "rigged": 25216, + "##vite": 25217, + "pollock": 25218, + "##yme": 25219, + "thrive": 25220, + "clustered": 25221, + "cas": 25222, + "roi": 25223, + "gleamed": 25224, + "olympiad": 25225, + "##lino": 25226, + "pressured": 25227, + "regimes": 25228, + "##hosis": 25229, + "##lick": 25230, + "ripley": 25231, + "##ophone": 25232, + "kickoff": 25233, + "gallon": 25234, + "rockwell": 25235, + "##arable": 25236, + "crusader": 25237, + "glue": 25238, + "revolutions": 25239, + "scrambling": 25240, + "1714": 25241, + "grover": 25242, + "##jure": 25243, + "englishman": 25244, + "aztec": 25245, + "263": 25246, + "contemplating": 25247, + "coven": 25248, + "ipad": 25249, + "preach": 25250, + "triumphant": 25251, + "tufts": 25252, + "##esian": 25253, + "rotational": 25254, + "##phus": 25255, + "328": 25256, + "falkland": 25257, + "##brates": 25258, + "strewn": 25259, + "clarissa": 25260, + "rejoin": 25261, + "environmentally": 25262, + "glint": 25263, + "banded": 25264, + "drenched": 25265, + "moat": 25266, + "albanians": 25267, + "johor": 25268, + "rr": 25269, + "maestro": 25270, + "malley": 25271, + "nouveau": 25272, + "shaded": 25273, + "taxonomy": 25274, + "v6": 25275, + "adhere": 25276, + "bunk": 25277, + "airfields": 25278, + "##ritan": 25279, + "1741": 25280, + "encompass": 25281, + "remington": 25282, + "tran": 25283, + "##erative": 25284, + "amelie": 25285, + "mazda": 25286, + "friar": 25287, + "morals": 25288, + "passions": 25289, + "##zai": 25290, + "breadth": 25291, + "vis": 25292, + "##hae": 25293, + "argus": 25294, + "burnham": 25295, + "caressing": 25296, + "insider": 25297, + "rudd": 25298, + "##imov": 25299, + "##mini": 25300, + "##rso": 25301, + "italianate": 25302, + "murderous": 25303, + "textual": 25304, + "wainwright": 25305, + "armada": 25306, + "bam": 25307, + "weave": 25308, + "timer": 25309, + "##taken": 25310, + "##nh": 25311, + "fra": 25312, + "##crest": 25313, + "ardent": 25314, + "salazar": 25315, + "taps": 25316, + "tunis": 25317, + "##ntino": 25318, + "allegro": 25319, + "gland": 25320, + "philanthropic": 25321, + "##chester": 25322, + "implication": 25323, + "##optera": 25324, + "esq": 25325, + "judas": 25326, + "noticeably": 25327, + "wynn": 25328, + "##dara": 25329, + "inched": 25330, + "indexed": 25331, + "crises": 25332, + "villiers": 25333, + "bandit": 25334, + "royalties": 25335, + "patterned": 25336, + "cupboard": 25337, + "interspersed": 25338, + "accessory": 25339, + "isla": 25340, + "kendrick": 25341, + "entourage": 25342, + "stitches": 25343, + "##esthesia": 25344, + "headwaters": 25345, + "##ior": 25346, + "interlude": 25347, + "distraught": 25348, + "draught": 25349, + "1727": 25350, + "##basket": 25351, + "biased": 25352, + "sy": 25353, + "transient": 25354, + "triad": 25355, + "subgenus": 25356, + "adapting": 25357, + "kidd": 25358, + "shortstop": 25359, + "##umatic": 25360, + "dimly": 25361, + "spiked": 25362, + "mcleod": 25363, + "reprint": 25364, + "nellie": 25365, + "pretoria": 25366, + "windmill": 25367, + "##cek": 25368, + "singled": 25369, + "##mps": 25370, + "273": 25371, + "reunite": 25372, + "##orous": 25373, + "747": 25374, + "bankers": 25375, + "outlying": 25376, + "##omp": 25377, + "##ports": 25378, + "##tream": 25379, + "apologies": 25380, + "cosmetics": 25381, + "patsy": 25382, + "##deh": 25383, + "##ocks": 25384, + "##yson": 25385, + "bender": 25386, + "nantes": 25387, + "serene": 25388, + "##nad": 25389, + "lucha": 25390, + "mmm": 25391, + "323": 25392, + "##cius": 25393, + "##gli": 25394, + "cmll": 25395, + "coinage": 25396, + "nestor": 25397, + "juarez": 25398, + "##rook": 25399, + "smeared": 25400, + "sprayed": 25401, + "twitching": 25402, + "sterile": 25403, + "irina": 25404, + "embodied": 25405, + "juveniles": 25406, + "enveloped": 25407, + "miscellaneous": 25408, + "cancers": 25409, + "dq": 25410, + "gulped": 25411, + "luisa": 25412, + "crested": 25413, + "swat": 25414, + "donegal": 25415, + "ref": 25416, + "##anov": 25417, + "##acker": 25418, + "hearst": 25419, + "mercantile": 25420, + "##lika": 25421, + "doorbell": 25422, + "ua": 25423, + "vicki": 25424, + "##alla": 25425, + "##som": 25426, + "bilbao": 25427, + "psychologists": 25428, + "stryker": 25429, + "sw": 25430, + "horsemen": 25431, + "turkmenistan": 25432, + "wits": 25433, + "##national": 25434, + "anson": 25435, + "mathew": 25436, + "screenings": 25437, + "##umb": 25438, + "rihanna": 25439, + "##agne": 25440, + "##nessy": 25441, + "aisles": 25442, + "##iani": 25443, + "##osphere": 25444, + "hines": 25445, + "kenton": 25446, + "saskatoon": 25447, + "tasha": 25448, + "truncated": 25449, + "##champ": 25450, + "##itan": 25451, + "mildred": 25452, + "advises": 25453, + "fredrik": 25454, + "interpreting": 25455, + "inhibitors": 25456, + "##athi": 25457, + "spectroscopy": 25458, + "##hab": 25459, + "##kong": 25460, + "karim": 25461, + "panda": 25462, + "##oia": 25463, + "##nail": 25464, + "##vc": 25465, + "conqueror": 25466, + "kgb": 25467, + "leukemia": 25468, + "##dity": 25469, + "arrivals": 25470, + "cheered": 25471, + "pisa": 25472, + "phosphorus": 25473, + "shielded": 25474, + "##riated": 25475, + "mammal": 25476, + "unitarian": 25477, + "urgently": 25478, + "chopin": 25479, + "sanitary": 25480, + "##mission": 25481, + "spicy": 25482, + "drugged": 25483, + "hinges": 25484, + "##tort": 25485, + "tipping": 25486, + "trier": 25487, + "impoverished": 25488, + "westchester": 25489, + "##caster": 25490, + "267": 25491, + "epoch": 25492, + "nonstop": 25493, + "##gman": 25494, + "##khov": 25495, + "aromatic": 25496, + "centrally": 25497, + "cerro": 25498, + "##tively": 25499, + "##vio": 25500, + "billions": 25501, + "modulation": 25502, + "sedimentary": 25503, + "283": 25504, + "facilitating": 25505, + "outrageous": 25506, + "goldstein": 25507, + "##eak": 25508, + "##kt": 25509, + "ld": 25510, + "maitland": 25511, + "penultimate": 25512, + "pollard": 25513, + "##dance": 25514, + "fleets": 25515, + "spaceship": 25516, + "vertebrae": 25517, + "##nig": 25518, + "alcoholism": 25519, + "als": 25520, + "recital": 25521, + "##bham": 25522, + "##ference": 25523, + "##omics": 25524, + "m2": 25525, + "##bm": 25526, + "trois": 25527, + "##tropical": 25528, + "##в": 25529, + "commemorates": 25530, + "##meric": 25531, + "marge": 25532, + "##raction": 25533, + "1643": 25534, + "670": 25535, + "cosmetic": 25536, + "ravaged": 25537, + "##ige": 25538, + "catastrophe": 25539, + "eng": 25540, + "##shida": 25541, + "albrecht": 25542, + "arterial": 25543, + "bellamy": 25544, + "decor": 25545, + "harmon": 25546, + "##rde": 25547, + "bulbs": 25548, + "synchronized": 25549, + "vito": 25550, + "easiest": 25551, + "shetland": 25552, + "shielding": 25553, + "wnba": 25554, + "##glers": 25555, + "##ssar": 25556, + "##riam": 25557, + "brianna": 25558, + "cumbria": 25559, + "##aceous": 25560, + "##rard": 25561, + "cores": 25562, + "thayer": 25563, + "##nsk": 25564, + "brood": 25565, + "hilltop": 25566, + "luminous": 25567, + "carts": 25568, + "keynote": 25569, + "larkin": 25570, + "logos": 25571, + "##cta": 25572, + "##ا": 25573, + "##mund": 25574, + "##quay": 25575, + "lilith": 25576, + "tinted": 25577, + "277": 25578, + "wrestle": 25579, + "mobilization": 25580, + "##uses": 25581, + "sequential": 25582, + "siam": 25583, + "bloomfield": 25584, + "takahashi": 25585, + "274": 25586, + "##ieving": 25587, + "presenters": 25588, + "ringo": 25589, + "blazed": 25590, + "witty": 25591, + "##oven": 25592, + "##ignant": 25593, + "devastation": 25594, + "haydn": 25595, + "harmed": 25596, + "newt": 25597, + "therese": 25598, + "##peed": 25599, + "gershwin": 25600, + "molina": 25601, + "rabbis": 25602, + "sudanese": 25603, + "001": 25604, + "innate": 25605, + "restarted": 25606, + "##sack": 25607, + "##fus": 25608, + "slices": 25609, + "wb": 25610, + "##shah": 25611, + "enroll": 25612, + "hypothetical": 25613, + "hysterical": 25614, + "1743": 25615, + "fabio": 25616, + "indefinite": 25617, + "warped": 25618, + "##hg": 25619, + "exchanging": 25620, + "525": 25621, + "unsuitable": 25622, + "##sboro": 25623, + "gallo": 25624, + "1603": 25625, + "bret": 25626, + "cobalt": 25627, + "homemade": 25628, + "##hunter": 25629, + "mx": 25630, + "operatives": 25631, + "##dhar": 25632, + "terraces": 25633, + "durable": 25634, + "latch": 25635, + "pens": 25636, + "whorls": 25637, + "##ctuated": 25638, + "##eaux": 25639, + "billing": 25640, + "ligament": 25641, + "succumbed": 25642, + "##gly": 25643, + "regulators": 25644, + "spawn": 25645, + "##brick": 25646, + "##stead": 25647, + "filmfare": 25648, + "rochelle": 25649, + "##nzo": 25650, + "1725": 25651, + "circumstance": 25652, + "saber": 25653, + "supplements": 25654, + "##nsky": 25655, + "##tson": 25656, + "crowe": 25657, + "wellesley": 25658, + "carrot": 25659, + "##9th": 25660, + "##movable": 25661, + "primate": 25662, + "drury": 25663, + "sincerely": 25664, + "topical": 25665, + "##mad": 25666, + "##rao": 25667, + "callahan": 25668, + "kyiv": 25669, + "smarter": 25670, + "tits": 25671, + "undo": 25672, + "##yeh": 25673, + "announcements": 25674, + "anthologies": 25675, + "barrio": 25676, + "nebula": 25677, + "##islaus": 25678, + "##shaft": 25679, + "##tyn": 25680, + "bodyguards": 25681, + "2021": 25682, + "assassinate": 25683, + "barns": 25684, + "emmett": 25685, + "scully": 25686, + "##mah": 25687, + "##yd": 25688, + "##eland": 25689, + "##tino": 25690, + "##itarian": 25691, + "demoted": 25692, + "gorman": 25693, + "lashed": 25694, + "prized": 25695, + "adventist": 25696, + "writ": 25697, + "##gui": 25698, + "alla": 25699, + "invertebrates": 25700, + "##ausen": 25701, + "1641": 25702, + "amman": 25703, + "1742": 25704, + "align": 25705, + "healy": 25706, + "redistribution": 25707, + "##gf": 25708, + "##rize": 25709, + "insulation": 25710, + "##drop": 25711, + "adherents": 25712, + "hezbollah": 25713, + "vitro": 25714, + "ferns": 25715, + "yanking": 25716, + "269": 25717, + "php": 25718, + "registering": 25719, + "uppsala": 25720, + "cheerleading": 25721, + "confines": 25722, + "mischievous": 25723, + "tully": 25724, + "##ross": 25725, + "49th": 25726, + "docked": 25727, + "roam": 25728, + "stipulated": 25729, + "pumpkin": 25730, + "##bry": 25731, + "prompt": 25732, + "##ezer": 25733, + "blindly": 25734, + "shuddering": 25735, + "craftsmen": 25736, + "frail": 25737, + "scented": 25738, + "katharine": 25739, + "scramble": 25740, + "shaggy": 25741, + "sponge": 25742, + "helix": 25743, + "zaragoza": 25744, + "279": 25745, + "##52": 25746, + "43rd": 25747, + "backlash": 25748, + "fontaine": 25749, + "seizures": 25750, + "posse": 25751, + "cowan": 25752, + "nonfiction": 25753, + "telenovela": 25754, + "wwii": 25755, + "hammered": 25756, + "undone": 25757, + "##gpur": 25758, + "encircled": 25759, + "irs": 25760, + "##ivation": 25761, + "artefacts": 25762, + "oneself": 25763, + "searing": 25764, + "smallpox": 25765, + "##belle": 25766, + "##osaurus": 25767, + "shandong": 25768, + "breached": 25769, + "upland": 25770, + "blushing": 25771, + "rankin": 25772, + "infinitely": 25773, + "psyche": 25774, + "tolerated": 25775, + "docking": 25776, + "evicted": 25777, + "##col": 25778, + "unmarked": 25779, + "##lving": 25780, + "gnome": 25781, + "lettering": 25782, + "litres": 25783, + "musique": 25784, + "##oint": 25785, + "benevolent": 25786, + "##jal": 25787, + "blackened": 25788, + "##anna": 25789, + "mccall": 25790, + "racers": 25791, + "tingle": 25792, + "##ocene": 25793, + "##orestation": 25794, + "introductions": 25795, + "radically": 25796, + "292": 25797, + "##hiff": 25798, + "##باد": 25799, + "1610": 25800, + "1739": 25801, + "munchen": 25802, + "plead": 25803, + "##nka": 25804, + "condo": 25805, + "scissors": 25806, + "##sight": 25807, + "##tens": 25808, + "apprehension": 25809, + "##cey": 25810, + "##yin": 25811, + "hallmark": 25812, + "watering": 25813, + "formulas": 25814, + "sequels": 25815, + "##llas": 25816, + "aggravated": 25817, + "bae": 25818, + "commencing": 25819, + "##building": 25820, + "enfield": 25821, + "prohibits": 25822, + "marne": 25823, + "vedic": 25824, + "civilized": 25825, + "euclidean": 25826, + "jagger": 25827, + "beforehand": 25828, + "blasts": 25829, + "dumont": 25830, + "##arney": 25831, + "##nem": 25832, + "740": 25833, + "conversions": 25834, + "hierarchical": 25835, + "rios": 25836, + "simulator": 25837, + "##dya": 25838, + "##lellan": 25839, + "hedges": 25840, + "oleg": 25841, + "thrusts": 25842, + "shadowed": 25843, + "darby": 25844, + "maximize": 25845, + "1744": 25846, + "gregorian": 25847, + "##nded": 25848, + "##routed": 25849, + "sham": 25850, + "unspecified": 25851, + "##hog": 25852, + "emory": 25853, + "factual": 25854, + "##smo": 25855, + "##tp": 25856, + "fooled": 25857, + "##rger": 25858, + "ortega": 25859, + "wellness": 25860, + "marlon": 25861, + "##oton": 25862, + "##urance": 25863, + "casket": 25864, + "keating": 25865, + "ley": 25866, + "enclave": 25867, + "##ayan": 25868, + "char": 25869, + "influencing": 25870, + "jia": 25871, + "##chenko": 25872, + "412": 25873, + "ammonia": 25874, + "erebidae": 25875, + "incompatible": 25876, + "violins": 25877, + "cornered": 25878, + "##arat": 25879, + "grooves": 25880, + "astronauts": 25881, + "columbian": 25882, + "rampant": 25883, + "fabrication": 25884, + "kyushu": 25885, + "mahmud": 25886, + "vanish": 25887, + "##dern": 25888, + "mesopotamia": 25889, + "##lete": 25890, + "ict": 25891, + "##rgen": 25892, + "caspian": 25893, + "kenji": 25894, + "pitted": 25895, + "##vered": 25896, + "999": 25897, + "grimace": 25898, + "roanoke": 25899, + "tchaikovsky": 25900, + "twinned": 25901, + "##analysis": 25902, + "##awan": 25903, + "xinjiang": 25904, + "arias": 25905, + "clemson": 25906, + "kazakh": 25907, + "sizable": 25908, + "1662": 25909, + "##khand": 25910, + "##vard": 25911, + "plunge": 25912, + "tatum": 25913, + "vittorio": 25914, + "##nden": 25915, + "cholera": 25916, + "##dana": 25917, + "##oper": 25918, + "bracing": 25919, + "indifference": 25920, + "projectile": 25921, + "superliga": 25922, + "##chee": 25923, + "realises": 25924, + "upgrading": 25925, + "299": 25926, + "porte": 25927, + "retribution": 25928, + "##vies": 25929, + "nk": 25930, + "stil": 25931, + "##resses": 25932, + "ama": 25933, + "bureaucracy": 25934, + "blackberry": 25935, + "bosch": 25936, + "testosterone": 25937, + "collapses": 25938, + "greer": 25939, + "##pathic": 25940, + "ioc": 25941, + "fifties": 25942, + "malls": 25943, + "##erved": 25944, + "bao": 25945, + "baskets": 25946, + "adolescents": 25947, + "siegfried": 25948, + "##osity": 25949, + "##tosis": 25950, + "mantra": 25951, + "detecting": 25952, + "existent": 25953, + "fledgling": 25954, + "##cchi": 25955, + "dissatisfied": 25956, + "gan": 25957, + "telecommunication": 25958, + "mingled": 25959, + "sobbed": 25960, + "6000": 25961, + "controversies": 25962, + "outdated": 25963, + "taxis": 25964, + "##raus": 25965, + "fright": 25966, + "slams": 25967, + "##lham": 25968, + "##fect": 25969, + "##tten": 25970, + "detectors": 25971, + "fetal": 25972, + "tanned": 25973, + "##uw": 25974, + "fray": 25975, + "goth": 25976, + "olympian": 25977, + "skipping": 25978, + "mandates": 25979, + "scratches": 25980, + "sheng": 25981, + "unspoken": 25982, + "hyundai": 25983, + "tracey": 25984, + "hotspur": 25985, + "restrictive": 25986, + "##buch": 25987, + "americana": 25988, + "mundo": 25989, + "##bari": 25990, + "burroughs": 25991, + "diva": 25992, + "vulcan": 25993, + "##6th": 25994, + "distinctions": 25995, + "thumping": 25996, + "##ngen": 25997, + "mikey": 25998, + "sheds": 25999, + "fide": 26000, + "rescues": 26001, + "springsteen": 26002, + "vested": 26003, + "valuation": 26004, + "##ece": 26005, + "##ely": 26006, + "pinnacle": 26007, + "rake": 26008, + "sylvie": 26009, + "##edo": 26010, + "almond": 26011, + "quivering": 26012, + "##irus": 26013, + "alteration": 26014, + "faltered": 26015, + "##wad": 26016, + "51st": 26017, + "hydra": 26018, + "ticked": 26019, + "##kato": 26020, + "recommends": 26021, + "##dicated": 26022, + "antigua": 26023, + "arjun": 26024, + "stagecoach": 26025, + "wilfred": 26026, + "trickle": 26027, + "pronouns": 26028, + "##pon": 26029, + "aryan": 26030, + "nighttime": 26031, + "##anian": 26032, + "gall": 26033, + "pea": 26034, + "stitch": 26035, + "##hei": 26036, + "leung": 26037, + "milos": 26038, + "##dini": 26039, + "eritrea": 26040, + "nexus": 26041, + "starved": 26042, + "snowfall": 26043, + "kant": 26044, + "parasitic": 26045, + "cot": 26046, + "discus": 26047, + "hana": 26048, + "strikers": 26049, + "appleton": 26050, + "kitchens": 26051, + "##erina": 26052, + "##partisan": 26053, + "##itha": 26054, + "##vius": 26055, + "disclose": 26056, + "metis": 26057, + "##channel": 26058, + "1701": 26059, + "tesla": 26060, + "##vera": 26061, + "fitch": 26062, + "1735": 26063, + "blooded": 26064, + "##tila": 26065, + "decimal": 26066, + "##tang": 26067, + "##bai": 26068, + "cyclones": 26069, + "eun": 26070, + "bottled": 26071, + "peas": 26072, + "pensacola": 26073, + "basha": 26074, + "bolivian": 26075, + "crabs": 26076, + "boil": 26077, + "lanterns": 26078, + "partridge": 26079, + "roofed": 26080, + "1645": 26081, + "necks": 26082, + "##phila": 26083, + "opined": 26084, + "patting": 26085, + "##kla": 26086, + "##lland": 26087, + "chuckles": 26088, + "volta": 26089, + "whereupon": 26090, + "##nche": 26091, + "devout": 26092, + "euroleague": 26093, + "suicidal": 26094, + "##dee": 26095, + "inherently": 26096, + "involuntary": 26097, + "knitting": 26098, + "nasser": 26099, + "##hide": 26100, + "puppets": 26101, + "colourful": 26102, + "courageous": 26103, + "southend": 26104, + "stills": 26105, + "miraculous": 26106, + "hodgson": 26107, + "richer": 26108, + "rochdale": 26109, + "ethernet": 26110, + "greta": 26111, + "uniting": 26112, + "prism": 26113, + "umm": 26114, + "##haya": 26115, + "##itical": 26116, + "##utation": 26117, + "deterioration": 26118, + "pointe": 26119, + "prowess": 26120, + "##ropriation": 26121, + "lids": 26122, + "scranton": 26123, + "billings": 26124, + "subcontinent": 26125, + "##koff": 26126, + "##scope": 26127, + "brute": 26128, + "kellogg": 26129, + "psalms": 26130, + "degraded": 26131, + "##vez": 26132, + "stanisław": 26133, + "##ructured": 26134, + "ferreira": 26135, + "pun": 26136, + "astonishing": 26137, + "gunnar": 26138, + "##yat": 26139, + "arya": 26140, + "prc": 26141, + "gottfried": 26142, + "##tight": 26143, + "excursion": 26144, + "##ographer": 26145, + "dina": 26146, + "##quil": 26147, + "##nare": 26148, + "huffington": 26149, + "illustrious": 26150, + "wilbur": 26151, + "gundam": 26152, + "verandah": 26153, + "##zard": 26154, + "naacp": 26155, + "##odle": 26156, + "constructive": 26157, + "fjord": 26158, + "kade": 26159, + "##naud": 26160, + "generosity": 26161, + "thrilling": 26162, + "baseline": 26163, + "cayman": 26164, + "frankish": 26165, + "plastics": 26166, + "accommodations": 26167, + "zoological": 26168, + "##fting": 26169, + "cedric": 26170, + "qb": 26171, + "motorized": 26172, + "##dome": 26173, + "##otted": 26174, + "squealed": 26175, + "tackled": 26176, + "canucks": 26177, + "budgets": 26178, + "situ": 26179, + "asthma": 26180, + "dail": 26181, + "gabled": 26182, + "grasslands": 26183, + "whimpered": 26184, + "writhing": 26185, + "judgments": 26186, + "##65": 26187, + "minnie": 26188, + "pv": 26189, + "##carbon": 26190, + "bananas": 26191, + "grille": 26192, + "domes": 26193, + "monique": 26194, + "odin": 26195, + "maguire": 26196, + "markham": 26197, + "tierney": 26198, + "##estra": 26199, + "##chua": 26200, + "libel": 26201, + "poke": 26202, + "speedy": 26203, + "atrium": 26204, + "laval": 26205, + "notwithstanding": 26206, + "##edly": 26207, + "fai": 26208, + "kala": 26209, + "##sur": 26210, + "robb": 26211, + "##sma": 26212, + "listings": 26213, + "luz": 26214, + "supplementary": 26215, + "tianjin": 26216, + "##acing": 26217, + "enzo": 26218, + "jd": 26219, + "ric": 26220, + "scanner": 26221, + "croats": 26222, + "transcribed": 26223, + "##49": 26224, + "arden": 26225, + "cv": 26226, + "##hair": 26227, + "##raphy": 26228, + "##lver": 26229, + "##uy": 26230, + "357": 26231, + "seventies": 26232, + "staggering": 26233, + "alam": 26234, + "horticultural": 26235, + "hs": 26236, + "regression": 26237, + "timbers": 26238, + "blasting": 26239, + "##ounded": 26240, + "montagu": 26241, + "manipulating": 26242, + "##cit": 26243, + "catalytic": 26244, + "1550": 26245, + "troopers": 26246, + "##meo": 26247, + "condemnation": 26248, + "fitzpatrick": 26249, + "##oire": 26250, + "##roved": 26251, + "inexperienced": 26252, + "1670": 26253, + "castes": 26254, + "##lative": 26255, + "outing": 26256, + "314": 26257, + "dubois": 26258, + "flicking": 26259, + "quarrel": 26260, + "ste": 26261, + "learners": 26262, + "1625": 26263, + "iq": 26264, + "whistled": 26265, + "##class": 26266, + "282": 26267, + "classify": 26268, + "tariffs": 26269, + "temperament": 26270, + "355": 26271, + "folly": 26272, + "liszt": 26273, + "##yles": 26274, + "immersed": 26275, + "jordanian": 26276, + "ceasefire": 26277, + "apparel": 26278, + "extras": 26279, + "maru": 26280, + "fished": 26281, + "##bio": 26282, + "harta": 26283, + "stockport": 26284, + "assortment": 26285, + "craftsman": 26286, + "paralysis": 26287, + "transmitters": 26288, + "##cola": 26289, + "blindness": 26290, + "##wk": 26291, + "fatally": 26292, + "proficiency": 26293, + "solemnly": 26294, + "##orno": 26295, + "repairing": 26296, + "amore": 26297, + "groceries": 26298, + "ultraviolet": 26299, + "##chase": 26300, + "schoolhouse": 26301, + "##tua": 26302, + "resurgence": 26303, + "nailed": 26304, + "##otype": 26305, + "##×": 26306, + "ruse": 26307, + "saliva": 26308, + "diagrams": 26309, + "##tructing": 26310, + "albans": 26311, + "rann": 26312, + "thirties": 26313, + "1b": 26314, + "antennas": 26315, + "hilarious": 26316, + "cougars": 26317, + "paddington": 26318, + "stats": 26319, + "##eger": 26320, + "breakaway": 26321, + "ipod": 26322, + "reza": 26323, + "authorship": 26324, + "prohibiting": 26325, + "scoffed": 26326, + "##etz": 26327, + "##ttle": 26328, + "conscription": 26329, + "defected": 26330, + "trondheim": 26331, + "##fires": 26332, + "ivanov": 26333, + "keenan": 26334, + "##adan": 26335, + "##ciful": 26336, + "##fb": 26337, + "##slow": 26338, + "locating": 26339, + "##ials": 26340, + "##tford": 26341, + "cadiz": 26342, + "basalt": 26343, + "blankly": 26344, + "interned": 26345, + "rags": 26346, + "rattling": 26347, + "##tick": 26348, + "carpathian": 26349, + "reassured": 26350, + "sync": 26351, + "bum": 26352, + "guildford": 26353, + "iss": 26354, + "staunch": 26355, + "##onga": 26356, + "astronomers": 26357, + "sera": 26358, + "sofie": 26359, + "emergencies": 26360, + "susquehanna": 26361, + "##heard": 26362, + "duc": 26363, + "mastery": 26364, + "vh1": 26365, + "williamsburg": 26366, + "bayer": 26367, + "buckled": 26368, + "craving": 26369, + "##khan": 26370, + "##rdes": 26371, + "bloomington": 26372, + "##write": 26373, + "alton": 26374, + "barbecue": 26375, + "##bians": 26376, + "justine": 26377, + "##hri": 26378, + "##ndt": 26379, + "delightful": 26380, + "smartphone": 26381, + "newtown": 26382, + "photon": 26383, + "retrieval": 26384, + "peugeot": 26385, + "hissing": 26386, + "##monium": 26387, + "##orough": 26388, + "flavors": 26389, + "lighted": 26390, + "relaunched": 26391, + "tainted": 26392, + "##games": 26393, + "##lysis": 26394, + "anarchy": 26395, + "microscopic": 26396, + "hopping": 26397, + "adept": 26398, + "evade": 26399, + "evie": 26400, + "##beau": 26401, + "inhibit": 26402, + "sinn": 26403, + "adjustable": 26404, + "hurst": 26405, + "intuition": 26406, + "wilton": 26407, + "cisco": 26408, + "44th": 26409, + "lawful": 26410, + "lowlands": 26411, + "stockings": 26412, + "thierry": 26413, + "##dalen": 26414, + "##hila": 26415, + "##nai": 26416, + "fates": 26417, + "prank": 26418, + "tb": 26419, + "maison": 26420, + "lobbied": 26421, + "provocative": 26422, + "1724": 26423, + "4a": 26424, + "utopia": 26425, + "##qual": 26426, + "carbonate": 26427, + "gujarati": 26428, + "purcell": 26429, + "##rford": 26430, + "curtiss": 26431, + "##mei": 26432, + "overgrown": 26433, + "arenas": 26434, + "mediation": 26435, + "swallows": 26436, + "##rnik": 26437, + "respectful": 26438, + "turnbull": 26439, + "##hedron": 26440, + "##hope": 26441, + "alyssa": 26442, + "ozone": 26443, + "##ʻi": 26444, + "ami": 26445, + "gestapo": 26446, + "johansson": 26447, + "snooker": 26448, + "canteen": 26449, + "cuff": 26450, + "declines": 26451, + "empathy": 26452, + "stigma": 26453, + "##ags": 26454, + "##iner": 26455, + "##raine": 26456, + "taxpayers": 26457, + "gui": 26458, + "volga": 26459, + "##wright": 26460, + "##copic": 26461, + "lifespan": 26462, + "overcame": 26463, + "tattooed": 26464, + "enactment": 26465, + "giggles": 26466, + "##ador": 26467, + "##camp": 26468, + "barrington": 26469, + "bribe": 26470, + "obligatory": 26471, + "orbiting": 26472, + "peng": 26473, + "##enas": 26474, + "elusive": 26475, + "sucker": 26476, + "##vating": 26477, + "cong": 26478, + "hardship": 26479, + "empowered": 26480, + "anticipating": 26481, + "estrada": 26482, + "cryptic": 26483, + "greasy": 26484, + "detainees": 26485, + "planck": 26486, + "sudbury": 26487, + "plaid": 26488, + "dod": 26489, + "marriott": 26490, + "kayla": 26491, + "##ears": 26492, + "##vb": 26493, + "##zd": 26494, + "mortally": 26495, + "##hein": 26496, + "cognition": 26497, + "radha": 26498, + "319": 26499, + "liechtenstein": 26500, + "meade": 26501, + "richly": 26502, + "argyle": 26503, + "harpsichord": 26504, + "liberalism": 26505, + "trumpets": 26506, + "lauded": 26507, + "tyrant": 26508, + "salsa": 26509, + "tiled": 26510, + "lear": 26511, + "promoters": 26512, + "reused": 26513, + "slicing": 26514, + "trident": 26515, + "##chuk": 26516, + "##gami": 26517, + "##lka": 26518, + "cantor": 26519, + "checkpoint": 26520, + "##points": 26521, + "gaul": 26522, + "leger": 26523, + "mammalian": 26524, + "##tov": 26525, + "##aar": 26526, + "##schaft": 26527, + "doha": 26528, + "frenchman": 26529, + "nirvana": 26530, + "##vino": 26531, + "delgado": 26532, + "headlining": 26533, + "##eron": 26534, + "##iography": 26535, + "jug": 26536, + "tko": 26537, + "1649": 26538, + "naga": 26539, + "intersections": 26540, + "##jia": 26541, + "benfica": 26542, + "nawab": 26543, + "##suka": 26544, + "ashford": 26545, + "gulp": 26546, + "##deck": 26547, + "##vill": 26548, + "##rug": 26549, + "brentford": 26550, + "frazier": 26551, + "pleasures": 26552, + "dunne": 26553, + "potsdam": 26554, + "shenzhen": 26555, + "dentistry": 26556, + "##tec": 26557, + "flanagan": 26558, + "##dorff": 26559, + "##hear": 26560, + "chorale": 26561, + "dinah": 26562, + "prem": 26563, + "quezon": 26564, + "##rogated": 26565, + "relinquished": 26566, + "sutra": 26567, + "terri": 26568, + "##pani": 26569, + "flaps": 26570, + "##rissa": 26571, + "poly": 26572, + "##rnet": 26573, + "homme": 26574, + "aback": 26575, + "##eki": 26576, + "linger": 26577, + "womb": 26578, + "##kson": 26579, + "##lewood": 26580, + "doorstep": 26581, + "orthodoxy": 26582, + "threaded": 26583, + "westfield": 26584, + "##rval": 26585, + "dioceses": 26586, + "fridays": 26587, + "subsided": 26588, + "##gata": 26589, + "loyalists": 26590, + "##biotic": 26591, + "##ettes": 26592, + "letterman": 26593, + "lunatic": 26594, + "prelate": 26595, + "tenderly": 26596, + "invariably": 26597, + "souza": 26598, + "thug": 26599, + "winslow": 26600, + "##otide": 26601, + "furlongs": 26602, + "gogh": 26603, + "jeopardy": 26604, + "##runa": 26605, + "pegasus": 26606, + "##umble": 26607, + "humiliated": 26608, + "standalone": 26609, + "tagged": 26610, + "##roller": 26611, + "freshmen": 26612, + "klan": 26613, + "##bright": 26614, + "attaining": 26615, + "initiating": 26616, + "transatlantic": 26617, + "logged": 26618, + "viz": 26619, + "##uance": 26620, + "1723": 26621, + "combatants": 26622, + "intervening": 26623, + "stephane": 26624, + "chieftain": 26625, + "despised": 26626, + "grazed": 26627, + "317": 26628, + "cdc": 26629, + "galveston": 26630, + "godzilla": 26631, + "macro": 26632, + "simulate": 26633, + "##planes": 26634, + "parades": 26635, + "##esses": 26636, + "960": 26637, + "##ductive": 26638, + "##unes": 26639, + "equator": 26640, + "overdose": 26641, + "##cans": 26642, + "##hosh": 26643, + "##lifting": 26644, + "joshi": 26645, + "epstein": 26646, + "sonora": 26647, + "treacherous": 26648, + "aquatics": 26649, + "manchu": 26650, + "responsive": 26651, + "##sation": 26652, + "supervisory": 26653, + "##christ": 26654, + "##llins": 26655, + "##ibar": 26656, + "##balance": 26657, + "##uso": 26658, + "kimball": 26659, + "karlsruhe": 26660, + "mab": 26661, + "##emy": 26662, + "ignores": 26663, + "phonetic": 26664, + "reuters": 26665, + "spaghetti": 26666, + "820": 26667, + "almighty": 26668, + "danzig": 26669, + "rumbling": 26670, + "tombstone": 26671, + "designations": 26672, + "lured": 26673, + "outset": 26674, + "##felt": 26675, + "supermarkets": 26676, + "##wt": 26677, + "grupo": 26678, + "kei": 26679, + "kraft": 26680, + "susanna": 26681, + "##blood": 26682, + "comprehension": 26683, + "genealogy": 26684, + "##aghan": 26685, + "##verted": 26686, + "redding": 26687, + "##ythe": 26688, + "1722": 26689, + "bowing": 26690, + "##pore": 26691, + "##roi": 26692, + "lest": 26693, + "sharpened": 26694, + "fulbright": 26695, + "valkyrie": 26696, + "sikhs": 26697, + "##unds": 26698, + "swans": 26699, + "bouquet": 26700, + "merritt": 26701, + "##tage": 26702, + "##venting": 26703, + "commuted": 26704, + "redhead": 26705, + "clerks": 26706, + "leasing": 26707, + "cesare": 26708, + "dea": 26709, + "hazy": 26710, + "##vances": 26711, + "fledged": 26712, + "greenfield": 26713, + "servicemen": 26714, + "##gical": 26715, + "armando": 26716, + "blackout": 26717, + "dt": 26718, + "sagged": 26719, + "downloadable": 26720, + "intra": 26721, + "potion": 26722, + "pods": 26723, + "##4th": 26724, + "##mism": 26725, + "xp": 26726, + "attendants": 26727, + "gambia": 26728, + "stale": 26729, + "##ntine": 26730, + "plump": 26731, + "asteroids": 26732, + "rediscovered": 26733, + "buds": 26734, + "flea": 26735, + "hive": 26736, + "##neas": 26737, + "1737": 26738, + "classifications": 26739, + "debuts": 26740, + "##eles": 26741, + "olympus": 26742, + "scala": 26743, + "##eurs": 26744, + "##gno": 26745, + "##mute": 26746, + "hummed": 26747, + "sigismund": 26748, + "visuals": 26749, + "wiggled": 26750, + "await": 26751, + "pilasters": 26752, + "clench": 26753, + "sulfate": 26754, + "##ances": 26755, + "bellevue": 26756, + "enigma": 26757, + "trainee": 26758, + "snort": 26759, + "##sw": 26760, + "clouded": 26761, + "denim": 26762, + "##rank": 26763, + "##rder": 26764, + "churning": 26765, + "hartman": 26766, + "lodges": 26767, + "riches": 26768, + "sima": 26769, + "##missible": 26770, + "accountable": 26771, + "socrates": 26772, + "regulates": 26773, + "mueller": 26774, + "##cr": 26775, + "1702": 26776, + "avoids": 26777, + "solids": 26778, + "himalayas": 26779, + "nutrient": 26780, + "pup": 26781, + "##jevic": 26782, + "squat": 26783, + "fades": 26784, + "nec": 26785, + "##lates": 26786, + "##pina": 26787, + "##rona": 26788, + "##ου": 26789, + "privateer": 26790, + "tequila": 26791, + "##gative": 26792, + "##mpton": 26793, + "apt": 26794, + "hornet": 26795, + "immortals": 26796, + "##dou": 26797, + "asturias": 26798, + "cleansing": 26799, + "dario": 26800, + "##rries": 26801, + "##anta": 26802, + "etymology": 26803, + "servicing": 26804, + "zhejiang": 26805, + "##venor": 26806, + "##nx": 26807, + "horned": 26808, + "erasmus": 26809, + "rayon": 26810, + "relocating": 26811, + "£10": 26812, + "##bags": 26813, + "escalated": 26814, + "promenade": 26815, + "stubble": 26816, + "2010s": 26817, + "artisans": 26818, + "axial": 26819, + "liquids": 26820, + "mora": 26821, + "sho": 26822, + "yoo": 26823, + "##tsky": 26824, + "bundles": 26825, + "oldies": 26826, + "##nally": 26827, + "notification": 26828, + "bastion": 26829, + "##ths": 26830, + "sparkle": 26831, + "##lved": 26832, + "1728": 26833, + "leash": 26834, + "pathogen": 26835, + "highs": 26836, + "##hmi": 26837, + "immature": 26838, + "880": 26839, + "gonzaga": 26840, + "ignatius": 26841, + "mansions": 26842, + "monterrey": 26843, + "sweets": 26844, + "bryson": 26845, + "##loe": 26846, + "polled": 26847, + "regatta": 26848, + "brightest": 26849, + "pei": 26850, + "rosy": 26851, + "squid": 26852, + "hatfield": 26853, + "payroll": 26854, + "addict": 26855, + "meath": 26856, + "cornerback": 26857, + "heaviest": 26858, + "lodging": 26859, + "##mage": 26860, + "capcom": 26861, + "rippled": 26862, + "##sily": 26863, + "barnet": 26864, + "mayhem": 26865, + "ymca": 26866, + "snuggled": 26867, + "rousseau": 26868, + "##cute": 26869, + "blanchard": 26870, + "284": 26871, + "fragmented": 26872, + "leighton": 26873, + "chromosomes": 26874, + "risking": 26875, + "##md": 26876, + "##strel": 26877, + "##utter": 26878, + "corinne": 26879, + "coyotes": 26880, + "cynical": 26881, + "hiroshi": 26882, + "yeomanry": 26883, + "##ractive": 26884, + "ebook": 26885, + "grading": 26886, + "mandela": 26887, + "plume": 26888, + "agustin": 26889, + "magdalene": 26890, + "##rkin": 26891, + "bea": 26892, + "femme": 26893, + "trafford": 26894, + "##coll": 26895, + "##lun": 26896, + "##tance": 26897, + "52nd": 26898, + "fourier": 26899, + "upton": 26900, + "##mental": 26901, + "camilla": 26902, + "gust": 26903, + "iihf": 26904, + "islamabad": 26905, + "longevity": 26906, + "##kala": 26907, + "feldman": 26908, + "netting": 26909, + "##rization": 26910, + "endeavour": 26911, + "foraging": 26912, + "mfa": 26913, + "orr": 26914, + "##open": 26915, + "greyish": 26916, + "contradiction": 26917, + "graz": 26918, + "##ruff": 26919, + "handicapped": 26920, + "marlene": 26921, + "tweed": 26922, + "oaxaca": 26923, + "spp": 26924, + "campos": 26925, + "miocene": 26926, + "pri": 26927, + "configured": 26928, + "cooks": 26929, + "pluto": 26930, + "cozy": 26931, + "pornographic": 26932, + "##entes": 26933, + "70th": 26934, + "fairness": 26935, + "glided": 26936, + "jonny": 26937, + "lynne": 26938, + "rounding": 26939, + "sired": 26940, + "##emon": 26941, + "##nist": 26942, + "remade": 26943, + "uncover": 26944, + "##mack": 26945, + "complied": 26946, + "lei": 26947, + "newsweek": 26948, + "##jured": 26949, + "##parts": 26950, + "##enting": 26951, + "##pg": 26952, + "293": 26953, + "finer": 26954, + "guerrillas": 26955, + "athenian": 26956, + "deng": 26957, + "disused": 26958, + "stepmother": 26959, + "accuse": 26960, + "gingerly": 26961, + "seduction": 26962, + "521": 26963, + "confronting": 26964, + "##walker": 26965, + "##going": 26966, + "gora": 26967, + "nostalgia": 26968, + "sabres": 26969, + "virginity": 26970, + "wrenched": 26971, + "##minated": 26972, + "syndication": 26973, + "wielding": 26974, + "eyre": 26975, + "##56": 26976, + "##gnon": 26977, + "##igny": 26978, + "behaved": 26979, + "taxpayer": 26980, + "sweeps": 26981, + "##growth": 26982, + "childless": 26983, + "gallant": 26984, + "##ywood": 26985, + "amplified": 26986, + "geraldine": 26987, + "scrape": 26988, + "##ffi": 26989, + "babylonian": 26990, + "fresco": 26991, + "##rdan": 26992, + "##kney": 26993, + "##position": 26994, + "1718": 26995, + "restricting": 26996, + "tack": 26997, + "fukuoka": 26998, + "osborn": 26999, + "selector": 27000, + "partnering": 27001, + "##dlow": 27002, + "318": 27003, + "gnu": 27004, + "kia": 27005, + "tak": 27006, + "whitley": 27007, + "gables": 27008, + "##54": 27009, + "##mania": 27010, + "mri": 27011, + "softness": 27012, + "immersion": 27013, + "##bots": 27014, + "##evsky": 27015, + "1713": 27016, + "chilling": 27017, + "insignificant": 27018, + "pcs": 27019, + "##uis": 27020, + "elites": 27021, + "lina": 27022, + "purported": 27023, + "supplemental": 27024, + "teaming": 27025, + "##americana": 27026, + "##dding": 27027, + "##inton": 27028, + "proficient": 27029, + "rouen": 27030, + "##nage": 27031, + "##rret": 27032, + "niccolo": 27033, + "selects": 27034, + "##bread": 27035, + "fluffy": 27036, + "1621": 27037, + "gruff": 27038, + "knotted": 27039, + "mukherjee": 27040, + "polgara": 27041, + "thrash": 27042, + "nicholls": 27043, + "secluded": 27044, + "smoothing": 27045, + "thru": 27046, + "corsica": 27047, + "loaf": 27048, + "whitaker": 27049, + "inquiries": 27050, + "##rrier": 27051, + "##kam": 27052, + "indochina": 27053, + "289": 27054, + "marlins": 27055, + "myles": 27056, + "peking": 27057, + "##tea": 27058, + "extracts": 27059, + "pastry": 27060, + "superhuman": 27061, + "connacht": 27062, + "vogel": 27063, + "##ditional": 27064, + "##het": 27065, + "##udged": 27066, + "##lash": 27067, + "gloss": 27068, + "quarries": 27069, + "refit": 27070, + "teaser": 27071, + "##alic": 27072, + "##gaon": 27073, + "20s": 27074, + "materialized": 27075, + "sling": 27076, + "camped": 27077, + "pickering": 27078, + "tung": 27079, + "tracker": 27080, + "pursuant": 27081, + "##cide": 27082, + "cranes": 27083, + "soc": 27084, + "##cini": 27085, + "##typical": 27086, + "##viere": 27087, + "anhalt": 27088, + "overboard": 27089, + "workout": 27090, + "chores": 27091, + "fares": 27092, + "orphaned": 27093, + "stains": 27094, + "##logie": 27095, + "fenton": 27096, + "surpassing": 27097, + "joyah": 27098, + "triggers": 27099, + "##itte": 27100, + "grandmaster": 27101, + "##lass": 27102, + "##lists": 27103, + "clapping": 27104, + "fraudulent": 27105, + "ledger": 27106, + "nagasaki": 27107, + "##cor": 27108, + "##nosis": 27109, + "##tsa": 27110, + "eucalyptus": 27111, + "tun": 27112, + "##icio": 27113, + "##rney": 27114, + "##tara": 27115, + "dax": 27116, + "heroism": 27117, + "ina": 27118, + "wrexham": 27119, + "onboard": 27120, + "unsigned": 27121, + "##dates": 27122, + "moshe": 27123, + "galley": 27124, + "winnie": 27125, + "droplets": 27126, + "exiles": 27127, + "praises": 27128, + "watered": 27129, + "noodles": 27130, + "##aia": 27131, + "fein": 27132, + "adi": 27133, + "leland": 27134, + "multicultural": 27135, + "stink": 27136, + "bingo": 27137, + "comets": 27138, + "erskine": 27139, + "modernized": 27140, + "canned": 27141, + "constraint": 27142, + "domestically": 27143, + "chemotherapy": 27144, + "featherweight": 27145, + "stifled": 27146, + "##mum": 27147, + "darkly": 27148, + "irresistible": 27149, + "refreshing": 27150, + "hasty": 27151, + "isolate": 27152, + "##oys": 27153, + "kitchener": 27154, + "planners": 27155, + "##wehr": 27156, + "cages": 27157, + "yarn": 27158, + "implant": 27159, + "toulon": 27160, + "elects": 27161, + "childbirth": 27162, + "yue": 27163, + "##lind": 27164, + "##lone": 27165, + "cn": 27166, + "rightful": 27167, + "sportsman": 27168, + "junctions": 27169, + "remodeled": 27170, + "specifies": 27171, + "##rgh": 27172, + "291": 27173, + "##oons": 27174, + "complimented": 27175, + "##urgent": 27176, + "lister": 27177, + "ot": 27178, + "##logic": 27179, + "bequeathed": 27180, + "cheekbones": 27181, + "fontana": 27182, + "gabby": 27183, + "##dial": 27184, + "amadeus": 27185, + "corrugated": 27186, + "maverick": 27187, + "resented": 27188, + "triangles": 27189, + "##hered": 27190, + "##usly": 27191, + "nazareth": 27192, + "tyrol": 27193, + "1675": 27194, + "assent": 27195, + "poorer": 27196, + "sectional": 27197, + "aegean": 27198, + "##cous": 27199, + "296": 27200, + "nylon": 27201, + "ghanaian": 27202, + "##egorical": 27203, + "##weig": 27204, + "cushions": 27205, + "forbid": 27206, + "fusiliers": 27207, + "obstruction": 27208, + "somerville": 27209, + "##scia": 27210, + "dime": 27211, + "earrings": 27212, + "elliptical": 27213, + "leyte": 27214, + "oder": 27215, + "polymers": 27216, + "timmy": 27217, + "atm": 27218, + "midtown": 27219, + "piloted": 27220, + "settles": 27221, + "continual": 27222, + "externally": 27223, + "mayfield": 27224, + "##uh": 27225, + "enrichment": 27226, + "henson": 27227, + "keane": 27228, + "persians": 27229, + "1733": 27230, + "benji": 27231, + "braden": 27232, + "pep": 27233, + "324": 27234, + "##efe": 27235, + "contenders": 27236, + "pepsi": 27237, + "valet": 27238, + "##isches": 27239, + "298": 27240, + "##asse": 27241, + "##earing": 27242, + "goofy": 27243, + "stroll": 27244, + "##amen": 27245, + "authoritarian": 27246, + "occurrences": 27247, + "adversary": 27248, + "ahmedabad": 27249, + "tangent": 27250, + "toppled": 27251, + "dorchester": 27252, + "1672": 27253, + "modernism": 27254, + "marxism": 27255, + "islamist": 27256, + "charlemagne": 27257, + "exponential": 27258, + "racks": 27259, + "unicode": 27260, + "brunette": 27261, + "mbc": 27262, + "pic": 27263, + "skirmish": 27264, + "##bund": 27265, + "##lad": 27266, + "##powered": 27267, + "##yst": 27268, + "hoisted": 27269, + "messina": 27270, + "shatter": 27271, + "##ctum": 27272, + "jedi": 27273, + "vantage": 27274, + "##music": 27275, + "##neil": 27276, + "clemens": 27277, + "mahmoud": 27278, + "corrupted": 27279, + "authentication": 27280, + "lowry": 27281, + "nils": 27282, + "##washed": 27283, + "omnibus": 27284, + "wounding": 27285, + "jillian": 27286, + "##itors": 27287, + "##opped": 27288, + "serialized": 27289, + "narcotics": 27290, + "handheld": 27291, + "##arm": 27292, + "##plicity": 27293, + "intersecting": 27294, + "stimulating": 27295, + "##onis": 27296, + "crate": 27297, + "fellowships": 27298, + "hemingway": 27299, + "casinos": 27300, + "climatic": 27301, + "fordham": 27302, + "copeland": 27303, + "drip": 27304, + "beatty": 27305, + "leaflets": 27306, + "robber": 27307, + "brothel": 27308, + "madeira": 27309, + "##hedral": 27310, + "sphinx": 27311, + "ultrasound": 27312, + "##vana": 27313, + "valor": 27314, + "forbade": 27315, + "leonid": 27316, + "villas": 27317, + "##aldo": 27318, + "duane": 27319, + "marquez": 27320, + "##cytes": 27321, + "disadvantaged": 27322, + "forearms": 27323, + "kawasaki": 27324, + "reacts": 27325, + "consular": 27326, + "lax": 27327, + "uncles": 27328, + "uphold": 27329, + "##hopper": 27330, + "concepcion": 27331, + "dorsey": 27332, + "lass": 27333, + "##izan": 27334, + "arching": 27335, + "passageway": 27336, + "1708": 27337, + "researches": 27338, + "tia": 27339, + "internationals": 27340, + "##graphs": 27341, + "##opers": 27342, + "distinguishes": 27343, + "javanese": 27344, + "divert": 27345, + "##uven": 27346, + "plotted": 27347, + "##listic": 27348, + "##rwin": 27349, + "##erik": 27350, + "##tify": 27351, + "affirmative": 27352, + "signifies": 27353, + "validation": 27354, + "##bson": 27355, + "kari": 27356, + "felicity": 27357, + "georgina": 27358, + "zulu": 27359, + "##eros": 27360, + "##rained": 27361, + "##rath": 27362, + "overcoming": 27363, + "##dot": 27364, + "argyll": 27365, + "##rbin": 27366, + "1734": 27367, + "chiba": 27368, + "ratification": 27369, + "windy": 27370, + "earls": 27371, + "parapet": 27372, + "##marks": 27373, + "hunan": 27374, + "pristine": 27375, + "astrid": 27376, + "punta": 27377, + "##gart": 27378, + "brodie": 27379, + "##kota": 27380, + "##oder": 27381, + "malaga": 27382, + "minerva": 27383, + "rouse": 27384, + "##phonic": 27385, + "bellowed": 27386, + "pagoda": 27387, + "portals": 27388, + "reclamation": 27389, + "##gur": 27390, + "##odies": 27391, + "##⁄₄": 27392, + "parentheses": 27393, + "quoting": 27394, + "allergic": 27395, + "palette": 27396, + "showcases": 27397, + "benefactor": 27398, + "heartland": 27399, + "nonlinear": 27400, + "##tness": 27401, + "bladed": 27402, + "cheerfully": 27403, + "scans": 27404, + "##ety": 27405, + "##hone": 27406, + "1666": 27407, + "girlfriends": 27408, + "pedersen": 27409, + "hiram": 27410, + "sous": 27411, + "##liche": 27412, + "##nator": 27413, + "1683": 27414, + "##nery": 27415, + "##orio": 27416, + "##umen": 27417, + "bobo": 27418, + "primaries": 27419, + "smiley": 27420, + "##cb": 27421, + "unearthed": 27422, + "uniformly": 27423, + "fis": 27424, + "metadata": 27425, + "1635": 27426, + "ind": 27427, + "##oted": 27428, + "recoil": 27429, + "##titles": 27430, + "##tura": 27431, + "##ια": 27432, + "406": 27433, + "hilbert": 27434, + "jamestown": 27435, + "mcmillan": 27436, + "tulane": 27437, + "seychelles": 27438, + "##frid": 27439, + "antics": 27440, + "coli": 27441, + "fated": 27442, + "stucco": 27443, + "##grants": 27444, + "1654": 27445, + "bulky": 27446, + "accolades": 27447, + "arrays": 27448, + "caledonian": 27449, + "carnage": 27450, + "optimism": 27451, + "puebla": 27452, + "##tative": 27453, + "##cave": 27454, + "enforcing": 27455, + "rotherham": 27456, + "seo": 27457, + "dunlop": 27458, + "aeronautics": 27459, + "chimed": 27460, + "incline": 27461, + "zoning": 27462, + "archduke": 27463, + "hellenistic": 27464, + "##oses": 27465, + "##sions": 27466, + "candi": 27467, + "thong": 27468, + "##ople": 27469, + "magnate": 27470, + "rustic": 27471, + "##rsk": 27472, + "projective": 27473, + "slant": 27474, + "##offs": 27475, + "danes": 27476, + "hollis": 27477, + "vocalists": 27478, + "##ammed": 27479, + "congenital": 27480, + "contend": 27481, + "gesellschaft": 27482, + "##ocating": 27483, + "##pressive": 27484, + "douglass": 27485, + "quieter": 27486, + "##cm": 27487, + "##kshi": 27488, + "howled": 27489, + "salim": 27490, + "spontaneously": 27491, + "townsville": 27492, + "buena": 27493, + "southport": 27494, + "##bold": 27495, + "kato": 27496, + "1638": 27497, + "faerie": 27498, + "stiffly": 27499, + "##vus": 27500, + "##rled": 27501, + "297": 27502, + "flawless": 27503, + "realising": 27504, + "taboo": 27505, + "##7th": 27506, + "bytes": 27507, + "straightening": 27508, + "356": 27509, + "jena": 27510, + "##hid": 27511, + "##rmin": 27512, + "cartwright": 27513, + "berber": 27514, + "bertram": 27515, + "soloists": 27516, + "411": 27517, + "noses": 27518, + "417": 27519, + "coping": 27520, + "fission": 27521, + "hardin": 27522, + "inca": 27523, + "##cen": 27524, + "1717": 27525, + "mobilized": 27526, + "vhf": 27527, + "##raf": 27528, + "biscuits": 27529, + "curate": 27530, + "##85": 27531, + "##anial": 27532, + "331": 27533, + "gaunt": 27534, + "neighbourhoods": 27535, + "1540": 27536, + "##abas": 27537, + "blanca": 27538, + "bypassed": 27539, + "sockets": 27540, + "behold": 27541, + "coincidentally": 27542, + "##bane": 27543, + "nara": 27544, + "shave": 27545, + "splinter": 27546, + "terrific": 27547, + "##arion": 27548, + "##erian": 27549, + "commonplace": 27550, + "juris": 27551, + "redwood": 27552, + "waistband": 27553, + "boxed": 27554, + "caitlin": 27555, + "fingerprints": 27556, + "jennie": 27557, + "naturalized": 27558, + "##ired": 27559, + "balfour": 27560, + "craters": 27561, + "jody": 27562, + "bungalow": 27563, + "hugely": 27564, + "quilt": 27565, + "glitter": 27566, + "pigeons": 27567, + "undertaker": 27568, + "bulging": 27569, + "constrained": 27570, + "goo": 27571, + "##sil": 27572, + "##akh": 27573, + "assimilation": 27574, + "reworked": 27575, + "##person": 27576, + "persuasion": 27577, + "##pants": 27578, + "felicia": 27579, + "##cliff": 27580, + "##ulent": 27581, + "1732": 27582, + "explodes": 27583, + "##dun": 27584, + "##inium": 27585, + "##zic": 27586, + "lyman": 27587, + "vulture": 27588, + "hog": 27589, + "overlook": 27590, + "begs": 27591, + "northwards": 27592, + "ow": 27593, + "spoil": 27594, + "##urer": 27595, + "fatima": 27596, + "favorably": 27597, + "accumulate": 27598, + "sargent": 27599, + "sorority": 27600, + "corresponded": 27601, + "dispersal": 27602, + "kochi": 27603, + "toned": 27604, + "##imi": 27605, + "##lita": 27606, + "internacional": 27607, + "newfound": 27608, + "##agger": 27609, + "##lynn": 27610, + "##rigue": 27611, + "booths": 27612, + "peanuts": 27613, + "##eborg": 27614, + "medicare": 27615, + "muriel": 27616, + "nur": 27617, + "##uram": 27618, + "crates": 27619, + "millennia": 27620, + "pajamas": 27621, + "worsened": 27622, + "##breakers": 27623, + "jimi": 27624, + "vanuatu": 27625, + "yawned": 27626, + "##udeau": 27627, + "carousel": 27628, + "##hony": 27629, + "hurdle": 27630, + "##ccus": 27631, + "##mounted": 27632, + "##pod": 27633, + "rv": 27634, + "##eche": 27635, + "airship": 27636, + "ambiguity": 27637, + "compulsion": 27638, + "recapture": 27639, + "##claiming": 27640, + "arthritis": 27641, + "##osomal": 27642, + "1667": 27643, + "asserting": 27644, + "ngc": 27645, + "sniffing": 27646, + "dade": 27647, + "discontent": 27648, + "glendale": 27649, + "ported": 27650, + "##amina": 27651, + "defamation": 27652, + "rammed": 27653, + "##scent": 27654, + "fling": 27655, + "livingstone": 27656, + "##fleet": 27657, + "875": 27658, + "##ppy": 27659, + "apocalyptic": 27660, + "comrade": 27661, + "lcd": 27662, + "##lowe": 27663, + "cessna": 27664, + "eine": 27665, + "persecuted": 27666, + "subsistence": 27667, + "demi": 27668, + "hoop": 27669, + "reliefs": 27670, + "710": 27671, + "coptic": 27672, + "progressing": 27673, + "stemmed": 27674, + "perpetrators": 27675, + "1665": 27676, + "priestess": 27677, + "##nio": 27678, + "dobson": 27679, + "ebony": 27680, + "rooster": 27681, + "itf": 27682, + "tortricidae": 27683, + "##bbon": 27684, + "##jian": 27685, + "cleanup": 27686, + "##jean": 27687, + "##øy": 27688, + "1721": 27689, + "eighties": 27690, + "taxonomic": 27691, + "holiness": 27692, + "##hearted": 27693, + "##spar": 27694, + "antilles": 27695, + "showcasing": 27696, + "stabilized": 27697, + "##nb": 27698, + "gia": 27699, + "mascara": 27700, + "michelangelo": 27701, + "dawned": 27702, + "##uria": 27703, + "##vinsky": 27704, + "extinguished": 27705, + "fitz": 27706, + "grotesque": 27707, + "£100": 27708, + "##fera": 27709, + "##loid": 27710, + "##mous": 27711, + "barges": 27712, + "neue": 27713, + "throbbed": 27714, + "cipher": 27715, + "johnnie": 27716, + "##a1": 27717, + "##mpt": 27718, + "outburst": 27719, + "##swick": 27720, + "spearheaded": 27721, + "administrations": 27722, + "c1": 27723, + "heartbreak": 27724, + "pixels": 27725, + "pleasantly": 27726, + "##enay": 27727, + "lombardy": 27728, + "plush": 27729, + "##nsed": 27730, + "bobbie": 27731, + "##hly": 27732, + "reapers": 27733, + "tremor": 27734, + "xiang": 27735, + "minogue": 27736, + "substantive": 27737, + "hitch": 27738, + "barak": 27739, + "##wyl": 27740, + "kwan": 27741, + "##encia": 27742, + "910": 27743, + "obscene": 27744, + "elegance": 27745, + "indus": 27746, + "surfer": 27747, + "bribery": 27748, + "conserve": 27749, + "##hyllum": 27750, + "##masters": 27751, + "horatio": 27752, + "##fat": 27753, + "apes": 27754, + "rebound": 27755, + "psychotic": 27756, + "##pour": 27757, + "iteration": 27758, + "##mium": 27759, + "##vani": 27760, + "botanic": 27761, + "horribly": 27762, + "antiques": 27763, + "dispose": 27764, + "paxton": 27765, + "##hli": 27766, + "##wg": 27767, + "timeless": 27768, + "1704": 27769, + "disregard": 27770, + "engraver": 27771, + "hounds": 27772, + "##bau": 27773, + "##version": 27774, + "looted": 27775, + "uno": 27776, + "facilitates": 27777, + "groans": 27778, + "masjid": 27779, + "rutland": 27780, + "antibody": 27781, + "disqualification": 27782, + "decatur": 27783, + "footballers": 27784, + "quake": 27785, + "slacks": 27786, + "48th": 27787, + "rein": 27788, + "scribe": 27789, + "stabilize": 27790, + "commits": 27791, + "exemplary": 27792, + "tho": 27793, + "##hort": 27794, + "##chison": 27795, + "pantry": 27796, + "traversed": 27797, + "##hiti": 27798, + "disrepair": 27799, + "identifiable": 27800, + "vibrated": 27801, + "baccalaureate": 27802, + "##nnis": 27803, + "csa": 27804, + "interviewing": 27805, + "##iensis": 27806, + "##raße": 27807, + "greaves": 27808, + "wealthiest": 27809, + "343": 27810, + "classed": 27811, + "jogged": 27812, + "£5": 27813, + "##58": 27814, + "##atal": 27815, + "illuminating": 27816, + "knicks": 27817, + "respecting": 27818, + "##uno": 27819, + "scrubbed": 27820, + "##iji": 27821, + "##dles": 27822, + "kruger": 27823, + "moods": 27824, + "growls": 27825, + "raider": 27826, + "silvia": 27827, + "chefs": 27828, + "kam": 27829, + "vr": 27830, + "cree": 27831, + "percival": 27832, + "##terol": 27833, + "gunter": 27834, + "counterattack": 27835, + "defiant": 27836, + "henan": 27837, + "ze": 27838, + "##rasia": 27839, + "##riety": 27840, + "equivalence": 27841, + "submissions": 27842, + "##fra": 27843, + "##thor": 27844, + "bautista": 27845, + "mechanically": 27846, + "##heater": 27847, + "cornice": 27848, + "herbal": 27849, + "templar": 27850, + "##mering": 27851, + "outputs": 27852, + "ruining": 27853, + "ligand": 27854, + "renumbered": 27855, + "extravagant": 27856, + "mika": 27857, + "blockbuster": 27858, + "eta": 27859, + "insurrection": 27860, + "##ilia": 27861, + "darkening": 27862, + "ferocious": 27863, + "pianos": 27864, + "strife": 27865, + "kinship": 27866, + "##aer": 27867, + "melee": 27868, + "##anor": 27869, + "##iste": 27870, + "##may": 27871, + "##oue": 27872, + "decidedly": 27873, + "weep": 27874, + "##jad": 27875, + "##missive": 27876, + "##ppel": 27877, + "354": 27878, + "puget": 27879, + "unease": 27880, + "##gnant": 27881, + "1629": 27882, + "hammering": 27883, + "kassel": 27884, + "ob": 27885, + "wessex": 27886, + "##lga": 27887, + "bromwich": 27888, + "egan": 27889, + "paranoia": 27890, + "utilization": 27891, + "##atable": 27892, + "##idad": 27893, + "contradictory": 27894, + "provoke": 27895, + "##ols": 27896, + "##ouring": 27897, + "##tangled": 27898, + "knesset": 27899, + "##very": 27900, + "##lette": 27901, + "plumbing": 27902, + "##sden": 27903, + "##¹": 27904, + "greensboro": 27905, + "occult": 27906, + "sniff": 27907, + "338": 27908, + "zev": 27909, + "beaming": 27910, + "gamer": 27911, + "haggard": 27912, + "mahal": 27913, + "##olt": 27914, + "##pins": 27915, + "mendes": 27916, + "utmost": 27917, + "briefing": 27918, + "gunnery": 27919, + "##gut": 27920, + "##pher": 27921, + "##zh": 27922, + "##rok": 27923, + "1679": 27924, + "khalifa": 27925, + "sonya": 27926, + "##boot": 27927, + "principals": 27928, + "urbana": 27929, + "wiring": 27930, + "##liffe": 27931, + "##minating": 27932, + "##rrado": 27933, + "dahl": 27934, + "nyu": 27935, + "skepticism": 27936, + "np": 27937, + "townspeople": 27938, + "ithaca": 27939, + "lobster": 27940, + "somethin": 27941, + "##fur": 27942, + "##arina": 27943, + "##−1": 27944, + "freighter": 27945, + "zimmerman": 27946, + "biceps": 27947, + "contractual": 27948, + "##herton": 27949, + "amend": 27950, + "hurrying": 27951, + "subconscious": 27952, + "##anal": 27953, + "336": 27954, + "meng": 27955, + "clermont": 27956, + "spawning": 27957, + "##eia": 27958, + "##lub": 27959, + "dignitaries": 27960, + "impetus": 27961, + "snacks": 27962, + "spotting": 27963, + "twigs": 27964, + "##bilis": 27965, + "##cz": 27966, + "##ouk": 27967, + "libertadores": 27968, + "nic": 27969, + "skylar": 27970, + "##aina": 27971, + "##firm": 27972, + "gustave": 27973, + "asean": 27974, + "##anum": 27975, + "dieter": 27976, + "legislatures": 27977, + "flirt": 27978, + "bromley": 27979, + "trolls": 27980, + "umar": 27981, + "##bbies": 27982, + "##tyle": 27983, + "blah": 27984, + "parc": 27985, + "bridgeport": 27986, + "crank": 27987, + "negligence": 27988, + "##nction": 27989, + "46th": 27990, + "constantin": 27991, + "molded": 27992, + "bandages": 27993, + "seriousness": 27994, + "00pm": 27995, + "siegel": 27996, + "carpets": 27997, + "compartments": 27998, + "upbeat": 27999, + "statehood": 28000, + "##dner": 28001, + "##edging": 28002, + "marko": 28003, + "730": 28004, + "platt": 28005, + "##hane": 28006, + "paving": 28007, + "##iy": 28008, + "1738": 28009, + "abbess": 28010, + "impatience": 28011, + "limousine": 28012, + "nbl": 28013, + "##talk": 28014, + "441": 28015, + "lucille": 28016, + "mojo": 28017, + "nightfall": 28018, + "robbers": 28019, + "##nais": 28020, + "karel": 28021, + "brisk": 28022, + "calves": 28023, + "replicate": 28024, + "ascribed": 28025, + "telescopes": 28026, + "##olf": 28027, + "intimidated": 28028, + "##reen": 28029, + "ballast": 28030, + "specialization": 28031, + "##sit": 28032, + "aerodynamic": 28033, + "caliphate": 28034, + "rainer": 28035, + "visionary": 28036, + "##arded": 28037, + "epsilon": 28038, + "##aday": 28039, + "##onte": 28040, + "aggregation": 28041, + "auditory": 28042, + "boosted": 28043, + "reunification": 28044, + "kathmandu": 28045, + "loco": 28046, + "robyn": 28047, + "402": 28048, + "acknowledges": 28049, + "appointing": 28050, + "humanoid": 28051, + "newell": 28052, + "redeveloped": 28053, + "restraints": 28054, + "##tained": 28055, + "barbarians": 28056, + "chopper": 28057, + "1609": 28058, + "italiana": 28059, + "##lez": 28060, + "##lho": 28061, + "investigates": 28062, + "wrestlemania": 28063, + "##anies": 28064, + "##bib": 28065, + "690": 28066, + "##falls": 28067, + "creaked": 28068, + "dragoons": 28069, + "gravely": 28070, + "minions": 28071, + "stupidity": 28072, + "volley": 28073, + "##harat": 28074, + "##week": 28075, + "musik": 28076, + "##eries": 28077, + "##uously": 28078, + "fungal": 28079, + "massimo": 28080, + "semantics": 28081, + "malvern": 28082, + "##ahl": 28083, + "##pee": 28084, + "discourage": 28085, + "embryo": 28086, + "imperialism": 28087, + "1910s": 28088, + "profoundly": 28089, + "##ddled": 28090, + "jiangsu": 28091, + "sparkled": 28092, + "stat": 28093, + "##holz": 28094, + "sweatshirt": 28095, + "tobin": 28096, + "##iction": 28097, + "sneered": 28098, + "##cheon": 28099, + "##oit": 28100, + "brit": 28101, + "causal": 28102, + "smyth": 28103, + "##neuve": 28104, + "diffuse": 28105, + "perrin": 28106, + "silvio": 28107, + "##ipes": 28108, + "##recht": 28109, + "detonated": 28110, + "iqbal": 28111, + "selma": 28112, + "##nism": 28113, + "##zumi": 28114, + "roasted": 28115, + "##riders": 28116, + "tay": 28117, + "##ados": 28118, + "##mament": 28119, + "##mut": 28120, + "##rud": 28121, + "840": 28122, + "completes": 28123, + "nipples": 28124, + "cfa": 28125, + "flavour": 28126, + "hirsch": 28127, + "##laus": 28128, + "calderon": 28129, + "sneakers": 28130, + "moravian": 28131, + "##ksha": 28132, + "1622": 28133, + "rq": 28134, + "294": 28135, + "##imeters": 28136, + "bodo": 28137, + "##isance": 28138, + "##pre": 28139, + "##ronia": 28140, + "anatomical": 28141, + "excerpt": 28142, + "##lke": 28143, + "dh": 28144, + "kunst": 28145, + "##tablished": 28146, + "##scoe": 28147, + "biomass": 28148, + "panted": 28149, + "unharmed": 28150, + "gael": 28151, + "housemates": 28152, + "montpellier": 28153, + "##59": 28154, + "coa": 28155, + "rodents": 28156, + "tonic": 28157, + "hickory": 28158, + "singleton": 28159, + "##taro": 28160, + "451": 28161, + "1719": 28162, + "aldo": 28163, + "breaststroke": 28164, + "dempsey": 28165, + "och": 28166, + "rocco": 28167, + "##cuit": 28168, + "merton": 28169, + "dissemination": 28170, + "midsummer": 28171, + "serials": 28172, + "##idi": 28173, + "haji": 28174, + "polynomials": 28175, + "##rdon": 28176, + "gs": 28177, + "enoch": 28178, + "prematurely": 28179, + "shutter": 28180, + "taunton": 28181, + "£3": 28182, + "##grating": 28183, + "##inates": 28184, + "archangel": 28185, + "harassed": 28186, + "##asco": 28187, + "326": 28188, + "archway": 28189, + "dazzling": 28190, + "##ecin": 28191, + "1736": 28192, + "sumo": 28193, + "wat": 28194, + "##kovich": 28195, + "1086": 28196, + "honneur": 28197, + "##ently": 28198, + "##nostic": 28199, + "##ttal": 28200, + "##idon": 28201, + "1605": 28202, + "403": 28203, + "1716": 28204, + "blogger": 28205, + "rents": 28206, + "##gnan": 28207, + "hires": 28208, + "##ikh": 28209, + "##dant": 28210, + "howie": 28211, + "##rons": 28212, + "handler": 28213, + "retracted": 28214, + "shocks": 28215, + "1632": 28216, + "arun": 28217, + "duluth": 28218, + "kepler": 28219, + "trumpeter": 28220, + "##lary": 28221, + "peeking": 28222, + "seasoned": 28223, + "trooper": 28224, + "##mara": 28225, + "laszlo": 28226, + "##iciencies": 28227, + "##rti": 28228, + "heterosexual": 28229, + "##inatory": 28230, + "##ssion": 28231, + "indira": 28232, + "jogging": 28233, + "##inga": 28234, + "##lism": 28235, + "beit": 28236, + "dissatisfaction": 28237, + "malice": 28238, + "##ately": 28239, + "nedra": 28240, + "peeling": 28241, + "##rgeon": 28242, + "47th": 28243, + "stadiums": 28244, + "475": 28245, + "vertigo": 28246, + "##ains": 28247, + "iced": 28248, + "restroom": 28249, + "##plify": 28250, + "##tub": 28251, + "illustrating": 28252, + "pear": 28253, + "##chner": 28254, + "##sibility": 28255, + "inorganic": 28256, + "rappers": 28257, + "receipts": 28258, + "watery": 28259, + "##kura": 28260, + "lucinda": 28261, + "##oulos": 28262, + "reintroduced": 28263, + "##8th": 28264, + "##tched": 28265, + "gracefully": 28266, + "saxons": 28267, + "nutritional": 28268, + "wastewater": 28269, + "rained": 28270, + "favourites": 28271, + "bedrock": 28272, + "fisted": 28273, + "hallways": 28274, + "likeness": 28275, + "upscale": 28276, + "##lateral": 28277, + "1580": 28278, + "blinds": 28279, + "prequel": 28280, + "##pps": 28281, + "##tama": 28282, + "deter": 28283, + "humiliating": 28284, + "restraining": 28285, + "tn": 28286, + "vents": 28287, + "1659": 28288, + "laundering": 28289, + "recess": 28290, + "rosary": 28291, + "tractors": 28292, + "coulter": 28293, + "federer": 28294, + "##ifiers": 28295, + "##plin": 28296, + "persistence": 28297, + "##quitable": 28298, + "geschichte": 28299, + "pendulum": 28300, + "quakers": 28301, + "##beam": 28302, + "bassett": 28303, + "pictorial": 28304, + "buffet": 28305, + "koln": 28306, + "##sitor": 28307, + "drills": 28308, + "reciprocal": 28309, + "shooters": 28310, + "##57": 28311, + "##cton": 28312, + "##tees": 28313, + "converge": 28314, + "pip": 28315, + "dmitri": 28316, + "donnelly": 28317, + "yamamoto": 28318, + "aqua": 28319, + "azores": 28320, + "demographics": 28321, + "hypnotic": 28322, + "spitfire": 28323, + "suspend": 28324, + "wryly": 28325, + "roderick": 28326, + "##rran": 28327, + "sebastien": 28328, + "##asurable": 28329, + "mavericks": 28330, + "##fles": 28331, + "##200": 28332, + "himalayan": 28333, + "prodigy": 28334, + "##iance": 28335, + "transvaal": 28336, + "demonstrators": 28337, + "handcuffs": 28338, + "dodged": 28339, + "mcnamara": 28340, + "sublime": 28341, + "1726": 28342, + "crazed": 28343, + "##efined": 28344, + "##till": 28345, + "ivo": 28346, + "pondered": 28347, + "reconciled": 28348, + "shrill": 28349, + "sava": 28350, + "##duk": 28351, + "bal": 28352, + "cad": 28353, + "heresy": 28354, + "jaipur": 28355, + "goran": 28356, + "##nished": 28357, + "341": 28358, + "lux": 28359, + "shelly": 28360, + "whitehall": 28361, + "##hre": 28362, + "israelis": 28363, + "peacekeeping": 28364, + "##wled": 28365, + "1703": 28366, + "demetrius": 28367, + "ousted": 28368, + "##arians": 28369, + "##zos": 28370, + "beale": 28371, + "anwar": 28372, + "backstroke": 28373, + "raged": 28374, + "shrinking": 28375, + "cremated": 28376, + "##yck": 28377, + "benign": 28378, + "towing": 28379, + "wadi": 28380, + "darmstadt": 28381, + "landfill": 28382, + "parana": 28383, + "soothe": 28384, + "colleen": 28385, + "sidewalks": 28386, + "mayfair": 28387, + "tumble": 28388, + "hepatitis": 28389, + "ferrer": 28390, + "superstructure": 28391, + "##gingly": 28392, + "##urse": 28393, + "##wee": 28394, + "anthropological": 28395, + "translators": 28396, + "##mies": 28397, + "closeness": 28398, + "hooves": 28399, + "##pw": 28400, + "mondays": 28401, + "##roll": 28402, + "##vita": 28403, + "landscaping": 28404, + "##urized": 28405, + "purification": 28406, + "sock": 28407, + "thorns": 28408, + "thwarted": 28409, + "jalan": 28410, + "tiberius": 28411, + "##taka": 28412, + "saline": 28413, + "##rito": 28414, + "confidently": 28415, + "khyber": 28416, + "sculptors": 28417, + "##ij": 28418, + "brahms": 28419, + "hammersmith": 28420, + "inspectors": 28421, + "battista": 28422, + "fivb": 28423, + "fragmentation": 28424, + "hackney": 28425, + "##uls": 28426, + "arresting": 28427, + "exercising": 28428, + "antoinette": 28429, + "bedfordshire": 28430, + "##zily": 28431, + "dyed": 28432, + "##hema": 28433, + "1656": 28434, + "racetrack": 28435, + "variability": 28436, + "##tique": 28437, + "1655": 28438, + "austrians": 28439, + "deteriorating": 28440, + "madman": 28441, + "theorists": 28442, + "aix": 28443, + "lehman": 28444, + "weathered": 28445, + "1731": 28446, + "decreed": 28447, + "eruptions": 28448, + "1729": 28449, + "flaw": 28450, + "quinlan": 28451, + "sorbonne": 28452, + "flutes": 28453, + "nunez": 28454, + "1711": 28455, + "adored": 28456, + "downwards": 28457, + "fable": 28458, + "rasped": 28459, + "1712": 28460, + "moritz": 28461, + "mouthful": 28462, + "renegade": 28463, + "shivers": 28464, + "stunts": 28465, + "dysfunction": 28466, + "restrain": 28467, + "translit": 28468, + "327": 28469, + "pancakes": 28470, + "##avio": 28471, + "##cision": 28472, + "##tray": 28473, + "351": 28474, + "vial": 28475, + "##lden": 28476, + "bain": 28477, + "##maid": 28478, + "##oxide": 28479, + "chihuahua": 28480, + "malacca": 28481, + "vimes": 28482, + "##rba": 28483, + "##rnier": 28484, + "1664": 28485, + "donnie": 28486, + "plaques": 28487, + "##ually": 28488, + "337": 28489, + "bangs": 28490, + "floppy": 28491, + "huntsville": 28492, + "loretta": 28493, + "nikolay": 28494, + "##otte": 28495, + "eater": 28496, + "handgun": 28497, + "ubiquitous": 28498, + "##hett": 28499, + "eras": 28500, + "zodiac": 28501, + "1634": 28502, + "##omorphic": 28503, + "1820s": 28504, + "##zog": 28505, + "cochran": 28506, + "##bula": 28507, + "##lithic": 28508, + "warring": 28509, + "##rada": 28510, + "dalai": 28511, + "excused": 28512, + "blazers": 28513, + "mcconnell": 28514, + "reeling": 28515, + "bot": 28516, + "este": 28517, + "##abi": 28518, + "geese": 28519, + "hoax": 28520, + "taxon": 28521, + "##bla": 28522, + "guitarists": 28523, + "##icon": 28524, + "condemning": 28525, + "hunts": 28526, + "inversion": 28527, + "moffat": 28528, + "taekwondo": 28529, + "##lvis": 28530, + "1624": 28531, + "stammered": 28532, + "##rest": 28533, + "##rzy": 28534, + "sousa": 28535, + "fundraiser": 28536, + "marylebone": 28537, + "navigable": 28538, + "uptown": 28539, + "cabbage": 28540, + "daniela": 28541, + "salman": 28542, + "shitty": 28543, + "whimper": 28544, + "##kian": 28545, + "##utive": 28546, + "programmers": 28547, + "protections": 28548, + "rm": 28549, + "##rmi": 28550, + "##rued": 28551, + "forceful": 28552, + "##enes": 28553, + "fuss": 28554, + "##tao": 28555, + "##wash": 28556, + "brat": 28557, + "oppressive": 28558, + "reykjavik": 28559, + "spartak": 28560, + "ticking": 28561, + "##inkles": 28562, + "##kiewicz": 28563, + "adolph": 28564, + "horst": 28565, + "maui": 28566, + "protege": 28567, + "straighten": 28568, + "cpc": 28569, + "landau": 28570, + "concourse": 28571, + "clements": 28572, + "resultant": 28573, + "##ando": 28574, + "imaginative": 28575, + "joo": 28576, + "reactivated": 28577, + "##rem": 28578, + "##ffled": 28579, + "##uising": 28580, + "consultative": 28581, + "##guide": 28582, + "flop": 28583, + "kaitlyn": 28584, + "mergers": 28585, + "parenting": 28586, + "somber": 28587, + "##vron": 28588, + "supervise": 28589, + "vidhan": 28590, + "##imum": 28591, + "courtship": 28592, + "exemplified": 28593, + "harmonies": 28594, + "medallist": 28595, + "refining": 28596, + "##rrow": 28597, + "##ка": 28598, + "amara": 28599, + "##hum": 28600, + "780": 28601, + "goalscorer": 28602, + "sited": 28603, + "overshadowed": 28604, + "rohan": 28605, + "displeasure": 28606, + "secretive": 28607, + "multiplied": 28608, + "osman": 28609, + "##orth": 28610, + "engravings": 28611, + "padre": 28612, + "##kali": 28613, + "##veda": 28614, + "miniatures": 28615, + "mis": 28616, + "##yala": 28617, + "clap": 28618, + "pali": 28619, + "rook": 28620, + "##cana": 28621, + "1692": 28622, + "57th": 28623, + "antennae": 28624, + "astro": 28625, + "oskar": 28626, + "1628": 28627, + "bulldog": 28628, + "crotch": 28629, + "hackett": 28630, + "yucatan": 28631, + "##sure": 28632, + "amplifiers": 28633, + "brno": 28634, + "ferrara": 28635, + "migrating": 28636, + "##gree": 28637, + "thanking": 28638, + "turing": 28639, + "##eza": 28640, + "mccann": 28641, + "ting": 28642, + "andersson": 28643, + "onslaught": 28644, + "gaines": 28645, + "ganga": 28646, + "incense": 28647, + "standardization": 28648, + "##mation": 28649, + "sentai": 28650, + "scuba": 28651, + "stuffing": 28652, + "turquoise": 28653, + "waivers": 28654, + "alloys": 28655, + "##vitt": 28656, + "regaining": 28657, + "vaults": 28658, + "##clops": 28659, + "##gizing": 28660, + "digger": 28661, + "furry": 28662, + "memorabilia": 28663, + "probing": 28664, + "##iad": 28665, + "payton": 28666, + "rec": 28667, + "deutschland": 28668, + "filippo": 28669, + "opaque": 28670, + "seamen": 28671, + "zenith": 28672, + "afrikaans": 28673, + "##filtration": 28674, + "disciplined": 28675, + "inspirational": 28676, + "##merie": 28677, + "banco": 28678, + "confuse": 28679, + "grafton": 28680, + "tod": 28681, + "##dgets": 28682, + "championed": 28683, + "simi": 28684, + "anomaly": 28685, + "biplane": 28686, + "##ceptive": 28687, + "electrode": 28688, + "##para": 28689, + "1697": 28690, + "cleavage": 28691, + "crossbow": 28692, + "swirl": 28693, + "informant": 28694, + "##lars": 28695, + "##osta": 28696, + "afi": 28697, + "bonfire": 28698, + "spec": 28699, + "##oux": 28700, + "lakeside": 28701, + "slump": 28702, + "##culus": 28703, + "##lais": 28704, + "##qvist": 28705, + "##rrigan": 28706, + "1016": 28707, + "facades": 28708, + "borg": 28709, + "inwardly": 28710, + "cervical": 28711, + "xl": 28712, + "pointedly": 28713, + "050": 28714, + "stabilization": 28715, + "##odon": 28716, + "chests": 28717, + "1699": 28718, + "hacked": 28719, + "ctv": 28720, + "orthogonal": 28721, + "suzy": 28722, + "##lastic": 28723, + "gaulle": 28724, + "jacobite": 28725, + "rearview": 28726, + "##cam": 28727, + "##erted": 28728, + "ashby": 28729, + "##drik": 28730, + "##igate": 28731, + "##mise": 28732, + "##zbek": 28733, + "affectionately": 28734, + "canine": 28735, + "disperse": 28736, + "latham": 28737, + "##istles": 28738, + "##ivar": 28739, + "spielberg": 28740, + "##orin": 28741, + "##idium": 28742, + "ezekiel": 28743, + "cid": 28744, + "##sg": 28745, + "durga": 28746, + "middletown": 28747, + "##cina": 28748, + "customized": 28749, + "frontiers": 28750, + "harden": 28751, + "##etano": 28752, + "##zzy": 28753, + "1604": 28754, + "bolsheviks": 28755, + "##66": 28756, + "coloration": 28757, + "yoko": 28758, + "##bedo": 28759, + "briefs": 28760, + "slabs": 28761, + "debra": 28762, + "liquidation": 28763, + "plumage": 28764, + "##oin": 28765, + "blossoms": 28766, + "dementia": 28767, + "subsidy": 28768, + "1611": 28769, + "proctor": 28770, + "relational": 28771, + "jerseys": 28772, + "parochial": 28773, + "ter": 28774, + "##ici": 28775, + "esa": 28776, + "peshawar": 28777, + "cavalier": 28778, + "loren": 28779, + "cpi": 28780, + "idiots": 28781, + "shamrock": 28782, + "1646": 28783, + "dutton": 28784, + "malabar": 28785, + "mustache": 28786, + "##endez": 28787, + "##ocytes": 28788, + "referencing": 28789, + "terminates": 28790, + "marche": 28791, + "yarmouth": 28792, + "##sop": 28793, + "acton": 28794, + "mated": 28795, + "seton": 28796, + "subtly": 28797, + "baptised": 28798, + "beige": 28799, + "extremes": 28800, + "jolted": 28801, + "kristina": 28802, + "telecast": 28803, + "##actic": 28804, + "safeguard": 28805, + "waldo": 28806, + "##baldi": 28807, + "##bular": 28808, + "endeavors": 28809, + "sloppy": 28810, + "subterranean": 28811, + "##ensburg": 28812, + "##itung": 28813, + "delicately": 28814, + "pigment": 28815, + "tq": 28816, + "##scu": 28817, + "1626": 28818, + "##ound": 28819, + "collisions": 28820, + "coveted": 28821, + "herds": 28822, + "##personal": 28823, + "##meister": 28824, + "##nberger": 28825, + "chopra": 28826, + "##ricting": 28827, + "abnormalities": 28828, + "defective": 28829, + "galician": 28830, + "lucie": 28831, + "##dilly": 28832, + "alligator": 28833, + "likened": 28834, + "##genase": 28835, + "burundi": 28836, + "clears": 28837, + "complexion": 28838, + "derelict": 28839, + "deafening": 28840, + "diablo": 28841, + "fingered": 28842, + "champaign": 28843, + "dogg": 28844, + "enlist": 28845, + "isotope": 28846, + "labeling": 28847, + "mrna": 28848, + "##erre": 28849, + "brilliance": 28850, + "marvelous": 28851, + "##ayo": 28852, + "1652": 28853, + "crawley": 28854, + "ether": 28855, + "footed": 28856, + "dwellers": 28857, + "deserts": 28858, + "hamish": 28859, + "rubs": 28860, + "warlock": 28861, + "skimmed": 28862, + "##lizer": 28863, + "870": 28864, + "buick": 28865, + "embark": 28866, + "heraldic": 28867, + "irregularities": 28868, + "##ajan": 28869, + "kiara": 28870, + "##kulam": 28871, + "##ieg": 28872, + "antigen": 28873, + "kowalski": 28874, + "##lge": 28875, + "oakley": 28876, + "visitation": 28877, + "##mbit": 28878, + "vt": 28879, + "##suit": 28880, + "1570": 28881, + "murderers": 28882, + "##miento": 28883, + "##rites": 28884, + "chimneys": 28885, + "##sling": 28886, + "condemn": 28887, + "custer": 28888, + "exchequer": 28889, + "havre": 28890, + "##ghi": 28891, + "fluctuations": 28892, + "##rations": 28893, + "dfb": 28894, + "hendricks": 28895, + "vaccines": 28896, + "##tarian": 28897, + "nietzsche": 28898, + "biking": 28899, + "juicy": 28900, + "##duced": 28901, + "brooding": 28902, + "scrolling": 28903, + "selangor": 28904, + "##ragan": 28905, + "352": 28906, + "annum": 28907, + "boomed": 28908, + "seminole": 28909, + "sugarcane": 28910, + "##dna": 28911, + "departmental": 28912, + "dismissing": 28913, + "innsbruck": 28914, + "arteries": 28915, + "ashok": 28916, + "batavia": 28917, + "daze": 28918, + "kun": 28919, + "overtook": 28920, + "##rga": 28921, + "##tlan": 28922, + "beheaded": 28923, + "gaddafi": 28924, + "holm": 28925, + "electronically": 28926, + "faulty": 28927, + "galilee": 28928, + "fractures": 28929, + "kobayashi": 28930, + "##lized": 28931, + "gunmen": 28932, + "magma": 28933, + "aramaic": 28934, + "mala": 28935, + "eastenders": 28936, + "inference": 28937, + "messengers": 28938, + "bf": 28939, + "##qu": 28940, + "407": 28941, + "bathrooms": 28942, + "##vere": 28943, + "1658": 28944, + "flashbacks": 28945, + "ideally": 28946, + "misunderstood": 28947, + "##jali": 28948, + "##weather": 28949, + "mendez": 28950, + "##grounds": 28951, + "505": 28952, + "uncanny": 28953, + "##iii": 28954, + "1709": 28955, + "friendships": 28956, + "##nbc": 28957, + "sacrament": 28958, + "accommodated": 28959, + "reiterated": 28960, + "logistical": 28961, + "pebbles": 28962, + "thumped": 28963, + "##escence": 28964, + "administering": 28965, + "decrees": 28966, + "drafts": 28967, + "##flight": 28968, + "##cased": 28969, + "##tula": 28970, + "futuristic": 28971, + "picket": 28972, + "intimidation": 28973, + "winthrop": 28974, + "##fahan": 28975, + "interfered": 28976, + "339": 28977, + "afar": 28978, + "francoise": 28979, + "morally": 28980, + "uta": 28981, + "cochin": 28982, + "croft": 28983, + "dwarfs": 28984, + "##bruck": 28985, + "##dents": 28986, + "##nami": 28987, + "biker": 28988, + "##hner": 28989, + "##meral": 28990, + "nano": 28991, + "##isen": 28992, + "##ometric": 28993, + "##pres": 28994, + "##ан": 28995, + "brightened": 28996, + "meek": 28997, + "parcels": 28998, + "securely": 28999, + "gunners": 29000, + "##jhl": 29001, + "##zko": 29002, + "agile": 29003, + "hysteria": 29004, + "##lten": 29005, + "##rcus": 29006, + "bukit": 29007, + "champs": 29008, + "chevy": 29009, + "cuckoo": 29010, + "leith": 29011, + "sadler": 29012, + "theologians": 29013, + "welded": 29014, + "##section": 29015, + "1663": 29016, + "jj": 29017, + "plurality": 29018, + "xander": 29019, + "##rooms": 29020, + "##formed": 29021, + "shredded": 29022, + "temps": 29023, + "intimately": 29024, + "pau": 29025, + "tormented": 29026, + "##lok": 29027, + "##stellar": 29028, + "1618": 29029, + "charred": 29030, + "ems": 29031, + "essen": 29032, + "##mmel": 29033, + "alarms": 29034, + "spraying": 29035, + "ascot": 29036, + "blooms": 29037, + "twinkle": 29038, + "##abia": 29039, + "##apes": 29040, + "internment": 29041, + "obsidian": 29042, + "##chaft": 29043, + "snoop": 29044, + "##dav": 29045, + "##ooping": 29046, + "malibu": 29047, + "##tension": 29048, + "quiver": 29049, + "##itia": 29050, + "hays": 29051, + "mcintosh": 29052, + "travers": 29053, + "walsall": 29054, + "##ffie": 29055, + "1623": 29056, + "beverley": 29057, + "schwarz": 29058, + "plunging": 29059, + "structurally": 29060, + "m3": 29061, + "rosenthal": 29062, + "vikram": 29063, + "##tsk": 29064, + "770": 29065, + "ghz": 29066, + "##onda": 29067, + "##tiv": 29068, + "chalmers": 29069, + "groningen": 29070, + "pew": 29071, + "reckon": 29072, + "unicef": 29073, + "##rvis": 29074, + "55th": 29075, + "##gni": 29076, + "1651": 29077, + "sulawesi": 29078, + "avila": 29079, + "cai": 29080, + "metaphysical": 29081, + "screwing": 29082, + "turbulence": 29083, + "##mberg": 29084, + "augusto": 29085, + "samba": 29086, + "56th": 29087, + "baffled": 29088, + "momentary": 29089, + "toxin": 29090, + "##urian": 29091, + "##wani": 29092, + "aachen": 29093, + "condoms": 29094, + "dali": 29095, + "steppe": 29096, + "##3d": 29097, + "##app": 29098, + "##oed": 29099, + "##year": 29100, + "adolescence": 29101, + "dauphin": 29102, + "electrically": 29103, + "inaccessible": 29104, + "microscopy": 29105, + "nikita": 29106, + "##ega": 29107, + "atv": 29108, + "##cel": 29109, + "##enter": 29110, + "##oles": 29111, + "##oteric": 29112, + "##ы": 29113, + "accountants": 29114, + "punishments": 29115, + "wrongly": 29116, + "bribes": 29117, + "adventurous": 29118, + "clinch": 29119, + "flinders": 29120, + "southland": 29121, + "##hem": 29122, + "##kata": 29123, + "gough": 29124, + "##ciency": 29125, + "lads": 29126, + "soared": 29127, + "##ה": 29128, + "undergoes": 29129, + "deformation": 29130, + "outlawed": 29131, + "rubbish": 29132, + "##arus": 29133, + "##mussen": 29134, + "##nidae": 29135, + "##rzburg": 29136, + "arcs": 29137, + "##ingdon": 29138, + "##tituted": 29139, + "1695": 29140, + "wheelbase": 29141, + "wheeling": 29142, + "bombardier": 29143, + "campground": 29144, + "zebra": 29145, + "##lices": 29146, + "##oj": 29147, + "##bain": 29148, + "lullaby": 29149, + "##ecure": 29150, + "donetsk": 29151, + "wylie": 29152, + "grenada": 29153, + "##arding": 29154, + "##ης": 29155, + "squinting": 29156, + "eireann": 29157, + "opposes": 29158, + "##andra": 29159, + "maximal": 29160, + "runes": 29161, + "##broken": 29162, + "##cuting": 29163, + "##iface": 29164, + "##ror": 29165, + "##rosis": 29166, + "additive": 29167, + "britney": 29168, + "adultery": 29169, + "triggering": 29170, + "##drome": 29171, + "detrimental": 29172, + "aarhus": 29173, + "containment": 29174, + "jc": 29175, + "swapped": 29176, + "vichy": 29177, + "##ioms": 29178, + "madly": 29179, + "##oric": 29180, + "##rag": 29181, + "brant": 29182, + "##ckey": 29183, + "##trix": 29184, + "1560": 29185, + "1612": 29186, + "broughton": 29187, + "rustling": 29188, + "##stems": 29189, + "##uder": 29190, + "asbestos": 29191, + "mentoring": 29192, + "##nivorous": 29193, + "finley": 29194, + "leaps": 29195, + "##isan": 29196, + "apical": 29197, + "pry": 29198, + "slits": 29199, + "substitutes": 29200, + "##dict": 29201, + "intuitive": 29202, + "fantasia": 29203, + "insistent": 29204, + "unreasonable": 29205, + "##igen": 29206, + "##vna": 29207, + "domed": 29208, + "hannover": 29209, + "margot": 29210, + "ponder": 29211, + "##zziness": 29212, + "impromptu": 29213, + "jian": 29214, + "lc": 29215, + "rampage": 29216, + "stemming": 29217, + "##eft": 29218, + "andrey": 29219, + "gerais": 29220, + "whichever": 29221, + "amnesia": 29222, + "appropriated": 29223, + "anzac": 29224, + "clicks": 29225, + "modifying": 29226, + "ultimatum": 29227, + "cambrian": 29228, + "maids": 29229, + "verve": 29230, + "yellowstone": 29231, + "##mbs": 29232, + "conservatoire": 29233, + "##scribe": 29234, + "adherence": 29235, + "dinners": 29236, + "spectra": 29237, + "imperfect": 29238, + "mysteriously": 29239, + "sidekick": 29240, + "tatar": 29241, + "tuba": 29242, + "##aks": 29243, + "##ifolia": 29244, + "distrust": 29245, + "##athan": 29246, + "##zle": 29247, + "c2": 29248, + "ronin": 29249, + "zac": 29250, + "##pse": 29251, + "celaena": 29252, + "instrumentalist": 29253, + "scents": 29254, + "skopje": 29255, + "##mbling": 29256, + "comical": 29257, + "compensated": 29258, + "vidal": 29259, + "condor": 29260, + "intersect": 29261, + "jingle": 29262, + "wavelengths": 29263, + "##urrent": 29264, + "mcqueen": 29265, + "##izzly": 29266, + "carp": 29267, + "weasel": 29268, + "422": 29269, + "kanye": 29270, + "militias": 29271, + "postdoctoral": 29272, + "eugen": 29273, + "gunslinger": 29274, + "##ɛ": 29275, + "faux": 29276, + "hospice": 29277, + "##for": 29278, + "appalled": 29279, + "derivation": 29280, + "dwarves": 29281, + "##elis": 29282, + "dilapidated": 29283, + "##folk": 29284, + "astoria": 29285, + "philology": 29286, + "##lwyn": 29287, + "##otho": 29288, + "##saka": 29289, + "inducing": 29290, + "philanthropy": 29291, + "##bf": 29292, + "##itative": 29293, + "geek": 29294, + "markedly": 29295, + "sql": 29296, + "##yce": 29297, + "bessie": 29298, + "indices": 29299, + "rn": 29300, + "##flict": 29301, + "495": 29302, + "frowns": 29303, + "resolving": 29304, + "weightlifting": 29305, + "tugs": 29306, + "cleric": 29307, + "contentious": 29308, + "1653": 29309, + "mania": 29310, + "rms": 29311, + "##miya": 29312, + "##reate": 29313, + "##ruck": 29314, + "##tucket": 29315, + "bien": 29316, + "eels": 29317, + "marek": 29318, + "##ayton": 29319, + "##cence": 29320, + "discreet": 29321, + "unofficially": 29322, + "##ife": 29323, + "leaks": 29324, + "##bber": 29325, + "1705": 29326, + "332": 29327, + "dung": 29328, + "compressor": 29329, + "hillsborough": 29330, + "pandit": 29331, + "shillings": 29332, + "distal": 29333, + "##skin": 29334, + "381": 29335, + "##tat": 29336, + "##you": 29337, + "nosed": 29338, + "##nir": 29339, + "mangrove": 29340, + "undeveloped": 29341, + "##idia": 29342, + "textures": 29343, + "##inho": 29344, + "##500": 29345, + "##rise": 29346, + "ae": 29347, + "irritating": 29348, + "nay": 29349, + "amazingly": 29350, + "bancroft": 29351, + "apologetic": 29352, + "compassionate": 29353, + "kata": 29354, + "symphonies": 29355, + "##lovic": 29356, + "airspace": 29357, + "##lch": 29358, + "930": 29359, + "gifford": 29360, + "precautions": 29361, + "fulfillment": 29362, + "sevilla": 29363, + "vulgar": 29364, + "martinique": 29365, + "##urities": 29366, + "looting": 29367, + "piccolo": 29368, + "tidy": 29369, + "##dermott": 29370, + "quadrant": 29371, + "armchair": 29372, + "incomes": 29373, + "mathematicians": 29374, + "stampede": 29375, + "nilsson": 29376, + "##inking": 29377, + "##scan": 29378, + "foo": 29379, + "quarterfinal": 29380, + "##ostal": 29381, + "shang": 29382, + "shouldered": 29383, + "squirrels": 29384, + "##owe": 29385, + "344": 29386, + "vinegar": 29387, + "##bner": 29388, + "##rchy": 29389, + "##systems": 29390, + "delaying": 29391, + "##trics": 29392, + "ars": 29393, + "dwyer": 29394, + "rhapsody": 29395, + "sponsoring": 29396, + "##gration": 29397, + "bipolar": 29398, + "cinder": 29399, + "starters": 29400, + "##olio": 29401, + "##urst": 29402, + "421": 29403, + "signage": 29404, + "##nty": 29405, + "aground": 29406, + "figurative": 29407, + "mons": 29408, + "acquaintances": 29409, + "duets": 29410, + "erroneously": 29411, + "soyuz": 29412, + "elliptic": 29413, + "recreated": 29414, + "##cultural": 29415, + "##quette": 29416, + "##ssed": 29417, + "##tma": 29418, + "##zcz": 29419, + "moderator": 29420, + "scares": 29421, + "##itaire": 29422, + "##stones": 29423, + "##udence": 29424, + "juniper": 29425, + "sighting": 29426, + "##just": 29427, + "##nsen": 29428, + "britten": 29429, + "calabria": 29430, + "ry": 29431, + "bop": 29432, + "cramer": 29433, + "forsyth": 29434, + "stillness": 29435, + "##л": 29436, + "airmen": 29437, + "gathers": 29438, + "unfit": 29439, + "##umber": 29440, + "##upt": 29441, + "taunting": 29442, + "##rip": 29443, + "seeker": 29444, + "streamlined": 29445, + "##bution": 29446, + "holster": 29447, + "schumann": 29448, + "tread": 29449, + "vox": 29450, + "##gano": 29451, + "##onzo": 29452, + "strive": 29453, + "dil": 29454, + "reforming": 29455, + "covent": 29456, + "newbury": 29457, + "predicting": 29458, + "##orro": 29459, + "decorate": 29460, + "tre": 29461, + "##puted": 29462, + "andover": 29463, + "ie": 29464, + "asahi": 29465, + "dept": 29466, + "dunkirk": 29467, + "gills": 29468, + "##tori": 29469, + "buren": 29470, + "huskies": 29471, + "##stis": 29472, + "##stov": 29473, + "abstracts": 29474, + "bets": 29475, + "loosen": 29476, + "##opa": 29477, + "1682": 29478, + "yearning": 29479, + "##glio": 29480, + "##sir": 29481, + "berman": 29482, + "effortlessly": 29483, + "enamel": 29484, + "napoli": 29485, + "persist": 29486, + "##peration": 29487, + "##uez": 29488, + "attache": 29489, + "elisa": 29490, + "b1": 29491, + "invitations": 29492, + "##kic": 29493, + "accelerating": 29494, + "reindeer": 29495, + "boardwalk": 29496, + "clutches": 29497, + "nelly": 29498, + "polka": 29499, + "starbucks": 29500, + "##kei": 29501, + "adamant": 29502, + "huey": 29503, + "lough": 29504, + "unbroken": 29505, + "adventurer": 29506, + "embroidery": 29507, + "inspecting": 29508, + "stanza": 29509, + "##ducted": 29510, + "naia": 29511, + "taluka": 29512, + "##pone": 29513, + "##roids": 29514, + "chases": 29515, + "deprivation": 29516, + "florian": 29517, + "##jing": 29518, + "##ppet": 29519, + "earthly": 29520, + "##lib": 29521, + "##ssee": 29522, + "colossal": 29523, + "foreigner": 29524, + "vet": 29525, + "freaks": 29526, + "patrice": 29527, + "rosewood": 29528, + "triassic": 29529, + "upstate": 29530, + "##pkins": 29531, + "dominates": 29532, + "ata": 29533, + "chants": 29534, + "ks": 29535, + "vo": 29536, + "##400": 29537, + "##bley": 29538, + "##raya": 29539, + "##rmed": 29540, + "555": 29541, + "agra": 29542, + "infiltrate": 29543, + "##ailing": 29544, + "##ilation": 29545, + "##tzer": 29546, + "##uppe": 29547, + "##werk": 29548, + "binoculars": 29549, + "enthusiast": 29550, + "fujian": 29551, + "squeak": 29552, + "##avs": 29553, + "abolitionist": 29554, + "almeida": 29555, + "boredom": 29556, + "hampstead": 29557, + "marsden": 29558, + "rations": 29559, + "##ands": 29560, + "inflated": 29561, + "334": 29562, + "bonuses": 29563, + "rosalie": 29564, + "patna": 29565, + "##rco": 29566, + "329": 29567, + "detachments": 29568, + "penitentiary": 29569, + "54th": 29570, + "flourishing": 29571, + "woolf": 29572, + "##dion": 29573, + "##etched": 29574, + "papyrus": 29575, + "##lster": 29576, + "##nsor": 29577, + "##toy": 29578, + "bobbed": 29579, + "dismounted": 29580, + "endelle": 29581, + "inhuman": 29582, + "motorola": 29583, + "tbs": 29584, + "wince": 29585, + "wreath": 29586, + "##ticus": 29587, + "hideout": 29588, + "inspections": 29589, + "sanjay": 29590, + "disgrace": 29591, + "infused": 29592, + "pudding": 29593, + "stalks": 29594, + "##urbed": 29595, + "arsenic": 29596, + "leases": 29597, + "##hyl": 29598, + "##rrard": 29599, + "collarbone": 29600, + "##waite": 29601, + "##wil": 29602, + "dowry": 29603, + "##bant": 29604, + "##edance": 29605, + "genealogical": 29606, + "nitrate": 29607, + "salamanca": 29608, + "scandals": 29609, + "thyroid": 29610, + "necessitated": 29611, + "##!": 29612, + "##\"": 29613, + "###": 29614, + "##$": 29615, + "##%": 29616, + "##&": 29617, + "##'": 29618, + "##(": 29619, + "##)": 29620, + "##*": 29621, + "##+": 29622, + "##,": 29623, + "##-": 29624, + "##.": 29625, + "##/": 29626, + "##:": 29627, + "##;": 29628, + "##<": 29629, + "##=": 29630, + "##>": 29631, + "##?": 29632, + "##@": 29633, + "##[": 29634, + "##\\": 29635, + "##]": 29636, + "##^": 29637, + "##_": 29638, + "##`": 29639, + "##{": 29640, + "##|": 29641, + "##}": 29642, + "##~": 29643, + "##¡": 29644, + "##¢": 29645, + "##£": 29646, + "##¤": 29647, + "##¥": 29648, + "##¦": 29649, + "##§": 29650, + "##¨": 29651, + "##©": 29652, + "##ª": 29653, + "##«": 29654, + "##¬": 29655, + "##®": 29656, + "##±": 29657, + "##´": 29658, + "##µ": 29659, + "##¶": 29660, + "##·": 29661, + "##º": 29662, + "##»": 29663, + "##¼": 29664, + "##¾": 29665, + "##¿": 29666, + "##æ": 29667, + "##ð": 29668, + "##÷": 29669, + "##þ": 29670, + "##đ": 29671, + "##ħ": 29672, + "##ŋ": 29673, + "##œ": 29674, + "##ƒ": 29675, + "##ɐ": 29676, + "##ɑ": 29677, + "##ɒ": 29678, + "##ɔ": 29679, + "##ɕ": 29680, + "##ə": 29681, + "##ɡ": 29682, + "##ɣ": 29683, + "##ɨ": 29684, + "##ɪ": 29685, + "##ɫ": 29686, + "##ɬ": 29687, + "##ɯ": 29688, + "##ɲ": 29689, + "##ɴ": 29690, + "##ɹ": 29691, + "##ɾ": 29692, + "##ʀ": 29693, + "##ʁ": 29694, + "##ʂ": 29695, + "##ʃ": 29696, + "##ʉ": 29697, + "##ʊ": 29698, + "##ʋ": 29699, + "##ʌ": 29700, + "##ʎ": 29701, + "##ʐ": 29702, + "##ʑ": 29703, + "##ʒ": 29704, + "##ʔ": 29705, + "##ʰ": 29706, + "##ʲ": 29707, + "##ʳ": 29708, + "##ʷ": 29709, + "##ʸ": 29710, + "##ʻ": 29711, + "##ʼ": 29712, + "##ʾ": 29713, + "##ʿ": 29714, + "##ˈ": 29715, + "##ˡ": 29716, + "##ˢ": 29717, + "##ˣ": 29718, + "##ˤ": 29719, + "##β": 29720, + "##γ": 29721, + "##δ": 29722, + "##ε": 29723, + "##ζ": 29724, + "##θ": 29725, + "##κ": 29726, + "##λ": 29727, + "##μ": 29728, + "##ξ": 29729, + "##ο": 29730, + "##π": 29731, + "##ρ": 29732, + "##σ": 29733, + "##τ": 29734, + "##υ": 29735, + "##φ": 29736, + "##χ": 29737, + "##ψ": 29738, + "##ω": 29739, + "##б": 29740, + "##г": 29741, + "##д": 29742, + "##ж": 29743, + "##з": 29744, + "##м": 29745, + "##п": 29746, + "##с": 29747, + "##у": 29748, + "##ф": 29749, + "##х": 29750, + "##ц": 29751, + "##ч": 29752, + "##ш": 29753, + "##щ": 29754, + "##ъ": 29755, + "##э": 29756, + "##ю": 29757, + "##ђ": 29758, + "##є": 29759, + "##і": 29760, + "##ј": 29761, + "##љ": 29762, + "##њ": 29763, + "##ћ": 29764, + "##ӏ": 29765, + "##ա": 29766, + "##բ": 29767, + "##գ": 29768, + "##դ": 29769, + "##ե": 29770, + "##թ": 29771, + "##ի": 29772, + "##լ": 29773, + "##կ": 29774, + "##հ": 29775, + "##մ": 29776, + "##յ": 29777, + "##ն": 29778, + "##ո": 29779, + "##պ": 29780, + "##ս": 29781, + "##վ": 29782, + "##տ": 29783, + "##ր": 29784, + "##ւ": 29785, + "##ք": 29786, + "##־": 29787, + "##א": 29788, + "##ב": 29789, + "##ג": 29790, + "##ד": 29791, + "##ו": 29792, + "##ז": 29793, + "##ח": 29794, + "##ט": 29795, + "##י": 29796, + "##ך": 29797, + "##כ": 29798, + "##ל": 29799, + "##ם": 29800, + "##מ": 29801, + "##ן": 29802, + "##נ": 29803, + "##ס": 29804, + "##ע": 29805, + "##ף": 29806, + "##פ": 29807, + "##ץ": 29808, + "##צ": 29809, + "##ק": 29810, + "##ר": 29811, + "##ש": 29812, + "##ת": 29813, + "##،": 29814, + "##ء": 29815, + "##ب": 29816, + "##ت": 29817, + "##ث": 29818, + "##ج": 29819, + "##ح": 29820, + "##خ": 29821, + "##ذ": 29822, + "##ز": 29823, + "##س": 29824, + "##ش": 29825, + "##ص": 29826, + "##ض": 29827, + "##ط": 29828, + "##ظ": 29829, + "##ع": 29830, + "##غ": 29831, + "##ـ": 29832, + "##ف": 29833, + "##ق": 29834, + "##ك": 29835, + "##و": 29836, + "##ى": 29837, + "##ٹ": 29838, + "##پ": 29839, + "##چ": 29840, + "##ک": 29841, + "##گ": 29842, + "##ں": 29843, + "##ھ": 29844, + "##ہ": 29845, + "##ے": 29846, + "##अ": 29847, + "##आ": 29848, + "##उ": 29849, + "##ए": 29850, + "##क": 29851, + "##ख": 29852, + "##ग": 29853, + "##च": 29854, + "##ज": 29855, + "##ट": 29856, + "##ड": 29857, + "##ण": 29858, + "##त": 29859, + "##थ": 29860, + "##द": 29861, + "##ध": 29862, + "##न": 29863, + "##प": 29864, + "##ब": 29865, + "##भ": 29866, + "##म": 29867, + "##य": 29868, + "##र": 29869, + "##ल": 29870, + "##व": 29871, + "##श": 29872, + "##ष": 29873, + "##स": 29874, + "##ह": 29875, + "##ा": 29876, + "##ि": 29877, + "##ी": 29878, + "##ो": 29879, + "##।": 29880, + "##॥": 29881, + "##ং": 29882, + "##অ": 29883, + "##আ": 29884, + "##ই": 29885, + "##উ": 29886, + "##এ": 29887, + "##ও": 29888, + "##ক": 29889, + "##খ": 29890, + "##গ": 29891, + "##চ": 29892, + "##ছ": 29893, + "##জ": 29894, + "##ট": 29895, + "##ড": 29896, + "##ণ": 29897, + "##ত": 29898, + "##থ": 29899, + "##দ": 29900, + "##ধ": 29901, + "##ন": 29902, + "##প": 29903, + "##ব": 29904, + "##ভ": 29905, + "##ম": 29906, + "##য": 29907, + "##র": 29908, + "##ল": 29909, + "##শ": 29910, + "##ষ": 29911, + "##স": 29912, + "##হ": 29913, + "##া": 29914, + "##ি": 29915, + "##ী": 29916, + "##ে": 29917, + "##க": 29918, + "##ச": 29919, + "##ட": 29920, + "##த": 29921, + "##ந": 29922, + "##ன": 29923, + "##ப": 29924, + "##ம": 29925, + "##ய": 29926, + "##ர": 29927, + "##ல": 29928, + "##ள": 29929, + "##வ": 29930, + "##ா": 29931, + "##ி": 29932, + "##ு": 29933, + "##ே": 29934, + "##ை": 29935, + "##ನ": 29936, + "##ರ": 29937, + "##ಾ": 29938, + "##ක": 29939, + "##ය": 29940, + "##ර": 29941, + "##ල": 29942, + "##ව": 29943, + "##ා": 29944, + "##ก": 29945, + "##ง": 29946, + "##ต": 29947, + "##ท": 29948, + "##น": 29949, + "##พ": 29950, + "##ม": 29951, + "##ย": 29952, + "##ร": 29953, + "##ล": 29954, + "##ว": 29955, + "##ส": 29956, + "##อ": 29957, + "##า": 29958, + "##เ": 29959, + "##་": 29960, + "##།": 29961, + "##ག": 29962, + "##ང": 29963, + "##ད": 29964, + "##ན": 29965, + "##པ": 29966, + "##བ": 29967, + "##མ": 29968, + "##འ": 29969, + "##ར": 29970, + "##ལ": 29971, + "##ས": 29972, + "##မ": 29973, + "##ა": 29974, + "##ბ": 29975, + "##გ": 29976, + "##დ": 29977, + "##ე": 29978, + "##ვ": 29979, + "##თ": 29980, + "##ი": 29981, + "##კ": 29982, + "##ლ": 29983, + "##მ": 29984, + "##ნ": 29985, + "##ო": 29986, + "##რ": 29987, + "##ს": 29988, + "##ტ": 29989, + "##უ": 29990, + "##ᄀ": 29991, + "##ᄂ": 29992, + "##ᄃ": 29993, + "##ᄅ": 29994, + "##ᄆ": 29995, + "##ᄇ": 29996, + "##ᄉ": 29997, + "##ᄊ": 29998, + "##ᄋ": 29999, + "##ᄌ": 30000, + "##ᄎ": 30001, + "##ᄏ": 30002, + "##ᄐ": 30003, + "##ᄑ": 30004, + "##ᄒ": 30005, + "##ᅡ": 30006, + "##ᅢ": 30007, + "##ᅥ": 30008, + "##ᅦ": 30009, + "##ᅧ": 30010, + "##ᅩ": 30011, + "##ᅪ": 30012, + "##ᅭ": 30013, + "##ᅮ": 30014, + "##ᅯ": 30015, + "##ᅲ": 30016, + "##ᅳ": 30017, + "##ᅴ": 30018, + "##ᅵ": 30019, + "##ᆨ": 30020, + "##ᆫ": 30021, + "##ᆯ": 30022, + "##ᆷ": 30023, + "##ᆸ": 30024, + "##ᆼ": 30025, + "##ᴬ": 30026, + "##ᴮ": 30027, + "##ᴰ": 30028, + "##ᴵ": 30029, + "##ᴺ": 30030, + "##ᵀ": 30031, + "##ᵃ": 30032, + "##ᵇ": 30033, + "##ᵈ": 30034, + "##ᵉ": 30035, + "##ᵍ": 30036, + "##ᵏ": 30037, + "##ᵐ": 30038, + "##ᵒ": 30039, + "##ᵖ": 30040, + "##ᵗ": 30041, + "##ᵘ": 30042, + "##ᵣ": 30043, + "##ᵤ": 30044, + "##ᵥ": 30045, + "##ᶜ": 30046, + "##ᶠ": 30047, + "##‐": 30048, + "##‑": 30049, + "##‒": 30050, + "##–": 30051, + "##—": 30052, + "##―": 30053, + "##‖": 30054, + "##‘": 30055, + "##’": 30056, + "##‚": 30057, + "##“": 30058, + "##”": 30059, + "##„": 30060, + "##†": 30061, + "##‡": 30062, + "##•": 30063, + "##…": 30064, + "##‰": 30065, + "##′": 30066, + "##″": 30067, + "##›": 30068, + "##‿": 30069, + "##⁄": 30070, + "##⁰": 30071, + "##ⁱ": 30072, + "##⁴": 30073, + "##⁵": 30074, + "##⁶": 30075, + "##⁷": 30076, + "##⁸": 30077, + "##⁹": 30078, + "##⁻": 30079, + "##ⁿ": 30080, + "##₅": 30081, + "##₆": 30082, + "##₇": 30083, + "##₈": 30084, + "##₉": 30085, + "##₊": 30086, + "##₍": 30087, + "##₎": 30088, + "##ₐ": 30089, + "##ₑ": 30090, + "##ₒ": 30091, + "##ₓ": 30092, + "##ₕ": 30093, + "##ₖ": 30094, + "##ₗ": 30095, + "##ₘ": 30096, + "##ₚ": 30097, + "##ₛ": 30098, + "##ₜ": 30099, + "##₤": 30100, + "##₩": 30101, + "##€": 30102, + "##₱": 30103, + "##₹": 30104, + "##ℓ": 30105, + "##№": 30106, + "##ℝ": 30107, + "##™": 30108, + "##⅓": 30109, + "##⅔": 30110, + "##←": 30111, + "##↑": 30112, + "##→": 30113, + "##↓": 30114, + "##↔": 30115, + "##↦": 30116, + "##⇄": 30117, + "##⇌": 30118, + "##⇒": 30119, + "##∂": 30120, + "##∅": 30121, + "##∆": 30122, + "##∇": 30123, + "##∈": 30124, + "##∗": 30125, + "##∘": 30126, + "##√": 30127, + "##∞": 30128, + "##∧": 30129, + "##∨": 30130, + "##∩": 30131, + "##∪": 30132, + "##≈": 30133, + "##≡": 30134, + "##≤": 30135, + "##≥": 30136, + "##⊂": 30137, + "##⊆": 30138, + "##⊕": 30139, + "##⊗": 30140, + "##⋅": 30141, + "##─": 30142, + "##│": 30143, + "##■": 30144, + "##▪": 30145, + "##●": 30146, + "##★": 30147, + "##☆": 30148, + "##☉": 30149, + "##♠": 30150, + "##♣": 30151, + "##♥": 30152, + "##♦": 30153, + "##♯": 30154, + "##⟨": 30155, + "##⟩": 30156, + "##ⱼ": 30157, + "##⺩": 30158, + "##⺼": 30159, + "##⽥": 30160, + "##、": 30161, + "##。": 30162, + "##〈": 30163, + "##〉": 30164, + "##《": 30165, + "##》": 30166, + "##「": 30167, + "##」": 30168, + "##『": 30169, + "##』": 30170, + "##〜": 30171, + "##あ": 30172, + "##い": 30173, + "##う": 30174, + "##え": 30175, + "##お": 30176, + "##か": 30177, + "##き": 30178, + "##く": 30179, + "##け": 30180, + "##こ": 30181, + "##さ": 30182, + "##し": 30183, + "##す": 30184, + "##せ": 30185, + "##そ": 30186, + "##た": 30187, + "##ち": 30188, + "##っ": 30189, + "##つ": 30190, + "##て": 30191, + "##と": 30192, + "##な": 30193, + "##に": 30194, + "##ぬ": 30195, + "##ね": 30196, + "##の": 30197, + "##は": 30198, + "##ひ": 30199, + "##ふ": 30200, + "##へ": 30201, + "##ほ": 30202, + "##ま": 30203, + "##み": 30204, + "##む": 30205, + "##め": 30206, + "##も": 30207, + "##や": 30208, + "##ゆ": 30209, + "##よ": 30210, + "##ら": 30211, + "##り": 30212, + "##る": 30213, + "##れ": 30214, + "##ろ": 30215, + "##を": 30216, + "##ん": 30217, + "##ァ": 30218, + "##ア": 30219, + "##ィ": 30220, + "##イ": 30221, + "##ウ": 30222, + "##ェ": 30223, + "##エ": 30224, + "##オ": 30225, + "##カ": 30226, + "##キ": 30227, + "##ク": 30228, + "##ケ": 30229, + "##コ": 30230, + "##サ": 30231, + "##シ": 30232, + "##ス": 30233, + "##セ": 30234, + "##タ": 30235, + "##チ": 30236, + "##ッ": 30237, + "##ツ": 30238, + "##テ": 30239, + "##ト": 30240, + "##ナ": 30241, + "##ニ": 30242, + "##ノ": 30243, + "##ハ": 30244, + "##ヒ": 30245, + "##フ": 30246, + "##ヘ": 30247, + "##ホ": 30248, + "##マ": 30249, + "##ミ": 30250, + "##ム": 30251, + "##メ": 30252, + "##モ": 30253, + "##ャ": 30254, + "##ュ": 30255, + "##ョ": 30256, + "##ラ": 30257, + "##リ": 30258, + "##ル": 30259, + "##レ": 30260, + "##ロ": 30261, + "##ワ": 30262, + "##ン": 30263, + "##・": 30264, + "##ー": 30265, + "##一": 30266, + "##三": 30267, + "##上": 30268, + "##下": 30269, + "##不": 30270, + "##世": 30271, + "##中": 30272, + "##主": 30273, + "##久": 30274, + "##之": 30275, + "##也": 30276, + "##事": 30277, + "##二": 30278, + "##五": 30279, + "##井": 30280, + "##京": 30281, + "##人": 30282, + "##亻": 30283, + "##仁": 30284, + "##介": 30285, + "##代": 30286, + "##仮": 30287, + "##伊": 30288, + "##会": 30289, + "##佐": 30290, + "##侍": 30291, + "##保": 30292, + "##信": 30293, + "##健": 30294, + "##元": 30295, + "##光": 30296, + "##八": 30297, + "##公": 30298, + "##内": 30299, + "##出": 30300, + "##分": 30301, + "##前": 30302, + "##劉": 30303, + "##力": 30304, + "##加": 30305, + "##勝": 30306, + "##北": 30307, + "##区": 30308, + "##十": 30309, + "##千": 30310, + "##南": 30311, + "##博": 30312, + "##原": 30313, + "##口": 30314, + "##古": 30315, + "##史": 30316, + "##司": 30317, + "##合": 30318, + "##吉": 30319, + "##同": 30320, + "##名": 30321, + "##和": 30322, + "##囗": 30323, + "##四": 30324, + "##国": 30325, + "##國": 30326, + "##土": 30327, + "##地": 30328, + "##坂": 30329, + "##城": 30330, + "##堂": 30331, + "##場": 30332, + "##士": 30333, + "##夏": 30334, + "##外": 30335, + "##大": 30336, + "##天": 30337, + "##太": 30338, + "##夫": 30339, + "##奈": 30340, + "##女": 30341, + "##子": 30342, + "##学": 30343, + "##宀": 30344, + "##宇": 30345, + "##安": 30346, + "##宗": 30347, + "##定": 30348, + "##宣": 30349, + "##宮": 30350, + "##家": 30351, + "##宿": 30352, + "##寺": 30353, + "##將": 30354, + "##小": 30355, + "##尚": 30356, + "##山": 30357, + "##岡": 30358, + "##島": 30359, + "##崎": 30360, + "##川": 30361, + "##州": 30362, + "##巿": 30363, + "##帝": 30364, + "##平": 30365, + "##年": 30366, + "##幸": 30367, + "##广": 30368, + "##弘": 30369, + "##張": 30370, + "##彳": 30371, + "##後": 30372, + "##御": 30373, + "##德": 30374, + "##心": 30375, + "##忄": 30376, + "##志": 30377, + "##忠": 30378, + "##愛": 30379, + "##成": 30380, + "##我": 30381, + "##戦": 30382, + "##戸": 30383, + "##手": 30384, + "##扌": 30385, + "##政": 30386, + "##文": 30387, + "##新": 30388, + "##方": 30389, + "##日": 30390, + "##明": 30391, + "##星": 30392, + "##春": 30393, + "##昭": 30394, + "##智": 30395, + "##曲": 30396, + "##書": 30397, + "##月": 30398, + "##有": 30399, + "##朝": 30400, + "##木": 30401, + "##本": 30402, + "##李": 30403, + "##村": 30404, + "##東": 30405, + "##松": 30406, + "##林": 30407, + "##森": 30408, + "##楊": 30409, + "##樹": 30410, + "##橋": 30411, + "##歌": 30412, + "##止": 30413, + "##正": 30414, + "##武": 30415, + "##比": 30416, + "##氏": 30417, + "##民": 30418, + "##水": 30419, + "##氵": 30420, + "##氷": 30421, + "##永": 30422, + "##江": 30423, + "##沢": 30424, + "##河": 30425, + "##治": 30426, + "##法": 30427, + "##海": 30428, + "##清": 30429, + "##漢": 30430, + "##瀬": 30431, + "##火": 30432, + "##版": 30433, + "##犬": 30434, + "##王": 30435, + "##生": 30436, + "##田": 30437, + "##男": 30438, + "##疒": 30439, + "##発": 30440, + "##白": 30441, + "##的": 30442, + "##皇": 30443, + "##目": 30444, + "##相": 30445, + "##省": 30446, + "##真": 30447, + "##石": 30448, + "##示": 30449, + "##社": 30450, + "##神": 30451, + "##福": 30452, + "##禾": 30453, + "##秀": 30454, + "##秋": 30455, + "##空": 30456, + "##立": 30457, + "##章": 30458, + "##竹": 30459, + "##糹": 30460, + "##美": 30461, + "##義": 30462, + "##耳": 30463, + "##良": 30464, + "##艹": 30465, + "##花": 30466, + "##英": 30467, + "##華": 30468, + "##葉": 30469, + "##藤": 30470, + "##行": 30471, + "##街": 30472, + "##西": 30473, + "##見": 30474, + "##訁": 30475, + "##語": 30476, + "##谷": 30477, + "##貝": 30478, + "##貴": 30479, + "##車": 30480, + "##軍": 30481, + "##辶": 30482, + "##道": 30483, + "##郎": 30484, + "##郡": 30485, + "##部": 30486, + "##都": 30487, + "##里": 30488, + "##野": 30489, + "##金": 30490, + "##鈴": 30491, + "##镇": 30492, + "##長": 30493, + "##門": 30494, + "##間": 30495, + "##阝": 30496, + "##阿": 30497, + "##陳": 30498, + "##陽": 30499, + "##雄": 30500, + "##青": 30501, + "##面": 30502, + "##風": 30503, + "##食": 30504, + "##香": 30505, + "##馬": 30506, + "##高": 30507, + "##龍": 30508, + "##龸": 30509, + "##fi": 30510, + "##fl": 30511, + "##!": 30512, + "##(": 30513, + "##)": 30514, + "##,": 30515, + "##-": 30516, + "##.": 30517, + "##/": 30518, + "##:": 30519, + "##?": 30520, + "##~": 30521 + } + } +} \ No newline at end of file diff --git a/iab_classifier_model_output/tokenizer_config.json b/iab_classifier_model_output/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ca078cbed9874571e1790b3704a58c00f0dc7556 --- /dev/null +++ b/iab_classifier_model_output/tokenizer_config.json @@ -0,0 +1,56 @@ +{ + "added_tokens_decoder": { + "0": { + "content": "[PAD]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "100": { + "content": "[UNK]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "101": { + "content": "[CLS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "102": { + "content": "[SEP]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "103": { + "content": "[MASK]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "clean_up_tokenization_spaces": false, + "cls_token": "[CLS]", + "do_lower_case": true, + "extra_special_tokens": {}, + "mask_token": "[MASK]", + "model_max_length": 512, + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "strip_accents": null, + "tokenize_chinese_chars": true, + "tokenizer_class": "DistilBertTokenizer", + "unk_token": "[UNK]" +} diff --git a/iab_classifier_model_output/train_metrics.json b/iab_classifier_model_output/train_metrics.json new file mode 100644 index 0000000000000000000000000000000000000000..9a0657ee90f1b5891cf3d2331f5d6a3602e7e0cd --- /dev/null +++ b/iab_classifier_model_output/train_metrics.json @@ -0,0 +1,25 @@ +{ + "head": "iab_content", + "label_count": 703, + "test_count": 3282, + "test_metrics": { + "epoch": 3.0, + "test_accuracy": 0.9408897014015845, + "test_loss": 1.6729823350906372, + "test_macro_f1": 0.9183354517881372, + "test_runtime": 10.3715, + "test_samples_per_second": 316.444, + "test_steps_per_second": 19.862 + }, + "train_count": 13211, + "val_count": 3282, + "val_metrics": { + "epoch": 3.0, + "val_accuracy": 0.9442413162705667, + "val_loss": 1.6669942140579224, + "val_macro_f1": 0.9219584149840212, + "val_runtime": 10.3648, + "val_samples_per_second": 316.65, + "val_steps_per_second": 19.875 + } +} diff --git a/iab_classifier_model_output/vocab.txt b/iab_classifier_model_output/vocab.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb140275c155a9c7c5a3b3e0e77a9e839594a938 --- /dev/null +++ b/iab_classifier_model_output/vocab.txt @@ -0,0 +1,30522 @@ +[PAD] +[unused0] +[unused1] +[unused2] +[unused3] +[unused4] +[unused5] +[unused6] +[unused7] +[unused8] +[unused9] +[unused10] +[unused11] +[unused12] +[unused13] +[unused14] +[unused15] +[unused16] +[unused17] +[unused18] +[unused19] +[unused20] +[unused21] +[unused22] +[unused23] +[unused24] +[unused25] +[unused26] +[unused27] +[unused28] +[unused29] +[unused30] +[unused31] +[unused32] +[unused33] +[unused34] +[unused35] +[unused36] +[unused37] +[unused38] +[unused39] +[unused40] +[unused41] +[unused42] +[unused43] +[unused44] +[unused45] +[unused46] +[unused47] +[unused48] +[unused49] +[unused50] +[unused51] +[unused52] +[unused53] +[unused54] +[unused55] +[unused56] +[unused57] +[unused58] +[unused59] +[unused60] +[unused61] +[unused62] +[unused63] +[unused64] +[unused65] +[unused66] +[unused67] +[unused68] +[unused69] +[unused70] +[unused71] +[unused72] +[unused73] +[unused74] +[unused75] +[unused76] +[unused77] +[unused78] +[unused79] +[unused80] +[unused81] +[unused82] +[unused83] +[unused84] +[unused85] +[unused86] +[unused87] +[unused88] +[unused89] +[unused90] +[unused91] +[unused92] +[unused93] +[unused94] +[unused95] +[unused96] +[unused97] +[unused98] +[UNK] +[CLS] +[SEP] +[MASK] +[unused99] +[unused100] +[unused101] +[unused102] +[unused103] +[unused104] +[unused105] +[unused106] +[unused107] +[unused108] +[unused109] +[unused110] +[unused111] +[unused112] +[unused113] +[unused114] +[unused115] +[unused116] +[unused117] +[unused118] +[unused119] +[unused120] +[unused121] +[unused122] +[unused123] +[unused124] +[unused125] +[unused126] +[unused127] +[unused128] +[unused129] +[unused130] +[unused131] +[unused132] +[unused133] +[unused134] +[unused135] +[unused136] +[unused137] +[unused138] +[unused139] +[unused140] +[unused141] +[unused142] +[unused143] +[unused144] +[unused145] +[unused146] +[unused147] +[unused148] +[unused149] +[unused150] +[unused151] +[unused152] +[unused153] +[unused154] +[unused155] +[unused156] +[unused157] +[unused158] +[unused159] +[unused160] +[unused161] +[unused162] +[unused163] +[unused164] +[unused165] +[unused166] +[unused167] +[unused168] +[unused169] +[unused170] +[unused171] +[unused172] +[unused173] +[unused174] +[unused175] +[unused176] +[unused177] +[unused178] +[unused179] +[unused180] +[unused181] +[unused182] +[unused183] +[unused184] +[unused185] +[unused186] +[unused187] +[unused188] +[unused189] +[unused190] +[unused191] +[unused192] +[unused193] +[unused194] +[unused195] +[unused196] +[unused197] +[unused198] +[unused199] +[unused200] +[unused201] +[unused202] +[unused203] +[unused204] +[unused205] +[unused206] +[unused207] +[unused208] +[unused209] +[unused210] +[unused211] +[unused212] +[unused213] +[unused214] +[unused215] +[unused216] +[unused217] +[unused218] +[unused219] +[unused220] +[unused221] +[unused222] +[unused223] +[unused224] +[unused225] +[unused226] +[unused227] +[unused228] +[unused229] +[unused230] +[unused231] +[unused232] +[unused233] +[unused234] +[unused235] +[unused236] +[unused237] +[unused238] +[unused239] +[unused240] +[unused241] +[unused242] +[unused243] +[unused244] +[unused245] +[unused246] +[unused247] +[unused248] +[unused249] +[unused250] +[unused251] +[unused252] +[unused253] +[unused254] +[unused255] +[unused256] +[unused257] +[unused258] +[unused259] +[unused260] +[unused261] +[unused262] +[unused263] +[unused264] +[unused265] +[unused266] +[unused267] +[unused268] +[unused269] +[unused270] +[unused271] +[unused272] +[unused273] +[unused274] +[unused275] +[unused276] +[unused277] +[unused278] +[unused279] +[unused280] +[unused281] +[unused282] +[unused283] +[unused284] +[unused285] +[unused286] +[unused287] +[unused288] +[unused289] +[unused290] +[unused291] +[unused292] +[unused293] +[unused294] +[unused295] +[unused296] +[unused297] +[unused298] +[unused299] +[unused300] +[unused301] +[unused302] +[unused303] +[unused304] +[unused305] +[unused306] +[unused307] +[unused308] +[unused309] +[unused310] +[unused311] +[unused312] +[unused313] +[unused314] +[unused315] +[unused316] +[unused317] +[unused318] +[unused319] +[unused320] +[unused321] +[unused322] +[unused323] +[unused324] +[unused325] +[unused326] +[unused327] +[unused328] +[unused329] +[unused330] +[unused331] +[unused332] +[unused333] +[unused334] +[unused335] +[unused336] +[unused337] +[unused338] +[unused339] +[unused340] +[unused341] +[unused342] +[unused343] +[unused344] +[unused345] +[unused346] +[unused347] +[unused348] +[unused349] +[unused350] +[unused351] +[unused352] +[unused353] +[unused354] +[unused355] +[unused356] +[unused357] +[unused358] +[unused359] +[unused360] +[unused361] +[unused362] +[unused363] +[unused364] +[unused365] +[unused366] +[unused367] +[unused368] +[unused369] +[unused370] +[unused371] +[unused372] +[unused373] +[unused374] +[unused375] +[unused376] +[unused377] +[unused378] +[unused379] +[unused380] +[unused381] +[unused382] +[unused383] +[unused384] +[unused385] +[unused386] +[unused387] +[unused388] +[unused389] +[unused390] +[unused391] +[unused392] +[unused393] +[unused394] +[unused395] +[unused396] +[unused397] +[unused398] +[unused399] +[unused400] +[unused401] +[unused402] +[unused403] +[unused404] +[unused405] +[unused406] +[unused407] +[unused408] +[unused409] +[unused410] +[unused411] +[unused412] +[unused413] +[unused414] +[unused415] +[unused416] +[unused417] +[unused418] +[unused419] +[unused420] +[unused421] +[unused422] +[unused423] +[unused424] +[unused425] +[unused426] +[unused427] +[unused428] +[unused429] +[unused430] +[unused431] +[unused432] +[unused433] +[unused434] +[unused435] +[unused436] +[unused437] +[unused438] +[unused439] +[unused440] +[unused441] +[unused442] +[unused443] +[unused444] +[unused445] +[unused446] +[unused447] +[unused448] +[unused449] +[unused450] +[unused451] +[unused452] +[unused453] +[unused454] +[unused455] +[unused456] +[unused457] +[unused458] +[unused459] +[unused460] +[unused461] +[unused462] +[unused463] +[unused464] +[unused465] +[unused466] +[unused467] +[unused468] +[unused469] +[unused470] +[unused471] +[unused472] +[unused473] +[unused474] +[unused475] +[unused476] +[unused477] +[unused478] +[unused479] +[unused480] +[unused481] +[unused482] +[unused483] +[unused484] +[unused485] +[unused486] +[unused487] +[unused488] +[unused489] +[unused490] +[unused491] +[unused492] +[unused493] +[unused494] +[unused495] +[unused496] +[unused497] +[unused498] +[unused499] +[unused500] +[unused501] +[unused502] +[unused503] +[unused504] +[unused505] +[unused506] +[unused507] +[unused508] +[unused509] +[unused510] +[unused511] +[unused512] +[unused513] +[unused514] +[unused515] +[unused516] +[unused517] +[unused518] +[unused519] +[unused520] +[unused521] +[unused522] +[unused523] +[unused524] +[unused525] +[unused526] +[unused527] +[unused528] +[unused529] +[unused530] +[unused531] +[unused532] +[unused533] +[unused534] +[unused535] +[unused536] +[unused537] +[unused538] +[unused539] +[unused540] +[unused541] +[unused542] +[unused543] +[unused544] +[unused545] +[unused546] +[unused547] +[unused548] +[unused549] +[unused550] +[unused551] +[unused552] +[unused553] +[unused554] +[unused555] +[unused556] +[unused557] +[unused558] +[unused559] +[unused560] +[unused561] +[unused562] +[unused563] +[unused564] +[unused565] +[unused566] +[unused567] +[unused568] +[unused569] +[unused570] +[unused571] +[unused572] +[unused573] +[unused574] +[unused575] +[unused576] +[unused577] +[unused578] +[unused579] +[unused580] +[unused581] +[unused582] +[unused583] +[unused584] +[unused585] +[unused586] +[unused587] +[unused588] +[unused589] +[unused590] +[unused591] +[unused592] +[unused593] +[unused594] +[unused595] +[unused596] +[unused597] +[unused598] +[unused599] +[unused600] +[unused601] +[unused602] +[unused603] +[unused604] +[unused605] +[unused606] +[unused607] +[unused608] +[unused609] +[unused610] +[unused611] +[unused612] +[unused613] +[unused614] +[unused615] +[unused616] +[unused617] +[unused618] +[unused619] +[unused620] +[unused621] +[unused622] +[unused623] +[unused624] +[unused625] +[unused626] +[unused627] +[unused628] +[unused629] +[unused630] +[unused631] +[unused632] +[unused633] +[unused634] +[unused635] +[unused636] +[unused637] +[unused638] +[unused639] +[unused640] +[unused641] +[unused642] +[unused643] +[unused644] +[unused645] +[unused646] +[unused647] +[unused648] +[unused649] +[unused650] +[unused651] +[unused652] +[unused653] +[unused654] +[unused655] +[unused656] +[unused657] +[unused658] +[unused659] +[unused660] +[unused661] +[unused662] +[unused663] +[unused664] +[unused665] +[unused666] +[unused667] +[unused668] +[unused669] +[unused670] +[unused671] +[unused672] +[unused673] +[unused674] +[unused675] +[unused676] +[unused677] +[unused678] +[unused679] +[unused680] +[unused681] +[unused682] +[unused683] +[unused684] +[unused685] +[unused686] +[unused687] +[unused688] +[unused689] +[unused690] +[unused691] +[unused692] +[unused693] +[unused694] +[unused695] +[unused696] +[unused697] +[unused698] +[unused699] +[unused700] +[unused701] +[unused702] +[unused703] +[unused704] +[unused705] +[unused706] +[unused707] +[unused708] +[unused709] +[unused710] +[unused711] +[unused712] +[unused713] +[unused714] +[unused715] +[unused716] +[unused717] +[unused718] +[unused719] +[unused720] +[unused721] +[unused722] +[unused723] +[unused724] +[unused725] +[unused726] +[unused727] +[unused728] +[unused729] +[unused730] +[unused731] +[unused732] +[unused733] +[unused734] +[unused735] +[unused736] +[unused737] +[unused738] +[unused739] +[unused740] +[unused741] +[unused742] +[unused743] +[unused744] +[unused745] +[unused746] +[unused747] +[unused748] +[unused749] +[unused750] +[unused751] +[unused752] +[unused753] +[unused754] +[unused755] +[unused756] +[unused757] +[unused758] +[unused759] +[unused760] +[unused761] +[unused762] +[unused763] +[unused764] +[unused765] +[unused766] +[unused767] +[unused768] +[unused769] +[unused770] +[unused771] +[unused772] +[unused773] +[unused774] +[unused775] +[unused776] +[unused777] +[unused778] +[unused779] +[unused780] +[unused781] +[unused782] +[unused783] +[unused784] +[unused785] +[unused786] +[unused787] +[unused788] +[unused789] +[unused790] +[unused791] +[unused792] +[unused793] +[unused794] +[unused795] +[unused796] +[unused797] +[unused798] +[unused799] +[unused800] +[unused801] +[unused802] +[unused803] +[unused804] +[unused805] +[unused806] +[unused807] +[unused808] +[unused809] +[unused810] +[unused811] +[unused812] +[unused813] +[unused814] +[unused815] +[unused816] +[unused817] +[unused818] +[unused819] +[unused820] +[unused821] +[unused822] +[unused823] +[unused824] +[unused825] +[unused826] +[unused827] +[unused828] +[unused829] +[unused830] +[unused831] +[unused832] +[unused833] +[unused834] +[unused835] +[unused836] +[unused837] +[unused838] +[unused839] +[unused840] +[unused841] +[unused842] +[unused843] +[unused844] +[unused845] +[unused846] +[unused847] +[unused848] +[unused849] +[unused850] +[unused851] +[unused852] +[unused853] +[unused854] +[unused855] +[unused856] +[unused857] +[unused858] +[unused859] +[unused860] +[unused861] +[unused862] +[unused863] +[unused864] +[unused865] +[unused866] +[unused867] +[unused868] +[unused869] +[unused870] +[unused871] +[unused872] +[unused873] +[unused874] +[unused875] +[unused876] +[unused877] +[unused878] +[unused879] +[unused880] +[unused881] +[unused882] +[unused883] +[unused884] +[unused885] +[unused886] +[unused887] +[unused888] +[unused889] +[unused890] +[unused891] +[unused892] +[unused893] +[unused894] +[unused895] +[unused896] +[unused897] +[unused898] +[unused899] +[unused900] +[unused901] +[unused902] +[unused903] +[unused904] +[unused905] +[unused906] +[unused907] +[unused908] +[unused909] +[unused910] +[unused911] +[unused912] +[unused913] +[unused914] +[unused915] +[unused916] +[unused917] +[unused918] +[unused919] +[unused920] +[unused921] +[unused922] +[unused923] +[unused924] +[unused925] +[unused926] +[unused927] +[unused928] +[unused929] +[unused930] +[unused931] +[unused932] +[unused933] +[unused934] +[unused935] +[unused936] +[unused937] +[unused938] +[unused939] +[unused940] +[unused941] +[unused942] +[unused943] +[unused944] +[unused945] +[unused946] +[unused947] +[unused948] +[unused949] +[unused950] +[unused951] +[unused952] +[unused953] +[unused954] +[unused955] +[unused956] +[unused957] +[unused958] +[unused959] +[unused960] +[unused961] +[unused962] +[unused963] +[unused964] +[unused965] +[unused966] +[unused967] +[unused968] +[unused969] +[unused970] +[unused971] +[unused972] +[unused973] +[unused974] +[unused975] +[unused976] +[unused977] +[unused978] +[unused979] +[unused980] +[unused981] +[unused982] +[unused983] +[unused984] +[unused985] +[unused986] +[unused987] +[unused988] +[unused989] +[unused990] +[unused991] +[unused992] +[unused993] +! +" +# +$ +% +& +' +( +) +* ++ +, +- +. +/ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +: +; +< += +> +? +@ +[ +\ +] +^ +_ +` +a +b +c +d +e +f +g +h +i +j +k +l +m +n +o +p +q +r +s +t +u +v +w +x +y +z +{ +| +} +~ +¡ +¢ +£ +¤ +¥ +¦ +§ +¨ +© +ª +« +¬ +® +° +± +² +³ +´ +µ +¶ +· +¹ +º +» +¼ +½ +¾ +¿ +× +ß +æ +ð +÷ +ø +þ +đ +ħ +ı +ł +ŋ +œ +ƒ +ɐ +ɑ +ɒ +ɔ +ɕ +ə +ɛ +ɡ +ɣ +ɨ +ɪ +ɫ +ɬ +ɯ +ɲ +ɴ +ɹ +ɾ +ʀ +ʁ +ʂ +ʃ +ʉ +ʊ +ʋ +ʌ +ʎ +ʐ +ʑ +ʒ +ʔ +ʰ +ʲ +ʳ +ʷ +ʸ +ʻ +ʼ +ʾ +ʿ +ˈ +ː +ˡ +ˢ +ˣ +ˤ +α +β +γ +δ +ε +ζ +η +θ +ι +κ +λ +μ +ν +ξ +ο +π +ρ +ς +σ +τ +υ +φ +χ +ψ +ω +а +б +в +г +д +е +ж +з +и +к +л +м +н +о +п +р +с +т +у +ф +х +ц +ч +ш +щ +ъ +ы +ь +э +ю +я +ђ +є +і +ј +љ +њ +ћ +ӏ +ա +բ +գ +դ +ե +թ +ի +լ +կ +հ +մ +յ +ն +ո +պ +ս +վ +տ +ր +ւ +ք +־ +א +ב +ג +ד +ה +ו +ז +ח +ט +י +ך +כ +ל +ם +מ +ן +נ +ס +ע +ף +פ +ץ +צ +ק +ר +ש +ת +، +ء +ا +ب +ة +ت +ث +ج +ح +خ +د +ذ +ر +ز +س +ش +ص +ض +ط +ظ +ع +غ +ـ +ف +ق +ك +ل +م +ن +ه +و +ى +ي +ٹ +پ +چ +ک +گ +ں +ھ +ہ +ی +ے +अ +आ +उ +ए +क +ख +ग +च +ज +ट +ड +ण +त +थ +द +ध +न +प +ब +भ +म +य +र +ल +व +श +ष +स +ह +ा +ि +ी +ो +। +॥ +ং +অ +আ +ই +উ +এ +ও +ক +খ +গ +চ +ছ +জ +ট +ড +ণ +ত +থ +দ +ধ +ন +প +ব +ভ +ম +য +র +ল +শ +ষ +স +হ +া +ি +ী +ে +க +ச +ட +த +ந +ன +ப +ம +ய +ர +ல +ள +வ +ா +ி +ு +ே +ை +ನ +ರ +ಾ +ක +ය +ර +ල +ව +ා +ก +ง +ต +ท +น +พ +ม +ย +ร +ล +ว +ส +อ +า +เ +་ +། +ག +ང +ད +ན +པ +བ +མ +འ +ར +ལ +ས +မ +ა +ბ +გ +დ +ე +ვ +თ +ი +კ +ლ +მ +ნ +ო +რ +ს +ტ +უ +ᄀ +ᄂ +ᄃ +ᄅ +ᄆ +ᄇ +ᄉ +ᄊ +ᄋ +ᄌ +ᄎ +ᄏ +ᄐ +ᄑ +ᄒ +ᅡ +ᅢ +ᅥ +ᅦ +ᅧ +ᅩ +ᅪ +ᅭ +ᅮ +ᅯ +ᅲ +ᅳ +ᅴ +ᅵ +ᆨ +ᆫ +ᆯ +ᆷ +ᆸ +ᆼ +ᴬ +ᴮ +ᴰ +ᴵ +ᴺ +ᵀ +ᵃ +ᵇ +ᵈ +ᵉ +ᵍ +ᵏ +ᵐ +ᵒ +ᵖ +ᵗ +ᵘ +ᵢ +ᵣ +ᵤ +ᵥ +ᶜ +ᶠ +‐ +‑ +‒ +– +— +― +‖ +‘ +’ +‚ +“ +” +„ +† +‡ +• +… +‰ +′ +″ +› +‿ +⁄ +⁰ +ⁱ +⁴ +⁵ +⁶ +⁷ +⁸ +⁹ +⁺ +⁻ +ⁿ +₀ +₁ +₂ +₃ +₄ +₅ +₆ +₇ +₈ +₉ +₊ +₍ +₎ +ₐ +ₑ +ₒ +ₓ +ₕ +ₖ +ₗ +ₘ +ₙ +ₚ +ₛ +ₜ +₤ +₩ +€ +₱ +₹ +ℓ +№ +ℝ +™ +⅓ +⅔ +← +↑ +→ +↓ +↔ +↦ +⇄ +⇌ +⇒ +∂ +∅ +∆ +∇ +∈ +− +∗ +∘ +√ +∞ +∧ +∨ +∩ +∪ +≈ +≡ +≤ +≥ +⊂ +⊆ +⊕ +⊗ +⋅ +─ +│ +■ +▪ +● +★ +☆ +☉ +♠ +♣ +♥ +♦ +♭ +♯ +⟨ +⟩ +ⱼ +⺩ +⺼ +⽥ +、 +。 +〈 +〉 +《 +》 +「 +」 +『 +』 +〜 +あ +い +う +え +お +か +き +く +け +こ +さ +し +す +せ +そ +た +ち +っ +つ +て +と +な +に +ぬ +ね +の +は +ひ +ふ +へ +ほ +ま +み +む +め +も +や +ゆ +よ +ら +り +る +れ +ろ +を +ん +ァ +ア +ィ +イ +ウ +ェ +エ +オ +カ +キ +ク +ケ +コ +サ +シ +ス +セ +タ +チ +ッ +ツ +テ +ト +ナ +ニ +ノ +ハ +ヒ +フ +ヘ +ホ +マ +ミ +ム +メ +モ +ャ +ュ +ョ +ラ +リ +ル +レ +ロ +ワ +ン +・ +ー +一 +三 +上 +下 +不 +世 +中 +主 +久 +之 +也 +事 +二 +五 +井 +京 +人 +亻 +仁 +介 +代 +仮 +伊 +会 +佐 +侍 +保 +信 +健 +元 +光 +八 +公 +内 +出 +分 +前 +劉 +力 +加 +勝 +北 +区 +十 +千 +南 +博 +原 +口 +古 +史 +司 +合 +吉 +同 +名 +和 +囗 +四 +国 +國 +土 +地 +坂 +城 +堂 +場 +士 +夏 +外 +大 +天 +太 +夫 +奈 +女 +子 +学 +宀 +宇 +安 +宗 +定 +宣 +宮 +家 +宿 +寺 +將 +小 +尚 +山 +岡 +島 +崎 +川 +州 +巿 +帝 +平 +年 +幸 +广 +弘 +張 +彳 +後 +御 +德 +心 +忄 +志 +忠 +愛 +成 +我 +戦 +戸 +手 +扌 +政 +文 +新 +方 +日 +明 +星 +春 +昭 +智 +曲 +書 +月 +有 +朝 +木 +本 +李 +村 +東 +松 +林 +森 +楊 +樹 +橋 +歌 +止 +正 +武 +比 +氏 +民 +水 +氵 +氷 +永 +江 +沢 +河 +治 +法 +海 +清 +漢 +瀬 +火 +版 +犬 +王 +生 +田 +男 +疒 +発 +白 +的 +皇 +目 +相 +省 +真 +石 +示 +社 +神 +福 +禾 +秀 +秋 +空 +立 +章 +竹 +糹 +美 +義 +耳 +良 +艹 +花 +英 +華 +葉 +藤 +行 +街 +西 +見 +訁 +語 +谷 +貝 +貴 +車 +軍 +辶 +道 +郎 +郡 +部 +都 +里 +野 +金 +鈴 +镇 +長 +門 +間 +阝 +阿 +陳 +陽 +雄 +青 +面 +風 +食 +香 +馬 +高 +龍 +龸 +fi +fl +! +( +) +, +- +. +/ +: +? +~ +the +of +and +in +to +was +he +is +as +for +on +with +that +it +his +by +at +from +her +##s +she +you +had +an +were +but +be +this +are +not +my +they +one +which +or +have +him +me +first +all +also +their +has +up +who +out +been +when +after +there +into +new +two +its +##a +time +would +no +what +about +said +we +over +then +other +so +more +##e +can +if +like +back +them +only +some +could +##i +where +just +##ing +during +before +##n +do +##o +made +school +through +than +now +years +most +world +may +between +down +well +three +##d +year +while +will +##ed +##r +##y +later +##t +city +under +around +did +such +being +used +state +people +part +know +against +your +many +second +university +both +national +##er +these +don +known +off +way +until +re +how +even +get +head +... +didn +##ly +team +american +because +de +##l +born +united +film +since +still +long +work +south +us +became +any +high +again +day +family +see +right +man +eyes +house +season +war +states +including +took +life +north +same +each +called +name +much +place +however +go +four +group +another +found +won +area +here +going +10 +away +series +left +home +music +best +make +hand +number +company +several +never +last +john +000 +very +album +take +end +good +too +following +released +game +played +little +began +district +##m +old +want +those +side +held +own +early +county +ll +league +use +west +##u +face +think +##es +2010 +government +##h +march +came +small +general +town +june +##on +line +based +something +##k +september +thought +looked +along +international +2011 +air +july +club +went +january +october +our +august +april +york +12 +few +2012 +2008 +east +show +member +college +2009 +father +public +##us +come +men +five +set +station +church +##c +next +former +november +room +party +located +december +2013 +age +got +2007 +##g +system +let +love +2006 +though +every +2014 +look +song +water +century +without +body +black +night +within +great +women +single +ve +building +large +population +river +named +band +white +started +##an +once +15 +20 +should +18 +2015 +service +top +built +british +open +death +king +moved +local +times +children +february +book +why +11 +door +need +president +order +final +road +wasn +although +due +major +died +village +third +knew +2016 +asked +turned +st +wanted +say +##p +together +received +main +son +served +different +##en +behind +himself +felt +members +power +football +law +voice +play +##in +near +park +history +30 +having +2005 +16 +##man +saw +mother +##al +army +point +front +help +english +street +art +late +hands +games +award +##ia +young +14 +put +published +country +division +across +told +13 +often +ever +french +london +center +six +red +2017 +led +days +include +light +25 +find +tell +among +species +really +according +central +half +2004 +form +original +gave +office +making +enough +lost +full +opened +must +included +live +given +german +player +run +business +woman +community +cup +might +million +land +2000 +court +development +17 +short +round +ii +km +seen +class +story +always +become +sure +research +almost +director +council +la +##2 +career +things +using +island +##z +couldn +car +##is +24 +close +force +##1 +better +free +support +control +field +students +2003 +education +married +##b +nothing +worked +others +record +big +inside +level +anything +continued +give +james +##3 +military +established +non +returned +feel +does +title +written +thing +feet +william +far +co +association +hard +already +2002 +##ra +championship +human +western +100 +##na +department +hall +role +various +production +21 +19 +heart +2001 +living +fire +version +##ers +##f +television +royal +##4 +produced +working +act +case +society +region +present +radio +period +looking +least +total +keep +england +wife +program +per +brother +mind +special +22 +##le +am +works +soon +##6 +political +george +services +taken +created +##7 +further +able +reached +david +union +joined +upon +done +important +social +information +either +##ic +##x +appeared +position +ground +lead +rock +dark +election +23 +board +france +hair +course +arms +site +police +girl +instead +real +sound +##v +words +moment +##te +someone +##8 +summer +project +announced +san +less +wrote +past +followed +##5 +blue +founded +al +finally +india +taking +records +america +##ne +1999 +design +considered +northern +god +stop +battle +toward +european +outside +described +track +today +playing +language +28 +call +26 +heard +professional +low +australia +miles +california +win +yet +green +##ie +trying +blood +##ton +southern +science +maybe +everything +match +square +27 +mouth +video +race +recorded +leave +above +##9 +daughter +points +space +1998 +museum +change +middle +common +##0 +move +tv +post +##ta +lake +seven +tried +elected +closed +ten +paul +minister +##th +months +start +chief +return +canada +person +sea +release +similar +modern +brought +rest +hit +formed +mr +##la +1997 +floor +event +doing +thomas +1996 +robert +care +killed +training +star +week +needed +turn +finished +railway +rather +news +health +sent +example +ran +term +michael +coming +currently +yes +forces +despite +gold +areas +50 +stage +fact +29 +dead +says +popular +2018 +originally +germany +probably +developed +result +pulled +friend +stood +money +running +mi +signed +word +songs +child +eventually +met +tour +average +teams +minutes +festival +current +deep +kind +1995 +decided +usually +eastern +seemed +##ness +episode +bed +added +table +indian +private +charles +route +available +idea +throughout +centre +addition +appointed +style +1994 +books +eight +construction +press +mean +wall +friends +remained +schools +study +##ch +##um +institute +oh +chinese +sometimes +events +possible +1992 +australian +type +brown +forward +talk +process +food +debut +seat +performance +committee +features +character +arts +herself +else +lot +strong +russian +range +hours +peter +arm +##da +morning +dr +sold +##ry +quickly +directed +1993 +guitar +china +##w +31 +list +##ma +performed +media +uk +players +smile +##rs +myself +40 +placed +coach +province +towards +wouldn +leading +whole +boy +official +designed +grand +census +##el +europe +attack +japanese +henry +1991 +##re +##os +cross +getting +alone +action +lower +network +wide +washington +japan +1990 +hospital +believe +changed +sister +##ar +hold +gone +sir +hadn +ship +##ka +studies +academy +shot +rights +below +base +bad +involved +kept +largest +##ist +bank +future +especially +beginning +mark +movement +section +female +magazine +plan +professor +lord +longer +##ian +sat +walked +hill +actually +civil +energy +model +families +size +thus +aircraft +completed +includes +data +captain +##or +fight +vocals +featured +richard +bridge +fourth +1989 +officer +stone +hear +##ism +means +medical +groups +management +self +lips +competition +entire +lived +technology +leaving +federal +tournament +bit +passed +hot +independent +awards +kingdom +mary +spent +fine +doesn +reported +##ling +jack +fall +raised +itself +stay +true +studio +1988 +sports +replaced +paris +systems +saint +leader +theatre +whose +market +capital +parents +spanish +canadian +earth +##ity +cut +degree +writing +bay +christian +awarded +natural +higher +bill +##as +coast +provided +previous +senior +ft +valley +organization +stopped +onto +countries +parts +conference +queen +security +interest +saying +allowed +master +earlier +phone +matter +smith +winning +try +happened +moving +campaign +los +##ley +breath +nearly +mid +1987 +certain +girls +date +italian +african +standing +fell +artist +##ted +shows +deal +mine +industry +1986 +##ng +everyone +republic +provide +collection +library +student +##ville +primary +owned +older +via +heavy +1st +makes +##able +attention +anyone +africa +##ri +stated +length +ended +fingers +command +staff +skin +foreign +opening +governor +okay +medal +kill +sun +cover +job +1985 +introduced +chest +hell +feeling +##ies +success +meet +reason +standard +meeting +novel +1984 +trade +source +buildings +##land +rose +guy +goal +##ur +chapter +native +husband +previously +unit +limited +entered +weeks +producer +operations +mountain +takes +covered +forced +related +roman +complete +successful +key +texas +cold +##ya +channel +1980 +traditional +films +dance +clear +approximately +500 +nine +van +prince +question +active +tracks +ireland +regional +silver +author +personal +sense +operation +##ine +economic +1983 +holding +twenty +isbn +additional +speed +hour +edition +regular +historic +places +whom +shook +movie +km² +secretary +prior +report +chicago +read +foundation +view +engine +scored +1982 +units +ask +airport +property +ready +immediately +lady +month +listed +contract +##de +manager +themselves +lines +##ki +navy +writer +meant +##ts +runs +##ro +practice +championships +singer +glass +commission +required +forest +starting +culture +generally +giving +access +attended +test +couple +stand +catholic +martin +caught +executive +##less +eye +##ey +thinking +chair +quite +shoulder +1979 +hope +decision +plays +defeated +municipality +whether +structure +offered +slowly +pain +ice +direction +##ion +paper +mission +1981 +mostly +200 +noted +individual +managed +nature +lives +plant +##ha +helped +except +studied +computer +figure +relationship +issue +significant +loss +die +smiled +gun +ago +highest +1972 +##am +male +bring +goals +mexico +problem +distance +commercial +completely +location +annual +famous +drive +1976 +neck +1978 +surface +caused +italy +understand +greek +highway +wrong +hotel +comes +appearance +joseph +double +issues +musical +companies +castle +income +review +assembly +bass +initially +parliament +artists +experience +1974 +particular +walk +foot +engineering +talking +window +dropped +##ter +miss +baby +boys +break +1975 +stars +edge +remember +policy +carried +train +stadium +bar +sex +angeles +evidence +##ge +becoming +assistant +soviet +1977 +upper +step +wing +1970 +youth +financial +reach +##ll +actor +numerous +##se +##st +nodded +arrived +##ation +minute +##nt +believed +sorry +complex +beautiful +victory +associated +temple +1968 +1973 +chance +perhaps +metal +##son +1945 +bishop +##et +lee +launched +particularly +tree +le +retired +subject +prize +contains +yeah +theory +empire +##ce +suddenly +waiting +trust +recording +##to +happy +terms +camp +champion +1971 +religious +pass +zealand +names +2nd +port +ancient +tom +corner +represented +watch +legal +anti +justice +cause +watched +brothers +45 +material +changes +simply +response +louis +fast +##ting +answer +60 +historical +1969 +stories +straight +create +feature +increased +rate +administration +virginia +el +activities +cultural +overall +winner +programs +basketball +legs +guard +beyond +cast +doctor +mm +flight +results +remains +cost +effect +winter +##ble +larger +islands +problems +chairman +grew +commander +isn +1967 +pay +failed +selected +hurt +fort +box +regiment +majority +journal +35 +edward +plans +##ke +##ni +shown +pretty +irish +characters +directly +scene +likely +operated +allow +spring +##j +junior +matches +looks +mike +houses +fellow +##tion +beach +marriage +##ham +##ive +rules +oil +65 +florida +expected +nearby +congress +sam +peace +recent +iii +wait +subsequently +cell +##do +variety +serving +agreed +please +poor +joe +pacific +attempt +wood +democratic +piece +prime +##ca +rural +mile +touch +appears +township +1964 +1966 +soldiers +##men +##ized +1965 +pennsylvania +closer +fighting +claimed +score +jones +physical +editor +##ous +filled +genus +specific +sitting +super +mom +##va +therefore +supported +status +fear +cases +store +meaning +wales +minor +spain +tower +focus +vice +frank +follow +parish +separate +golden +horse +fifth +remaining +branch +32 +presented +stared +##id +uses +secret +forms +##co +baseball +exactly +##ck +choice +note +discovered +travel +composed +truth +russia +ball +color +kiss +dad +wind +continue +ring +referred +numbers +digital +greater +##ns +metres +slightly +direct +increase +1960 +responsible +crew +rule +trees +troops +##no +broke +goes +individuals +hundred +weight +creek +sleep +memory +defense +provides +ordered +code +value +jewish +windows +1944 +safe +judge +whatever +corps +realized +growing +pre +##ga +cities +alexander +gaze +lies +spread +scott +letter +showed +situation +mayor +transport +watching +workers +extended +##li +expression +normal +##ment +chart +multiple +border +##ba +host +##ner +daily +mrs +walls +piano +##ko +heat +cannot +##ate +earned +products +drama +era +authority +seasons +join +grade +##io +sign +difficult +machine +1963 +territory +mainly +##wood +stations +squadron +1962 +stepped +iron +19th +##led +serve +appear +sky +speak +broken +charge +knowledge +kilometres +removed +ships +article +campus +simple +##ty +pushed +britain +##ve +leaves +recently +cd +soft +boston +latter +easy +acquired +poland +##sa +quality +officers +presence +planned +nations +mass +broadcast +jean +share +image +influence +wild +offer +emperor +electric +reading +headed +ability +promoted +yellow +ministry +1942 +throat +smaller +politician +##by +latin +spoke +cars +williams +males +lack +pop +80 +##ier +acting +seeing +consists +##ti +estate +1961 +pressure +johnson +newspaper +jr +chris +olympics +online +conditions +beat +elements +walking +vote +##field +needs +carolina +text +featuring +global +block +shirt +levels +francisco +purpose +females +et +dutch +duke +ahead +gas +twice +safety +serious +turning +highly +lieutenant +firm +maria +amount +mixed +daniel +proposed +perfect +agreement +affairs +3rd +seconds +contemporary +paid +1943 +prison +save +kitchen +label +administrative +intended +constructed +academic +nice +teacher +races +1956 +formerly +corporation +ben +nation +issued +shut +1958 +drums +housing +victoria +seems +opera +1959 +graduated +function +von +mentioned +picked +build +recognized +shortly +protection +picture +notable +exchange +elections +1980s +loved +percent +racing +fish +elizabeth +garden +volume +hockey +1941 +beside +settled +##ford +1940 +competed +replied +drew +1948 +actress +marine +scotland +steel +glanced +farm +steve +1957 +risk +tonight +positive +magic +singles +effects +gray +screen +dog +##ja +residents +bus +sides +none +secondary +literature +polish +destroyed +flying +founder +households +1939 +lay +reserve +usa +gallery +##ler +1946 +industrial +younger +approach +appearances +urban +ones +1950 +finish +avenue +powerful +fully +growth +page +honor +jersey +projects +advanced +revealed +basic +90 +infantry +pair +equipment +visit +33 +evening +search +grant +effort +solo +treatment +buried +republican +primarily +bottom +owner +1970s +israel +gives +jim +dream +bob +remain +spot +70 +notes +produce +champions +contact +ed +soul +accepted +ways +del +##ally +losing +split +price +capacity +basis +trial +questions +##ina +1955 +20th +guess +officially +memorial +naval +initial +##ization +whispered +median +engineer +##ful +sydney +##go +columbia +strength +300 +1952 +tears +senate +00 +card +asian +agent +1947 +software +44 +draw +warm +supposed +com +pro +##il +transferred +leaned +##at +candidate +escape +mountains +asia +potential +activity +entertainment +seem +traffic +jackson +murder +36 +slow +product +orchestra +haven +agency +bbc +taught +website +comedy +unable +storm +planning +albums +rugby +environment +scientific +grabbed +protect +##hi +boat +typically +1954 +1953 +damage +principal +divided +dedicated +mount +ohio +##berg +pick +fought +driver +##der +empty +shoulders +sort +thank +berlin +prominent +account +freedom +necessary +efforts +alex +headquarters +follows +alongside +des +simon +andrew +suggested +operating +learning +steps +1949 +sweet +technical +begin +easily +34 +teeth +speaking +settlement +scale +##sh +renamed +ray +max +enemy +semi +joint +compared +##rd +scottish +leadership +analysis +offers +georgia +pieces +captured +animal +deputy +guest +organized +##lin +tony +combined +method +challenge +1960s +huge +wants +battalion +sons +rise +crime +types +facilities +telling +path +1951 +platform +sit +1990s +##lo +tells +assigned +rich +pull +##ot +commonly +alive +##za +letters +concept +conducted +wearing +happen +bought +becomes +holy +gets +ocean +defeat +languages +purchased +coffee +occurred +titled +##q +declared +applied +sciences +concert +sounds +jazz +brain +##me +painting +fleet +tax +nick +##ius +michigan +count +animals +leaders +episodes +##line +content +##den +birth +##it +clubs +64 +palace +critical +refused +fair +leg +laughed +returning +surrounding +participated +formation +lifted +pointed +connected +rome +medicine +laid +taylor +santa +powers +adam +tall +shared +focused +knowing +yards +entrance +falls +##wa +calling +##ad +sources +chosen +beneath +resources +yard +##ite +nominated +silence +zone +defined +##que +gained +thirty +38 +bodies +moon +##ard +adopted +christmas +widely +register +apart +iran +premier +serves +du +unknown +parties +##les +generation +##ff +continues +quick +fields +brigade +quiet +teaching +clothes +impact +weapons +partner +flat +theater +supreme +1938 +37 +relations +##tor +plants +suffered +1936 +wilson +kids +begins +##age +1918 +seats +armed +internet +models +worth +laws +400 +communities +classes +background +knows +thanks +quarter +reaching +humans +carry +killing +format +kong +hong +setting +75 +architecture +disease +railroad +inc +possibly +wish +arthur +thoughts +harry +doors +density +##di +crowd +illinois +stomach +tone +unique +reports +anyway +##ir +liberal +der +vehicle +thick +dry +drug +faced +largely +facility +theme +holds +creation +strange +colonel +##mi +revolution +bell +politics +turns +silent +rail +relief +independence +combat +shape +write +determined +sales +learned +4th +finger +oxford +providing +1937 +heritage +fiction +situated +designated +allowing +distribution +hosted +##est +sight +interview +estimated +reduced +##ria +toronto +footballer +keeping +guys +damn +claim +motion +sport +sixth +stayed +##ze +en +rear +receive +handed +twelve +dress +audience +granted +brazil +##well +spirit +##ated +noticed +etc +olympic +representative +eric +tight +trouble +reviews +drink +vampire +missing +roles +ranked +newly +household +finals +wave +critics +##ee +phase +massachusetts +pilot +unlike +philadelphia +bright +guns +crown +organizations +roof +42 +respectively +clearly +tongue +marked +circle +fox +korea +bronze +brian +expanded +sexual +supply +yourself +inspired +labour +fc +##ah +reference +vision +draft +connection +brand +reasons +1935 +classic +driving +trip +jesus +cells +entry +1920 +neither +trail +claims +atlantic +orders +labor +nose +afraid +identified +intelligence +calls +cancer +attacked +passing +stephen +positions +imperial +grey +jason +39 +sunday +48 +swedish +avoid +extra +uncle +message +covers +allows +surprise +materials +fame +hunter +##ji +1930 +citizens +figures +davis +environmental +confirmed +shit +titles +di +performing +difference +acts +attacks +##ov +existing +votes +opportunity +nor +shop +entirely +trains +opposite +pakistan +##pa +develop +resulted +representatives +actions +reality +pressed +##ish +barely +wine +conversation +faculty +northwest +ends +documentary +nuclear +stock +grace +sets +eat +alternative +##ps +bag +resulting +creating +surprised +cemetery +1919 +drop +finding +sarah +cricket +streets +tradition +ride +1933 +exhibition +target +ear +explained +rain +composer +injury +apartment +municipal +educational +occupied +netherlands +clean +billion +constitution +learn +1914 +maximum +classical +francis +lose +opposition +jose +ontario +bear +core +hills +rolled +ending +drawn +permanent +fun +##tes +##lla +lewis +sites +chamber +ryan +##way +scoring +height +1934 +##house +lyrics +staring +55 +officials +1917 +snow +oldest +##tic +orange +##ger +qualified +interior +apparently +succeeded +thousand +dinner +lights +existence +fans +heavily +41 +greatest +conservative +send +bowl +plus +enter +catch +##un +economy +duty +1929 +speech +authorities +princess +performances +versions +shall +graduate +pictures +effective +remembered +poetry +desk +crossed +starring +starts +passenger +sharp +##ant +acres +ass +weather +falling +rank +fund +supporting +check +adult +publishing +heads +cm +southeast +lane +##burg +application +bc +##ura +les +condition +transfer +prevent +display +ex +regions +earl +federation +cool +relatively +answered +besides +1928 +obtained +portion +##town +mix +##ding +reaction +liked +dean +express +peak +1932 +##tte +counter +religion +chain +rare +miller +convention +aid +lie +vehicles +mobile +perform +squad +wonder +lying +crazy +sword +##ping +attempted +centuries +weren +philosophy +category +##ize +anna +interested +47 +sweden +wolf +frequently +abandoned +kg +literary +alliance +task +entitled +##ay +threw +promotion +factory +tiny +soccer +visited +matt +fm +achieved +52 +defence +internal +persian +43 +methods +##ging +arrested +otherwise +cambridge +programming +villages +elementary +districts +rooms +criminal +conflict +worry +trained +1931 +attempts +waited +signal +bird +truck +subsequent +programme +##ol +ad +49 +communist +details +faith +sector +patrick +carrying +laugh +##ss +controlled +korean +showing +origin +fuel +evil +1927 +##ent +brief +identity +darkness +address +pool +missed +publication +web +planet +ian +anne +wings +invited +##tt +briefly +standards +kissed +##be +ideas +climate +causing +walter +worse +albert +articles +winners +desire +aged +northeast +dangerous +gate +doubt +1922 +wooden +multi +##ky +poet +rising +funding +46 +communications +communication +violence +copies +prepared +ford +investigation +skills +1924 +pulling +electronic +##ak +##ial +##han +containing +ultimately +offices +singing +understanding +restaurant +tomorrow +fashion +christ +ward +da +pope +stands +5th +flow +studios +aired +commissioned +contained +exist +fresh +americans +##per +wrestling +approved +kid +employed +respect +suit +1925 +angel +asking +increasing +frame +angry +selling +1950s +thin +finds +##nd +temperature +statement +ali +explain +inhabitants +towns +extensive +narrow +51 +jane +flowers +images +promise +somewhere +object +fly +closely +##ls +1912 +bureau +cape +1926 +weekly +presidential +legislative +1921 +##ai +##au +launch +founding +##ny +978 +##ring +artillery +strike +un +institutions +roll +writers +landing +chose +kevin +anymore +pp +##ut +attorney +fit +dan +billboard +receiving +agricultural +breaking +sought +dave +admitted +lands +mexican +##bury +charlie +specifically +hole +iv +howard +credit +moscow +roads +accident +1923 +proved +wear +struck +hey +guards +stuff +slid +expansion +1915 +cat +anthony +##kin +melbourne +opposed +sub +southwest +architect +failure +plane +1916 +##ron +map +camera +tank +listen +regarding +wet +introduction +metropolitan +link +ep +fighter +inch +grown +gene +anger +fixed +buy +dvd +khan +domestic +worldwide +chapel +mill +functions +examples +##head +developing +1910 +turkey +hits +pocket +antonio +papers +grow +unless +circuit +18th +concerned +attached +journalist +selection +journey +converted +provincial +painted +hearing +aren +bands +negative +aside +wondered +knight +lap +survey +ma +##ow +noise +billy +##ium +shooting +guide +bedroom +priest +resistance +motor +homes +sounded +giant +##mer +150 +scenes +equal +comic +patients +hidden +solid +actual +bringing +afternoon +touched +funds +wedding +consisted +marie +canal +sr +kim +treaty +turkish +recognition +residence +cathedral +broad +knees +incident +shaped +fired +norwegian +handle +cheek +contest +represent +##pe +representing +beauty +##sen +birds +advantage +emergency +wrapped +drawing +notice +pink +broadcasting +##ong +somehow +bachelor +seventh +collected +registered +establishment +alan +assumed +chemical +personnel +roger +retirement +jeff +portuguese +wore +tied +device +threat +progress +advance +##ised +banks +hired +manchester +nfl +teachers +structures +forever +##bo +tennis +helping +saturday +sale +applications +junction +hip +incorporated +neighborhood +dressed +ceremony +##ds +influenced +hers +visual +stairs +decades +inner +kansas +hung +hoped +gain +scheduled +downtown +engaged +austria +clock +norway +certainly +pale +protected +1913 +victor +employees +plate +putting +surrounded +##ists +finishing +blues +tropical +##ries +minnesota +consider +philippines +accept +54 +retrieved +1900 +concern +anderson +properties +institution +gordon +successfully +vietnam +##dy +backing +outstanding +muslim +crossing +folk +producing +usual +demand +occurs +observed +lawyer +educated +##ana +kelly +string +pleasure +budget +items +quietly +colorado +philip +typical +##worth +derived +600 +survived +asks +mental +##ide +56 +jake +jews +distinguished +ltd +1911 +sri +extremely +53 +athletic +loud +thousands +worried +shadow +transportation +horses +weapon +arena +importance +users +tim +objects +contributed +dragon +douglas +aware +senator +johnny +jordan +sisters +engines +flag +investment +samuel +shock +capable +clark +row +wheel +refers +session +familiar +biggest +wins +hate +maintained +drove +hamilton +request +expressed +injured +underground +churches +walker +wars +tunnel +passes +stupid +agriculture +softly +cabinet +regarded +joining +indiana +##ea +##ms +push +dates +spend +behavior +woods +protein +gently +chase +morgan +mention +burning +wake +combination +occur +mirror +leads +jimmy +indeed +impossible +singapore +paintings +covering +##nes +soldier +locations +attendance +sell +historian +wisconsin +invasion +argued +painter +diego +changing +egypt +##don +experienced +inches +##ku +missouri +vol +grounds +spoken +switzerland +##gan +reform +rolling +ha +forget +massive +resigned +burned +allen +tennessee +locked +values +improved +##mo +wounded +universe +sick +dating +facing +pack +purchase +user +##pur +moments +##ul +merged +anniversary +1908 +coal +brick +understood +causes +dynasty +queensland +establish +stores +crisis +promote +hoping +views +cards +referee +extension +##si +raise +arizona +improve +colonial +formal +charged +##rt +palm +lucky +hide +rescue +faces +95 +feelings +candidates +juan +##ell +goods +6th +courses +weekend +59 +luke +cash +fallen +##om +delivered +affected +installed +carefully +tries +swiss +hollywood +costs +lincoln +responsibility +##he +shore +file +proper +normally +maryland +assistance +jump +constant +offering +friendly +waters +persons +realize +contain +trophy +800 +partnership +factor +58 +musicians +cry +bound +oregon +indicated +hero +houston +medium +##ure +consisting +somewhat +##ara +57 +cycle +##che +beer +moore +frederick +gotten +eleven +worst +weak +approached +arranged +chin +loan +universal +bond +fifteen +pattern +disappeared +##ney +translated +##zed +lip +arab +capture +interests +insurance +##chi +shifted +cave +prix +warning +sections +courts +coat +plot +smell +feed +golf +favorite +maintain +knife +vs +voted +degrees +finance +quebec +opinion +translation +manner +ruled +operate +productions +choose +musician +discovery +confused +tired +separated +stream +techniques +committed +attend +ranking +kings +throw +passengers +measure +horror +fan +mining +sand +danger +salt +calm +decade +dam +require +runner +##ik +rush +associate +greece +##ker +rivers +consecutive +matthew +##ski +sighed +sq +documents +steam +edited +closing +tie +accused +1905 +##ini +islamic +distributed +directors +organisation +bruce +7th +breathing +mad +lit +arrival +concrete +taste +08 +composition +shaking +faster +amateur +adjacent +stating +1906 +twin +flew +##ran +tokyo +publications +##tone +obviously +ridge +storage +1907 +carl +pages +concluded +desert +driven +universities +ages +terminal +sequence +borough +250 +constituency +creative +cousin +economics +dreams +margaret +notably +reduce +montreal +mode +17th +ears +saved +jan +vocal +##ica +1909 +andy +##jo +riding +roughly +threatened +##ise +meters +meanwhile +landed +compete +repeated +grass +czech +regularly +charges +tea +sudden +appeal +##ung +solution +describes +pierre +classification +glad +parking +##ning +belt +physics +99 +rachel +add +hungarian +participate +expedition +damaged +gift +childhood +85 +fifty +##red +mathematics +jumped +letting +defensive +mph +##ux +##gh +testing +##hip +hundreds +shoot +owners +matters +smoke +israeli +kentucky +dancing +mounted +grandfather +emma +designs +profit +argentina +##gs +truly +li +lawrence +cole +begun +detroit +willing +branches +smiling +decide +miami +enjoyed +recordings +##dale +poverty +ethnic +gay +##bi +gary +arabic +09 +accompanied +##one +##ons +fishing +determine +residential +acid +##ary +alice +returns +starred +mail +##ang +jonathan +strategy +##ue +net +forty +cook +businesses +equivalent +commonwealth +distinct +ill +##cy +seriously +##ors +##ped +shift +harris +replace +rio +imagine +formula +ensure +##ber +additionally +scheme +conservation +occasionally +purposes +feels +favor +##and +##ore +1930s +contrast +hanging +hunt +movies +1904 +instruments +victims +danish +christopher +busy +demon +sugar +earliest +colony +studying +balance +duties +##ks +belgium +slipped +carter +05 +visible +stages +iraq +fifa +##im +commune +forming +zero +07 +continuing +talked +counties +legend +bathroom +option +tail +clay +daughters +afterwards +severe +jaw +visitors +##ded +devices +aviation +russell +kate +##vi +entering +subjects +##ino +temporary +swimming +forth +smooth +ghost +audio +bush +operates +rocks +movements +signs +eddie +##tz +ann +voices +honorary +06 +memories +dallas +pure +measures +racial +promised +66 +harvard +ceo +16th +parliamentary +indicate +benefit +flesh +dublin +louisiana +1902 +1901 +patient +sleeping +1903 +membership +coastal +medieval +wanting +element +scholars +rice +62 +limit +survive +makeup +rating +definitely +collaboration +obvious +##tan +boss +ms +baron +birthday +linked +soil +diocese +##lan +ncaa +##mann +offensive +shell +shouldn +waist +##tus +plain +ross +organ +resolution +manufacturing +adding +relative +kennedy +98 +whilst +moth +marketing +gardens +crash +72 +heading +partners +credited +carlos +moves +cable +##zi +marshall +##out +depending +bottle +represents +rejected +responded +existed +04 +jobs +denmark +lock +##ating +treated +graham +routes +talent +commissioner +drugs +secure +tests +reign +restored +photography +##gi +contributions +oklahoma +designer +disc +grin +seattle +robin +paused +atlanta +unusual +##gate +praised +las +laughing +satellite +hungary +visiting +##sky +interesting +factors +deck +poems +norman +##water +stuck +speaker +rifle +domain +premiered +##her +dc +comics +actors +01 +reputation +eliminated +8th +ceiling +prisoners +script +##nce +leather +austin +mississippi +rapidly +admiral +parallel +charlotte +guilty +tools +gender +divisions +fruit +##bs +laboratory +nelson +fantasy +marry +rapid +aunt +tribe +requirements +aspects +suicide +amongst +adams +bone +ukraine +abc +kick +sees +edinburgh +clothing +column +rough +gods +hunting +broadway +gathered +concerns +##ek +spending +ty +12th +snapped +requires +solar +bones +cavalry +##tta +iowa +drinking +waste +index +franklin +charity +thompson +stewart +tip +flash +landscape +friday +enjoy +singh +poem +listening +##back +eighth +fred +differences +adapted +bomb +ukrainian +surgery +corporate +masters +anywhere +##more +waves +odd +sean +portugal +orleans +dick +debate +kent +eating +puerto +cleared +96 +expect +cinema +97 +guitarist +blocks +electrical +agree +involving +depth +dying +panel +struggle +##ged +peninsula +adults +novels +emerged +vienna +metro +debuted +shoes +tamil +songwriter +meets +prove +beating +instance +heaven +scared +sending +marks +artistic +passage +superior +03 +significantly +shopping +##tive +retained +##izing +malaysia +technique +cheeks +##ola +warren +maintenance +destroy +extreme +allied +120 +appearing +##yn +fill +advice +alabama +qualifying +policies +cleveland +hat +battery +smart +authors +10th +soundtrack +acted +dated +lb +glance +equipped +coalition +funny +outer +ambassador +roy +possibility +couples +campbell +dna +loose +ethan +supplies +1898 +gonna +88 +monster +##res +shake +agents +frequency +springs +dogs +practices +61 +gang +plastic +easier +suggests +gulf +blade +exposed +colors +industries +markets +pan +nervous +electoral +charts +legislation +ownership +##idae +mac +appointment +shield +copy +assault +socialist +abbey +monument +license +throne +employment +jay +93 +replacement +charter +cloud +powered +suffering +accounts +oak +connecticut +strongly +wright +colour +crystal +13th +context +welsh +networks +voiced +gabriel +jerry +##cing +forehead +mp +##ens +manage +schedule +totally +remix +##ii +forests +occupation +print +nicholas +brazilian +strategic +vampires +engineers +76 +roots +seek +correct +instrumental +und +alfred +backed +hop +##des +stanley +robinson +traveled +wayne +welcome +austrian +achieve +67 +exit +rates +1899 +strip +whereas +##cs +sing +deeply +adventure +bobby +rick +jamie +careful +components +cap +useful +personality +knee +##shi +pushing +hosts +02 +protest +ca +ottoman +symphony +##sis +63 +boundary +1890 +processes +considering +considerable +tons +##work +##ft +##nia +cooper +trading +dear +conduct +91 +illegal +apple +revolutionary +holiday +definition +harder +##van +jacob +circumstances +destruction +##lle +popularity +grip +classified +liverpool +donald +baltimore +flows +seeking +honour +approval +92 +mechanical +till +happening +statue +critic +increasingly +immediate +describe +commerce +stare +##ster +indonesia +meat +rounds +boats +baker +orthodox +depression +formally +worn +naked +claire +muttered +sentence +11th +emily +document +77 +criticism +wished +vessel +spiritual +bent +virgin +parker +minimum +murray +lunch +danny +printed +compilation +keyboards +false +blow +belonged +68 +raising +78 +cutting +##board +pittsburgh +##up +9th +shadows +81 +hated +indigenous +jon +15th +barry +scholar +ah +##zer +oliver +##gy +stick +susan +meetings +attracted +spell +romantic +##ver +ye +1895 +photo +demanded +customers +##ac +1896 +logan +revival +keys +modified +commanded +jeans +##ious +upset +raw +phil +detective +hiding +resident +vincent +##bly +experiences +diamond +defeating +coverage +lucas +external +parks +franchise +helen +bible +successor +percussion +celebrated +il +lift +profile +clan +romania +##ied +mills +##su +nobody +achievement +shrugged +fault +1897 +rhythm +initiative +breakfast +carbon +700 +69 +lasted +violent +74 +wound +ken +killer +gradually +filmed +°c +dollars +processing +94 +remove +criticized +guests +sang +chemistry +##vin +legislature +disney +##bridge +uniform +escaped +integrated +proposal +purple +denied +liquid +karl +influential +morris +nights +stones +intense +experimental +twisted +71 +84 +##ld +pace +nazi +mitchell +ny +blind +reporter +newspapers +14th +centers +burn +basin +forgotten +surviving +filed +collections +monastery +losses +manual +couch +description +appropriate +merely +tag +missions +sebastian +restoration +replacing +triple +73 +elder +julia +warriors +benjamin +julian +convinced +stronger +amazing +declined +versus +merchant +happens +output +finland +bare +barbara +absence +ignored +dawn +injuries +##port +producers +##ram +82 +luis +##ities +kw +admit +expensive +electricity +nba +exception +symbol +##ving +ladies +shower +sheriff +characteristics +##je +aimed +button +ratio +effectively +summit +angle +jury +bears +foster +vessels +pants +executed +evans +dozen +advertising +kicked +patrol +1889 +competitions +lifetime +principles +athletics +##logy +birmingham +sponsored +89 +rob +nomination +1893 +acoustic +##sm +creature +longest +##tra +credits +harbor +dust +josh +##so +territories +milk +infrastructure +completion +thailand +indians +leon +archbishop +##sy +assist +pitch +blake +arrangement +girlfriend +serbian +operational +hence +sad +scent +fur +dj +sessions +hp +refer +rarely +##ora +exists +1892 +##ten +scientists +dirty +penalty +burst +portrait +seed +79 +pole +limits +rival +1894 +stable +alpha +grave +constitutional +alcohol +arrest +flower +mystery +devil +architectural +relationships +greatly +habitat +##istic +larry +progressive +remote +cotton +##ics +##ok +preserved +reaches +##ming +cited +86 +vast +scholarship +decisions +cbs +joy +teach +1885 +editions +knocked +eve +searching +partly +participation +gap +animated +fate +excellent +##ett +na +87 +alternate +saints +youngest +##ily +climbed +##ita +##tors +suggest +##ct +discussion +staying +choir +lakes +jacket +revenue +nevertheless +peaked +instrument +wondering +annually +managing +neil +1891 +signing +terry +##ice +apply +clinical +brooklyn +aim +catherine +fuck +farmers +figured +ninth +pride +hugh +evolution +ordinary +involvement +comfortable +shouted +tech +encouraged +taiwan +representation +sharing +##lia +##em +panic +exact +cargo +competing +fat +cried +83 +1920s +occasions +pa +cabin +borders +utah +marcus +##isation +badly +muscles +##ance +victorian +transition +warner +bet +permission +##rin +slave +terrible +similarly +shares +seth +uefa +possession +medals +benefits +colleges +lowered +perfectly +mall +transit +##ye +##kar +publisher +##ened +harrison +deaths +elevation +##ae +asleep +machines +sigh +ash +hardly +argument +occasion +parent +leo +decline +1888 +contribution +##ua +concentration +1000 +opportunities +hispanic +guardian +extent +emotions +hips +mason +volumes +bloody +controversy +diameter +steady +mistake +phoenix +identify +violin +##sk +departure +richmond +spin +funeral +enemies +1864 +gear +literally +connor +random +sergeant +grab +confusion +1865 +transmission +informed +op +leaning +sacred +suspended +thinks +gates +portland +luck +agencies +yours +hull +expert +muscle +layer +practical +sculpture +jerusalem +latest +lloyd +statistics +deeper +recommended +warrior +arkansas +mess +supports +greg +eagle +1880 +recovered +rated +concerts +rushed +##ano +stops +eggs +files +premiere +keith +##vo +delhi +turner +pit +affair +belief +paint +##zing +mate +##ach +##ev +victim +##ology +withdrew +bonus +styles +fled +##ud +glasgow +technologies +funded +nbc +adaptation +##ata +portrayed +cooperation +supporters +judges +bernard +justin +hallway +ralph +##ick +graduating +controversial +distant +continental +spider +bite +##ho +recognize +intention +mixing +##ese +egyptian +bow +tourism +suppose +claiming +tiger +dominated +participants +vi +##ru +nurse +partially +tape +##rum +psychology +##rn +essential +touring +duo +voting +civilian +emotional +channels +##king +apparent +hebrew +1887 +tommy +carrier +intersection +beast +hudson +##gar +##zo +lab +nova +bench +discuss +costa +##ered +detailed +behalf +drivers +unfortunately +obtain +##lis +rocky +##dae +siege +friendship +honey +##rian +1861 +amy +hang +posted +governments +collins +respond +wildlife +preferred +operator +##po +laura +pregnant +videos +dennis +suspected +boots +instantly +weird +automatic +businessman +alleged +placing +throwing +ph +mood +1862 +perry +venue +jet +remainder +##lli +##ci +passion +biological +boyfriend +1863 +dirt +buffalo +ron +segment +fa +abuse +##era +genre +thrown +stroke +colored +stress +exercise +displayed +##gen +struggled +##tti +abroad +dramatic +wonderful +thereafter +madrid +component +widespread +##sed +tale +citizen +todd +monday +1886 +vancouver +overseas +forcing +crying +descent +##ris +discussed +substantial +ranks +regime +1870 +provinces +switch +drum +zane +ted +tribes +proof +lp +cream +researchers +volunteer +manor +silk +milan +donated +allies +venture +principle +delivery +enterprise +##ves +##ans +bars +traditionally +witch +reminded +copper +##uk +pete +inter +links +colin +grinned +elsewhere +competitive +frequent +##oy +scream +##hu +tension +texts +submarine +finnish +defending +defend +pat +detail +1884 +affiliated +stuart +themes +villa +periods +tool +belgian +ruling +crimes +answers +folded +licensed +resort +demolished +hans +lucy +1881 +lion +traded +photographs +writes +craig +##fa +trials +generated +beth +noble +debt +percentage +yorkshire +erected +ss +viewed +grades +confidence +ceased +islam +telephone +retail +##ible +chile +m² +roberts +sixteen +##ich +commented +hampshire +innocent +dual +pounds +checked +regulations +afghanistan +sung +rico +liberty +assets +bigger +options +angels +relegated +tribute +wells +attending +leaf +##yan +butler +romanian +forum +monthly +lisa +patterns +gmina +##tory +madison +hurricane +rev +##ians +bristol +##ula +elite +valuable +disaster +democracy +awareness +germans +freyja +##ins +loop +absolutely +paying +populations +maine +sole +prayer +spencer +releases +doorway +bull +##ani +lover +midnight +conclusion +##sson +thirteen +lily +mediterranean +##lt +nhl +proud +sample +##hill +drummer +guinea +##ova +murphy +climb +##ston +instant +attributed +horn +ain +railways +steven +##ao +autumn +ferry +opponent +root +traveling +secured +corridor +stretched +tales +sheet +trinity +cattle +helps +indicates +manhattan +murdered +fitted +1882 +gentle +grandmother +mines +shocked +vegas +produces +##light +caribbean +##ou +belong +continuous +desperate +drunk +historically +trio +waved +raf +dealing +nathan +bat +murmured +interrupted +residing +scientist +pioneer +harold +aaron +##net +delta +attempting +minority +mini +believes +chorus +tend +lots +eyed +indoor +load +shots +updated +jail +##llo +concerning +connecting +wealth +##ved +slaves +arrive +rangers +sufficient +rebuilt +##wick +cardinal +flood +muhammad +whenever +relation +runners +moral +repair +viewers +arriving +revenge +punk +assisted +bath +fairly +breathe +lists +innings +illustrated +whisper +nearest +voters +clinton +ties +ultimate +screamed +beijing +lions +andre +fictional +gathering +comfort +radar +suitable +dismissed +hms +ban +pine +wrist +atmosphere +voivodeship +bid +timber +##ned +##nan +giants +##ane +cameron +recovery +uss +identical +categories +switched +serbia +laughter +noah +ensemble +therapy +peoples +touching +##off +locally +pearl +platforms +everywhere +ballet +tables +lanka +herbert +outdoor +toured +derek +1883 +spaces +contested +swept +1878 +exclusive +slight +connections +##dra +winds +prisoner +collective +bangladesh +tube +publicly +wealthy +thai +##ys +isolated +select +##ric +insisted +pen +fortune +ticket +spotted +reportedly +animation +enforcement +tanks +110 +decides +wider +lowest +owen +##time +nod +hitting +##hn +gregory +furthermore +magazines +fighters +solutions +##ery +pointing +requested +peru +reed +chancellor +knights +mask +worker +eldest +flames +reduction +1860 +volunteers +##tis +reporting +##hl +wire +advisory +endemic +origins +settlers +pursue +knock +consumer +1876 +eu +compound +creatures +mansion +sentenced +ivan +deployed +guitars +frowned +involves +mechanism +kilometers +perspective +shops +maps +terminus +duncan +alien +fist +bridges +##pers +heroes +fed +derby +swallowed +##ros +patent +sara +illness +characterized +adventures +slide +hawaii +jurisdiction +##op +organised +##side +adelaide +walks +biology +se +##ties +rogers +swing +tightly +boundaries +##rie +prepare +implementation +stolen +##sha +certified +colombia +edwards +garage +##mm +recalled +##ball +rage +harm +nigeria +breast +##ren +furniture +pupils +settle +##lus +cuba +balls +client +alaska +21st +linear +thrust +celebration +latino +genetic +terror +##cia +##ening +lightning +fee +witness +lodge +establishing +skull +##ique +earning +hood +##ei +rebellion +wang +sporting +warned +missile +devoted +activist +porch +worship +fourteen +package +1871 +decorated +##shire +housed +##ock +chess +sailed +doctors +oscar +joan +treat +garcia +harbour +jeremy +##ire +traditions +dominant +jacques +##gon +##wan +relocated +1879 +amendment +sized +companion +simultaneously +volleyball +spun +acre +increases +stopping +loves +belongs +affect +drafted +tossed +scout +battles +1875 +filming +shoved +munich +tenure +vertical +romance +pc +##cher +argue +##ical +craft +ranging +www +opens +honest +tyler +yesterday +virtual +##let +muslims +reveal +snake +immigrants +radical +screaming +speakers +firing +saving +belonging +ease +lighting +prefecture +blame +farmer +hungry +grows +rubbed +beam +sur +subsidiary +##cha +armenian +sao +dropping +conventional +##fer +microsoft +reply +qualify +spots +1867 +sweat +festivals +##ken +immigration +physician +discover +exposure +sandy +explanation +isaac +implemented +##fish +hart +initiated +connect +stakes +presents +heights +householder +pleased +tourist +regardless +slip +closest +##ction +surely +sultan +brings +riley +preparation +aboard +slammed +baptist +experiment +ongoing +interstate +organic +playoffs +##ika +1877 +130 +##tar +hindu +error +tours +tier +plenty +arrangements +talks +trapped +excited +sank +ho +athens +1872 +denver +welfare +suburb +athletes +trick +diverse +belly +exclusively +yelled +1868 +##med +conversion +##ette +1874 +internationally +computers +conductor +abilities +sensitive +hello +dispute +measured +globe +rocket +prices +amsterdam +flights +tigers +inn +municipalities +emotion +references +3d +##mus +explains +airlines +manufactured +pm +archaeological +1873 +interpretation +devon +comment +##ites +settlements +kissing +absolute +improvement +suite +impressed +barcelona +sullivan +jefferson +towers +jesse +julie +##tin +##lu +grandson +hi +gauge +regard +rings +interviews +trace +raymond +thumb +departments +burns +serial +bulgarian +scores +demonstrated +##ix +1866 +kyle +alberta +underneath +romanized +##ward +relieved +acquisition +phrase +cliff +reveals +han +cuts +merger +custom +##dar +nee +gilbert +graduation +##nts +assessment +cafe +difficulty +demands +swung +democrat +jennifer +commons +1940s +grove +##yo +completing +focuses +sum +substitute +bearing +stretch +reception +##py +reflected +essentially +destination +pairs +##ched +survival +resource +##bach +promoting +doubles +messages +tear +##down +##fully +parade +florence +harvey +incumbent +partial +framework +900 +pedro +frozen +procedure +olivia +controls +##mic +shelter +personally +temperatures +##od +brisbane +tested +sits +marble +comprehensive +oxygen +leonard +##kov +inaugural +iranian +referring +quarters +attitude +##ivity +mainstream +lined +mars +dakota +norfolk +unsuccessful +##° +explosion +helicopter +congressional +##sing +inspector +bitch +seal +departed +divine +##ters +coaching +examination +punishment +manufacturer +sink +columns +unincorporated +signals +nevada +squeezed +dylan +dining +photos +martial +manuel +eighteen +elevator +brushed +plates +ministers +ivy +congregation +##len +slept +specialized +taxes +curve +restricted +negotiations +likes +statistical +arnold +inspiration +execution +bold +intermediate +significance +margin +ruler +wheels +gothic +intellectual +dependent +listened +eligible +buses +widow +syria +earn +cincinnati +collapsed +recipient +secrets +accessible +philippine +maritime +goddess +clerk +surrender +breaks +playoff +database +##ified +##lon +ideal +beetle +aspect +soap +regulation +strings +expand +anglo +shorter +crosses +retreat +tough +coins +wallace +directions +pressing +##oon +shipping +locomotives +comparison +topics +nephew +##mes +distinction +honors +travelled +sierra +ibn +##over +fortress +sa +recognised +carved +1869 +clients +##dan +intent +##mar +coaches +describing +bread +##ington +beaten +northwestern +##ona +merit +youtube +collapse +challenges +em +historians +objective +submitted +virus +attacking +drake +assume +##ere +diseases +marc +stem +leeds +##cus +##ab +farming +glasses +##lock +visits +nowhere +fellowship +relevant +carries +restaurants +experiments +101 +constantly +bases +targets +shah +tenth +opponents +verse +territorial +##ira +writings +corruption +##hs +instruction +inherited +reverse +emphasis +##vic +employee +arch +keeps +rabbi +watson +payment +uh +##ala +nancy +##tre +venice +fastest +sexy +banned +adrian +properly +ruth +touchdown +dollar +boards +metre +circles +edges +favour +comments +ok +travels +liberation +scattered +firmly +##ular +holland +permitted +diesel +kenya +den +originated +##ral +demons +resumed +dragged +rider +##rus +servant +blinked +extend +torn +##ias +##sey +input +meal +everybody +cylinder +kinds +camps +##fe +bullet +logic +##wn +croatian +evolved +healthy +fool +chocolate +wise +preserve +pradesh +##ess +respective +1850 +##ew +chicken +artificial +gross +corresponding +convicted +cage +caroline +dialogue +##dor +narrative +stranger +mario +br +christianity +failing +trent +commanding +buddhist +1848 +maurice +focusing +yale +bike +altitude +##ering +mouse +revised +##sley +veteran +##ig +pulls +theology +crashed +campaigns +legion +##ability +drag +excellence +customer +cancelled +intensity +excuse +##lar +liga +participating +contributing +printing +##burn +variable +##rk +curious +bin +legacy +renaissance +##my +symptoms +binding +vocalist +dancer +##nie +grammar +gospel +democrats +ya +enters +sc +diplomatic +hitler +##ser +clouds +mathematical +quit +defended +oriented +##heim +fundamental +hardware +impressive +equally +convince +confederate +guilt +chuck +sliding +##ware +magnetic +narrowed +petersburg +bulgaria +otto +phd +skill +##ama +reader +hopes +pitcher +reservoir +hearts +automatically +expecting +mysterious +bennett +extensively +imagined +seeds +monitor +fix +##ative +journalism +struggling +signature +ranch +encounter +photographer +observation +protests +##pin +influences +##hr +calendar +##all +cruz +croatia +locomotive +hughes +naturally +shakespeare +basement +hook +uncredited +faded +theories +approaches +dare +phillips +filling +fury +obama +##ain +efficient +arc +deliver +min +raid +breeding +inducted +leagues +efficiency +axis +montana +eagles +##ked +supplied +instructions +karen +picking +indicating +trap +anchor +practically +christians +tomb +vary +occasional +electronics +lords +readers +newcastle +faint +innovation +collect +situations +engagement +160 +claude +mixture +##feld +peer +tissue +logo +lean +##ration +°f +floors +##ven +architects +reducing +##our +##ments +rope +1859 +ottawa +##har +samples +banking +declaration +proteins +resignation +francois +saudi +advocate +exhibited +armor +twins +divorce +##ras +abraham +reviewed +jo +temporarily +matrix +physically +pulse +curled +##ena +difficulties +bengal +usage +##ban +annie +riders +certificate +##pi +holes +warsaw +distinctive +jessica +##mon +mutual +1857 +customs +circular +eugene +removal +loaded +mere +vulnerable +depicted +generations +dame +heir +enormous +lightly +climbing +pitched +lessons +pilots +nepal +ram +google +preparing +brad +louise +renowned +##₂ +liam +##ably +plaza +shaw +sophie +brilliant +bills +##bar +##nik +fucking +mainland +server +pleasant +seized +veterans +jerked +fail +beta +brush +radiation +stored +warmth +southeastern +nate +sin +raced +berkeley +joke +athlete +designation +trunk +##low +roland +qualification +archives +heels +artwork +receives +judicial +reserves +##bed +woke +installation +abu +floating +fake +lesser +excitement +interface +concentrated +addressed +characteristic +amanda +saxophone +monk +auto +##bus +releasing +egg +dies +interaction +defender +ce +outbreak +glory +loving +##bert +sequel +consciousness +http +awake +ski +enrolled +##ress +handling +rookie +brow +somebody +biography +warfare +amounts +contracts +presentation +fabric +dissolved +challenged +meter +psychological +lt +elevated +rally +accurate +##tha +hospitals +undergraduate +specialist +venezuela +exhibit +shed +nursing +protestant +fluid +structural +footage +jared +consistent +prey +##ska +succession +reflect +exile +lebanon +wiped +suspect +shanghai +resting +integration +preservation +marvel +variant +pirates +sheep +rounded +capita +sailing +colonies +manuscript +deemed +variations +clarke +functional +emerging +boxing +relaxed +curse +azerbaijan +heavyweight +nickname +editorial +rang +grid +tightened +earthquake +flashed +miguel +rushing +##ches +improvements +boxes +brooks +180 +consumption +molecular +felix +societies +repeatedly +variation +aids +civic +graphics +professionals +realm +autonomous +receiver +delayed +workshop +militia +chairs +trump +canyon +##point +harsh +extending +lovely +happiness +##jan +stake +eyebrows +embassy +wellington +hannah +##ella +sony +corners +bishops +swear +cloth +contents +xi +namely +commenced +1854 +stanford +nashville +courage +graphic +commitment +garrison +##bin +hamlet +clearing +rebels +attraction +literacy +cooking +ruins +temples +jenny +humanity +celebrate +hasn +freight +sixty +rebel +bastard +##art +newton +##ada +deer +##ges +##ching +smiles +delaware +singers +##ets +approaching +assists +flame +##ph +boulevard +barrel +planted +##ome +pursuit +##sia +consequences +posts +shallow +invitation +rode +depot +ernest +kane +rod +concepts +preston +topic +chambers +striking +blast +arrives +descendants +montgomery +ranges +worlds +##lay +##ari +span +chaos +praise +##ag +fewer +1855 +sanctuary +mud +fbi +##ions +programmes +maintaining +unity +harper +bore +handsome +closure +tournaments +thunder +nebraska +linda +facade +puts +satisfied +argentine +dale +cork +dome +panama +##yl +1858 +tasks +experts +##ates +feeding +equation +##las +##ida +##tu +engage +bryan +##ax +um +quartet +melody +disbanded +sheffield +blocked +gasped +delay +kisses +maggie +connects +##non +sts +poured +creator +publishers +##we +guided +ellis +extinct +hug +gaining +##ord +complicated +##bility +poll +clenched +investigate +##use +thereby +quantum +spine +cdp +humor +kills +administered +semifinals +##du +encountered +ignore +##bu +commentary +##maker +bother +roosevelt +140 +plains +halfway +flowing +cultures +crack +imprisoned +neighboring +airline +##ses +##view +##mate +##ec +gather +wolves +marathon +transformed +##ill +cruise +organisations +carol +punch +exhibitions +numbered +alarm +ratings +daddy +silently +##stein +queens +colours +impression +guidance +liu +tactical +##rat +marshal +della +arrow +##ings +rested +feared +tender +owns +bitter +advisor +escort +##ides +spare +farms +grants +##ene +dragons +encourage +colleagues +cameras +##und +sucked +pile +spirits +prague +statements +suspension +landmark +fence +torture +recreation +bags +permanently +survivors +pond +spy +predecessor +bombing +coup +##og +protecting +transformation +glow +##lands +##book +dug +priests +andrea +feat +barn +jumping +##chen +##ologist +##con +casualties +stern +auckland +pipe +serie +revealing +ba +##bel +trevor +mercy +spectrum +yang +consist +governing +collaborated +possessed +epic +comprises +blew +shane +##ack +lopez +honored +magical +sacrifice +judgment +perceived +hammer +mtv +baronet +tune +das +missionary +sheets +350 +neutral +oral +threatening +attractive +shade +aims +seminary +##master +estates +1856 +michel +wounds +refugees +manufacturers +##nic +mercury +syndrome +porter +##iya +##din +hamburg +identification +upstairs +purse +widened +pause +cared +breathed +affiliate +santiago +prevented +celtic +fisher +125 +recruited +byzantine +reconstruction +farther +##mp +diet +sake +au +spite +sensation +##ert +blank +separation +105 +##hon +vladimir +armies +anime +##lie +accommodate +orbit +cult +sofia +archive +##ify +##box +founders +sustained +disorder +honours +northeastern +mia +crops +violet +threats +blanket +fires +canton +followers +southwestern +prototype +voyage +assignment +altered +moderate +protocol +pistol +##eo +questioned +brass +lifting +1852 +math +authored +##ual +doug +dimensional +dynamic +##san +1851 +pronounced +grateful +quest +uncomfortable +boom +presidency +stevens +relating +politicians +chen +barrier +quinn +diana +mosque +tribal +cheese +palmer +portions +sometime +chester +treasure +wu +bend +download +millions +reforms +registration +##osa +consequently +monitoring +ate +preliminary +brandon +invented +ps +eaten +exterior +intervention +ports +documented +log +displays +lecture +sally +favourite +##itz +vermont +lo +invisible +isle +breed +##ator +journalists +relay +speaks +backward +explore +midfielder +actively +stefan +procedures +cannon +blond +kenneth +centered +servants +chains +libraries +malcolm +essex +henri +slavery +##hal +facts +fairy +coached +cassie +cats +washed +cop +##fi +announcement +item +2000s +vinyl +activated +marco +frontier +growled +curriculum +##das +loyal +accomplished +leslie +ritual +kenny +##00 +vii +napoleon +hollow +hybrid +jungle +stationed +friedrich +counted +##ulated +platinum +theatrical +seated +col +rubber +glen +1840 +diversity +healing +extends +id +provisions +administrator +columbus +##oe +tributary +te +assured +org +##uous +prestigious +examined +lectures +grammy +ronald +associations +bailey +allan +essays +flute +believing +consultant +proceedings +travelling +1853 +kit +kerala +yugoslavia +buddy +methodist +##ith +burial +centres +batman +##nda +discontinued +bo +dock +stockholm +lungs +severely +##nk +citing +manga +##ugh +steal +mumbai +iraqi +robot +celebrity +bride +broadcasts +abolished +pot +joel +overhead +franz +packed +reconnaissance +johann +acknowledged +introduce +handled +doctorate +developments +drinks +alley +palestine +##nis +##aki +proceeded +recover +bradley +grain +patch +afford +infection +nationalist +legendary +##ath +interchange +virtually +gen +gravity +exploration +amber +vital +wishes +powell +doctrine +elbow +screenplay +##bird +contribute +indonesian +pet +creates +##com +enzyme +kylie +discipline +drops +manila +hunger +##ien +layers +suffer +fever +bits +monica +keyboard +manages +##hood +searched +appeals +##bad +testament +grande +reid +##war +beliefs +congo +##ification +##dia +si +requiring +##via +casey +1849 +regret +streak +rape +depends +syrian +sprint +pound +tourists +upcoming +pub +##xi +tense +##els +practiced +echo +nationwide +guild +motorcycle +liz +##zar +chiefs +desired +elena +bye +precious +absorbed +relatives +booth +pianist +##mal +citizenship +exhausted +wilhelm +##ceae +##hed +noting +quarterback +urge +hectares +##gue +ace +holly +##tal +blonde +davies +parked +sustainable +stepping +twentieth +airfield +galaxy +nest +chip +##nell +tan +shaft +paulo +requirement +##zy +paradise +tobacco +trans +renewed +vietnamese +##cker +##ju +suggesting +catching +holmes +enjoying +md +trips +colt +holder +butterfly +nerve +reformed +cherry +bowling +trailer +carriage +goodbye +appreciate +toy +joshua +interactive +enabled +involve +##kan +collar +determination +bunch +facebook +recall +shorts +superintendent +episcopal +frustration +giovanni +nineteenth +laser +privately +array +circulation +##ovic +armstrong +deals +painful +permit +discrimination +##wi +aires +retiring +cottage +ni +##sta +horizon +ellen +jamaica +ripped +fernando +chapters +playstation +patron +lecturer +navigation +behaviour +genes +georgian +export +solomon +rivals +swift +seventeen +rodriguez +princeton +independently +sox +1847 +arguing +entity +casting +hank +criteria +oakland +geographic +milwaukee +reflection +expanding +conquest +dubbed +##tv +halt +brave +brunswick +doi +arched +curtis +divorced +predominantly +somerset +streams +ugly +zoo +horrible +curved +buenos +fierce +dictionary +vector +theological +unions +handful +stability +chan +punjab +segments +##lly +altar +ignoring +gesture +monsters +pastor +##stone +thighs +unexpected +operators +abruptly +coin +compiled +associates +improving +migration +pin +##ose +compact +collegiate +reserved +##urs +quarterfinals +roster +restore +assembled +hurry +oval +##cies +1846 +flags +martha +##del +victories +sharply +##rated +argues +deadly +neo +drawings +symbols +performer +##iel +griffin +restrictions +editing +andrews +java +journals +arabia +compositions +dee +pierce +removing +hindi +casino +runway +civilians +minds +nasa +hotels +##zation +refuge +rent +retain +potentially +conferences +suburban +conducting +##tto +##tions +##tle +descended +massacre +##cal +ammunition +terrain +fork +souls +counts +chelsea +durham +drives +cab +##bank +perth +realizing +palestinian +finn +simpson +##dal +betty +##ule +moreover +particles +cardinals +tent +evaluation +extraordinary +##oid +inscription +##works +wednesday +chloe +maintains +panels +ashley +trucks +##nation +cluster +sunlight +strikes +zhang +##wing +dialect +canon +##ap +tucked +##ws +collecting +##mas +##can +##sville +maker +quoted +evan +franco +aria +buying +cleaning +eva +closet +provision +apollo +clinic +rat +##ez +necessarily +ac +##gle +##ising +venues +flipped +cent +spreading +trustees +checking +authorized +##sco +disappointed +##ado +notion +duration +trumpet +hesitated +topped +brussels +rolls +theoretical +hint +define +aggressive +repeat +wash +peaceful +optical +width +allegedly +mcdonald +strict +copyright +##illa +investors +mar +jam +witnesses +sounding +miranda +michelle +privacy +hugo +harmony +##pp +valid +lynn +glared +nina +102 +headquartered +diving +boarding +gibson +##ncy +albanian +marsh +routine +dealt +enhanced +er +intelligent +substance +targeted +enlisted +discovers +spinning +observations +pissed +smoking +rebecca +capitol +visa +varied +costume +seemingly +indies +compensation +surgeon +thursday +arsenal +westminster +suburbs +rid +anglican +##ridge +knots +foods +alumni +lighter +fraser +whoever +portal +scandal +##ray +gavin +advised +instructor +flooding +terrorist +##ale +teenage +interim +senses +duck +teen +thesis +abby +eager +overcome +##ile +newport +glenn +rises +shame +##cc +prompted +priority +forgot +bomber +nicolas +protective +360 +cartoon +katherine +breeze +lonely +trusted +henderson +richardson +relax +banner +candy +palms +remarkable +##rio +legends +cricketer +essay +ordained +edmund +rifles +trigger +##uri +##away +sail +alert +1830 +audiences +penn +sussex +siblings +pursued +indianapolis +resist +rosa +consequence +succeed +avoided +1845 +##ulation +inland +##tie +##nna +counsel +profession +chronicle +hurried +##una +eyebrow +eventual +bleeding +innovative +cure +##dom +committees +accounting +con +scope +hardy +heather +tenor +gut +herald +codes +tore +scales +wagon +##oo +luxury +tin +prefer +fountain +triangle +bonds +darling +convoy +dried +traced +beings +troy +accidentally +slam +findings +smelled +joey +lawyers +outcome +steep +bosnia +configuration +shifting +toll +brook +performers +lobby +philosophical +construct +shrine +aggregate +boot +cox +phenomenon +savage +insane +solely +reynolds +lifestyle +##ima +nationally +holdings +consideration +enable +edgar +mo +mama +##tein +fights +relegation +chances +atomic +hub +conjunction +awkward +reactions +currency +finale +kumar +underwent +steering +elaborate +gifts +comprising +melissa +veins +reasonable +sunshine +chi +solve +trails +inhabited +elimination +ethics +huh +ana +molly +consent +apartments +layout +marines +##ces +hunters +bulk +##oma +hometown +##wall +##mont +cracked +reads +neighbouring +withdrawn +admission +wingspan +damned +anthology +lancashire +brands +batting +forgive +cuban +awful +##lyn +104 +dimensions +imagination +##ade +dante +##ship +tracking +desperately +goalkeeper +##yne +groaned +workshops +confident +burton +gerald +milton +circus +uncertain +slope +copenhagen +sophia +fog +philosopher +portraits +accent +cycling +varying +gripped +larvae +garrett +specified +scotia +mature +luther +kurt +rap +##kes +aerial +750 +ferdinand +heated +es +transported +##shan +safely +nonetheless +##orn +##gal +motors +demanding +##sburg +startled +##brook +ally +generate +caps +ghana +stained +demo +mentions +beds +ap +afterward +diary +##bling +utility +##iro +richards +1837 +conspiracy +conscious +shining +footsteps +observer +cyprus +urged +loyalty +developer +probability +olive +upgraded +gym +miracle +insects +graves +1844 +ourselves +hydrogen +amazon +katie +tickets +poets +##pm +planes +##pan +prevention +witnessed +dense +jin +randy +tang +warehouse +monroe +bang +archived +elderly +investigations +alec +granite +mineral +conflicts +controlling +aboriginal +carlo +##zu +mechanics +stan +stark +rhode +skirt +est +##berry +bombs +respected +##horn +imposed +limestone +deny +nominee +memphis +grabbing +disabled +##als +amusement +aa +frankfurt +corn +referendum +varies +slowed +disk +firms +unconscious +incredible +clue +sue +##zhou +twist +##cio +joins +idaho +chad +developers +computing +destroyer +103 +mortal +tucker +kingston +choices +yu +carson +1800 +os +whitney +geneva +pretend +dimension +staged +plateau +maya +##une +freestyle +##bc +rovers +hiv +##ids +tristan +classroom +prospect +##hus +honestly +diploma +lied +thermal +auxiliary +feast +unlikely +iata +##tel +morocco +pounding +treasury +lithuania +considerably +1841 +dish +1812 +geological +matching +stumbled +destroying +marched +brien +advances +cake +nicole +belle +settling +measuring +directing +##mie +tuesday +bassist +capabilities +stunned +fraud +torpedo +##list +##phone +anton +wisdom +surveillance +ruined +##ulate +lawsuit +healthcare +theorem +halls +trend +aka +horizontal +dozens +acquire +lasting +swim +hawk +gorgeous +fees +vicinity +decrease +adoption +tactics +##ography +pakistani +##ole +draws +##hall +willie +burke +heath +algorithm +integral +powder +elliott +brigadier +jackie +tate +varieties +darker +##cho +lately +cigarette +specimens +adds +##ree +##ensis +##inger +exploded +finalist +cia +murders +wilderness +arguments +nicknamed +acceptance +onwards +manufacture +robertson +jets +tampa +enterprises +blog +loudly +composers +nominations +1838 +ai +malta +inquiry +automobile +hosting +viii +rays +tilted +grief +museums +strategies +furious +euro +equality +cohen +poison +surrey +wireless +governed +ridiculous +moses +##esh +##room +vanished +##ito +barnes +attract +morrison +istanbul +##iness +absent +rotation +petition +janet +##logical +satisfaction +custody +deliberately +observatory +comedian +surfaces +pinyin +novelist +strictly +canterbury +oslo +monks +embrace +ibm +jealous +photograph +continent +dorothy +marina +doc +excess +holden +allegations +explaining +stack +avoiding +lance +storyline +majesty +poorly +spike +dos +bradford +raven +travis +classics +proven +voltage +pillow +fists +butt +1842 +interpreted +##car +1839 +gage +telegraph +lens +promising +expelled +casual +collector +zones +##min +silly +nintendo +##kh +##bra +downstairs +chef +suspicious +afl +flies +vacant +uganda +pregnancy +condemned +lutheran +estimates +cheap +decree +saxon +proximity +stripped +idiot +deposits +contrary +presenter +magnus +glacier +im +offense +edwin +##ori +upright +##long +bolt +##ois +toss +geographical +##izes +environments +delicate +marking +abstract +xavier +nails +windsor +plantation +occurring +equity +saskatchewan +fears +drifted +sequences +vegetation +revolt +##stic +1843 +sooner +fusion +opposing +nato +skating +1836 +secretly +ruin +lease +##oc +edit +##nne +flora +anxiety +ruby +##ological +##mia +tel +bout +taxi +emmy +frost +rainbow +compounds +foundations +rainfall +assassination +nightmare +dominican +##win +achievements +deserve +orlando +intact +armenia +##nte +calgary +valentine +106 +marion +proclaimed +theodore +bells +courtyard +thigh +gonzalez +console +troop +minimal +monte +everyday +##ence +##if +supporter +terrorism +buck +openly +presbyterian +activists +carpet +##iers +rubbing +uprising +##yi +cute +conceived +legally +##cht +millennium +cello +velocity +ji +rescued +cardiff +1835 +rex +concentrate +senators +beard +rendered +glowing +battalions +scouts +competitors +sculptor +catalogue +arctic +ion +raja +bicycle +wow +glancing +lawn +##woman +gentleman +lighthouse +publish +predicted +calculated +##val +variants +##gne +strain +##ui +winston +deceased +##nus +touchdowns +brady +caleb +sinking +echoed +crush +hon +blessed +protagonist +hayes +endangered +magnitude +editors +##tine +estimate +responsibilities +##mel +backup +laying +consumed +sealed +zurich +lovers +frustrated +##eau +ahmed +kicking +mit +treasurer +1832 +biblical +refuse +terrified +pump +agrees +genuine +imprisonment +refuses +plymouth +##hen +lou +##nen +tara +trembling +antarctic +ton +learns +##tas +crap +crucial +faction +atop +##borough +wrap +lancaster +odds +hopkins +erik +lyon +##eon +bros +##ode +snap +locality +tips +empress +crowned +cal +acclaimed +chuckled +##ory +clara +sends +mild +towel +##fl +##day +##а +wishing +assuming +interviewed +##bal +##die +interactions +eden +cups +helena +##lf +indie +beck +##fire +batteries +filipino +wizard +parted +##lam +traces +##born +rows +idol +albany +delegates +##ees +##sar +discussions +##ex +notre +instructed +belgrade +highways +suggestion +lauren +possess +orientation +alexandria +abdul +beats +salary +reunion +ludwig +alright +wagner +intimate +pockets +slovenia +hugged +brighton +merchants +cruel +stole +trek +slopes +repairs +enrollment +politically +underlying +promotional +counting +boeing +##bb +isabella +naming +##и +keen +bacteria +listing +separately +belfast +ussr +450 +lithuanian +anybody +ribs +sphere +martinez +cock +embarrassed +proposals +fragments +nationals +##fs +##wski +premises +fin +1500 +alpine +matched +freely +bounded +jace +sleeve +##af +gaming +pier +populated +evident +##like +frances +flooded +##dle +frightened +pour +trainer +framed +visitor +challenging +pig +wickets +##fold +infected +email +##pes +arose +##aw +reward +ecuador +oblast +vale +ch +shuttle +##usa +bach +rankings +forbidden +cornwall +accordance +salem +consumers +bruno +fantastic +toes +machinery +resolved +julius +remembering +propaganda +iceland +bombardment +tide +contacts +wives +##rah +concerto +macdonald +albania +implement +daisy +tapped +sudan +helmet +angela +mistress +##lic +crop +sunk +finest +##craft +hostile +##ute +##tsu +boxer +fr +paths +adjusted +habit +ballot +supervision +soprano +##zen +bullets +wicked +sunset +regiments +disappear +lamp +performs +app +##gia +##oa +rabbit +digging +incidents +entries +##cion +dishes +##oi +introducing +##ati +##fied +freshman +slot +jill +tackles +baroque +backs +##iest +lone +sponsor +destiny +altogether +convert +##aro +consensus +shapes +demonstration +basically +feminist +auction +artifacts +##bing +strongest +twitter +halifax +2019 +allmusic +mighty +smallest +precise +alexandra +viola +##los +##ille +manuscripts +##illo +dancers +ari +managers +monuments +blades +barracks +springfield +maiden +consolidated +electron +##end +berry +airing +wheat +nobel +inclusion +blair +payments +geography +bee +cc +eleanor +react +##hurst +afc +manitoba +##yu +su +lineup +fitness +recreational +investments +airborne +disappointment +##dis +edmonton +viewing +##row +renovation +##cast +infant +bankruptcy +roses +aftermath +pavilion +##yer +carpenter +withdrawal +ladder +##hy +discussing +popped +reliable +agreements +rochester +##abad +curves +bombers +220 +rao +reverend +decreased +choosing +107 +stiff +consulting +naples +crawford +tracy +ka +ribbon +cops +##lee +crushed +deciding +unified +teenager +accepting +flagship +explorer +poles +sanchez +inspection +revived +skilled +induced +exchanged +flee +locals +tragedy +swallow +loading +hanna +demonstrate +##ela +salvador +flown +contestants +civilization +##ines +wanna +rhodes +fletcher +hector +knocking +considers +##ough +nash +mechanisms +sensed +mentally +walt +unclear +##eus +renovated +madame +##cks +crews +governmental +##hin +undertaken +monkey +##ben +##ato +fatal +armored +copa +caves +governance +grasp +perception +certification +froze +damp +tugged +wyoming +##rg +##ero +newman +##lor +nerves +curiosity +graph +115 +##ami +withdraw +tunnels +dull +meredith +moss +exhibits +neighbors +communicate +accuracy +explored +raiders +republicans +secular +kat +superman +penny +criticised +##tch +freed +update +conviction +wade +ham +likewise +delegation +gotta +doll +promises +technological +myth +nationality +resolve +convent +##mark +sharon +dig +sip +coordinator +entrepreneur +fold +##dine +capability +councillor +synonym +blown +swan +cursed +1815 +jonas +haired +sofa +canvas +keeper +rivalry +##hart +rapper +speedway +swords +postal +maxwell +estonia +potter +recurring +##nn +##ave +errors +##oni +cognitive +1834 +##² +claws +nadu +roberto +bce +wrestler +ellie +##ations +infinite +ink +##tia +presumably +finite +staircase +108 +noel +patricia +nacional +##cation +chill +eternal +tu +preventing +prussia +fossil +limbs +##logist +ernst +frog +perez +rene +##ace +pizza +prussian +##ios +##vy +molecules +regulatory +answering +opinions +sworn +lengths +supposedly +hypothesis +upward +habitats +seating +ancestors +drank +yield +hd +synthesis +researcher +modest +##var +mothers +peered +voluntary +homeland +##the +acclaim +##igan +static +valve +luxembourg +alto +carroll +fe +receptor +norton +ambulance +##tian +johnston +catholics +depicting +jointly +elephant +gloria +mentor +badge +ahmad +distinguish +remarked +councils +precisely +allison +advancing +detection +crowded +##10 +cooperative +ankle +mercedes +dagger +surrendered +pollution +commit +subway +jeffrey +lesson +sculptures +provider +##fication +membrane +timothy +rectangular +fiscal +heating +teammate +basket +particle +anonymous +deployment +##ple +missiles +courthouse +proportion +shoe +sec +##ller +complaints +forbes +blacks +abandon +remind +sizes +overwhelming +autobiography +natalie +##awa +risks +contestant +countryside +babies +scorer +invaded +enclosed +proceed +hurling +disorders +##cu +reflecting +continuously +cruiser +graduates +freeway +investigated +ore +deserved +maid +blocking +phillip +jorge +shakes +dove +mann +variables +lacked +burden +accompanying +que +consistently +organizing +provisional +complained +endless +##rm +tubes +juice +georges +krishna +mick +labels +thriller +##uch +laps +arcade +sage +snail +##table +shannon +fi +laurence +seoul +vacation +presenting +hire +churchill +surprisingly +prohibited +savannah +technically +##oli +170 +##lessly +testimony +suited +speeds +toys +romans +mlb +flowering +measurement +talented +kay +settings +charleston +expectations +shattered +achieving +triumph +ceremonies +portsmouth +lanes +mandatory +loser +stretching +cologne +realizes +seventy +cornell +careers +webb +##ulating +americas +budapest +ava +suspicion +##ison +yo +conrad +##hai +sterling +jessie +rector +##az +1831 +transform +organize +loans +christine +volcanic +warrant +slender +summers +subfamily +newer +danced +dynamics +rhine +proceeds +heinrich +gastropod +commands +sings +facilitate +easter +ra +positioned +responses +expense +fruits +yanked +imported +25th +velvet +vic +primitive +tribune +baldwin +neighbourhood +donna +rip +hay +pr +##uro +1814 +espn +welcomed +##aria +qualifier +glare +highland +timing +##cted +shells +eased +geometry +louder +exciting +slovakia +##sion +##iz +##lot +savings +prairie +##ques +marching +rafael +tonnes +##lled +curtain +preceding +shy +heal +greene +worthy +##pot +detachment +bury +sherman +##eck +reinforced +seeks +bottles +contracted +duchess +outfit +walsh +##sc +mickey +##ase +geoffrey +archer +squeeze +dawson +eliminate +invention +##enberg +neal +##eth +stance +dealer +coral +maple +retire +polo +simplified +##ht +1833 +hid +watts +backwards +jules +##oke +genesis +mt +frames +rebounds +burma +woodland +moist +santos +whispers +drained +subspecies +##aa +streaming +ulster +burnt +correspondence +maternal +gerard +denis +stealing +##load +genius +duchy +##oria +inaugurated +momentum +suits +placement +sovereign +clause +thames +##hara +confederation +reservation +sketch +yankees +lets +rotten +charm +hal +verses +ultra +commercially +dot +salon +citation +adopt +winnipeg +mist +allocated +cairo +##boy +jenkins +interference +objectives +##wind +1820 +portfolio +armoured +sectors +##eh +initiatives +##world +integrity +exercises +robe +tap +ab +gazed +##tones +distracted +rulers +111 +favorable +jerome +tended +cart +factories +##eri +diplomat +valued +gravel +charitable +##try +calvin +exploring +chang +shepherd +terrace +pdf +pupil +##ural +reflects +ups +##rch +governors +shelf +depths +##nberg +trailed +crest +tackle +##nian +##ats +hatred +##kai +clare +makers +ethiopia +longtime +detected +embedded +lacking +slapped +rely +thomson +anticipation +iso +morton +successive +agnes +screenwriter +straightened +philippe +playwright +haunted +licence +iris +intentions +sutton +112 +logical +correctly +##weight +branded +licked +tipped +silva +ricky +narrator +requests +##ents +greeted +supernatural +cow +##wald +lung +refusing +employer +strait +gaelic +liner +##piece +zoe +sabha +##mba +driveway +harvest +prints +bates +reluctantly +threshold +algebra +ira +wherever +coupled +240 +assumption +picks +##air +designers +raids +gentlemen +##ean +roller +blowing +leipzig +locks +screw +dressing +strand +##lings +scar +dwarf +depicts +##nu +nods +##mine +differ +boris +##eur +yuan +flip +##gie +mob +invested +questioning +applying +##ture +shout +##sel +gameplay +blamed +illustrations +bothered +weakness +rehabilitation +##of +##zes +envelope +rumors +miners +leicester +subtle +kerry +##ico +ferguson +##fu +premiership +ne +##cat +bengali +prof +catches +remnants +dana +##rily +shouting +presidents +baltic +ought +ghosts +dances +sailors +shirley +fancy +dominic +##bie +madonna +##rick +bark +buttons +gymnasium +ashes +liver +toby +oath +providence +doyle +evangelical +nixon +cement +carnegie +embarked +hatch +surroundings +guarantee +needing +pirate +essence +##bee +filter +crane +hammond +projected +immune +percy +twelfth +##ult +regent +doctoral +damon +mikhail +##ichi +lu +critically +elect +realised +abortion +acute +screening +mythology +steadily +##fc +frown +nottingham +kirk +wa +minneapolis +##rra +module +algeria +mc +nautical +encounters +surprising +statues +availability +shirts +pie +alma +brows +munster +mack +soup +crater +tornado +sanskrit +cedar +explosive +bordered +dixon +planets +stamp +exam +happily +##bble +carriers +kidnapped +##vis +accommodation +emigrated +##met +knockout +correspondent +violation +profits +peaks +lang +specimen +agenda +ancestry +pottery +spelling +equations +obtaining +ki +linking +1825 +debris +asylum +##20 +buddhism +teddy +##ants +gazette +##nger +##sse +dental +eligibility +utc +fathers +averaged +zimbabwe +francesco +coloured +hissed +translator +lynch +mandate +humanities +mackenzie +uniforms +lin +##iana +##gio +asset +mhz +fitting +samantha +genera +wei +rim +beloved +shark +riot +entities +expressions +indo +carmen +slipping +owing +abbot +neighbor +sidney +##av +rats +recommendations +encouraging +squadrons +anticipated +commanders +conquered +##oto +donations +diagnosed +##mond +divide +##iva +guessed +decoration +vernon +auditorium +revelation +conversations +##kers +##power +herzegovina +dash +alike +protested +lateral +herman +accredited +mg +##gent +freeman +mel +fiji +crow +crimson +##rine +livestock +##pped +humanitarian +bored +oz +whip +##lene +##ali +legitimate +alter +grinning +spelled +anxious +oriental +wesley +##nin +##hole +carnival +controller +detect +##ssa +bowed +educator +kosovo +macedonia +##sin +occupy +mastering +stephanie +janeiro +para +unaware +nurses +noon +135 +cam +hopefully +ranger +combine +sociology +polar +rica +##eer +neill +##sman +holocaust +##ip +doubled +lust +1828 +109 +decent +cooling +unveiled +##card +1829 +nsw +homer +chapman +meyer +##gin +dive +mae +reagan +expertise +##gled +darwin +brooke +sided +prosecution +investigating +comprised +petroleum +genres +reluctant +differently +trilogy +johns +vegetables +corpse +highlighted +lounge +pension +unsuccessfully +elegant +aided +ivory +beatles +amelia +cain +dubai +sunny +immigrant +babe +click +##nder +underwater +pepper +combining +mumbled +atlas +horns +accessed +ballad +physicians +homeless +gestured +rpm +freak +louisville +corporations +patriots +prizes +rational +warn +modes +decorative +overnight +din +troubled +phantom +##ort +monarch +sheer +##dorf +generals +guidelines +organs +addresses +##zon +enhance +curling +parishes +cord +##kie +linux +caesar +deutsche +bavaria +##bia +coleman +cyclone +##eria +bacon +petty +##yama +##old +hampton +diagnosis +1824 +throws +complexity +rita +disputed +##₃ +pablo +##sch +marketed +trafficking +##ulus +examine +plague +formats +##oh +vault +faithful +##bourne +webster +##ox +highlights +##ient +##ann +phones +vacuum +sandwich +modeling +##gated +bolivia +clergy +qualities +isabel +##nas +##ars +wears +screams +reunited +annoyed +bra +##ancy +##rate +differential +transmitter +tattoo +container +poker +##och +excessive +resides +cowboys +##tum +augustus +trash +providers +statute +retreated +balcony +reversed +void +storey +preceded +masses +leap +laughs +neighborhoods +wards +schemes +falcon +santo +battlefield +pad +ronnie +thread +lesbian +venus +##dian +beg +sandstone +daylight +punched +gwen +analog +stroked +wwe +acceptable +measurements +dec +toxic +##kel +adequate +surgical +economist +parameters +varsity +##sberg +quantity +ella +##chy +##rton +countess +generating +precision +diamonds +expressway +ga +##ı +1821 +uruguay +talents +galleries +expenses +scanned +colleague +outlets +ryder +lucien +##ila +paramount +##bon +syracuse +dim +fangs +gown +sweep +##sie +toyota +missionaries +websites +##nsis +sentences +adviser +val +trademark +spells +##plane +patience +starter +slim +##borg +toe +incredibly +shoots +elliot +nobility +##wyn +cowboy +endorsed +gardner +tendency +persuaded +organisms +emissions +kazakhstan +amused +boring +chips +themed +##hand +llc +constantinople +chasing +systematic +guatemala +borrowed +erin +carey +##hard +highlands +struggles +1810 +##ifying +##ced +wong +exceptions +develops +enlarged +kindergarten +castro +##ern +##rina +leigh +zombie +juvenile +##most +consul +##nar +sailor +hyde +clarence +intensive +pinned +nasty +useless +jung +clayton +stuffed +exceptional +ix +apostolic +230 +transactions +##dge +exempt +swinging +cove +religions +##ash +shields +dairy +bypass +190 +pursuing +bug +joyce +bombay +chassis +southampton +chat +interact +redesignated +##pen +nascar +pray +salmon +rigid +regained +malaysian +grim +publicity +constituted +capturing +toilet +delegate +purely +tray +drift +loosely +striker +weakened +trinidad +mitch +itv +defines +transmitted +ming +scarlet +nodding +fitzgerald +fu +narrowly +sp +tooth +standings +virtue +##₁ +##wara +##cting +chateau +gloves +lid +##nel +hurting +conservatory +##pel +sinclair +reopened +sympathy +nigerian +strode +advocated +optional +chronic +discharge +##rc +suck +compatible +laurel +stella +shi +fails +wage +dodge +128 +informal +sorts +levi +buddha +villagers +##aka +chronicles +heavier +summoned +gateway +3000 +eleventh +jewelry +translations +accordingly +seas +##ency +fiber +pyramid +cubic +dragging +##ista +caring +##ops +android +contacted +lunar +##dt +kai +lisbon +patted +1826 +sacramento +theft +madagascar +subtropical +disputes +ta +holidays +piper +willow +mare +cane +itunes +newfoundland +benny +companions +dong +raj +observe +roar +charming +plaque +tibetan +fossils +enacted +manning +bubble +tina +tanzania +##eda +##hir +funk +swamp +deputies +cloak +ufc +scenario +par +scratch +metals +anthem +guru +engaging +specially +##boat +dialects +nineteen +cecil +duet +disability +messenger +unofficial +##lies +defunct +eds +moonlight +drainage +surname +puzzle +honda +switching +conservatives +mammals +knox +broadcaster +sidewalk +cope +##ried +benson +princes +peterson +##sal +bedford +sharks +eli +wreck +alberto +gasp +archaeology +lgbt +teaches +securities +madness +compromise +waving +coordination +davidson +visions +leased +possibilities +eighty +jun +fernandez +enthusiasm +assassin +sponsorship +reviewer +kingdoms +estonian +laboratories +##fy +##nal +applies +verb +celebrations +##zzo +rowing +lightweight +sadness +submit +mvp +balanced +dude +##vas +explicitly +metric +magnificent +mound +brett +mohammad +mistakes +irregular +##hing +##ass +sanders +betrayed +shipped +surge +##enburg +reporters +termed +georg +pity +verbal +bulls +abbreviated +enabling +appealed +##are +##atic +sicily +sting +heel +sweetheart +bart +spacecraft +brutal +monarchy +##tter +aberdeen +cameo +diane +##ub +survivor +clyde +##aries +complaint +##makers +clarinet +delicious +chilean +karnataka +coordinates +1818 +panties +##rst +pretending +ar +dramatically +kiev +bella +tends +distances +113 +catalog +launching +instances +telecommunications +portable +lindsay +vatican +##eim +angles +aliens +marker +stint +screens +bolton +##rne +judy +wool +benedict +plasma +europa +spark +imaging +filmmaker +swiftly +##een +contributor +##nor +opted +stamps +apologize +financing +butter +gideon +sophisticated +alignment +avery +chemicals +yearly +speculation +prominence +professionally +##ils +immortal +institutional +inception +wrists +identifying +tribunal +derives +gains +##wo +papal +preference +linguistic +vince +operative +brewery +##ont +unemployment +boyd +##ured +##outs +albeit +prophet +1813 +bi +##rr +##face +##rad +quarterly +asteroid +cleaned +radius +temper +##llen +telugu +jerk +viscount +menu +##ote +glimpse +##aya +yacht +hawaiian +baden +##rl +laptop +readily +##gu +monetary +offshore +scots +watches +##yang +##arian +upgrade +needle +xbox +lea +encyclopedia +flank +fingertips +##pus +delight +teachings +confirm +roth +beaches +midway +winters +##iah +teasing +daytime +beverly +gambling +bonnie +##backs +regulated +clement +hermann +tricks +knot +##shing +##uring +##vre +detached +ecological +owed +specialty +byron +inventor +bats +stays +screened +unesco +midland +trim +affection +##ander +##rry +jess +thoroughly +feedback +##uma +chennai +strained +heartbeat +wrapping +overtime +pleaded +##sworth +mon +leisure +oclc +##tate +##ele +feathers +angelo +thirds +nuts +surveys +clever +gill +commentator +##dos +darren +rides +gibraltar +##nc +##mu +dissolution +dedication +shin +meals +saddle +elvis +reds +chaired +taller +appreciation +functioning +niece +favored +advocacy +robbie +criminals +suffolk +yugoslav +passport +constable +congressman +hastings +vera +##rov +consecrated +sparks +ecclesiastical +confined +##ovich +muller +floyd +nora +1822 +paved +1827 +cumberland +ned +saga +spiral +##flow +appreciated +yi +collaborative +treating +similarities +feminine +finishes +##ib +jade +import +##nse +##hot +champagne +mice +securing +celebrities +helsinki +attributes +##gos +cousins +phases +ache +lucia +gandhi +submission +vicar +spear +shine +tasmania +biting +detention +constitute +tighter +seasonal +##gus +terrestrial +matthews +##oka +effectiveness +parody +philharmonic +##onic +1816 +strangers +encoded +consortium +guaranteed +regards +shifts +tortured +collision +supervisor +inform +broader +insight +theaters +armour +emeritus +blink +incorporates +mapping +##50 +##ein +handball +flexible +##nta +substantially +generous +thief +##own +carr +loses +1793 +prose +ucla +romeo +generic +metallic +realization +damages +mk +commissioners +zach +default +##ther +helicopters +lengthy +stems +spa +partnered +spectators +rogue +indication +penalties +teresa +1801 +sen +##tric +dalton +##wich +irving +photographic +##vey +dell +deaf +peters +excluded +unsure +##vable +patterson +crawled +##zio +resided +whipped +latvia +slower +ecole +pipes +employers +maharashtra +comparable +va +textile +pageant +##gel +alphabet +binary +irrigation +chartered +choked +antoine +offs +waking +supplement +##wen +quantities +demolition +regain +locate +urdu +folks +alt +114 +##mc +scary +andreas +whites +##ava +classrooms +mw +aesthetic +publishes +valleys +guides +cubs +johannes +bryant +conventions +affecting +##itt +drain +awesome +isolation +prosecutor +ambitious +apology +captive +downs +atmospheric +lorenzo +aisle +beef +foul +##onia +kidding +composite +disturbed +illusion +natives +##ffer +emi +rockets +riverside +wartime +painters +adolf +melted +##ail +uncertainty +simulation +hawks +progressed +meantime +builder +spray +breach +unhappy +regina +russians +##urg +determining +##tation +tram +1806 +##quin +aging +##12 +1823 +garion +rented +mister +diaz +terminated +clip +1817 +depend +nervously +disco +owe +defenders +shiva +notorious +disbelief +shiny +worcester +##gation +##yr +trailing +undertook +islander +belarus +limitations +watershed +fuller +overlooking +utilized +raphael +1819 +synthetic +breakdown +klein +##nate +moaned +memoir +lamb +practicing +##erly +cellular +arrows +exotic +##graphy +witches +117 +charted +rey +hut +hierarchy +subdivision +freshwater +giuseppe +aloud +reyes +qatar +marty +sideways +utterly +sexually +jude +prayers +mccarthy +softball +blend +damien +##gging +##metric +wholly +erupted +lebanese +negro +revenues +tasted +comparative +teamed +transaction +labeled +maori +sovereignty +parkway +trauma +gran +malay +121 +advancement +descendant +2020 +buzz +salvation +inventory +symbolic +##making +antarctica +mps +##gas +##bro +mohammed +myanmar +holt +submarines +tones +##lman +locker +patriarch +bangkok +emerson +remarks +predators +kin +afghan +confession +norwich +rental +emerge +advantages +##zel +rca +##hold +shortened +storms +aidan +##matic +autonomy +compliance +##quet +dudley +atp +##osis +1803 +motto +documentation +summary +professors +spectacular +christina +archdiocese +flashing +innocence +remake +##dell +psychic +reef +scare +employ +rs +sticks +meg +gus +leans +##ude +accompany +bergen +tomas +##iko +doom +wages +pools +##nch +##bes +breasts +scholarly +alison +outline +brittany +breakthrough +willis +realistic +##cut +##boro +competitor +##stan +pike +picnic +icon +designing +commercials +washing +villain +skiing +micro +costumes +auburn +halted +executives +##hat +logistics +cycles +vowel +applicable +barrett +exclaimed +eurovision +eternity +ramon +##umi +##lls +modifications +sweeping +disgust +##uck +torch +aviv +ensuring +rude +dusty +sonic +donovan +outskirts +cu +pathway +##band +##gun +##lines +disciplines +acids +cadet +paired +##40 +sketches +##sive +marriages +##⁺ +folding +peers +slovak +implies +admired +##beck +1880s +leopold +instinct +attained +weston +megan +horace +##ination +dorsal +ingredients +evolutionary +##its +complications +deity +lethal +brushing +levy +deserted +institutes +posthumously +delivering +telescope +coronation +motivated +rapids +luc +flicked +pays +volcano +tanner +weighed +##nica +crowds +frankie +gifted +addressing +granddaughter +winding +##rna +constantine +gomez +##front +landscapes +rudolf +anthropology +slate +werewolf +##lio +astronomy +circa +rouge +dreaming +sack +knelt +drowned +naomi +prolific +tracked +freezing +herb +##dium +agony +randall +twisting +wendy +deposit +touches +vein +wheeler +##bbled +##bor +batted +retaining +tire +presently +compare +specification +daemon +nigel +##grave +merry +recommendation +czechoslovakia +sandra +ng +roma +##sts +lambert +inheritance +sheikh +winchester +cries +examining +##yle +comeback +cuisine +nave +##iv +ko +retrieve +tomatoes +barker +polished +defining +irene +lantern +personalities +begging +tract +swore +1809 +175 +##gic +omaha +brotherhood +##rley +haiti +##ots +exeter +##ete +##zia +steele +dumb +pearson +210 +surveyed +elisabeth +trends +##ef +fritz +##rf +premium +bugs +fraction +calmly +viking +##birds +tug +inserted +unusually +##ield +confronted +distress +crashing +brent +turks +resign +##olo +cambodia +gabe +sauce +##kal +evelyn +116 +extant +clusters +quarry +teenagers +luna +##lers +##ister +affiliation +drill +##ashi +panthers +scenic +libya +anita +strengthen +inscriptions +##cated +lace +sued +judith +riots +##uted +mint +##eta +preparations +midst +dub +challenger +##vich +mock +cf +displaced +wicket +breaths +enables +schmidt +analyst +##lum +ag +highlight +automotive +axe +josef +newark +sufficiently +resembles +50th +##pal +flushed +mum +traits +##ante +commodore +incomplete +warming +titular +ceremonial +ethical +118 +celebrating +eighteenth +cao +lima +medalist +mobility +strips +snakes +##city +miniature +zagreb +barton +escapes +umbrella +automated +doubted +differs +cooled +georgetown +dresden +cooked +fade +wyatt +rna +jacobs +carlton +abundant +stereo +boost +madras +inning +##hia +spur +ip +malayalam +begged +osaka +groan +escaping +charging +dose +vista +##aj +bud +papa +communists +advocates +edged +tri +##cent +resemble +peaking +necklace +fried +montenegro +saxony +goose +glances +stuttgart +curator +recruit +grocery +sympathetic +##tting +##fort +127 +lotus +randolph +ancestor +##rand +succeeding +jupiter +1798 +macedonian +##heads +hiking +1808 +handing +fischer +##itive +garbage +node +##pies +prone +singular +papua +inclined +attractions +italia +pouring +motioned +grandma +garnered +jacksonville +corp +ego +ringing +aluminum +##hausen +ordering +##foot +drawer +traders +synagogue +##play +##kawa +resistant +wandering +fragile +fiona +teased +var +hardcore +soaked +jubilee +decisive +exposition +mercer +poster +valencia +hale +kuwait +1811 +##ises +##wr +##eed +tavern +gamma +122 +johan +##uer +airways +amino +gil +##ury +vocational +domains +torres +##sp +generator +folklore +outcomes +##keeper +canberra +shooter +fl +beams +confrontation +##lling +##gram +feb +aligned +forestry +pipeline +jax +motorway +conception +decay +##tos +coffin +##cott +stalin +1805 +escorted +minded +##nam +sitcom +purchasing +twilight +veronica +additions +passive +tensions +straw +123 +frequencies +1804 +refugee +cultivation +##iate +christie +clary +bulletin +crept +disposal +##rich +##zong +processor +crescent +##rol +bmw +emphasized +whale +nazis +aurora +##eng +dwelling +hauled +sponsors +toledo +mega +ideology +theatres +tessa +cerambycidae +saves +turtle +cone +suspects +kara +rusty +yelling +greeks +mozart +shades +cocked +participant +##tro +shire +spit +freeze +necessity +##cos +inmates +nielsen +councillors +loaned +uncommon +omar +peasants +botanical +offspring +daniels +formations +jokes +1794 +pioneers +sigma +licensing +##sus +wheelchair +polite +1807 +liquor +pratt +trustee +##uta +forewings +balloon +##zz +kilometre +camping +explicit +casually +shawn +foolish +teammates +nm +hassan +carrie +judged +satisfy +vanessa +knives +selective +cnn +flowed +##lice +eclipse +stressed +eliza +mathematician +cease +cultivated +##roy +commissions +browns +##ania +destroyers +sheridan +meadow +##rius +minerals +##cial +downstream +clash +gram +memoirs +ventures +baha +seymour +archie +midlands +edith +fare +flynn +invite +canceled +tiles +stabbed +boulder +incorporate +amended +camden +facial +mollusk +unreleased +descriptions +yoga +grabs +550 +raises +ramp +shiver +##rose +coined +pioneering +tunes +qing +warwick +tops +119 +melanie +giles +##rous +wandered +##inal +annexed +nov +30th +unnamed +##ished +organizational +airplane +normandy +stoke +whistle +blessing +violations +chased +holders +shotgun +##ctic +outlet +reactor +##vik +tires +tearing +shores +fortified +mascot +constituencies +nc +columnist +productive +tibet +##rta +lineage +hooked +oct +tapes +judging +cody +##gger +hansen +kashmir +triggered +##eva +solved +cliffs +##tree +resisted +anatomy +protesters +transparent +implied +##iga +injection +mattress +excluding +##mbo +defenses +helpless +devotion +##elli +growl +liberals +weber +phenomena +atoms +plug +##iff +mortality +apprentice +howe +convincing +aaa +swimmer +barber +leone +promptly +sodium +def +nowadays +arise +##oning +gloucester +corrected +dignity +norm +erie +##ders +elders +evacuated +sylvia +compression +##yar +hartford +pose +backpack +reasoning +accepts +24th +wipe +millimetres +marcel +##oda +dodgers +albion +1790 +overwhelmed +aerospace +oaks +1795 +showcase +acknowledge +recovering +nolan +ashe +hurts +geology +fashioned +disappearance +farewell +swollen +shrug +marquis +wimbledon +124 +rue +1792 +commemorate +reduces +experiencing +inevitable +calcutta +intel +##court +murderer +sticking +fisheries +imagery +bloom +280 +brake +##inus +gustav +hesitation +memorable +po +viral +beans +accidents +tunisia +antenna +spilled +consort +treatments +aye +perimeter +##gard +donation +hostage +migrated +banker +addiction +apex +lil +trout +##ously +conscience +##nova +rams +sands +genome +passionate +troubles +##lets +##set +amid +##ibility +##ret +higgins +exceed +vikings +##vie +payne +##zan +muscular +##ste +defendant +sucking +##wal +ibrahim +fuselage +claudia +vfl +europeans +snails +interval +##garh +preparatory +statewide +tasked +lacrosse +viktor +##lation +angola +##hra +flint +implications +employs +teens +patrons +stall +weekends +barriers +scrambled +nucleus +tehran +jenna +parsons +lifelong +robots +displacement +5000 +##bles +precipitation +##gt +knuckles +clutched +1802 +marrying +ecology +marx +accusations +declare +scars +kolkata +mat +meadows +bermuda +skeleton +finalists +vintage +crawl +coordinate +affects +subjected +orchestral +mistaken +##tc +mirrors +dipped +relied +260 +arches +candle +##nick +incorporating +wildly +fond +basilica +owl +fringe +rituals +whispering +stirred +feud +tertiary +slick +goat +honorable +whereby +skip +ricardo +stripes +parachute +adjoining +submerged +synthesizer +##gren +intend +positively +ninety +phi +beaver +partition +fellows +alexis +prohibition +carlisle +bizarre +fraternity +##bre +doubts +icy +cbc +aquatic +sneak +sonny +combines +airports +crude +supervised +spatial +merge +alfonso +##bic +corrupt +scan +undergo +##ams +disabilities +colombian +comparing +dolphins +perkins +##lish +reprinted +unanimous +bounced +hairs +underworld +midwest +semester +bucket +paperback +miniseries +coventry +demise +##leigh +demonstrations +sensor +rotating +yan +##hler +arrange +soils +##idge +hyderabad +labs +##dr +brakes +grandchildren +##nde +negotiated +rover +ferrari +continuation +directorate +augusta +stevenson +counterpart +gore +##rda +nursery +rican +ave +collectively +broadly +pastoral +repertoire +asserted +discovering +nordic +styled +fiba +cunningham +harley +middlesex +survives +tumor +tempo +zack +aiming +lok +urgent +##rade +##nto +devils +##ement +contractor +turin +##wl +##ool +bliss +repaired +simmons +moan +astronomical +cr +negotiate +lyric +1890s +lara +bred +clad +angus +pbs +##ience +engineered +posed +##lk +hernandez +possessions +elbows +psychiatric +strokes +confluence +electorate +lifts +campuses +lava +alps +##ep +##ution +##date +physicist +woody +##page +##ographic +##itis +juliet +reformation +sparhawk +320 +complement +suppressed +jewel +##½ +floated +##kas +continuity +sadly +##ische +inability +melting +scanning +paula +flour +judaism +safer +vague +##lm +solving +curb +##stown +financially +gable +bees +expired +miserable +cassidy +dominion +1789 +cupped +145 +robbery +facto +amos +warden +resume +tallest +marvin +ing +pounded +usd +declaring +gasoline +##aux +darkened +270 +650 +sophomore +##mere +erection +gossip +televised +risen +dial +##eu +pillars +##link +passages +profound +##tina +arabian +ashton +silicon +nail +##ead +##lated +##wer +##hardt +fleming +firearms +ducked +circuits +blows +waterloo +titans +##lina +atom +fireplace +cheshire +financed +activation +algorithms +##zzi +constituent +catcher +cherokee +partnerships +sexuality +platoon +tragic +vivian +guarded +whiskey +meditation +poetic +##late +##nga +##ake +porto +listeners +dominance +kendra +mona +chandler +factions +22nd +salisbury +attitudes +derivative +##ido +##haus +intake +paced +javier +illustrator +barrels +bias +cockpit +burnett +dreamed +ensuing +##anda +receptors +someday +hawkins +mattered +##lal +slavic +1799 +jesuit +cameroon +wasted +tai +wax +lowering +victorious +freaking +outright +hancock +librarian +sensing +bald +calcium +myers +tablet +announcing +barack +shipyard +pharmaceutical +##uan +greenwich +flush +medley +patches +wolfgang +pt +speeches +acquiring +exams +nikolai +##gg +hayden +kannada +##type +reilly +##pt +waitress +abdomen +devastated +capped +pseudonym +pharmacy +fulfill +paraguay +1796 +clicked +##trom +archipelago +syndicated +##hman +lumber +orgasm +rejection +clifford +lorraine +advent +mafia +rodney +brock +##ght +##used +##elia +cassette +chamberlain +despair +mongolia +sensors +developmental +upstream +##eg +##alis +spanning +165 +trombone +basque +seeded +interred +renewable +rhys +leapt +revision +molecule +##ages +chord +vicious +nord +shivered +23rd +arlington +debts +corpus +sunrise +bays +blackburn +centimetres +##uded +shuddered +gm +strangely +gripping +cartoons +isabelle +orbital +##ppa +seals +proving +##lton +refusal +strengthened +bust +assisting +baghdad +batsman +portrayal +mara +pushes +spears +og +##cock +reside +nathaniel +brennan +1776 +confirmation +caucus +##worthy +markings +yemen +nobles +ku +lazy +viewer +catalan +encompasses +sawyer +##fall +sparked +substances +patents +braves +arranger +evacuation +sergio +persuade +dover +tolerance +penguin +cum +jockey +insufficient +townships +occupying +declining +plural +processed +projection +puppet +flanders +introduces +liability +##yon +gymnastics +antwerp +taipei +hobart +candles +jeep +wes +observers +126 +chaplain +bundle +glorious +##hine +hazel +flung +sol +excavations +dumped +stares +sh +bangalore +triangular +icelandic +intervals +expressing +turbine +##vers +songwriting +crafts +##igo +jasmine +ditch +rite +##ways +entertaining +comply +sorrow +wrestlers +basel +emirates +marian +rivera +helpful +##some +caution +downward +networking +##atory +##tered +darted +genocide +emergence +replies +specializing +spokesman +convenient +unlocked +fading +augustine +concentrations +resemblance +elijah +investigator +andhra +##uda +promotes +bean +##rrell +fleeing +wan +simone +announcer +##ame +##bby +lydia +weaver +132 +residency +modification +##fest +stretches +##ast +alternatively +nat +lowe +lacks +##ented +pam +tile +concealed +inferior +abdullah +residences +tissues +vengeance +##ided +moisture +peculiar +groove +zip +bologna +jennings +ninja +oversaw +zombies +pumping +batch +livingston +emerald +installations +1797 +peel +nitrogen +rama +##fying +##star +schooling +strands +responding +werner +##ost +lime +casa +accurately +targeting +##rod +underway +##uru +hemisphere +lester +##yard +occupies +2d +griffith +angrily +reorganized +##owing +courtney +deposited +##dd +##30 +estadio +##ifies +dunn +exiled +##ying +checks +##combe +##о +##fly +successes +unexpectedly +blu +assessed +##flower +##ه +observing +sacked +spiders +kn +##tail +mu +nodes +prosperity +audrey +divisional +155 +broncos +tangled +adjust +feeds +erosion +paolo +surf +directory +snatched +humid +admiralty +screwed +gt +reddish +##nese +modules +trench +lamps +bind +leah +bucks +competes +##nz +##form +transcription +##uc +isles +violently +clutching +pga +cyclist +inflation +flats +ragged +unnecessary +##hian +stubborn +coordinated +harriet +baba +disqualified +330 +insect +wolfe +##fies +reinforcements +rocked +duel +winked +embraced +bricks +##raj +hiatus +defeats +pending +brightly +jealousy +##xton +##hm +##uki +lena +gdp +colorful +##dley +stein +kidney +##shu +underwear +wanderers +##haw +##icus +guardians +m³ +roared +habits +##wise +permits +gp +uranium +punished +disguise +bundesliga +elise +dundee +erotic +partisan +pi +collectors +float +individually +rendering +behavioral +bucharest +ser +hare +valerie +corporal +nutrition +proportional +##isa +immense +##kis +pavement +##zie +##eld +sutherland +crouched +1775 +##lp +suzuki +trades +endurance +operas +crosby +prayed +priory +rory +socially +##urn +gujarat +##pu +walton +cube +pasha +privilege +lennon +floods +thorne +waterfall +nipple +scouting +approve +##lov +minorities +voter +dwight +extensions +assure +ballroom +slap +dripping +privileges +rejoined +confessed +demonstrating +patriotic +yell +investor +##uth +pagan +slumped +squares +##cle +##kins +confront +bert +embarrassment +##aid +aston +urging +sweater +starr +yuri +brains +williamson +commuter +mortar +structured +selfish +exports +##jon +cds +##him +unfinished +##rre +mortgage +destinations +##nagar +canoe +solitary +buchanan +delays +magistrate +fk +##pling +motivation +##lier +##vier +recruiting +assess +##mouth +malik +antique +1791 +pius +rahman +reich +tub +zhou +smashed +airs +galway +xii +conditioning +honduras +discharged +dexter +##pf +lionel +129 +debates +lemon +tiffany +volunteered +dom +dioxide +procession +devi +sic +tremendous +advertisements +colts +transferring +verdict +hanover +decommissioned +utter +relate +pac +racism +##top +beacon +limp +similarity +terra +occurrence +ant +##how +becky +capt +updates +armament +richie +pal +##graph +halloween +mayo +##ssen +##bone +cara +serena +fcc +dolls +obligations +##dling +violated +lafayette +jakarta +exploitation +##ime +infamous +iconic +##lah +##park +kitty +moody +reginald +dread +spill +crystals +olivier +modeled +bluff +equilibrium +separating +notices +ordnance +extinction +onset +cosmic +attachment +sammy +expose +privy +anchored +##bil +abbott +admits +bending +baritone +emmanuel +policeman +vaughan +winged +climax +dresses +denny +polytechnic +mohamed +burmese +authentic +nikki +genetics +grandparents +homestead +gaza +postponed +metacritic +una +##sby +##bat +unstable +dissertation +##rial +##cian +curls +obscure +uncovered +bronx +praying +disappearing +##hoe +prehistoric +coke +turret +mutations +nonprofit +pits +monaco +##ي +##usion +prominently +dispatched +podium +##mir +uci +##uation +133 +fortifications +birthplace +kendall +##lby +##oll +preacher +rack +goodman +##rman +persistent +##ott +countless +jaime +recorder +lexington +persecution +jumps +renewal +wagons +##11 +crushing +##holder +decorations +##lake +abundance +wrath +laundry +£1 +garde +##rp +jeanne +beetles +peasant +##sl +splitting +caste +sergei +##rer +##ema +scripts +##ively +rub +satellites +##vor +inscribed +verlag +scrapped +gale +packages +chick +potato +slogan +kathleen +arabs +##culture +counterparts +reminiscent +choral +##tead +rand +retains +bushes +dane +accomplish +courtesy +closes +##oth +slaughter +hague +krakow +lawson +tailed +elias +ginger +##ttes +canopy +betrayal +rebuilding +turf +##hof +frowning +allegiance +brigades +kicks +rebuild +polls +alias +nationalism +td +rowan +audition +bowie +fortunately +recognizes +harp +dillon +horrified +##oro +renault +##tics +ropes +##α +presumed +rewarded +infrared +wiping +accelerated +illustration +##rid +presses +practitioners +badminton +##iard +detained +##tera +recognizing +relates +misery +##sies +##tly +reproduction +piercing +potatoes +thornton +esther +manners +hbo +##aan +ours +bullshit +ernie +perennial +sensitivity +illuminated +rupert +##jin +##iss +##ear +rfc +nassau +##dock +staggered +socialism +##haven +appointments +nonsense +prestige +sharma +haul +##tical +solidarity +gps +##ook +##rata +igor +pedestrian +##uit +baxter +tenants +wires +medication +unlimited +guiding +impacts +diabetes +##rama +sasha +pas +clive +extraction +131 +continually +constraints +##bilities +sonata +hunted +sixteenth +chu +planting +quote +mayer +pretended +abs +spat +##hua +ceramic +##cci +curtains +pigs +pitching +##dad +latvian +sore +dayton +##sted +##qi +patrols +slice +playground +##nted +shone +stool +apparatus +inadequate +mates +treason +##ija +desires +##liga +##croft +somalia +laurent +mir +leonardo +oracle +grape +obliged +chevrolet +thirteenth +stunning +enthusiastic +##ede +accounted +concludes +currents +basil +##kovic +drought +##rica +mai +##aire +shove +posting +##shed +pilgrimage +humorous +packing +fry +pencil +wines +smells +144 +marilyn +aching +newest +clung +bon +neighbours +sanctioned +##pie +mug +##stock +drowning +##mma +hydraulic +##vil +hiring +reminder +lilly +investigators +##ncies +sour +##eous +compulsory +packet +##rion +##graphic +##elle +cannes +##inate +depressed +##rit +heroic +importantly +theresa +##tled +conway +saturn +marginal +rae +##xia +corresponds +royce +pact +jasper +explosives +packaging +aluminium +##ttered +denotes +rhythmic +spans +assignments +hereditary +outlined +originating +sundays +lad +reissued +greeting +beatrice +##dic +pillar +marcos +plots +handbook +alcoholic +judiciary +avant +slides +extract +masculine +blur +##eum +##force +homage +trembled +owens +hymn +trey +omega +signaling +socks +accumulated +reacted +attic +theo +lining +angie +distraction +primera +talbot +##key +1200 +ti +creativity +billed +##hey +deacon +eduardo +identifies +proposition +dizzy +gunner +hogan +##yam +##pping +##hol +ja +##chan +jensen +reconstructed +##berger +clearance +darius +##nier +abe +harlem +plea +dei +circled +emotionally +notation +fascist +neville +exceeded +upwards +viable +ducks +##fo +workforce +racer +limiting +shri +##lson +possesses +1600 +kerr +moths +devastating +laden +disturbing +locking +##cture +gal +fearing +accreditation +flavor +aide +1870s +mountainous +##baum +melt +##ures +motel +texture +servers +soda +##mb +herd +##nium +erect +puzzled +hum +peggy +examinations +gould +testified +geoff +ren +devised +sacks +##law +denial +posters +grunted +cesar +tutor +ec +gerry +offerings +byrne +falcons +combinations +ct +incoming +pardon +rocking +26th +avengers +flared +mankind +seller +uttar +loch +nadia +stroking +exposing +##hd +fertile +ancestral +instituted +##has +noises +prophecy +taxation +eminent +vivid +pol +##bol +dart +indirect +multimedia +notebook +upside +displaying +adrenaline +referenced +geometric +##iving +progression +##ddy +blunt +announce +##far +implementing +##lav +aggression +liaison +cooler +cares +headache +plantations +gorge +dots +impulse +thickness +ashamed +averaging +kathy +obligation +precursor +137 +fowler +symmetry +thee +225 +hears +##rai +undergoing +ads +butcher +bowler +##lip +cigarettes +subscription +goodness +##ically +browne +##hos +##tech +kyoto +donor +##erty +damaging +friction +drifting +expeditions +hardened +prostitution +152 +fauna +blankets +claw +tossing +snarled +butterflies +recruits +investigative +coated +healed +138 +communal +hai +xiii +academics +boone +psychologist +restless +lahore +stephens +mba +brendan +foreigners +printer +##pc +ached +explode +27th +deed +scratched +dared +##pole +cardiac +1780 +okinawa +proto +commando +compelled +oddly +electrons +##base +replica +thanksgiving +##rist +sheila +deliberate +stafford +tidal +representations +hercules +ou +##path +##iated +kidnapping +lenses +##tling +deficit +samoa +mouths +consuming +computational +maze +granting +smirk +razor +fixture +ideals +inviting +aiden +nominal +##vs +issuing +julio +pitt +ramsey +docks +##oss +exhaust +##owed +bavarian +draped +anterior +mating +ethiopian +explores +noticing +##nton +discarded +convenience +hoffman +endowment +beasts +cartridge +mormon +paternal +probe +sleeves +interfere +lump +deadline +##rail +jenks +bulldogs +scrap +alternating +justified +reproductive +nam +seize +descending +secretariat +kirby +coupe +grouped +smash +panther +sedan +tapping +##18 +lola +cheer +germanic +unfortunate +##eter +unrelated +##fan +subordinate +##sdale +suzanne +advertisement +##ility +horsepower +##lda +cautiously +discourse +luigi +##mans +##fields +noun +prevalent +mao +schneider +everett +surround +governorate +kira +##avia +westward +##take +misty +rails +sustainability +134 +unused +##rating +packs +toast +unwilling +regulate +thy +suffrage +nile +awe +assam +definitions +travelers +affordable +##rb +conferred +sells +undefeated +beneficial +torso +basal +repeating +remixes +##pass +bahrain +cables +fang +##itated +excavated +numbering +statutory +##rey +deluxe +##lian +forested +ramirez +derbyshire +zeus +slamming +transfers +astronomer +banana +lottery +berg +histories +bamboo +##uchi +resurrection +posterior +bowls +vaguely +##thi +thou +preserving +tensed +offence +##inas +meyrick +callum +ridden +watt +langdon +tying +lowland +snorted +daring +truman +##hale +##girl +aura +overly +filing +weighing +goa +infections +philanthropist +saunders +eponymous +##owski +latitude +perspectives +reviewing +mets +commandant +radial +##kha +flashlight +reliability +koch +vowels +amazed +ada +elaine +supper +##rth +##encies +predator +debated +soviets +cola +##boards +##nah +compartment +crooked +arbitrary +fourteenth +##ctive +havana +majors +steelers +clips +profitable +ambush +exited +packers +##tile +nude +cracks +fungi +##е +limb +trousers +josie +shelby +tens +frederic +##ος +definite +smoothly +constellation +insult +baton +discs +lingering +##nco +conclusions +lent +staging +becker +grandpa +shaky +##tron +einstein +obstacles +sk +adverse +elle +economically +##moto +mccartney +thor +dismissal +motions +readings +nostrils +treatise +##pace +squeezing +evidently +prolonged +1783 +venezuelan +je +marguerite +beirut +takeover +shareholders +##vent +denise +digit +airplay +norse +##bbling +imaginary +pills +hubert +blaze +vacated +eliminating +##ello +vine +mansfield +##tty +retrospective +barrow +borne +clutch +bail +forensic +weaving +##nett +##witz +desktop +citadel +promotions +worrying +dorset +ieee +subdivided +##iating +manned +expeditionary +pickup +synod +chuckle +185 +barney +##rz +##ffin +functionality +karachi +litigation +meanings +uc +lick +turbo +anders +##ffed +execute +curl +oppose +ankles +typhoon +##د +##ache +##asia +linguistics +compassion +pressures +grazing +perfection +##iting +immunity +monopoly +muddy +backgrounds +136 +namibia +francesca +monitors +attracting +stunt +tuition +##ии +vegetable +##mates +##quent +mgm +jen +complexes +forts +##ond +cellar +bites +seventeenth +royals +flemish +failures +mast +charities +##cular +peruvian +capitals +macmillan +ipswich +outward +frigate +postgraduate +folds +employing +##ouse +concurrently +fiery +##tai +contingent +nightmares +monumental +nicaragua +##kowski +lizard +mal +fielding +gig +reject +##pad +harding +##ipe +coastline +##cin +##nos +beethoven +humphrey +innovations +##tam +##nge +norris +doris +solicitor +huang +obey +141 +##lc +niagara +##tton +shelves +aug +bourbon +curry +nightclub +specifications +hilton +##ndo +centennial +dispersed +worm +neglected +briggs +sm +font +kuala +uneasy +plc +##nstein +##bound +##aking +##burgh +awaiting +pronunciation +##bbed +##quest +eh +optimal +zhu +raped +greens +presided +brenda +worries +##life +venetian +marxist +turnout +##lius +refined +braced +sins +grasped +sunderland +nickel +speculated +lowell +cyrillic +communism +fundraising +resembling +colonists +mutant +freddie +usc +##mos +gratitude +##run +mural +##lous +chemist +wi +reminds +28th +steals +tess +pietro +##ingen +promoter +ri +microphone +honoured +rai +sant +##qui +feather +##nson +burlington +kurdish +terrorists +deborah +sickness +##wed +##eet +hazard +irritated +desperation +veil +clarity +##rik +jewels +xv +##gged +##ows +##cup +berkshire +unfair +mysteries +orchid +winced +exhaustion +renovations +stranded +obe +infinity +##nies +adapt +redevelopment +thanked +registry +olga +domingo +noir +tudor +ole +##atus +commenting +behaviors +##ais +crisp +pauline +probable +stirling +wigan +##bian +paralympics +panting +surpassed +##rew +luca +barred +pony +famed +##sters +cassandra +waiter +carolyn +exported +##orted +andres +destructive +deeds +jonah +castles +vacancy +suv +##glass +1788 +orchard +yep +famine +belarusian +sprang +##forth +skinny +##mis +administrators +rotterdam +zambia +zhao +boiler +discoveries +##ride +##physics +lucius +disappointing +outreach +spoon +##frame +qualifications +unanimously +enjoys +regency +##iidae +stade +realism +veterinary +rodgers +dump +alain +chestnut +castile +censorship +rumble +gibbs +##itor +communion +reggae +inactivated +logs +loads +##houses +homosexual +##iano +ale +informs +##cas +phrases +plaster +linebacker +ambrose +kaiser +fascinated +850 +limerick +recruitment +forge +mastered +##nding +leinster +rooted +threaten +##strom +borneo +##hes +suggestions +scholarships +propeller +documentaries +patronage +coats +constructing +invest +neurons +comet +entirety +shouts +identities +annoying +unchanged +wary +##antly +##ogy +neat +oversight +##kos +phillies +replay +constance +##kka +incarnation +humble +skies +minus +##acy +smithsonian +##chel +guerrilla +jar +cadets +##plate +surplus +audit +##aru +cracking +joanna +louisa +pacing +##lights +intentionally +##iri +diner +nwa +imprint +australians +tong +unprecedented +bunker +naive +specialists +ark +nichols +railing +leaked +pedal +##uka +shrub +longing +roofs +v8 +captains +neural +tuned +##ntal +##jet +emission +medina +frantic +codex +definitive +sid +abolition +intensified +stocks +enrique +sustain +genoa +oxide +##written +clues +cha +##gers +tributaries +fragment +venom +##rity +##ente +##sca +muffled +vain +sire +laos +##ingly +##hana +hastily +snapping +surfaced +sentiment +motive +##oft +contests +approximate +mesa +luckily +dinosaur +exchanges +propelled +accord +bourne +relieve +tow +masks +offended +##ues +cynthia +##mmer +rains +bartender +zinc +reviewers +lois +##sai +legged +arrogant +rafe +rosie +comprise +handicap +blockade +inlet +lagoon +copied +drilling +shelley +petals +##inian +mandarin +obsolete +##inated +onward +arguably +productivity +cindy +praising +seldom +busch +discusses +raleigh +shortage +ranged +stanton +encouragement +firstly +conceded +overs +temporal +##uke +cbe +##bos +woo +certainty +pumps +##pton +stalked +##uli +lizzie +periodic +thieves +weaker +##night +gases +shoving +chooses +wc +##chemical +prompting +weights +##kill +robust +flanked +sticky +hu +tuberculosis +##eb +##eal +christchurch +resembled +wallet +reese +inappropriate +pictured +distract +fixing +fiddle +giggled +burger +heirs +hairy +mechanic +torque +apache +obsessed +chiefly +cheng +logging +##tag +extracted +meaningful +numb +##vsky +gloucestershire +reminding +##bay +unite +##lit +breeds +diminished +clown +glove +1860s +##ن +##ug +archibald +focal +freelance +sliced +depiction +##yk +organism +switches +sights +stray +crawling +##ril +lever +leningrad +interpretations +loops +anytime +reel +alicia +delighted +##ech +inhaled +xiv +suitcase +bernie +vega +licenses +northampton +exclusion +induction +monasteries +racecourse +homosexuality +##right +##sfield +##rky +dimitri +michele +alternatives +ions +commentators +genuinely +objected +pork +hospitality +fencing +stephan +warships +peripheral +wit +drunken +wrinkled +quentin +spends +departing +chung +numerical +spokesperson +##zone +johannesburg +caliber +killers +##udge +assumes +neatly +demographic +abigail +bloc +##vel +mounting +##lain +bentley +slightest +xu +recipients +##jk +merlin +##writer +seniors +prisons +blinking +hindwings +flickered +kappa +##hel +80s +strengthening +appealing +brewing +gypsy +mali +lashes +hulk +unpleasant +harassment +bio +treaties +predict +instrumentation +pulp +troupe +boiling +mantle +##ffe +ins +##vn +dividing +handles +verbs +##onal +coconut +senegal +340 +thorough +gum +momentarily +##sto +cocaine +panicked +destined +##turing +teatro +denying +weary +captained +mans +##hawks +##code +wakefield +bollywood +thankfully +##16 +cyril +##wu +amendments +##bahn +consultation +stud +reflections +kindness +1787 +internally +##ovo +tex +mosaic +distribute +paddy +seeming +143 +##hic +piers +##15 +##mura +##verse +popularly +winger +kang +sentinel +mccoy +##anza +covenant +##bag +verge +fireworks +suppress +thrilled +dominate +##jar +swansea +##60 +142 +reconciliation +##ndi +stiffened +cue +dorian +##uf +damascus +amor +ida +foremost +##aga +porsche +unseen +dir +##had +##azi +stony +lexi +melodies +##nko +angular +integer +podcast +ants +inherent +jaws +justify +persona +##olved +josephine +##nr +##ressed +customary +flashes +gala +cyrus +glaring +backyard +ariel +physiology +greenland +html +stir +avon +atletico +finch +methodology +ked +##lent +mas +catholicism +townsend +branding +quincy +fits +containers +1777 +ashore +aragon +##19 +forearm +poisoning +##sd +adopting +conquer +grinding +amnesty +keller +finances +evaluate +forged +lankan +instincts +##uto +guam +bosnian +photographed +workplace +desirable +protector +##dog +allocation +intently +encourages +willy +##sten +bodyguard +electro +brighter +##ν +bihar +##chev +lasts +opener +amphibious +sal +verde +arte +##cope +captivity +vocabulary +yields +##tted +agreeing +desmond +pioneered +##chus +strap +campaigned +railroads +##ович +emblem +##dre +stormed +501 +##ulous +marijuana +northumberland +##gn +##nath +bowen +landmarks +beaumont +##qua +danube +##bler +attorneys +th +ge +flyers +critique +villains +cass +mutation +acc +##0s +colombo +mckay +motif +sampling +concluding +syndicate +##rell +neon +stables +ds +warnings +clint +mourning +wilkinson +##tated +merrill +leopard +evenings +exhaled +emil +sonia +ezra +discrete +stove +farrell +fifteenth +prescribed +superhero +##rier +worms +helm +wren +##duction +##hc +expo +##rator +hq +unfamiliar +antony +prevents +acceleration +fiercely +mari +painfully +calculations +cheaper +ign +clifton +irvine +davenport +mozambique +##np +pierced +##evich +wonders +##wig +##cate +##iling +crusade +ware +##uel +enzymes +reasonably +mls +##coe +mater +ambition +bunny +eliot +kernel +##fin +asphalt +headmaster +torah +aden +lush +pins +waived +##care +##yas +joao +substrate +enforce +##grad +##ules +alvarez +selections +epidemic +tempted +##bit +bremen +translates +ensured +waterfront +29th +forrest +manny +malone +kramer +reigning +cookies +simpler +absorption +205 +engraved +##ffy +evaluated +1778 +haze +146 +comforting +crossover +##abe +thorn +##rift +##imo +##pop +suppression +fatigue +cutter +##tr +201 +wurttemberg +##orf +enforced +hovering +proprietary +gb +samurai +syllable +ascent +lacey +tick +lars +tractor +merchandise +rep +bouncing +defendants +##yre +huntington +##ground +##oko +standardized +##hor +##hima +assassinated +nu +predecessors +rainy +liar +assurance +lyrical +##uga +secondly +flattened +ios +parameter +undercover +##mity +bordeaux +punish +ridges +markers +exodus +inactive +hesitate +debbie +nyc +pledge +savoy +nagar +offset +organist +##tium +hesse +marin +converting +##iver +diagram +propulsion +pu +validity +reverted +supportive +##dc +ministries +clans +responds +proclamation +##inae +##ø +##rea +ein +pleading +patriot +sf +birch +islanders +strauss +hates +##dh +brandenburg +concession +rd +##ob +1900s +killings +textbook +antiquity +cinematography +wharf +embarrassing +setup +creed +farmland +inequality +centred +signatures +fallon +370 +##ingham +##uts +ceylon +gazing +directive +laurie +##tern +globally +##uated +##dent +allah +excavation +threads +##cross +148 +frantically +icc +utilize +determines +respiratory +thoughtful +receptions +##dicate +merging +chandra +seine +147 +builders +builds +diagnostic +dev +visibility +goddamn +analyses +dhaka +cho +proves +chancel +concurrent +curiously +canadians +pumped +restoring +1850s +turtles +jaguar +sinister +spinal +traction +declan +vows +1784 +glowed +capitalism +swirling +install +universidad +##lder +##oat +soloist +##genic +##oor +coincidence +beginnings +nissan +dip +resorts +caucasus +combustion +infectious +##eno +pigeon +serpent +##itating +conclude +masked +salad +jew +##gr +surreal +toni +##wc +harmonica +151 +##gins +##etic +##coat +fishermen +intending +bravery +##wave +klaus +titan +wembley +taiwanese +ransom +40th +incorrect +hussein +eyelids +jp +cooke +dramas +utilities +##etta +##print +eisenhower +principally +granada +lana +##rak +openings +concord +##bl +bethany +connie +morality +sega +##mons +##nard +earnings +##kara +##cine +wii +communes +##rel +coma +composing +softened +severed +grapes +##17 +nguyen +analyzed +warlord +hubbard +heavenly +behave +slovenian +##hit +##ony +hailed +filmmakers +trance +caldwell +skye +unrest +coward +likelihood +##aging +bern +sci +taliban +honolulu +propose +##wang +1700 +browser +imagining +cobra +contributes +dukes +instinctively +conan +violinist +##ores +accessories +gradual +##amp +quotes +sioux +##dating +undertake +intercepted +sparkling +compressed +139 +fungus +tombs +haley +imposing +rests +degradation +lincolnshire +retailers +wetlands +tulsa +distributor +dungeon +nun +greenhouse +convey +atlantis +aft +exits +oman +dresser +lyons +##sti +joking +eddy +judgement +omitted +digits +##cts +##game +juniors +##rae +cents +stricken +une +##ngo +wizards +weir +breton +nan +technician +fibers +liking +royalty +##cca +154 +persia +terribly +magician +##rable +##unt +vance +cafeteria +booker +camille +warmer +##static +consume +cavern +gaps +compass +contemporaries +foyer +soothing +graveyard +maj +plunged +blush +##wear +cascade +demonstrates +ordinance +##nov +boyle +##lana +rockefeller +shaken +banjo +izzy +##ense +breathless +vines +##32 +##eman +alterations +chromosome +dwellings +feudal +mole +153 +catalonia +relics +tenant +mandated +##fm +fridge +hats +honesty +patented +raul +heap +cruisers +accusing +enlightenment +infants +wherein +chatham +contractors +zen +affinity +hc +osborne +piston +156 +traps +maturity +##rana +lagos +##zal +peering +##nay +attendant +dealers +protocols +subset +prospects +biographical +##cre +artery +##zers +insignia +nuns +endured +##eration +recommend +schwartz +serbs +berger +cromwell +crossroads +##ctor +enduring +clasped +grounded +##bine +marseille +twitched +abel +choke +https +catalyst +moldova +italians +##tist +disastrous +wee +##oured +##nti +wwf +nope +##piration +##asa +expresses +thumbs +167 +##nza +coca +1781 +cheating +##ption +skipped +sensory +heidelberg +spies +satan +dangers +semifinal +202 +bohemia +whitish +confusing +shipbuilding +relies +surgeons +landings +ravi +baku +moor +suffix +alejandro +##yana +litre +upheld +##unk +rajasthan +##rek +coaster +insists +posture +scenarios +etienne +favoured +appoint +transgender +elephants +poked +greenwood +defences +fulfilled +militant +somali +1758 +chalk +potent +##ucci +migrants +wink +assistants +nos +restriction +activism +niger +##ario +colon +shaun +##sat +daphne +##erated +swam +congregations +reprise +considerations +magnet +playable +xvi +##р +overthrow +tobias +knob +chavez +coding +##mers +propped +katrina +orient +newcomer +##suke +temperate +##pool +farmhouse +interrogation +##vd +committing +##vert +forthcoming +strawberry +joaquin +macau +ponds +shocking +siberia +##cellular +chant +contributors +##nant +##ologists +sped +absorb +hail +1782 +spared +##hore +barbados +karate +opus +originates +saul +##xie +evergreen +leaped +##rock +correlation +exaggerated +weekday +unification +bump +tracing +brig +afb +pathways +utilizing +##ners +mod +mb +disturbance +kneeling +##stad +##guchi +100th +pune +##thy +decreasing +168 +manipulation +miriam +academia +ecosystem +occupational +rbi +##lem +rift +##14 +rotary +stacked +incorporation +awakening +generators +guerrero +racist +##omy +cyber +derivatives +culminated +allie +annals +panzer +sainte +wikipedia +pops +zu +austro +##vate +algerian +politely +nicholson +mornings +educate +tastes +thrill +dartmouth +##gating +db +##jee +regan +differing +concentrating +choreography +divinity +##media +pledged +alexandre +routing +gregor +madeline +##idal +apocalypse +##hora +gunfire +culminating +elves +fined +liang +lam +programmed +tar +guessing +transparency +gabrielle +##gna +cancellation +flexibility +##lining +accession +shea +stronghold +nets +specializes +##rgan +abused +hasan +sgt +ling +exceeding +##₄ +admiration +supermarket +##ark +photographers +specialised +tilt +resonance +hmm +perfume +380 +sami +threatens +garland +botany +guarding +boiled +greet +puppy +russo +supplier +wilmington +vibrant +vijay +##bius +paralympic +grumbled +paige +faa +licking +margins +hurricanes +##gong +fest +grenade +ripping +##uz +counseling +weigh +##sian +needles +wiltshire +edison +costly +##not +fulton +tramway +redesigned +staffordshire +cache +gasping +watkins +sleepy +candidacy +##group +monkeys +timeline +throbbing +##bid +##sos +berth +uzbekistan +vanderbilt +bothering +overturned +ballots +gem +##iger +sunglasses +subscribers +hooker +compelling +ang +exceptionally +saloon +stab +##rdi +carla +terrifying +rom +##vision +coil +##oids +satisfying +vendors +31st +mackay +deities +overlooked +ambient +bahamas +felipe +olympia +whirled +botanist +advertised +tugging +##dden +disciples +morales +unionist +rites +foley +morse +motives +creepy +##₀ +soo +##sz +bargain +highness +frightening +turnpike +tory +reorganization +##cer +depict +biographer +##walk +unopposed +manifesto +##gles +institut +emile +accidental +kapoor +##dam +kilkenny +cortex +lively +##13 +romanesque +jain +shan +cannons +##ood +##ske +petrol +echoing +amalgamated +disappears +cautious +proposes +sanctions +trenton +##ر +flotilla +aus +contempt +tor +canary +cote +theirs +##hun +conceptual +deleted +fascinating +paso +blazing +elf +honourable +hutchinson +##eiro +##outh +##zin +surveyor +tee +amidst +wooded +reissue +intro +##ono +cobb +shelters +newsletter +hanson +brace +encoding +confiscated +dem +caravan +marino +scroll +melodic +cows +imam +##adi +##aneous +northward +searches +biodiversity +cora +310 +roaring +##bers +connell +theologian +halo +compose +pathetic +unmarried +dynamo +##oot +az +calculation +toulouse +deserves +humour +nr +forgiveness +tam +undergone +martyr +pamela +myths +whore +counselor +hicks +290 +heavens +battleship +electromagnetic +##bbs +stellar +establishments +presley +hopped +##chin +temptation +90s +wills +nas +##yuan +nhs +##nya +seminars +##yev +adaptations +gong +asher +lex +indicator +sikh +tobago +cites +goin +##yte +satirical +##gies +characterised +correspond +bubbles +lure +participates +##vid +eruption +skate +therapeutic +1785 +canals +wholesale +defaulted +sac +460 +petit +##zzled +virgil +leak +ravens +256 +portraying +##yx +ghetto +creators +dams +portray +vicente +##rington +fae +namesake +bounty +##arium +joachim +##ota +##iser +aforementioned +axle +snout +depended +dismantled +reuben +480 +##ibly +gallagher +##lau +##pd +earnest +##ieu +##iary +inflicted +objections +##llar +asa +gritted +##athy +jericho +##sea +##was +flick +underside +ceramics +undead +substituted +195 +eastward +undoubtedly +wheeled +chimney +##iche +guinness +cb +##ager +siding +##bell +traitor +baptiste +disguised +inauguration +149 +tipperary +choreographer +perched +warmed +stationary +eco +##ike +##ntes +bacterial +##aurus +flores +phosphate +##core +attacker +invaders +alvin +intersects +a1 +indirectly +immigrated +businessmen +cornelius +valves +narrated +pill +sober +ul +nationale +monastic +applicants +scenery +##jack +161 +motifs +constitutes +cpu +##osh +jurisdictions +sd +tuning +irritation +woven +##uddin +fertility +gao +##erie +antagonist +impatient +glacial +hides +boarded +denominations +interception +##jas +cookie +nicola +##tee +algebraic +marquess +bahn +parole +buyers +bait +turbines +paperwork +bestowed +natasha +renee +oceans +purchases +157 +vaccine +215 +##tock +fixtures +playhouse +integrate +jai +oswald +intellectuals +##cky +booked +nests +mortimer +##isi +obsession +sept +##gler +##sum +440 +scrutiny +simultaneous +squinted +##shin +collects +oven +shankar +penned +remarkably +##я +slips +luggage +spectral +1786 +collaborations +louie +consolidation +##ailed +##ivating +420 +hoover +blackpool +harness +ignition +vest +tails +belmont +mongol +skinner +##nae +visually +mage +derry +##tism +##unce +stevie +transitional +##rdy +redskins +drying +prep +prospective +##21 +annoyance +oversee +##loaded +fills +##books +##iki +announces +fda +scowled +respects +prasad +mystic +tucson +##vale +revue +springer +bankrupt +1772 +aristotle +salvatore +habsburg +##geny +dal +natal +nut +pod +chewing +darts +moroccan +walkover +rosario +lenin +punjabi +##ße +grossed +scattering +wired +invasive +hui +polynomial +corridors +wakes +gina +portrays +##cratic +arid +retreating +erich +irwin +sniper +##dha +linen +lindsey +maneuver +butch +shutting +socio +bounce +commemorative +postseason +jeremiah +pines +275 +mystical +beads +bp +abbas +furnace +bidding +consulted +assaulted +empirical +rubble +enclosure +sob +weakly +cancel +polly +yielded +##emann +curly +prediction +battered +70s +vhs +jacqueline +render +sails +barked +detailing +grayson +riga +sloane +raging +##yah +herbs +bravo +##athlon +alloy +giggle +imminent +suffers +assumptions +waltz +##itate +accomplishments +##ited +bathing +remixed +deception +prefix +##emia +deepest +##tier +##eis +balkan +frogs +##rong +slab +##pate +philosophers +peterborough +grains +imports +dickinson +rwanda +##atics +1774 +dirk +lan +tablets +##rove +clone +##rice +caretaker +hostilities +mclean +##gre +regimental +treasures +norms +impose +tsar +tango +diplomacy +variously +complain +192 +recognise +arrests +1779 +celestial +pulitzer +##dus +bing +libretto +##moor +adele +splash +##rite +expectation +lds +confronts +##izer +spontaneous +harmful +wedge +entrepreneurs +buyer +##ope +bilingual +translate +rugged +conner +circulated +uae +eaton +##gra +##zzle +lingered +lockheed +vishnu +reelection +alonso +##oom +joints +yankee +headline +cooperate +heinz +laureate +invading +##sford +echoes +scandinavian +##dham +hugging +vitamin +salute +micah +hind +trader +##sper +radioactive +##ndra +militants +poisoned +ratified +remark +campeonato +deprived +wander +prop +##dong +outlook +##tani +##rix +##eye +chiang +darcy +##oping +mandolin +spice +statesman +babylon +182 +walled +forgetting +afro +##cap +158 +giorgio +buffer +##polis +planetary +##gis +overlap +terminals +kinda +centenary +##bir +arising +manipulate +elm +ke +1770 +ak +##tad +chrysler +mapped +moose +pomeranian +quad +macarthur +assemblies +shoreline +recalls +stratford +##rted +noticeable +##evic +imp +##rita +##sque +accustomed +supplying +tents +disgusted +vogue +sipped +filters +khz +reno +selecting +luftwaffe +mcmahon +tyne +masterpiece +carriages +collided +dunes +exercised +flare +remembers +muzzle +##mobile +heck +##rson +burgess +lunged +middleton +boycott +bilateral +##sity +hazardous +lumpur +multiplayer +spotlight +jackets +goldman +liege +porcelain +rag +waterford +benz +attracts +hopeful +battling +ottomans +kensington +baked +hymns +cheyenne +lattice +levine +borrow +polymer +clashes +michaels +monitored +commitments +denounced +##25 +##von +cavity +##oney +hobby +akin +##holders +futures +intricate +cornish +patty +##oned +illegally +dolphin +##lag +barlow +yellowish +maddie +apologized +luton +plagued +##puram +nana +##rds +sway +fanny +łodz +##rino +psi +suspicions +hanged +##eding +initiate +charlton +##por +nak +competent +235 +analytical +annex +wardrobe +reservations +##rma +sect +162 +fairfax +hedge +piled +buckingham +uneven +bauer +simplicity +snyder +interpret +accountability +donors +moderately +byrd +continents +##cite +##max +disciple +hr +jamaican +ping +nominees +##uss +mongolian +diver +attackers +eagerly +ideological +pillows +miracles +apartheid +revolver +sulfur +clinics +moran +163 +##enko +ile +katy +rhetoric +##icated +chronology +recycling +##hrer +elongated +mughal +pascal +profiles +vibration +databases +domination +##fare +##rant +matthias +digest +rehearsal +polling +weiss +initiation +reeves +clinging +flourished +impress +ngo +##hoff +##ume +buckley +symposium +rhythms +weed +emphasize +transforming +##taking +##gence +##yman +accountant +analyze +flicker +foil +priesthood +voluntarily +decreases +##80 +##hya +slater +sv +charting +mcgill +##lde +moreno +##iu +besieged +zur +robes +##phic +admitting +api +deported +turmoil +peyton +earthquakes +##ares +nationalists +beau +clair +brethren +interrupt +welch +curated +galerie +requesting +164 +##ested +impending +steward +viper +##vina +complaining +beautifully +brandy +foam +nl +1660 +##cake +alessandro +punches +laced +explanations +##lim +attribute +clit +reggie +discomfort +##cards +smoothed +whales +##cene +adler +countered +duffy +disciplinary +widening +recipe +reliance +conducts +goats +gradient +preaching +##shaw +matilda +quasi +striped +meridian +cannabis +cordoba +certificates +##agh +##tering +graffiti +hangs +pilgrims +repeats +##ych +revive +urine +etat +##hawk +fueled +belts +fuzzy +susceptible +##hang +mauritius +salle +sincere +beers +hooks +##cki +arbitration +entrusted +advise +sniffed +seminar +junk +donnell +processors +principality +strapped +celia +mendoza +everton +fortunes +prejudice +starving +reassigned +steamer +##lund +tuck +evenly +foreman +##ffen +dans +375 +envisioned +slit +##xy +baseman +liberia +rosemary +##weed +electrified +periodically +potassium +stride +contexts +sperm +slade +mariners +influx +bianca +subcommittee +##rane +spilling +icao +estuary +##nock +delivers +iphone +##ulata +isa +mira +bohemian +dessert +##sbury +welcoming +proudly +slowing +##chs +musee +ascension +russ +##vian +waits +##psy +africans +exploit +##morphic +gov +eccentric +crab +peck +##ull +entrances +formidable +marketplace +groom +bolted +metabolism +patton +robbins +courier +payload +endure +##ifier +andes +refrigerator +##pr +ornate +##uca +ruthless +illegitimate +masonry +strasbourg +bikes +adobe +##³ +apples +quintet +willingly +niche +bakery +corpses +energetic +##cliffe +##sser +##ards +177 +centimeters +centro +fuscous +cretaceous +rancho +##yde +andrei +telecom +tottenham +oasis +ordination +vulnerability +presiding +corey +cp +penguins +sims +##pis +malawi +piss +##48 +correction +##cked +##ffle +##ryn +countdown +detectives +psychiatrist +psychedelic +dinosaurs +blouse +##get +choi +vowed +##oz +randomly +##pol +49ers +scrub +blanche +bruins +dusseldorf +##using +unwanted +##ums +212 +dominique +elevations +headlights +om +laguna +##oga +1750 +famously +ignorance +shrewsbury +##aine +ajax +breuning +che +confederacy +greco +overhaul +##screen +paz +skirts +disagreement +cruelty +jagged +phoebe +shifter +hovered +viruses +##wes +mandy +##lined +##gc +landlord +squirrel +dashed +##ι +ornamental +gag +wally +grange +literal +spurs +undisclosed +proceeding +yin +##text +billie +orphan +spanned +humidity +indy +weighted +presentations +explosions +lucian +##tary +vaughn +hindus +##anga +##hell +psycho +171 +daytona +protects +efficiently +rematch +sly +tandem +##oya +rebranded +impaired +hee +metropolis +peach +godfrey +diaspora +ethnicity +prosperous +gleaming +dar +grossing +playback +##rden +stripe +pistols +##tain +births +labelled +##cating +172 +rudy +alba +##onne +aquarium +hostility +##gb +##tase +shudder +sumatra +hardest +lakers +consonant +creeping +demos +homicide +capsule +zeke +liberties +expulsion +pueblo +##comb +trait +transporting +##ddin +##neck +##yna +depart +gregg +mold +ledge +hangar +oldham +playboy +termination +analysts +gmbh +romero +##itic +insist +cradle +filthy +brightness +slash +shootout +deposed +bordering +##truct +isis +microwave +tumbled +sheltered +cathy +werewolves +messy +andersen +convex +clapped +clinched +satire +wasting +edo +vc +rufus +##jak +mont +##etti +poznan +##keeping +restructuring +transverse +##rland +azerbaijani +slovene +gestures +roommate +choking +shear +##quist +vanguard +oblivious +##hiro +disagreed +baptism +##lich +coliseum +##aceae +salvage +societe +cory +locke +relocation +relying +versailles +ahl +swelling +##elo +cheerful +##word +##edes +gin +sarajevo +obstacle +diverted +##nac +messed +thoroughbred +fluttered +utrecht +chewed +acquaintance +assassins +dispatch +mirza +##wart +nike +salzburg +swell +yen +##gee +idle +ligue +samson +##nds +##igh +playful +spawned +##cise +tease +##case +burgundy +##bot +stirring +skeptical +interceptions +marathi +##dies +bedrooms +aroused +pinch +##lik +preferences +tattoos +buster +digitally +projecting +rust +##ital +kitten +priorities +addison +pseudo +##guard +dusk +icons +sermon +##psis +##iba +bt +##lift +##xt +ju +truce +rink +##dah +##wy +defects +psychiatry +offences +calculate +glucose +##iful +##rized +##unda +francaise +##hari +richest +warwickshire +carly +1763 +purity +redemption +lending +##cious +muse +bruises +cerebral +aero +carving +##name +preface +terminology +invade +monty +##int +anarchist +blurred +##iled +rossi +treats +guts +shu +foothills +ballads +undertaking +premise +cecilia +affiliates +blasted +conditional +wilder +minors +drone +rudolph +buffy +swallowing +horton +attested +##hop +rutherford +howell +primetime +livery +penal +##bis +minimize +hydro +wrecked +wrought +palazzo +##gling +cans +vernacular +friedman +nobleman +shale +walnut +danielle +##ection +##tley +sears +##kumar +chords +lend +flipping +streamed +por +dracula +gallons +sacrifices +gamble +orphanage +##iman +mckenzie +##gible +boxers +daly +##balls +##ان +208 +##ific +##rative +##iq +exploited +slated +##uity +circling +hillary +pinched +goldberg +provost +campaigning +lim +piles +ironically +jong +mohan +successors +usaf +##tem +##ught +autobiographical +haute +preserves +##ending +acquitted +comparisons +203 +hydroelectric +gangs +cypriot +torpedoes +rushes +chrome +derive +bumps +instability +fiat +pets +##mbe +silas +dye +reckless +settler +##itation +info +heats +##writing +176 +canonical +maltese +fins +mushroom +stacy +aspen +avid +##kur +##loading +vickers +gaston +hillside +statutes +wilde +gail +kung +sabine +comfortably +motorcycles +##rgo +169 +pneumonia +fetch +##sonic +axel +faintly +parallels +##oop +mclaren +spouse +compton +interdisciplinary +miner +##eni +181 +clamped +##chal +##llah +separates +versa +##mler +scarborough +labrador +##lity +##osing +rutgers +hurdles +como +166 +burt +divers +##100 +wichita +cade +coincided +##erson +bruised +mla +##pper +vineyard +##ili +##brush +notch +mentioning +jase +hearted +kits +doe +##acle +pomerania +##ady +ronan +seizure +pavel +problematic +##zaki +domenico +##ulin +catering +penelope +dependence +parental +emilio +ministerial +atkinson +##bolic +clarkson +chargers +colby +grill +peeked +arises +summon +##aged +fools +##grapher +faculties +qaeda +##vial +garner +refurbished +##hwa +geelong +disasters +nudged +bs +shareholder +lori +algae +reinstated +rot +##ades +##nous +invites +stainless +183 +inclusive +##itude +diocesan +til +##icz +denomination +##xa +benton +floral +registers +##ider +##erman +##kell +absurd +brunei +guangzhou +hitter +retaliation +##uled +##eve +blanc +nh +consistency +contamination +##eres +##rner +dire +palermo +broadcasters +diaries +inspire +vols +brewer +tightening +ky +mixtape +hormone +##tok +stokes +##color +##dly +##ssi +pg +##ometer +##lington +sanitation +##tility +intercontinental +apps +##adt +¹⁄₂ +cylinders +economies +favourable +unison +croix +gertrude +odyssey +vanity +dangling +##logists +upgrades +dice +middleweight +practitioner +##ight +206 +henrik +parlor +orion +angered +lac +python +blurted +##rri +sensual +intends +swings +angled +##phs +husky +attain +peerage +precinct +textiles +cheltenham +shuffled +dai +confess +tasting +bhutan +##riation +tyrone +segregation +abrupt +ruiz +##rish +smirked +blackwell +confidential +browning +amounted +##put +vase +scarce +fabulous +raided +staple +guyana +unemployed +glider +shay +##tow +carmine +troll +intervene +squash +superstar +##uce +cylindrical +len +roadway +researched +handy +##rium +##jana +meta +lao +declares +##rring +##tadt +##elin +##kova +willem +shrubs +napoleonic +realms +skater +qi +volkswagen +##ł +tad +hara +archaeologist +awkwardly +eerie +##kind +wiley +##heimer +##24 +titus +organizers +cfl +crusaders +lama +usb +vent +enraged +thankful +occupants +maximilian +##gaard +possessing +textbooks +##oran +collaborator +quaker +##ulo +avalanche +mono +silky +straits +isaiah +mustang +surged +resolutions +potomac +descend +cl +kilograms +plato +strains +saturdays +##olin +bernstein +##ype +holstein +ponytail +##watch +belize +conversely +heroine +perpetual +##ylus +charcoal +piedmont +glee +negotiating +backdrop +prologue +##jah +##mmy +pasadena +climbs +ramos +sunni +##holm +##tner +##tri +anand +deficiency +hertfordshire +stout +##avi +aperture +orioles +##irs +doncaster +intrigued +bombed +coating +otis +##mat +cocktail +##jit +##eto +amir +arousal +sar +##proof +##act +##ories +dixie +pots +##bow +whereabouts +159 +##fted +drains +bullying +cottages +scripture +coherent +fore +poe +appetite +##uration +sampled +##ators +##dp +derrick +rotor +jays +peacock +installment +##rro +advisors +##coming +rodeo +scotch +##mot +##db +##fen +##vant +ensued +rodrigo +dictatorship +martyrs +twenties +##н +towed +incidence +marta +rainforest +sai +scaled +##cles +oceanic +qualifiers +symphonic +mcbride +dislike +generalized +aubrey +colonization +##iation +##lion +##ssing +disliked +lublin +salesman +##ulates +spherical +whatsoever +sweating +avalon +contention +punt +severity +alderman +atari +##dina +##grant +##rop +scarf +seville +vertices +annexation +fairfield +fascination +inspiring +launches +palatinate +regretted +##rca +feral +##iom +elk +nap +olsen +reddy +yong +##leader +##iae +garment +transports +feng +gracie +outrage +viceroy +insides +##esis +breakup +grady +organizer +softer +grimaced +222 +murals +galicia +arranging +vectors +##rsten +bas +##sb +##cens +sloan +##eka +bitten +ara +fender +nausea +bumped +kris +banquet +comrades +detector +persisted +##llan +adjustment +endowed +cinemas +##shot +sellers +##uman +peek +epa +kindly +neglect +simpsons +talon +mausoleum +runaway +hangul +lookout +##cic +rewards +coughed +acquainted +chloride +##ald +quicker +accordion +neolithic +##qa +artemis +coefficient +lenny +pandora +tx +##xed +ecstasy +litter +segunda +chairperson +gemma +hiss +rumor +vow +nasal +antioch +compensate +patiently +transformers +##eded +judo +morrow +penis +posthumous +philips +bandits +husbands +denote +flaming +##any +##phones +langley +yorker +1760 +walters +##uo +##kle +gubernatorial +fatty +samsung +leroy +outlaw +##nine +unpublished +poole +jakob +##ᵢ +##ₙ +crete +distorted +superiority +##dhi +intercept +crust +mig +claus +crashes +positioning +188 +stallion +301 +frontal +armistice +##estinal +elton +aj +encompassing +camel +commemorated +malaria +woodward +calf +cigar +penetrate +##oso +willard +##rno +##uche +illustrate +amusing +convergence +noteworthy +##lma +##rva +journeys +realise +manfred +##sable +410 +##vocation +hearings +fiance +##posed +educators +provoked +adjusting +##cturing +modular +stockton +paterson +vlad +rejects +electors +selena +maureen +##tres +uber +##rce +swirled +##num +proportions +nanny +pawn +naturalist +parma +apostles +awoke +ethel +wen +##bey +monsoon +overview +##inating +mccain +rendition +risky +adorned +##ih +equestrian +germain +nj +conspicuous +confirming +##yoshi +shivering +##imeter +milestone +rumours +flinched +bounds +smacked +token +##bei +lectured +automobiles +##shore +impacted +##iable +nouns +nero +##leaf +ismail +prostitute +trams +##lace +bridget +sud +stimulus +impressions +reins +revolves +##oud +##gned +giro +honeymoon +##swell +criterion +##sms +##uil +libyan +prefers +##osition +211 +preview +sucks +accusation +bursts +metaphor +diffusion +tolerate +faye +betting +cinematographer +liturgical +specials +bitterly +humboldt +##ckle +flux +rattled +##itzer +archaeologists +odor +authorised +marshes +discretion +##ов +alarmed +archaic +inverse +##leton +explorers +##pine +drummond +tsunami +woodlands +##minate +##tland +booklet +insanity +owning +insert +crafted +calculus +##tore +receivers +##bt +stung +##eca +##nched +prevailing +travellers +eyeing +lila +graphs +##borne +178 +julien +##won +morale +adaptive +therapist +erica +cw +libertarian +bowman +pitches +vita +##ional +crook +##ads +##entation +caledonia +mutiny +##sible +1840s +automation +##ß +flock +##pia +ironic +pathology +##imus +remarried +##22 +joker +withstand +energies +##att +shropshire +hostages +madeleine +tentatively +conflicting +mateo +recipes +euros +ol +mercenaries +nico +##ndon +albuquerque +augmented +mythical +bel +freud +##child +cough +##lica +365 +freddy +lillian +genetically +nuremberg +calder +209 +bonn +outdoors +paste +suns +urgency +vin +restraint +tyson +##cera +##selle +barrage +bethlehem +kahn +##par +mounts +nippon +barony +happier +ryu +makeshift +sheldon +blushed +castillo +barking +listener +taped +bethel +fluent +headlines +pornography +rum +disclosure +sighing +mace +doubling +gunther +manly +##plex +rt +interventions +physiological +forwards +emerges +##tooth +##gny +compliment +rib +recession +visibly +barge +faults +connector +exquisite +prefect +##rlin +patio +##cured +elevators +brandt +italics +pena +173 +wasp +satin +ea +botswana +graceful +respectable +##jima +##rter +##oic +franciscan +generates +##dl +alfredo +disgusting +##olate +##iously +sherwood +warns +cod +promo +cheryl +sino +##ة +##escu +twitch +##zhi +brownish +thom +ortiz +##dron +densely +##beat +carmel +reinforce +##bana +187 +anastasia +downhill +vertex +contaminated +remembrance +harmonic +homework +##sol +fiancee +gears +olds +angelica +loft +ramsay +quiz +colliery +sevens +##cape +autism +##hil +walkway +##boats +ruben +abnormal +ounce +khmer +##bbe +zachary +bedside +morphology +punching +##olar +sparrow +convinces +##35 +hewitt +queer +remastered +rods +mabel +solemn +notified +lyricist +symmetric +##xide +174 +encore +passports +wildcats +##uni +baja +##pac +mildly +##ease +bleed +commodity +mounds +glossy +orchestras +##omo +damian +prelude +ambitions +##vet +awhile +remotely +##aud +asserts +imply +##iques +distinctly +modelling +remedy +##dded +windshield +dani +xiao +##endra +audible +powerplant +1300 +invalid +elemental +acquisitions +##hala +immaculate +libby +plata +smuggling +ventilation +denoted +minh +##morphism +430 +differed +dion +kelley +lore +mocking +sabbath +spikes +hygiene +drown +runoff +stylized +tally +liberated +aux +interpreter +righteous +aba +siren +reaper +pearce +millie +##cier +##yra +gaius +##iso +captures +##ttering +dorm +claudio +##sic +benches +knighted +blackness +##ored +discount +fumble +oxidation +routed +##ς +novak +perpendicular +spoiled +fracture +splits +##urt +pads +topology +##cats +axes +fortunate +offenders +protestants +esteem +221 +broadband +convened +frankly +hound +prototypes +isil +facilitated +keel +##sher +sahara +awaited +bubba +orb +prosecutors +186 +hem +520 +##xing +relaxing +remnant +romney +sorted +slalom +stefano +ulrich +##active +exemption +folder +pauses +foliage +hitchcock +epithet +204 +criticisms +##aca +ballistic +brody +hinduism +chaotic +youths +equals +##pala +pts +thicker +analogous +capitalist +improvised +overseeing +sinatra +ascended +beverage +##tl +straightforward +##kon +curran +##west +bois +325 +induce +surveying +emperors +sax +unpopular +##kk +cartoonist +fused +##mble +unto +##yuki +localities +##cko +##ln +darlington +slain +academie +lobbying +sediment +puzzles +##grass +defiance +dickens +manifest +tongues +alumnus +arbor +coincide +184 +appalachian +mustafa +examiner +cabaret +traumatic +yves +bracelet +draining +heroin +magnum +baths +odessa +consonants +mitsubishi +##gua +kellan +vaudeville +##fr +joked +null +straps +probation +##ław +ceded +interfaces +##pas +##zawa +blinding +viet +224 +rothschild +museo +640 +huddersfield +##vr +tactic +##storm +brackets +dazed +incorrectly +##vu +reg +glazed +fearful +manifold +benefited +irony +##sun +stumbling +##rte +willingness +balkans +mei +wraps +##aba +injected +##lea +gu +syed +harmless +##hammer +bray +takeoff +poppy +timor +cardboard +astronaut +purdue +weeping +southbound +cursing +stalls +diagonal +##neer +lamar +bryce +comte +weekdays +harrington +##uba +negatively +##see +lays +grouping +##cken +##henko +affirmed +halle +modernist +##lai +hodges +smelling +aristocratic +baptized +dismiss +justification +oilers +##now +coupling +qin +snack +healer +##qing +gardener +layla +battled +formulated +stephenson +gravitational +##gill +##jun +1768 +granny +coordinating +suites +##cd +##ioned +monarchs +##cote +##hips +sep +blended +apr +barrister +deposition +fia +mina +policemen +paranoid +##pressed +churchyard +covert +crumpled +creep +abandoning +tr +transmit +conceal +barr +understands +readiness +spire +##cology +##enia +##erry +610 +startling +unlock +vida +bowled +slots +##nat +##islav +spaced +trusting +admire +rig +##ink +slack +##70 +mv +207 +casualty +##wei +classmates +##odes +##rar +##rked +amherst +furnished +evolve +foundry +menace +mead +##lein +flu +wesleyan +##kled +monterey +webber +##vos +wil +##mith +##на +bartholomew +justices +restrained +##cke +amenities +191 +mediated +sewage +trenches +ml +mainz +##thus +1800s +##cula +##inski +caine +bonding +213 +converts +spheres +superseded +marianne +crypt +sweaty +ensign +historia +##br +spruce +##post +##ask +forks +thoughtfully +yukon +pamphlet +ames +##uter +karma +##yya +bryn +negotiation +sighs +incapable +##mbre +##ntial +actresses +taft +##mill +luce +prevailed +##amine +1773 +motionless +envoy +testify +investing +sculpted +instructors +provence +kali +cullen +horseback +##while +goodwin +##jos +gaa +norte +##ldon +modify +wavelength +abd +214 +skinned +sprinter +forecast +scheduling +marries +squared +tentative +##chman +boer +##isch +bolts +swap +fisherman +assyrian +impatiently +guthrie +martins +murdoch +194 +tanya +nicely +dolly +lacy +med +##45 +syn +decks +fashionable +millionaire +##ust +surfing +##ml +##ision +heaved +tammy +consulate +attendees +routinely +197 +fuse +saxophonist +backseat +malaya +##lord +scowl +tau +##ishly +193 +sighted +steaming +##rks +303 +911 +##holes +##hong +ching +##wife +bless +conserved +jurassic +stacey +unix +zion +chunk +rigorous +blaine +198 +peabody +slayer +dismay +brewers +nz +##jer +det +##glia +glover +postwar +int +penetration +sylvester +imitation +vertically +airlift +heiress +knoxville +viva +##uin +390 +macon +##rim +##fighter +##gonal +janice +##orescence +##wari +marius +belongings +leicestershire +196 +blanco +inverted +preseason +sanity +sobbing +##due +##elt +##dled +collingwood +regeneration +flickering +shortest +##mount +##osi +feminism +##lat +sherlock +cabinets +fumbled +northbound +precedent +snaps +##mme +researching +##akes +guillaume +insights +manipulated +vapor +neighbour +sap +gangster +frey +f1 +stalking +scarcely +callie +barnett +tendencies +audi +doomed +assessing +slung +panchayat +ambiguous +bartlett +##etto +distributing +violating +wolverhampton +##hetic +swami +histoire +##urus +liable +pounder +groin +hussain +larsen +popping +surprises +##atter +vie +curt +##station +mute +relocate +musicals +authorization +richter +##sef +immortality +tna +bombings +##press +deteriorated +yiddish +##acious +robbed +colchester +cs +pmid +ao +verified +balancing +apostle +swayed +recognizable +oxfordshire +retention +nottinghamshire +contender +judd +invitational +shrimp +uhf +##icient +cleaner +longitudinal +tanker +##mur +acronym +broker +koppen +sundance +suppliers +##gil +4000 +clipped +fuels +petite +##anne +landslide +helene +diversion +populous +landowners +auspices +melville +quantitative +##xes +ferries +nicky +##llus +doo +haunting +roche +carver +downed +unavailable +##pathy +approximation +hiroshima +##hue +garfield +valle +comparatively +keyboardist +traveler +##eit +congestion +calculating +subsidiaries +##bate +serb +modernization +fairies +deepened +ville +averages +##lore +inflammatory +tonga +##itch +co₂ +squads +##hea +gigantic +serum +enjoyment +retailer +verona +35th +cis +##phobic +magna +technicians +##vati +arithmetic +##sport +levin +##dation +amtrak +chow +sienna +##eyer +backstage +entrepreneurship +##otic +learnt +tao +##udy +worcestershire +formulation +baggage +hesitant +bali +sabotage +##kari +barren +enhancing +murmur +pl +freshly +putnam +syntax +aces +medicines +resentment +bandwidth +##sier +grins +chili +guido +##sei +framing +implying +gareth +lissa +genevieve +pertaining +admissions +geo +thorpe +proliferation +sato +bela +analyzing +parting +##gor +awakened +##isman +huddled +secrecy +##kling +hush +gentry +540 +dungeons +##ego +coasts +##utz +sacrificed +##chule +landowner +mutually +prevalence +programmer +adolescent +disrupted +seaside +gee +trusts +vamp +georgie +##nesian +##iol +schedules +sindh +##market +etched +hm +sparse +bey +beaux +scratching +gliding +unidentified +216 +collaborating +gems +jesuits +oro +accumulation +shaping +mbe +anal +##xin +231 +enthusiasts +newscast +##egan +janata +dewey +parkinson +179 +ankara +biennial +towering +dd +inconsistent +950 +##chet +thriving +terminate +cabins +furiously +eats +advocating +donkey +marley +muster +phyllis +leiden +##user +grassland +glittering +iucn +loneliness +217 +memorandum +armenians +##ddle +popularized +rhodesia +60s +lame +##illon +sans +bikini +header +orbits +##xx +##finger +##ulator +sharif +spines +biotechnology +strolled +naughty +yates +##wire +fremantle +milo +##mour +abducted +removes +##atin +humming +wonderland +##chrome +##ester +hume +pivotal +##rates +armand +grams +believers +elector +rte +apron +bis +scraped +##yria +endorsement +initials +##llation +eps +dotted +hints +buzzing +emigration +nearer +##tom +indicators +##ulu +coarse +neutron +protectorate +##uze +directional +exploits +pains +loire +1830s +proponents +guggenheim +rabbits +ritchie +305 +hectare +inputs +hutton +##raz +verify +##ako +boilers +longitude +##lev +skeletal +yer +emilia +citrus +compromised +##gau +pokemon +prescription +paragraph +eduard +cadillac +attire +categorized +kenyan +weddings +charley +##bourg +entertain +monmouth +##lles +nutrients +davey +mesh +incentive +practised +ecosystems +kemp +subdued +overheard +##rya +bodily +maxim +##nius +apprenticeship +ursula +##fight +lodged +rug +silesian +unconstitutional +patel +inspected +coyote +unbeaten +##hak +34th +disruption +convict +parcel +##cl +##nham +collier +implicated +mallory +##iac +##lab +susannah +winkler +##rber +shia +phelps +sediments +graphical +robotic +##sner +adulthood +mart +smoked +##isto +kathryn +clarified +##aran +divides +convictions +oppression +pausing +burying +##mt +federico +mathias +eileen +##tana +kite +hunched +##acies +189 +##atz +disadvantage +liza +kinetic +greedy +paradox +yokohama +dowager +trunks +ventured +##gement +gupta +vilnius +olaf +##thest +crimean +hopper +##ej +progressively +arturo +mouthed +arrondissement +##fusion +rubin +simulcast +oceania +##orum +##stra +##rred +busiest +intensely +navigator +cary +##vine +##hini +##bies +fife +rowe +rowland +posing +insurgents +shafts +lawsuits +activate +conor +inward +culturally +garlic +265 +##eering +eclectic +##hui +##kee +##nl +furrowed +vargas +meteorological +rendezvous +##aus +culinary +commencement +##dition +quota +##notes +mommy +salaries +overlapping +mule +##iology +##mology +sums +wentworth +##isk +##zione +mainline +subgroup +##illy +hack +plaintiff +verdi +bulb +differentiation +engagements +multinational +supplemented +bertrand +caller +regis +##naire +##sler +##arts +##imated +blossom +propagation +kilometer +viaduct +vineyards +##uate +beckett +optimization +golfer +songwriters +seminal +semitic +thud +volatile +evolving +ridley +##wley +trivial +distributions +scandinavia +jiang +##ject +wrestled +insistence +##dio +emphasizes +napkin +##ods +adjunct +rhyme +##ricted +##eti +hopeless +surrounds +tremble +32nd +smoky +##ntly +oils +medicinal +padded +steer +wilkes +219 +255 +concessions +hue +uniquely +blinded +landon +yahoo +##lane +hendrix +commemorating +dex +specify +chicks +##ggio +intercity +1400 +morley +##torm +highlighting +##oting +pang +oblique +stalled +##liner +flirting +newborn +1769 +bishopric +shaved +232 +currie +##ush +dharma +spartan +##ooped +favorites +smug +novella +sirens +abusive +creations +espana +##lage +paradigm +semiconductor +sheen +##rdo +##yen +##zak +nrl +renew +##pose +##tur +adjutant +marches +norma +##enity +ineffective +weimar +grunt +##gat +lordship +plotting +expenditure +infringement +lbs +refrain +av +mimi +mistakenly +postmaster +1771 +##bara +ras +motorsports +tito +199 +subjective +##zza +bully +stew +##kaya +prescott +1a +##raphic +##zam +bids +styling +paranormal +reeve +sneaking +exploding +katz +akbar +migrant +syllables +indefinitely +##ogical +destroys +replaces +applause +##phine +pest +##fide +218 +articulated +bertie +##thing +##cars +##ptic +courtroom +crowley +aesthetics +cummings +tehsil +hormones +titanic +dangerously +##ibe +stadion +jaenelle +auguste +ciudad +##chu +mysore +partisans +##sio +lucan +philipp +##aly +debating +henley +interiors +##rano +##tious +homecoming +beyonce +usher +henrietta +prepares +weeds +##oman +ely +plucked +##pire +##dable +luxurious +##aq +artifact +password +pasture +juno +maddy +minsk +##dder +##ologies +##rone +assessments +martian +royalist +1765 +examines +##mani +##rge +nino +223 +parry +scooped +relativity +##eli +##uting +##cao +congregational +noisy +traverse +##agawa +strikeouts +nickelodeon +obituary +transylvania +binds +depictions +polk +trolley +##yed +##lard +breeders +##under +dryly +hokkaido +1762 +strengths +stacks +bonaparte +connectivity +neared +prostitutes +stamped +anaheim +gutierrez +sinai +##zzling +bram +fresno +madhya +##86 +proton +##lena +##llum +##phon +reelected +wanda +##anus +##lb +ample +distinguishing +##yler +grasping +sermons +tomato +bland +stimulation +avenues +##eux +spreads +scarlett +fern +pentagon +assert +baird +chesapeake +ir +calmed +distortion +fatalities +##olis +correctional +pricing +##astic +##gina +prom +dammit +ying +collaborate +##chia +welterweight +33rd +pointer +substitution +bonded +umpire +communicating +multitude +paddle +##obe +federally +intimacy +##insky +betray +ssr +##lett +##lean +##lves +##therapy +airbus +##tery +functioned +ud +bearer +biomedical +netflix +##hire +##nca +condom +brink +ik +##nical +macy +##bet +flap +gma +experimented +jelly +lavender +##icles +##ulia +munro +##mian +##tial +rye +##rle +60th +gigs +hottest +rotated +predictions +fuji +bu +##erence +##omi +barangay +##fulness +##sas +clocks +##rwood +##liness +cereal +roe +wight +decker +uttered +babu +onion +xml +forcibly +##df +petra +sarcasm +hartley +peeled +storytelling +##42 +##xley +##ysis +##ffa +fibre +kiel +auditor +fig +harald +greenville +##berries +geographically +nell +quartz +##athic +cemeteries +##lr +crossings +nah +holloway +reptiles +chun +sichuan +snowy +660 +corrections +##ivo +zheng +ambassadors +blacksmith +fielded +fluids +hardcover +turnover +medications +melvin +academies +##erton +ro +roach +absorbing +spaniards +colton +##founded +outsider +espionage +kelsey +245 +edible +##ulf +dora +establishes +##sham +##tries +contracting +##tania +cinematic +costello +nesting +##uron +connolly +duff +##nology +mma +##mata +fergus +sexes +gi +optics +spectator +woodstock +banning +##hee +##fle +differentiate +outfielder +refinery +226 +312 +gerhard +horde +lair +drastically +##udi +landfall +##cheng +motorsport +odi +##achi +predominant +quay +skins +##ental +edna +harshly +complementary +murdering +##aves +wreckage +##90 +ono +outstretched +lennox +munitions +galen +reconcile +470 +scalp +bicycles +gillespie +questionable +rosenberg +guillermo +hostel +jarvis +kabul +volvo +opium +yd +##twined +abuses +decca +outpost +##cino +sensible +neutrality +##64 +ponce +anchorage +atkins +turrets +inadvertently +disagree +libre +vodka +reassuring +weighs +##yal +glide +jumper +ceilings +repertory +outs +stain +##bial +envy +##ucible +smashing +heightened +policing +hyun +mixes +lai +prima +##ples +celeste +##bina +lucrative +intervened +kc +manually +##rned +stature +staffed +bun +bastards +nairobi +priced +##auer +thatcher +##kia +tripped +comune +##ogan +##pled +brasil +incentives +emanuel +hereford +musica +##kim +benedictine +biennale +##lani +eureka +gardiner +rb +knocks +sha +##ael +##elled +##onate +efficacy +ventura +masonic +sanford +maize +leverage +##feit +capacities +santana +##aur +novelty +vanilla +##cter +##tour +benin +##oir +##rain +neptune +drafting +tallinn +##cable +humiliation +##boarding +schleswig +fabian +bernardo +liturgy +spectacle +sweeney +pont +routledge +##tment +cosmos +ut +hilt +sleek +universally +##eville +##gawa +typed +##dry +favors +allegheny +glaciers +##rly +recalling +aziz +##log +parasite +requiem +auf +##berto +##llin +illumination +##breaker +##issa +festivities +bows +govern +vibe +vp +333 +sprawled +larson +pilgrim +bwf +leaping +##rts +##ssel +alexei +greyhound +hoarse +##dler +##oration +seneca +##cule +gaping +##ulously +##pura +cinnamon +##gens +##rricular +craven +fantasies +houghton +engined +reigned +dictator +supervising +##oris +bogota +commentaries +unnatural +fingernails +spirituality +tighten +##tm +canadiens +protesting +intentional +cheers +sparta +##ytic +##iere +##zine +widen +belgarath +controllers +dodd +iaaf +navarre +##ication +defect +squire +steiner +whisky +##mins +560 +inevitably +tome +##gold +chew +##uid +##lid +elastic +##aby +streaked +alliances +jailed +regal +##ined +##phy +czechoslovak +narration +absently +##uld +bluegrass +guangdong +quran +criticizing +hose +hari +##liest +##owa +skier +streaks +deploy +##lom +raft +bose +dialed +huff +##eira +haifa +simplest +bursting +endings +ib +sultanate +##titled +franks +whitman +ensures +sven +##ggs +collaborators +forster +organising +ui +banished +napier +injustice +teller +layered +thump +##otti +roc +battleships +evidenced +fugitive +sadie +robotics +##roud +equatorial +geologist +##iza +yielding +##bron +##sr +internationale +mecca +##diment +sbs +skyline +toad +uploaded +reflective +undrafted +lal +leafs +bayern +##dai +lakshmi +shortlisted +##stick +##wicz +camouflage +donate +af +christi +lau +##acio +disclosed +nemesis +1761 +assemble +straining +northamptonshire +tal +##asi +bernardino +premature +heidi +42nd +coefficients +galactic +reproduce +buzzed +sensations +zionist +monsieur +myrtle +##eme +archery +strangled +musically +viewpoint +antiquities +bei +trailers +seahawks +cured +pee +preferring +tasmanian +lange +sul +##mail +##working +colder +overland +lucivar +massey +gatherings +haitian +##smith +disapproval +flaws +##cco +##enbach +1766 +npr +##icular +boroughs +creole +forums +techno +1755 +dent +abdominal +streetcar +##eson +##stream +procurement +gemini +predictable +##tya +acheron +christoph +feeder +fronts +vendor +bernhard +jammu +tumors +slang +##uber +goaltender +twists +curving +manson +vuelta +mer +peanut +confessions +pouch +unpredictable +allowance +theodor +vascular +##factory +bala +authenticity +metabolic +coughing +nanjing +##cea +pembroke +##bard +splendid +36th +ff +hourly +##ahu +elmer +handel +##ivate +awarding +thrusting +dl +experimentation +##hesion +##46 +caressed +entertained +steak +##rangle +biologist +orphans +baroness +oyster +stepfather +##dridge +mirage +reefs +speeding +##31 +barons +1764 +227 +inhabit +preached +repealed +##tral +honoring +boogie +captives +administer +johanna +##imate +gel +suspiciously +1767 +sobs +##dington +backbone +hayward +garry +##folding +##nesia +maxi +##oof +##ppe +ellison +galileo +##stand +crimea +frenzy +amour +bumper +matrices +natalia +baking +garth +palestinians +##grove +smack +conveyed +ensembles +gardening +##manship +##rup +##stituting +1640 +harvesting +topography +jing +shifters +dormitory +##carriage +##lston +ist +skulls +##stadt +dolores +jewellery +sarawak +##wai +##zier +fences +christy +confinement +tumbling +credibility +fir +stench +##bria +##plication +##nged +##sam +virtues +##belt +marjorie +pba +##eem +##made +celebrates +schooner +agitated +barley +fulfilling +anthropologist +##pro +restrict +novi +regulating +##nent +padres +##rani +##hesive +loyola +tabitha +milky +olson +proprietor +crambidae +guarantees +intercollegiate +ljubljana +hilda +##sko +ignorant +hooded +##lts +sardinia +##lidae +##vation +frontman +privileged +witchcraft +##gp +jammed +laude +poking +##than +bracket +amazement +yunnan +##erus +maharaja +linnaeus +264 +commissioning +milano +peacefully +##logies +akira +rani +regulator +##36 +grasses +##rance +luzon +crows +compiler +gretchen +seaman +edouard +tab +buccaneers +ellington +hamlets +whig +socialists +##anto +directorial +easton +mythological +##kr +##vary +rhineland +semantic +taut +dune +inventions +succeeds +##iter +replication +branched +##pired +jul +prosecuted +kangaroo +penetrated +##avian +middlesbrough +doses +bleak +madam +predatory +relentless +##vili +reluctance +##vir +hailey +crore +silvery +1759 +monstrous +swimmers +transmissions +hawthorn +informing +##eral +toilets +caracas +crouch +kb +##sett +295 +cartel +hadley +##aling +alexia +yvonne +##biology +cinderella +eton +superb +blizzard +stabbing +industrialist +maximus +##gm +##orus +groves +maud +clade +oversized +comedic +##bella +rosen +nomadic +fulham +montane +beverages +galaxies +redundant +swarm +##rot +##folia +##llis +buckinghamshire +fen +bearings +bahadur +##rom +gilles +phased +dynamite +faber +benoit +vip +##ount +##wd +booking +fractured +tailored +anya +spices +westwood +cairns +auditions +inflammation +steamed +##rocity +##acion +##urne +skyla +thereof +watford +torment +archdeacon +transforms +lulu +demeanor +fucked +serge +##sor +mckenna +minas +entertainer +##icide +caress +originate +residue +##sty +1740 +##ilised +##org +beech +##wana +subsidies +##ghton +emptied +gladstone +ru +firefighters +voodoo +##rcle +het +nightingale +tamara +edmond +ingredient +weaknesses +silhouette +285 +compatibility +withdrawing +hampson +##mona +anguish +giggling +##mber +bookstore +##jiang +southernmost +tilting +##vance +bai +economical +rf +briefcase +dreadful +hinted +projections +shattering +totaling +##rogate +analogue +indicted +periodical +fullback +##dman +haynes +##tenberg +##ffs +##ishment +1745 +thirst +stumble +penang +vigorous +##ddling +##kor +##lium +octave +##ove +##enstein +##inen +##ones +siberian +##uti +cbn +repeal +swaying +##vington +khalid +tanaka +unicorn +otago +plastered +lobe +riddle +##rella +perch +##ishing +croydon +filtered +graeme +tripoli +##ossa +crocodile +##chers +sufi +mined +##tung +inferno +lsu +##phi +swelled +utilizes +£2 +cale +periodicals +styx +hike +informally +coop +lund +##tidae +ala +hen +qui +transformations +disposed +sheath +chickens +##cade +fitzroy +sas +silesia +unacceptable +odisha +1650 +sabrina +pe +spokane +ratios +athena +massage +shen +dilemma +##drum +##riz +##hul +corona +doubtful +niall +##pha +##bino +fines +cite +acknowledging +bangor +ballard +bathurst +##resh +huron +mustered +alzheimer +garments +kinase +tyre +warship +##cp +flashback +pulmonary +braun +cheat +kamal +cyclists +constructions +grenades +ndp +traveller +excuses +stomped +signalling +trimmed +futsal +mosques +relevance +##wine +wta +##23 +##vah +##lter +hoc +##riding +optimistic +##´s +deco +sim +interacting +rejecting +moniker +waterways +##ieri +##oku +mayors +gdansk +outnumbered +pearls +##ended +##hampton +fairs +totals +dominating +262 +notions +stairway +compiling +pursed +commodities +grease +yeast +##jong +carthage +griffiths +residual +amc +contraction +laird +sapphire +##marine +##ivated +amalgamation +dissolve +inclination +lyle +packaged +altitudes +suez +canons +graded +lurched +narrowing +boasts +guise +wed +enrico +##ovsky +rower +scarred +bree +cub +iberian +protagonists +bargaining +proposing +trainers +voyages +vans +fishes +##aea +##ivist +##verance +encryption +artworks +kazan +sabre +cleopatra +hepburn +rotting +supremacy +mecklenburg +##brate +burrows +hazards +outgoing +flair +organizes +##ctions +scorpion +##usions +boo +234 +chevalier +dunedin +slapping +##34 +ineligible +pensions +##38 +##omic +manufactures +emails +bismarck +238 +weakening +blackish +ding +mcgee +quo +##rling +northernmost +xx +manpower +greed +sampson +clicking +##ange +##horpe +##inations +##roving +torre +##eptive +##moral +symbolism +38th +asshole +meritorious +outfits +splashed +biographies +sprung +astros +##tale +302 +737 +filly +raoul +nw +tokugawa +linden +clubhouse +##apa +tracts +romano +##pio +putin +tags +##note +chained +dickson +gunshot +moe +gunn +rashid +##tails +zipper +##bas +##nea +contrasted +##ply +##udes +plum +pharaoh +##pile +aw +comedies +ingrid +sandwiches +subdivisions +1100 +mariana +nokia +kamen +hz +delaney +veto +herring +##words +possessive +outlines +##roup +siemens +stairwell +rc +gallantry +messiah +palais +yells +233 +zeppelin +##dm +bolivar +##cede +smackdown +mckinley +##mora +##yt +muted +geologic +finely +unitary +avatar +hamas +maynard +rees +bog +contrasting +##rut +liv +chico +disposition +pixel +##erate +becca +dmitry +yeshiva +narratives +##lva +##ulton +mercenary +sharpe +tempered +navigate +stealth +amassed +keynes +##lini +untouched +##rrie +havoc +lithium +##fighting +abyss +graf +southward +wolverine +balloons +implements +ngos +transitions +##icum +ambushed +concacaf +dormant +economists +##dim +costing +csi +rana +universite +boulders +verity +##llon +collin +mellon +misses +cypress +fluorescent +lifeless +spence +##ulla +crewe +shepard +pak +revelations +##م +jolly +gibbons +paw +##dro +##quel +freeing +##test +shack +fries +palatine +##51 +##hiko +accompaniment +cruising +recycled +##aver +erwin +sorting +synthesizers +dyke +realities +sg +strides +enslaved +wetland +##ghan +competence +gunpowder +grassy +maroon +reactors +objection +##oms +carlson +gearbox +macintosh +radios +shelton +##sho +clergyman +prakash +254 +mongols +trophies +oricon +228 +stimuli +twenty20 +cantonese +cortes +mirrored +##saurus +bhp +cristina +melancholy +##lating +enjoyable +nuevo +##wny +downfall +schumacher +##ind +banging +lausanne +rumbled +paramilitary +reflex +ax +amplitude +migratory +##gall +##ups +midi +barnard +lastly +sherry +##hp +##nall +keystone +##kra +carleton +slippery +##53 +coloring +foe +socket +otter +##rgos +mats +##tose +consultants +bafta +bison +topping +##km +490 +primal +abandonment +transplant +atoll +hideous +mort +pained +reproduced +tae +howling +##turn +unlawful +billionaire +hotter +poised +lansing +##chang +dinamo +retro +messing +nfc +domesday +##mina +blitz +timed +##athing +##kley +ascending +gesturing +##izations +signaled +tis +chinatown +mermaid +savanna +jameson +##aint +catalina +##pet +##hers +cochrane +cy +chatting +##kus +alerted +computation +mused +noelle +majestic +mohawk +campo +octagonal +##sant +##hend +241 +aspiring +##mart +comprehend +iona +paralyzed +shimmering +swindon +rhone +##eley +reputed +configurations +pitchfork +agitation +francais +gillian +lipstick +##ilo +outsiders +pontifical +resisting +bitterness +sewer +rockies +##edd +##ucher +misleading +1756 +exiting +galloway +##nging +risked +##heart +246 +commemoration +schultz +##rka +integrating +##rsa +poses +shrieked +##weiler +guineas +gladys +jerking +owls +goldsmith +nightly +penetrating +##unced +lia +##33 +ignited +betsy +##aring +##thorpe +follower +vigorously +##rave +coded +kiran +knit +zoology +tbilisi +##28 +##bered +repository +govt +deciduous +dino +growling +##bba +enhancement +unleashed +chanting +pussy +biochemistry +##eric +kettle +repression +toxicity +nrhp +##arth +##kko +##bush +ernesto +commended +outspoken +242 +mca +parchment +sms +kristen +##aton +bisexual +raked +glamour +navajo +a2 +conditioned +showcased +##hma +spacious +youthful +##esa +usl +appliances +junta +brest +layne +conglomerate +enchanted +chao +loosened +picasso +circulating +inspect +montevideo +##centric +##kti +piazza +spurred +##aith +bari +freedoms +poultry +stamford +lieu +##ect +indigo +sarcastic +bahia +stump +attach +dvds +frankenstein +lille +approx +scriptures +pollen +##script +nmi +overseen +##ivism +tides +proponent +newmarket +inherit +milling +##erland +centralized +##rou +distributors +credentials +drawers +abbreviation +##lco +##xon +downing +uncomfortably +ripe +##oes +erase +franchises +##ever +populace +##bery +##khar +decomposition +pleas +##tet +daryl +sabah +##stle +##wide +fearless +genie +lesions +annette +##ogist +oboe +appendix +nair +dripped +petitioned +maclean +mosquito +parrot +rpg +hampered +1648 +operatic +reservoirs +##tham +irrelevant +jolt +summarized +##fp +medallion +##taff +##− +clawed +harlow +narrower +goddard +marcia +bodied +fremont +suarez +altering +tempest +mussolini +porn +##isms +sweetly +oversees +walkers +solitude +grimly +shrines +hk +ich +supervisors +hostess +dietrich +legitimacy +brushes +expressive +##yp +dissipated +##rse +localized +systemic +##nikov +gettysburg +##js +##uaries +dialogues +muttering +251 +housekeeper +sicilian +discouraged +##frey +beamed +kaladin +halftime +kidnap +##amo +##llet +1754 +synonymous +depleted +instituto +insulin +reprised +##opsis +clashed +##ctric +interrupting +radcliffe +insisting +medici +1715 +ejected +playfully +turbulent +##47 +starvation +##rini +shipment +rebellious +petersen +verification +merits +##rified +cakes +##charged +1757 +milford +shortages +spying +fidelity +##aker +emitted +storylines +harvested +seismic +##iform +cheung +kilda +theoretically +barbie +lynx +##rgy +##tius +goblin +mata +poisonous +##nburg +reactive +residues +obedience +##евич +conjecture +##rac +401 +hating +sixties +kicker +moaning +motown +##bha +emancipation +neoclassical +##hering +consoles +ebert +professorship +##tures +sustaining +assaults +obeyed +affluent +incurred +tornadoes +##eber +##zow +emphasizing +highlanders +cheated +helmets +##ctus +internship +terence +bony +executions +legislators +berries +peninsular +tinged +##aco +1689 +amplifier +corvette +ribbons +lavish +pennant +##lander +worthless +##chfield +##forms +mariano +pyrenees +expenditures +##icides +chesterfield +mandir +tailor +39th +sergey +nestled +willed +aristocracy +devotees +goodnight +raaf +rumored +weaponry +remy +appropriations +harcourt +burr +riaa +##lence +limitation +unnoticed +guo +soaking +swamps +##tica +collapsing +tatiana +descriptive +brigham +psalm +##chment +maddox +##lization +patti +caliph +##aja +akron +injuring +serra +##ganj +basins +##sari +astonished +launcher +##church +hilary +wilkins +sewing +##sf +stinging +##fia +##ncia +underwood +startup +##ition +compilations +vibrations +embankment +jurist +##nity +bard +juventus +groundwater +kern +palaces +helium +boca +cramped +marissa +soto +##worm +jae +princely +##ggy +faso +bazaar +warmly +##voking +229 +pairing +##lite +##grate +##nets +wien +freaked +ulysses +rebirth +##alia +##rent +mummy +guzman +jimenez +stilled +##nitz +trajectory +tha +woken +archival +professions +##pts +##pta +hilly +shadowy +shrink +##bolt +norwood +glued +migrate +stereotypes +devoid +##pheus +625 +evacuate +horrors +infancy +gotham +knowles +optic +downloaded +sachs +kingsley +parramatta +darryl +mor +##onale +shady +commence +confesses +kan +##meter +##placed +marlborough +roundabout +regents +frigates +io +##imating +gothenburg +revoked +carvings +clockwise +convertible +intruder +##sche +banged +##ogo +vicky +bourgeois +##mony +dupont +footing +##gum +pd +##real +buckle +yun +penthouse +sane +720 +serviced +stakeholders +neumann +bb +##eers +comb +##gam +catchment +pinning +rallies +typing +##elles +forefront +freiburg +sweetie +giacomo +widowed +goodwill +worshipped +aspirations +midday +##vat +fishery +##trick +bournemouth +turk +243 +hearth +ethanol +guadalajara +murmurs +sl +##uge +afforded +scripted +##hta +wah +##jn +coroner +translucent +252 +memorials +puck +progresses +clumsy +##race +315 +candace +recounted +##27 +##slin +##uve +filtering +##mac +howl +strata +heron +leveled +##ays +dubious +##oja +##т +##wheel +citations +exhibiting +##laya +##mics +##pods +turkic +##lberg +injunction +##ennial +##mit +antibodies +##44 +organise +##rigues +cardiovascular +cushion +inverness +##zquez +dia +cocoa +sibling +##tman +##roid +expanse +feasible +tunisian +algiers +##relli +rus +bloomberg +dso +westphalia +bro +tacoma +281 +downloads +##ours +konrad +duran +##hdi +continuum +jett +compares +legislator +secession +##nable +##gues +##zuka +translating +reacher +##gley +##ła +aleppo +##agi +tc +orchards +trapping +linguist +versatile +drumming +postage +calhoun +superiors +##mx +barefoot +leary +##cis +ignacio +alfa +kaplan +##rogen +bratislava +mori +##vot +disturb +haas +313 +cartridges +gilmore +radiated +salford +tunic +hades +##ulsive +archeological +delilah +magistrates +auditioned +brewster +charters +empowerment +blogs +cappella +dynasties +iroquois +whipping +##krishna +raceway +truths +myra +weaken +judah +mcgregor +##horse +mic +refueling +37th +burnley +bosses +markus +premio +query +##gga +dunbar +##economic +darkest +lyndon +sealing +commendation +reappeared +##mun +addicted +ezio +slaughtered +satisfactory +shuffle +##eves +##thic +##uj +fortification +warrington +##otto +resurrected +fargo +mane +##utable +##lei +##space +foreword +ox +##aris +##vern +abrams +hua +##mento +sakura +##alo +uv +sentimental +##skaya +midfield +##eses +sturdy +scrolls +macleod +##kyu +entropy +##lance +mitochondrial +cicero +excelled +thinner +convoys +perceive +##oslav +##urable +systematically +grind +burkina +287 +##tagram +ops +##aman +guantanamo +##cloth +##tite +forcefully +wavy +##jou +pointless +##linger +##tze +layton +portico +superficial +clerical +outlaws +##hism +burials +muir +##inn +creditors +hauling +rattle +##leg +calais +monde +archers +reclaimed +dwell +wexford +hellenic +falsely +remorse +##tek +dough +furnishings +##uttered +gabon +neurological +novice +##igraphy +contemplated +pulpit +nightstand +saratoga +##istan +documenting +pulsing +taluk +##firmed +busted +marital +##rien +disagreements +wasps +##yes +hodge +mcdonnell +mimic +fran +pendant +dhabi +musa +##nington +congratulations +argent +darrell +concussion +losers +regrets +thessaloniki +reversal +donaldson +hardwood +thence +achilles +ritter +##eran +demonic +jurgen +prophets +goethe +eki +classmate +buff +##cking +yank +irrational +##inging +perished +seductive +qur +sourced +##crat +##typic +mustard +ravine +barre +horizontally +characterization +phylogenetic +boise +##dit +##runner +##tower +brutally +intercourse +seduce +##bbing +fay +ferris +ogden +amar +nik +unarmed +##inator +evaluating +kyrgyzstan +sweetness +##lford +##oki +mccormick +meiji +notoriety +stimulate +disrupt +figuring +instructional +mcgrath +##zoo +groundbreaking +##lto +flinch +khorasan +agrarian +bengals +mixer +radiating +##sov +ingram +pitchers +nad +tariff +##cript +tata +##codes +##emi +##ungen +appellate +lehigh +##bled +##giri +brawl +duct +texans +##ciation +##ropolis +skipper +speculative +vomit +doctrines +stresses +253 +davy +graders +whitehead +jozef +timely +cumulative +haryana +paints +appropriately +boon +cactus +##ales +##pid +dow +legions +##pit +perceptions +1730 +picturesque +##yse +periphery +rune +wr +##aha +celtics +sentencing +whoa +##erin +confirms +variance +425 +moines +mathews +spade +rave +m1 +fronted +fx +blending +alleging +reared +##gl +237 +##paper +grassroots +eroded +##free +##physical +directs +ordeal +##sław +accelerate +hacker +rooftop +##inia +lev +buys +cebu +devote +##lce +specialising +##ulsion +choreographed +repetition +warehouses +##ryl +paisley +tuscany +analogy +sorcerer +hash +huts +shards +descends +exclude +nix +chaplin +gaga +ito +vane +##drich +causeway +misconduct +limo +orchestrated +glands +jana +##kot +u2 +##mple +##sons +branching +contrasts +scoop +longed +##virus +chattanooga +##75 +syrup +cornerstone +##tized +##mind +##iaceae +careless +precedence +frescoes +##uet +chilled +consult +modelled +snatch +peat +##thermal +caucasian +humane +relaxation +spins +temperance +##lbert +occupations +lambda +hybrids +moons +mp3 +##oese +247 +rolf +societal +yerevan +ness +##ssler +befriended +mechanized +nominate +trough +boasted +cues +seater +##hom +bends +##tangle +conductors +emptiness +##lmer +eurasian +adriatic +tian +##cie +anxiously +lark +propellers +chichester +jock +ev +2a +##holding +credible +recounts +tori +loyalist +abduction +##hoot +##redo +nepali +##mite +ventral +tempting +##ango +##crats +steered +##wice +javelin +dipping +laborers +prentice +looming +titanium +##ː +badges +emir +tensor +##ntation +egyptians +rash +denies +hawthorne +lombard +showers +wehrmacht +dietary +trojan +##reus +welles +executing +horseshoe +lifeboat +##lak +elsa +infirmary +nearing +roberta +boyer +mutter +trillion +joanne +##fine +##oked +sinks +vortex +uruguayan +clasp +sirius +##block +accelerator +prohibit +sunken +byu +chronological +diplomats +ochreous +510 +symmetrical +1644 +maia +##tology +salts +reigns +atrocities +##ия +hess +bared +issn +##vyn +cater +saturated +##cycle +##isse +sable +voyager +dyer +yusuf +##inge +fountains +wolff +##39 +##nni +engraving +rollins +atheist +ominous +##ault +herr +chariot +martina +strung +##fell +##farlane +horrific +sahib +gazes +saetan +erased +ptolemy +##olic +flushing +lauderdale +analytic +##ices +530 +navarro +beak +gorilla +herrera +broom +guadalupe +raiding +sykes +311 +bsc +deliveries +1720 +invasions +carmichael +tajikistan +thematic +ecumenical +sentiments +onstage +##rians +##brand +##sume +catastrophic +flanks +molten +##arns +waller +aimee +terminating +##icing +alternately +##oche +nehru +printers +outraged +##eving +empires +template +banners +repetitive +za +##oise +vegetarian +##tell +guiana +opt +cavendish +lucknow +synthesized +##hani +##mada +finalized +##ctable +fictitious +mayoral +unreliable +##enham +embracing +peppers +rbis +##chio +##neo +inhibition +slashed +togo +orderly +embroidered +safari +salty +236 +barron +benito +totaled +##dak +pubs +simulated +caden +devin +tolkien +momma +welding +sesame +##ept +gottingen +hardness +630 +shaman +temeraire +620 +adequately +pediatric +##kit +ck +assertion +radicals +composure +cadence +seafood +beaufort +lazarus +mani +warily +cunning +kurdistan +249 +cantata +##kir +ares +##41 +##clusive +nape +townland +geared +insulted +flutter +boating +violate +draper +dumping +malmo +##hh +##romatic +firearm +alta +bono +obscured +##clave +exceeds +panorama +unbelievable +##train +preschool +##essed +disconnected +installing +rescuing +secretaries +accessibility +##castle +##drive +##ifice +##film +bouts +slug +waterway +mindanao +##buro +##ratic +halves +##ل +calming +liter +maternity +adorable +bragg +electrification +mcc +##dote +roxy +schizophrenia +##body +munoz +kaye +whaling +239 +mil +tingling +tolerant +##ago +unconventional +volcanoes +##finder +deportivo +##llie +robson +kaufman +neuroscience +wai +deportation +masovian +scraping +converse +##bh +hacking +bulge +##oun +administratively +yao +580 +amp +mammoth +booster +claremont +hooper +nomenclature +pursuits +mclaughlin +melinda +##sul +catfish +barclay +substrates +taxa +zee +originals +kimberly +packets +padma +##ality +borrowing +ostensibly +solvent +##bri +##genesis +##mist +lukas +shreveport +veracruz +##ь +##lou +##wives +cheney +tt +anatolia +hobbs +##zyn +cyclic +radiant +alistair +greenish +siena +dat +independents +##bation +conform +pieter +hyper +applicant +bradshaw +spores +telangana +vinci +inexpensive +nuclei +322 +jang +nme +soho +spd +##ign +cradled +receptionist +pow +##43 +##rika +fascism +##ifer +experimenting +##ading +##iec +##region +345 +jocelyn +maris +stair +nocturnal +toro +constabulary +elgin +##kker +msc +##giving +##schen +##rase +doherty +doping +sarcastically +batter +maneuvers +##cano +##apple +##gai +##git +intrinsic +##nst +##stor +1753 +showtime +cafes +gasps +lviv +ushered +##thed +fours +restart +astonishment +transmitting +flyer +shrugs +##sau +intriguing +cones +dictated +mushrooms +medial +##kovsky +##elman +escorting +gaped +##26 +godfather +##door +##sell +djs +recaptured +timetable +vila +1710 +3a +aerodrome +mortals +scientology +##orne +angelina +mag +convection +unpaid +insertion +intermittent +lego +##nated +endeavor +kota +pereira +##lz +304 +bwv +glamorgan +insults +agatha +fey +##cend +fleetwood +mahogany +protruding +steamship +zeta +##arty +mcguire +suspense +##sphere +advising +urges +##wala +hurriedly +meteor +gilded +inline +arroyo +stalker +##oge +excitedly +revered +##cure +earle +introductory +##break +##ilde +mutants +puff +pulses +reinforcement +##haling +curses +lizards +stalk +correlated +##fixed +fallout +macquarie +##unas +bearded +denton +heaving +802 +##ocation +winery +assign +dortmund +##lkirk +everest +invariant +charismatic +susie +##elling +bled +lesley +telegram +sumner +bk +##ogen +##к +wilcox +needy +colbert +duval +##iferous +##mbled +allotted +attends +imperative +##hita +replacements +hawker +##inda +insurgency +##zee +##eke +casts +##yla +680 +ives +transitioned +##pack +##powering +authoritative +baylor +flex +cringed +plaintiffs +woodrow +##skie +drastic +ape +aroma +unfolded +commotion +nt +preoccupied +theta +routines +lasers +privatization +wand +domino +ek +clenching +nsa +strategically +showered +bile +handkerchief +pere +storing +christophe +insulting +316 +nakamura +romani +asiatic +magdalena +palma +cruises +stripping +405 +konstantin +soaring +##berman +colloquially +forerunner +havilland +incarcerated +parasites +sincerity +##utus +disks +plank +saigon +##ining +corbin +homo +ornaments +powerhouse +##tlement +chong +fastened +feasibility +idf +morphological +usable +##nish +##zuki +aqueduct +jaguars +keepers +##flies +aleksandr +faust +assigns +ewing +bacterium +hurled +tricky +hungarians +integers +wallis +321 +yamaha +##isha +hushed +oblivion +aviator +evangelist +friars +##eller +monograph +ode +##nary +airplanes +labourers +charms +##nee +1661 +hagen +tnt +rudder +fiesta +transcript +dorothea +ska +inhibitor +maccabi +retorted +raining +encompassed +clauses +menacing +1642 +lineman +##gist +vamps +##ape +##dick +gloom +##rera +dealings +easing +seekers +##nut +##pment +helens +unmanned +##anu +##isson +basics +##amy +##ckman +adjustments +1688 +brutality +horne +##zell +sui +##55 +##mable +aggregator +##thal +rhino +##drick +##vira +counters +zoom +##01 +##rting +mn +montenegrin +packard +##unciation +##♭ +##kki +reclaim +scholastic +thugs +pulsed +##icia +syriac +quan +saddam +banda +kobe +blaming +buddies +dissent +##lusion +##usia +corbett +jaya +delle +erratic +lexie +##hesis +435 +amiga +hermes +##pressing +##leen +chapels +gospels +jamal +##uating +compute +revolving +warp +##sso +##thes +armory +##eras +##gol +antrim +loki +##kow +##asian +##good +##zano +braid +handwriting +subdistrict +funky +pantheon +##iculate +concurrency +estimation +improper +juliana +##his +newcomers +johnstone +staten +communicated +##oco +##alle +sausage +stormy +##stered +##tters +superfamily +##grade +acidic +collateral +tabloid +##oped +##rza +bladder +austen +##ellant +mcgraw +##hay +hannibal +mein +aquino +lucifer +wo +badger +boar +cher +christensen +greenberg +interruption +##kken +jem +244 +mocked +bottoms +cambridgeshire +##lide +sprawling +##bbly +eastwood +ghent +synth +##buck +advisers +##bah +nominally +hapoel +qu +daggers +estranged +fabricated +towels +vinnie +wcw +misunderstanding +anglia +nothin +unmistakable +##dust +##lova +chilly +marquette +truss +##edge +##erine +reece +##lty +##chemist +##connected +272 +308 +41st +bash +raion +waterfalls +##ump +##main +labyrinth +queue +theorist +##istle +bharatiya +flexed +soundtracks +rooney +leftist +patrolling +wharton +plainly +alleviate +eastman +schuster +topographic +engages +immensely +unbearable +fairchild +1620 +dona +lurking +parisian +oliveira +ia +indictment +hahn +bangladeshi +##aster +vivo +##uming +##ential +antonia +expects +indoors +kildare +harlan +##logue +##ogenic +##sities +forgiven +##wat +childish +tavi +##mide +##orra +plausible +grimm +successively +scooted +##bola +##dget +##rith +spartans +emery +flatly +azure +epilogue +##wark +flourish +##iny +##tracted +##overs +##oshi +bestseller +distressed +receipt +spitting +hermit +topological +##cot +drilled +subunit +francs +##layer +eel +##fk +##itas +octopus +footprint +petitions +ufo +##say +##foil +interfering +leaking +palo +##metry +thistle +valiant +##pic +narayan +mcpherson +##fast +gonzales +##ym +##enne +dustin +novgorod +solos +##zman +doin +##raph +##patient +##meyer +soluble +ashland +cuffs +carole +pendleton +whistling +vassal +##river +deviation +revisited +constituents +rallied +rotate +loomed +##eil +##nting +amateurs +augsburg +auschwitz +crowns +skeletons +##cona +bonnet +257 +dummy +globalization +simeon +sleeper +mandal +differentiated +##crow +##mare +milne +bundled +exasperated +talmud +owes +segregated +##feng +##uary +dentist +piracy +props +##rang +devlin +##torium +malicious +paws +##laid +dependency +##ergy +##fers +##enna +258 +pistons +rourke +jed +grammatical +tres +maha +wig +512 +ghostly +jayne +##achal +##creen +##ilis +##lins +##rence +designate +##with +arrogance +cambodian +clones +showdown +throttle +twain +##ception +lobes +metz +nagoya +335 +braking +##furt +385 +roaming +##minster +amin +crippled +##37 +##llary +indifferent +hoffmann +idols +intimidating +1751 +261 +influenza +memo +onions +1748 +bandage +consciously +##landa +##rage +clandestine +observes +swiped +tangle +##ener +##jected +##trum +##bill +##lta +hugs +congresses +josiah +spirited +##dek +humanist +managerial +filmmaking +inmate +rhymes +debuting +grimsby +ur +##laze +duplicate +vigor +##tf +republished +bolshevik +refurbishment +antibiotics +martini +methane +newscasts +royale +horizons +levant +iain +visas +##ischen +paler +##around +manifestation +snuck +alf +chop +futile +pedestal +rehab +##kat +bmg +kerman +res +fairbanks +jarrett +abstraction +saharan +##zek +1746 +procedural +clearer +kincaid +sash +luciano +##ffey +crunch +helmut +##vara +revolutionaries +##tute +creamy +leach +##mmon +1747 +permitting +nes +plight +wendell +##lese +contra +ts +clancy +ipa +mach +staples +autopsy +disturbances +nueva +karin +pontiac +##uding +proxy +venerable +haunt +leto +bergman +expands +##helm +wal +##pipe +canning +celine +cords +obesity +##enary +intrusion +planner +##phate +reasoned +sequencing +307 +harrow +##chon +##dora +marred +mcintyre +repay +tarzan +darting +248 +harrisburg +margarita +repulsed +##hur +##lding +belinda +hamburger +novo +compliant +runways +bingham +registrar +skyscraper +ic +cuthbert +improvisation +livelihood +##corp +##elial +admiring +##dened +sporadic +believer +casablanca +popcorn +##29 +asha +shovel +##bek +##dice +coiled +tangible +##dez +casper +elsie +resin +tenderness +rectory +##ivision +avail +sonar +##mori +boutique +##dier +guerre +bathed +upbringing +vaulted +sandals +blessings +##naut +##utnant +1680 +306 +foxes +pia +corrosion +hesitantly +confederates +crystalline +footprints +shapiro +tirana +valentin +drones +45th +microscope +shipments +texted +inquisition +wry +guernsey +unauthorized +resigning +760 +ripple +schubert +stu +reassure +felony +##ardo +brittle +koreans +##havan +##ives +dun +implicit +tyres +##aldi +##lth +magnolia +##ehan +##puri +##poulos +aggressively +fei +gr +familiarity +##poo +indicative +##trust +fundamentally +jimmie +overrun +395 +anchors +moans +##opus +britannia +armagh +##ggle +purposely +seizing +##vao +bewildered +mundane +avoidance +cosmopolitan +geometridae +quartermaster +caf +415 +chatter +engulfed +gleam +purge +##icate +juliette +jurisprudence +guerra +revisions +##bn +casimir +brew +##jm +1749 +clapton +cloudy +conde +hermitage +278 +simulations +torches +vincenzo +matteo +##rill +hidalgo +booming +westbound +accomplishment +tentacles +unaffected +##sius +annabelle +flopped +sloping +##litz +dreamer +interceptor +vu +##loh +consecration +copying +messaging +breaker +climates +hospitalized +1752 +torino +afternoons +winfield +witnessing +##teacher +breakers +choirs +sawmill +coldly +##ege +sipping +haste +uninhabited +conical +bibliography +pamphlets +severn +edict +##oca +deux +illnesses +grips +##pl +rehearsals +sis +thinkers +tame +##keepers +1690 +acacia +reformer +##osed +##rys +shuffling +##iring +##shima +eastbound +ionic +rhea +flees +littered +##oum +rocker +vomiting +groaning +champ +overwhelmingly +civilizations +paces +sloop +adoptive +##tish +skaters +##vres +aiding +mango +##joy +nikola +shriek +##ignon +pharmaceuticals +##mg +tuna +calvert +gustavo +stocked +yearbook +##urai +##mana +computed +subsp +riff +hanoi +kelvin +hamid +moors +pastures +summons +jihad +nectar +##ctors +bayou +untitled +pleasing +vastly +republics +intellect +##η +##ulio +##tou +crumbling +stylistic +sb +##ی +consolation +frequented +h₂o +walden +widows +##iens +404 +##ignment +chunks +improves +288 +grit +recited +##dev +snarl +sociological +##arte +##gul +inquired +##held +bruise +clube +consultancy +homogeneous +hornets +multiplication +pasta +prick +savior +##grin +##kou +##phile +yoon +##gara +grimes +vanishing +cheering +reacting +bn +distillery +##quisite +##vity +coe +dockyard +massif +##jord +escorts +voss +##valent +byte +chopped +hawke +illusions +workings +floats +##koto +##vac +kv +annapolis +madden +##onus +alvaro +noctuidae +##cum +##scopic +avenge +steamboat +forte +illustrates +erika +##trip +570 +dew +nationalities +bran +manifested +thirsty +diversified +muscled +reborn +##standing +arson +##lessness +##dran +##logram +##boys +##kushima +##vious +willoughby +##phobia +286 +alsace +dashboard +yuki +##chai +granville +myspace +publicized +tricked +##gang +adjective +##ater +relic +reorganisation +enthusiastically +indications +saxe +##lassified +consolidate +iec +padua +helplessly +ramps +renaming +regulars +pedestrians +accents +convicts +inaccurate +lowers +mana +##pati +barrie +bjp +outta +someplace +berwick +flanking +invoked +marrow +sparsely +excerpts +clothed +rei +##ginal +wept +##straße +##vish +alexa +excel +##ptive +membranes +aquitaine +creeks +cutler +sheppard +implementations +ns +##dur +fragrance +budge +concordia +magnesium +marcelo +##antes +gladly +vibrating +##rral +##ggles +montrose +##omba +lew +seamus +1630 +cocky +##ament +##uen +bjorn +##rrick +fielder +fluttering +##lase +methyl +kimberley +mcdowell +reductions +barbed +##jic +##tonic +aeronautical +condensed +distracting +##promising +huffed +##cala +##sle +claudius +invincible +missy +pious +balthazar +ci +##lang +butte +combo +orson +##dication +myriad +1707 +silenced +##fed +##rh +coco +netball +yourselves +##oza +clarify +heller +peg +durban +etudes +offender +roast +blackmail +curvature +##woods +vile +309 +illicit +suriname +##linson +overture +1685 +bubbling +gymnast +tucking +##mming +##ouin +maldives +##bala +gurney +##dda +##eased +##oides +backside +pinto +jars +racehorse +tending +##rdial +baronetcy +wiener +duly +##rke +barbarian +cupping +flawed +##thesis +bertha +pleistocene +puddle +swearing +##nob +##tically +fleeting +prostate +amulet +educating +##mined +##iti +##tler +75th +jens +respondents +analytics +cavaliers +papacy +raju +##iente +##ulum +##tip +funnel +271 +disneyland +##lley +sociologist +##iam +2500 +faulkner +louvre +menon +##dson +276 +##ower +afterlife +mannheim +peptide +referees +comedians +meaningless +##anger +##laise +fabrics +hurley +renal +sleeps +##bour +##icle +breakout +kristin +roadside +animator +clover +disdain +unsafe +redesign +##urity +firth +barnsley +portage +reset +narrows +268 +commandos +expansive +speechless +tubular +##lux +essendon +eyelashes +smashwords +##yad +##bang +##claim +craved +sprinted +chet +somme +astor +wrocław +orton +266 +bane +##erving +##uing +mischief +##amps +##sund +scaling +terre +##xious +impairment +offenses +undermine +moi +soy +contiguous +arcadia +inuit +seam +##tops +macbeth +rebelled +##icative +##iot +590 +elaborated +frs +uniformed +##dberg +259 +powerless +priscilla +stimulated +980 +qc +arboretum +frustrating +trieste +bullock +##nified +enriched +glistening +intern +##adia +locus +nouvelle +ollie +ike +lash +starboard +ee +tapestry +headlined +hove +rigged +##vite +pollock +##yme +thrive +clustered +cas +roi +gleamed +olympiad +##lino +pressured +regimes +##hosis +##lick +ripley +##ophone +kickoff +gallon +rockwell +##arable +crusader +glue +revolutions +scrambling +1714 +grover +##jure +englishman +aztec +263 +contemplating +coven +ipad +preach +triumphant +tufts +##esian +rotational +##phus +328 +falkland +##brates +strewn +clarissa +rejoin +environmentally +glint +banded +drenched +moat +albanians +johor +rr +maestro +malley +nouveau +shaded +taxonomy +v6 +adhere +bunk +airfields +##ritan +1741 +encompass +remington +tran +##erative +amelie +mazda +friar +morals +passions +##zai +breadth +vis +##hae +argus +burnham +caressing +insider +rudd +##imov +##mini +##rso +italianate +murderous +textual +wainwright +armada +bam +weave +timer +##taken +##nh +fra +##crest +ardent +salazar +taps +tunis +##ntino +allegro +gland +philanthropic +##chester +implication +##optera +esq +judas +noticeably +wynn +##dara +inched +indexed +crises +villiers +bandit +royalties +patterned +cupboard +interspersed +accessory +isla +kendrick +entourage +stitches +##esthesia +headwaters +##ior +interlude +distraught +draught +1727 +##basket +biased +sy +transient +triad +subgenus +adapting +kidd +shortstop +##umatic +dimly +spiked +mcleod +reprint +nellie +pretoria +windmill +##cek +singled +##mps +273 +reunite +##orous +747 +bankers +outlying +##omp +##ports +##tream +apologies +cosmetics +patsy +##deh +##ocks +##yson +bender +nantes +serene +##nad +lucha +mmm +323 +##cius +##gli +cmll +coinage +nestor +juarez +##rook +smeared +sprayed +twitching +sterile +irina +embodied +juveniles +enveloped +miscellaneous +cancers +dq +gulped +luisa +crested +swat +donegal +ref +##anov +##acker +hearst +mercantile +##lika +doorbell +ua +vicki +##alla +##som +bilbao +psychologists +stryker +sw +horsemen +turkmenistan +wits +##national +anson +mathew +screenings +##umb +rihanna +##agne +##nessy +aisles +##iani +##osphere +hines +kenton +saskatoon +tasha +truncated +##champ +##itan +mildred +advises +fredrik +interpreting +inhibitors +##athi +spectroscopy +##hab +##kong +karim +panda +##oia +##nail +##vc +conqueror +kgb +leukemia +##dity +arrivals +cheered +pisa +phosphorus +shielded +##riated +mammal +unitarian +urgently +chopin +sanitary +##mission +spicy +drugged +hinges +##tort +tipping +trier +impoverished +westchester +##caster +267 +epoch +nonstop +##gman +##khov +aromatic +centrally +cerro +##tively +##vio +billions +modulation +sedimentary +283 +facilitating +outrageous +goldstein +##eak +##kt +ld +maitland +penultimate +pollard +##dance +fleets +spaceship +vertebrae +##nig +alcoholism +als +recital +##bham +##ference +##omics +m2 +##bm +trois +##tropical +##в +commemorates +##meric +marge +##raction +1643 +670 +cosmetic +ravaged +##ige +catastrophe +eng +##shida +albrecht +arterial +bellamy +decor +harmon +##rde +bulbs +synchronized +vito +easiest +shetland +shielding +wnba +##glers +##ssar +##riam +brianna +cumbria +##aceous +##rard +cores +thayer +##nsk +brood +hilltop +luminous +carts +keynote +larkin +logos +##cta +##ا +##mund +##quay +lilith +tinted +277 +wrestle +mobilization +##uses +sequential +siam +bloomfield +takahashi +274 +##ieving +presenters +ringo +blazed +witty +##oven +##ignant +devastation +haydn +harmed +newt +therese +##peed +gershwin +molina +rabbis +sudanese +001 +innate +restarted +##sack +##fus +slices +wb +##shah +enroll +hypothetical +hysterical +1743 +fabio +indefinite +warped +##hg +exchanging +525 +unsuitable +##sboro +gallo +1603 +bret +cobalt +homemade +##hunter +mx +operatives +##dhar +terraces +durable +latch +pens +whorls +##ctuated +##eaux +billing +ligament +succumbed +##gly +regulators +spawn +##brick +##stead +filmfare +rochelle +##nzo +1725 +circumstance +saber +supplements +##nsky +##tson +crowe +wellesley +carrot +##9th +##movable +primate +drury +sincerely +topical +##mad +##rao +callahan +kyiv +smarter +tits +undo +##yeh +announcements +anthologies +barrio +nebula +##islaus +##shaft +##tyn +bodyguards +2021 +assassinate +barns +emmett +scully +##mah +##yd +##eland +##tino +##itarian +demoted +gorman +lashed +prized +adventist +writ +##gui +alla +invertebrates +##ausen +1641 +amman +1742 +align +healy +redistribution +##gf +##rize +insulation +##drop +adherents +hezbollah +vitro +ferns +yanking +269 +php +registering +uppsala +cheerleading +confines +mischievous +tully +##ross +49th +docked +roam +stipulated +pumpkin +##bry +prompt +##ezer +blindly +shuddering +craftsmen +frail +scented +katharine +scramble +shaggy +sponge +helix +zaragoza +279 +##52 +43rd +backlash +fontaine +seizures +posse +cowan +nonfiction +telenovela +wwii +hammered +undone +##gpur +encircled +irs +##ivation +artefacts +oneself +searing +smallpox +##belle +##osaurus +shandong +breached +upland +blushing +rankin +infinitely +psyche +tolerated +docking +evicted +##col +unmarked +##lving +gnome +lettering +litres +musique +##oint +benevolent +##jal +blackened +##anna +mccall +racers +tingle +##ocene +##orestation +introductions +radically +292 +##hiff +##باد +1610 +1739 +munchen +plead +##nka +condo +scissors +##sight +##tens +apprehension +##cey +##yin +hallmark +watering +formulas +sequels +##llas +aggravated +bae +commencing +##building +enfield +prohibits +marne +vedic +civilized +euclidean +jagger +beforehand +blasts +dumont +##arney +##nem +740 +conversions +hierarchical +rios +simulator +##dya +##lellan +hedges +oleg +thrusts +shadowed +darby +maximize +1744 +gregorian +##nded +##routed +sham +unspecified +##hog +emory +factual +##smo +##tp +fooled +##rger +ortega +wellness +marlon +##oton +##urance +casket +keating +ley +enclave +##ayan +char +influencing +jia +##chenko +412 +ammonia +erebidae +incompatible +violins +cornered +##arat +grooves +astronauts +columbian +rampant +fabrication +kyushu +mahmud +vanish +##dern +mesopotamia +##lete +ict +##rgen +caspian +kenji +pitted +##vered +999 +grimace +roanoke +tchaikovsky +twinned +##analysis +##awan +xinjiang +arias +clemson +kazakh +sizable +1662 +##khand +##vard +plunge +tatum +vittorio +##nden +cholera +##dana +##oper +bracing +indifference +projectile +superliga +##chee +realises +upgrading +299 +porte +retribution +##vies +nk +stil +##resses +ama +bureaucracy +blackberry +bosch +testosterone +collapses +greer +##pathic +ioc +fifties +malls +##erved +bao +baskets +adolescents +siegfried +##osity +##tosis +mantra +detecting +existent +fledgling +##cchi +dissatisfied +gan +telecommunication +mingled +sobbed +6000 +controversies +outdated +taxis +##raus +fright +slams +##lham +##fect +##tten +detectors +fetal +tanned +##uw +fray +goth +olympian +skipping +mandates +scratches +sheng +unspoken +hyundai +tracey +hotspur +restrictive +##buch +americana +mundo +##bari +burroughs +diva +vulcan +##6th +distinctions +thumping +##ngen +mikey +sheds +fide +rescues +springsteen +vested +valuation +##ece +##ely +pinnacle +rake +sylvie +##edo +almond +quivering +##irus +alteration +faltered +##wad +51st +hydra +ticked +##kato +recommends +##dicated +antigua +arjun +stagecoach +wilfred +trickle +pronouns +##pon +aryan +nighttime +##anian +gall +pea +stitch +##hei +leung +milos +##dini +eritrea +nexus +starved +snowfall +kant +parasitic +cot +discus +hana +strikers +appleton +kitchens +##erina +##partisan +##itha +##vius +disclose +metis +##channel +1701 +tesla +##vera +fitch +1735 +blooded +##tila +decimal +##tang +##bai +cyclones +eun +bottled +peas +pensacola +basha +bolivian +crabs +boil +lanterns +partridge +roofed +1645 +necks +##phila +opined +patting +##kla +##lland +chuckles +volta +whereupon +##nche +devout +euroleague +suicidal +##dee +inherently +involuntary +knitting +nasser +##hide +puppets +colourful +courageous +southend +stills +miraculous +hodgson +richer +rochdale +ethernet +greta +uniting +prism +umm +##haya +##itical +##utation +deterioration +pointe +prowess +##ropriation +lids +scranton +billings +subcontinent +##koff +##scope +brute +kellogg +psalms +degraded +##vez +stanisław +##ructured +ferreira +pun +astonishing +gunnar +##yat +arya +prc +gottfried +##tight +excursion +##ographer +dina +##quil +##nare +huffington +illustrious +wilbur +gundam +verandah +##zard +naacp +##odle +constructive +fjord +kade +##naud +generosity +thrilling +baseline +cayman +frankish +plastics +accommodations +zoological +##fting +cedric +qb +motorized +##dome +##otted +squealed +tackled +canucks +budgets +situ +asthma +dail +gabled +grasslands +whimpered +writhing +judgments +##65 +minnie +pv +##carbon +bananas +grille +domes +monique +odin +maguire +markham +tierney +##estra +##chua +libel +poke +speedy +atrium +laval +notwithstanding +##edly +fai +kala +##sur +robb +##sma +listings +luz +supplementary +tianjin +##acing +enzo +jd +ric +scanner +croats +transcribed +##49 +arden +cv +##hair +##raphy +##lver +##uy +357 +seventies +staggering +alam +horticultural +hs +regression +timbers +blasting +##ounded +montagu +manipulating +##cit +catalytic +1550 +troopers +##meo +condemnation +fitzpatrick +##oire +##roved +inexperienced +1670 +castes +##lative +outing +314 +dubois +flicking +quarrel +ste +learners +1625 +iq +whistled +##class +282 +classify +tariffs +temperament +355 +folly +liszt +##yles +immersed +jordanian +ceasefire +apparel +extras +maru +fished +##bio +harta +stockport +assortment +craftsman +paralysis +transmitters +##cola +blindness +##wk +fatally +proficiency +solemnly +##orno +repairing +amore +groceries +ultraviolet +##chase +schoolhouse +##tua +resurgence +nailed +##otype +##× +ruse +saliva +diagrams +##tructing +albans +rann +thirties +1b +antennas +hilarious +cougars +paddington +stats +##eger +breakaway +ipod +reza +authorship +prohibiting +scoffed +##etz +##ttle +conscription +defected +trondheim +##fires +ivanov +keenan +##adan +##ciful +##fb +##slow +locating +##ials +##tford +cadiz +basalt +blankly +interned +rags +rattling +##tick +carpathian +reassured +sync +bum +guildford +iss +staunch +##onga +astronomers +sera +sofie +emergencies +susquehanna +##heard +duc +mastery +vh1 +williamsburg +bayer +buckled +craving +##khan +##rdes +bloomington +##write +alton +barbecue +##bians +justine +##hri +##ndt +delightful +smartphone +newtown +photon +retrieval +peugeot +hissing +##monium +##orough +flavors +lighted +relaunched +tainted +##games +##lysis +anarchy +microscopic +hopping +adept +evade +evie +##beau +inhibit +sinn +adjustable +hurst +intuition +wilton +cisco +44th +lawful +lowlands +stockings +thierry +##dalen +##hila +##nai +fates +prank +tb +maison +lobbied +provocative +1724 +4a +utopia +##qual +carbonate +gujarati +purcell +##rford +curtiss +##mei +overgrown +arenas +mediation +swallows +##rnik +respectful +turnbull +##hedron +##hope +alyssa +ozone +##ʻi +ami +gestapo +johansson +snooker +canteen +cuff +declines +empathy +stigma +##ags +##iner +##raine +taxpayers +gui +volga +##wright +##copic +lifespan +overcame +tattooed +enactment +giggles +##ador +##camp +barrington +bribe +obligatory +orbiting +peng +##enas +elusive +sucker +##vating +cong +hardship +empowered +anticipating +estrada +cryptic +greasy +detainees +planck +sudbury +plaid +dod +marriott +kayla +##ears +##vb +##zd +mortally +##hein +cognition +radha +319 +liechtenstein +meade +richly +argyle +harpsichord +liberalism +trumpets +lauded +tyrant +salsa +tiled +lear +promoters +reused +slicing +trident +##chuk +##gami +##lka +cantor +checkpoint +##points +gaul +leger +mammalian +##tov +##aar +##schaft +doha +frenchman +nirvana +##vino +delgado +headlining +##eron +##iography +jug +tko +1649 +naga +intersections +##jia +benfica +nawab +##suka +ashford +gulp +##deck +##vill +##rug +brentford +frazier +pleasures +dunne +potsdam +shenzhen +dentistry +##tec +flanagan +##dorff +##hear +chorale +dinah +prem +quezon +##rogated +relinquished +sutra +terri +##pani +flaps +##rissa +poly +##rnet +homme +aback +##eki +linger +womb +##kson +##lewood +doorstep +orthodoxy +threaded +westfield +##rval +dioceses +fridays +subsided +##gata +loyalists +##biotic +##ettes +letterman +lunatic +prelate +tenderly +invariably +souza +thug +winslow +##otide +furlongs +gogh +jeopardy +##runa +pegasus +##umble +humiliated +standalone +tagged +##roller +freshmen +klan +##bright +attaining +initiating +transatlantic +logged +viz +##uance +1723 +combatants +intervening +stephane +chieftain +despised +grazed +317 +cdc +galveston +godzilla +macro +simulate +##planes +parades +##esses +960 +##ductive +##unes +equator +overdose +##cans +##hosh +##lifting +joshi +epstein +sonora +treacherous +aquatics +manchu +responsive +##sation +supervisory +##christ +##llins +##ibar +##balance +##uso +kimball +karlsruhe +mab +##emy +ignores +phonetic +reuters +spaghetti +820 +almighty +danzig +rumbling +tombstone +designations +lured +outset +##felt +supermarkets +##wt +grupo +kei +kraft +susanna +##blood +comprehension +genealogy +##aghan +##verted +redding +##ythe +1722 +bowing +##pore +##roi +lest +sharpened +fulbright +valkyrie +sikhs +##unds +swans +bouquet +merritt +##tage +##venting +commuted +redhead +clerks +leasing +cesare +dea +hazy +##vances +fledged +greenfield +servicemen +##gical +armando +blackout +dt +sagged +downloadable +intra +potion +pods +##4th +##mism +xp +attendants +gambia +stale +##ntine +plump +asteroids +rediscovered +buds +flea +hive +##neas +1737 +classifications +debuts +##eles +olympus +scala +##eurs +##gno +##mute +hummed +sigismund +visuals +wiggled +await +pilasters +clench +sulfate +##ances +bellevue +enigma +trainee +snort +##sw +clouded +denim +##rank +##rder +churning +hartman +lodges +riches +sima +##missible +accountable +socrates +regulates +mueller +##cr +1702 +avoids +solids +himalayas +nutrient +pup +##jevic +squat +fades +nec +##lates +##pina +##rona +##ου +privateer +tequila +##gative +##mpton +apt +hornet +immortals +##dou +asturias +cleansing +dario +##rries +##anta +etymology +servicing +zhejiang +##venor +##nx +horned +erasmus +rayon +relocating +£10 +##bags +escalated +promenade +stubble +2010s +artisans +axial +liquids +mora +sho +yoo +##tsky +bundles +oldies +##nally +notification +bastion +##ths +sparkle +##lved +1728 +leash +pathogen +highs +##hmi +immature +880 +gonzaga +ignatius +mansions +monterrey +sweets +bryson +##loe +polled +regatta +brightest +pei +rosy +squid +hatfield +payroll +addict +meath +cornerback +heaviest +lodging +##mage +capcom +rippled +##sily +barnet +mayhem +ymca +snuggled +rousseau +##cute +blanchard +284 +fragmented +leighton +chromosomes +risking +##md +##strel +##utter +corinne +coyotes +cynical +hiroshi +yeomanry +##ractive +ebook +grading +mandela +plume +agustin +magdalene +##rkin +bea +femme +trafford +##coll +##lun +##tance +52nd +fourier +upton +##mental +camilla +gust +iihf +islamabad +longevity +##kala +feldman +netting +##rization +endeavour +foraging +mfa +orr +##open +greyish +contradiction +graz +##ruff +handicapped +marlene +tweed +oaxaca +spp +campos +miocene +pri +configured +cooks +pluto +cozy +pornographic +##entes +70th +fairness +glided +jonny +lynne +rounding +sired +##emon +##nist +remade +uncover +##mack +complied +lei +newsweek +##jured +##parts +##enting +##pg +293 +finer +guerrillas +athenian +deng +disused +stepmother +accuse +gingerly +seduction +521 +confronting +##walker +##going +gora +nostalgia +sabres +virginity +wrenched +##minated +syndication +wielding +eyre +##56 +##gnon +##igny +behaved +taxpayer +sweeps +##growth +childless +gallant +##ywood +amplified +geraldine +scrape +##ffi +babylonian +fresco +##rdan +##kney +##position +1718 +restricting +tack +fukuoka +osborn +selector +partnering +##dlow +318 +gnu +kia +tak +whitley +gables +##54 +##mania +mri +softness +immersion +##bots +##evsky +1713 +chilling +insignificant +pcs +##uis +elites +lina +purported +supplemental +teaming +##americana +##dding +##inton +proficient +rouen +##nage +##rret +niccolo +selects +##bread +fluffy +1621 +gruff +knotted +mukherjee +polgara +thrash +nicholls +secluded +smoothing +thru +corsica +loaf +whitaker +inquiries +##rrier +##kam +indochina +289 +marlins +myles +peking +##tea +extracts +pastry +superhuman +connacht +vogel +##ditional +##het +##udged +##lash +gloss +quarries +refit +teaser +##alic +##gaon +20s +materialized +sling +camped +pickering +tung +tracker +pursuant +##cide +cranes +soc +##cini +##typical +##viere +anhalt +overboard +workout +chores +fares +orphaned +stains +##logie +fenton +surpassing +joyah +triggers +##itte +grandmaster +##lass +##lists +clapping +fraudulent +ledger +nagasaki +##cor +##nosis +##tsa +eucalyptus +tun +##icio +##rney +##tara +dax +heroism +ina +wrexham +onboard +unsigned +##dates +moshe +galley +winnie +droplets +exiles +praises +watered +noodles +##aia +fein +adi +leland +multicultural +stink +bingo +comets +erskine +modernized +canned +constraint +domestically +chemotherapy +featherweight +stifled +##mum +darkly +irresistible +refreshing +hasty +isolate +##oys +kitchener +planners +##wehr +cages +yarn +implant +toulon +elects +childbirth +yue +##lind +##lone +cn +rightful +sportsman +junctions +remodeled +specifies +##rgh +291 +##oons +complimented +##urgent +lister +ot +##logic +bequeathed +cheekbones +fontana +gabby +##dial +amadeus +corrugated +maverick +resented +triangles +##hered +##usly +nazareth +tyrol +1675 +assent +poorer +sectional +aegean +##cous +296 +nylon +ghanaian +##egorical +##weig +cushions +forbid +fusiliers +obstruction +somerville +##scia +dime +earrings +elliptical +leyte +oder +polymers +timmy +atm +midtown +piloted +settles +continual +externally +mayfield +##uh +enrichment +henson +keane +persians +1733 +benji +braden +pep +324 +##efe +contenders +pepsi +valet +##isches +298 +##asse +##earing +goofy +stroll +##amen +authoritarian +occurrences +adversary +ahmedabad +tangent +toppled +dorchester +1672 +modernism +marxism +islamist +charlemagne +exponential +racks +unicode +brunette +mbc +pic +skirmish +##bund +##lad +##powered +##yst +hoisted +messina +shatter +##ctum +jedi +vantage +##music +##neil +clemens +mahmoud +corrupted +authentication +lowry +nils +##washed +omnibus +wounding +jillian +##itors +##opped +serialized +narcotics +handheld +##arm +##plicity +intersecting +stimulating +##onis +crate +fellowships +hemingway +casinos +climatic +fordham +copeland +drip +beatty +leaflets +robber +brothel +madeira +##hedral +sphinx +ultrasound +##vana +valor +forbade +leonid +villas +##aldo +duane +marquez +##cytes +disadvantaged +forearms +kawasaki +reacts +consular +lax +uncles +uphold +##hopper +concepcion +dorsey +lass +##izan +arching +passageway +1708 +researches +tia +internationals +##graphs +##opers +distinguishes +javanese +divert +##uven +plotted +##listic +##rwin +##erik +##tify +affirmative +signifies +validation +##bson +kari +felicity +georgina +zulu +##eros +##rained +##rath +overcoming +##dot +argyll +##rbin +1734 +chiba +ratification +windy +earls +parapet +##marks +hunan +pristine +astrid +punta +##gart +brodie +##kota +##oder +malaga +minerva +rouse +##phonic +bellowed +pagoda +portals +reclamation +##gur +##odies +##⁄₄ +parentheses +quoting +allergic +palette +showcases +benefactor +heartland +nonlinear +##tness +bladed +cheerfully +scans +##ety +##hone +1666 +girlfriends +pedersen +hiram +sous +##liche +##nator +1683 +##nery +##orio +##umen +bobo +primaries +smiley +##cb +unearthed +uniformly +fis +metadata +1635 +ind +##oted +recoil +##titles +##tura +##ια +406 +hilbert +jamestown +mcmillan +tulane +seychelles +##frid +antics +coli +fated +stucco +##grants +1654 +bulky +accolades +arrays +caledonian +carnage +optimism +puebla +##tative +##cave +enforcing +rotherham +seo +dunlop +aeronautics +chimed +incline +zoning +archduke +hellenistic +##oses +##sions +candi +thong +##ople +magnate +rustic +##rsk +projective +slant +##offs +danes +hollis +vocalists +##ammed +congenital +contend +gesellschaft +##ocating +##pressive +douglass +quieter +##cm +##kshi +howled +salim +spontaneously +townsville +buena +southport +##bold +kato +1638 +faerie +stiffly +##vus +##rled +297 +flawless +realising +taboo +##7th +bytes +straightening +356 +jena +##hid +##rmin +cartwright +berber +bertram +soloists +411 +noses +417 +coping +fission +hardin +inca +##cen +1717 +mobilized +vhf +##raf +biscuits +curate +##85 +##anial +331 +gaunt +neighbourhoods +1540 +##abas +blanca +bypassed +sockets +behold +coincidentally +##bane +nara +shave +splinter +terrific +##arion +##erian +commonplace +juris +redwood +waistband +boxed +caitlin +fingerprints +jennie +naturalized +##ired +balfour +craters +jody +bungalow +hugely +quilt +glitter +pigeons +undertaker +bulging +constrained +goo +##sil +##akh +assimilation +reworked +##person +persuasion +##pants +felicia +##cliff +##ulent +1732 +explodes +##dun +##inium +##zic +lyman +vulture +hog +overlook +begs +northwards +ow +spoil +##urer +fatima +favorably +accumulate +sargent +sorority +corresponded +dispersal +kochi +toned +##imi +##lita +internacional +newfound +##agger +##lynn +##rigue +booths +peanuts +##eborg +medicare +muriel +nur +##uram +crates +millennia +pajamas +worsened +##breakers +jimi +vanuatu +yawned +##udeau +carousel +##hony +hurdle +##ccus +##mounted +##pod +rv +##eche +airship +ambiguity +compulsion +recapture +##claiming +arthritis +##osomal +1667 +asserting +ngc +sniffing +dade +discontent +glendale +ported +##amina +defamation +rammed +##scent +fling +livingstone +##fleet +875 +##ppy +apocalyptic +comrade +lcd +##lowe +cessna +eine +persecuted +subsistence +demi +hoop +reliefs +710 +coptic +progressing +stemmed +perpetrators +1665 +priestess +##nio +dobson +ebony +rooster +itf +tortricidae +##bbon +##jian +cleanup +##jean +##øy +1721 +eighties +taxonomic +holiness +##hearted +##spar +antilles +showcasing +stabilized +##nb +gia +mascara +michelangelo +dawned +##uria +##vinsky +extinguished +fitz +grotesque +£100 +##fera +##loid +##mous +barges +neue +throbbed +cipher +johnnie +##a1 +##mpt +outburst +##swick +spearheaded +administrations +c1 +heartbreak +pixels +pleasantly +##enay +lombardy +plush +##nsed +bobbie +##hly +reapers +tremor +xiang +minogue +substantive +hitch +barak +##wyl +kwan +##encia +910 +obscene +elegance +indus +surfer +bribery +conserve +##hyllum +##masters +horatio +##fat +apes +rebound +psychotic +##pour +iteration +##mium +##vani +botanic +horribly +antiques +dispose +paxton +##hli +##wg +timeless +1704 +disregard +engraver +hounds +##bau +##version +looted +uno +facilitates +groans +masjid +rutland +antibody +disqualification +decatur +footballers +quake +slacks +48th +rein +scribe +stabilize +commits +exemplary +tho +##hort +##chison +pantry +traversed +##hiti +disrepair +identifiable +vibrated +baccalaureate +##nnis +csa +interviewing +##iensis +##raße +greaves +wealthiest +343 +classed +jogged +£5 +##58 +##atal +illuminating +knicks +respecting +##uno +scrubbed +##iji +##dles +kruger +moods +growls +raider +silvia +chefs +kam +vr +cree +percival +##terol +gunter +counterattack +defiant +henan +ze +##rasia +##riety +equivalence +submissions +##fra +##thor +bautista +mechanically +##heater +cornice +herbal +templar +##mering +outputs +ruining +ligand +renumbered +extravagant +mika +blockbuster +eta +insurrection +##ilia +darkening +ferocious +pianos +strife +kinship +##aer +melee +##anor +##iste +##may +##oue +decidedly +weep +##jad +##missive +##ppel +354 +puget +unease +##gnant +1629 +hammering +kassel +ob +wessex +##lga +bromwich +egan +paranoia +utilization +##atable +##idad +contradictory +provoke +##ols +##ouring +##tangled +knesset +##very +##lette +plumbing +##sden +##¹ +greensboro +occult +sniff +338 +zev +beaming +gamer +haggard +mahal +##olt +##pins +mendes +utmost +briefing +gunnery +##gut +##pher +##zh +##rok +1679 +khalifa +sonya +##boot +principals +urbana +wiring +##liffe +##minating +##rrado +dahl +nyu +skepticism +np +townspeople +ithaca +lobster +somethin +##fur +##arina +##−1 +freighter +zimmerman +biceps +contractual +##herton +amend +hurrying +subconscious +##anal +336 +meng +clermont +spawning +##eia +##lub +dignitaries +impetus +snacks +spotting +twigs +##bilis +##cz +##ouk +libertadores +nic +skylar +##aina +##firm +gustave +asean +##anum +dieter +legislatures +flirt +bromley +trolls +umar +##bbies +##tyle +blah +parc +bridgeport +crank +negligence +##nction +46th +constantin +molded +bandages +seriousness +00pm +siegel +carpets +compartments +upbeat +statehood +##dner +##edging +marko +730 +platt +##hane +paving +##iy +1738 +abbess +impatience +limousine +nbl +##talk +441 +lucille +mojo +nightfall +robbers +##nais +karel +brisk +calves +replicate +ascribed +telescopes +##olf +intimidated +##reen +ballast +specialization +##sit +aerodynamic +caliphate +rainer +visionary +##arded +epsilon +##aday +##onte +aggregation +auditory +boosted +reunification +kathmandu +loco +robyn +402 +acknowledges +appointing +humanoid +newell +redeveloped +restraints +##tained +barbarians +chopper +1609 +italiana +##lez +##lho +investigates +wrestlemania +##anies +##bib +690 +##falls +creaked +dragoons +gravely +minions +stupidity +volley +##harat +##week +musik +##eries +##uously +fungal +massimo +semantics +malvern +##ahl +##pee +discourage +embryo +imperialism +1910s +profoundly +##ddled +jiangsu +sparkled +stat +##holz +sweatshirt +tobin +##iction +sneered +##cheon +##oit +brit +causal +smyth +##neuve +diffuse +perrin +silvio +##ipes +##recht +detonated +iqbal +selma +##nism +##zumi +roasted +##riders +tay +##ados +##mament +##mut +##rud +840 +completes +nipples +cfa +flavour +hirsch +##laus +calderon +sneakers +moravian +##ksha +1622 +rq +294 +##imeters +bodo +##isance +##pre +##ronia +anatomical +excerpt +##lke +dh +kunst +##tablished +##scoe +biomass +panted +unharmed +gael +housemates +montpellier +##59 +coa +rodents +tonic +hickory +singleton +##taro +451 +1719 +aldo +breaststroke +dempsey +och +rocco +##cuit +merton +dissemination +midsummer +serials +##idi +haji +polynomials +##rdon +gs +enoch +prematurely +shutter +taunton +£3 +##grating +##inates +archangel +harassed +##asco +326 +archway +dazzling +##ecin +1736 +sumo +wat +##kovich +1086 +honneur +##ently +##nostic +##ttal +##idon +1605 +403 +1716 +blogger +rents +##gnan +hires +##ikh +##dant +howie +##rons +handler +retracted +shocks +1632 +arun +duluth +kepler +trumpeter +##lary +peeking +seasoned +trooper +##mara +laszlo +##iciencies +##rti +heterosexual +##inatory +##ssion +indira +jogging +##inga +##lism +beit +dissatisfaction +malice +##ately +nedra +peeling +##rgeon +47th +stadiums +475 +vertigo +##ains +iced +restroom +##plify +##tub +illustrating +pear +##chner +##sibility +inorganic +rappers +receipts +watery +##kura +lucinda +##oulos +reintroduced +##8th +##tched +gracefully +saxons +nutritional +wastewater +rained +favourites +bedrock +fisted +hallways +likeness +upscale +##lateral +1580 +blinds +prequel +##pps +##tama +deter +humiliating +restraining +tn +vents +1659 +laundering +recess +rosary +tractors +coulter +federer +##ifiers +##plin +persistence +##quitable +geschichte +pendulum +quakers +##beam +bassett +pictorial +buffet +koln +##sitor +drills +reciprocal +shooters +##57 +##cton +##tees +converge +pip +dmitri +donnelly +yamamoto +aqua +azores +demographics +hypnotic +spitfire +suspend +wryly +roderick +##rran +sebastien +##asurable +mavericks +##fles +##200 +himalayan +prodigy +##iance +transvaal +demonstrators +handcuffs +dodged +mcnamara +sublime +1726 +crazed +##efined +##till +ivo +pondered +reconciled +shrill +sava +##duk +bal +cad +heresy +jaipur +goran +##nished +341 +lux +shelly +whitehall +##hre +israelis +peacekeeping +##wled +1703 +demetrius +ousted +##arians +##zos +beale +anwar +backstroke +raged +shrinking +cremated +##yck +benign +towing +wadi +darmstadt +landfill +parana +soothe +colleen +sidewalks +mayfair +tumble +hepatitis +ferrer +superstructure +##gingly +##urse +##wee +anthropological +translators +##mies +closeness +hooves +##pw +mondays +##roll +##vita +landscaping +##urized +purification +sock +thorns +thwarted +jalan +tiberius +##taka +saline +##rito +confidently +khyber +sculptors +##ij +brahms +hammersmith +inspectors +battista +fivb +fragmentation +hackney +##uls +arresting +exercising +antoinette +bedfordshire +##zily +dyed +##hema +1656 +racetrack +variability +##tique +1655 +austrians +deteriorating +madman +theorists +aix +lehman +weathered +1731 +decreed +eruptions +1729 +flaw +quinlan +sorbonne +flutes +nunez +1711 +adored +downwards +fable +rasped +1712 +moritz +mouthful +renegade +shivers +stunts +dysfunction +restrain +translit +327 +pancakes +##avio +##cision +##tray +351 +vial +##lden +bain +##maid +##oxide +chihuahua +malacca +vimes +##rba +##rnier +1664 +donnie +plaques +##ually +337 +bangs +floppy +huntsville +loretta +nikolay +##otte +eater +handgun +ubiquitous +##hett +eras +zodiac +1634 +##omorphic +1820s +##zog +cochran +##bula +##lithic +warring +##rada +dalai +excused +blazers +mcconnell +reeling +bot +este +##abi +geese +hoax +taxon +##bla +guitarists +##icon +condemning +hunts +inversion +moffat +taekwondo +##lvis +1624 +stammered +##rest +##rzy +sousa +fundraiser +marylebone +navigable +uptown +cabbage +daniela +salman +shitty +whimper +##kian +##utive +programmers +protections +rm +##rmi +##rued +forceful +##enes +fuss +##tao +##wash +brat +oppressive +reykjavik +spartak +ticking +##inkles +##kiewicz +adolph +horst +maui +protege +straighten +cpc +landau +concourse +clements +resultant +##ando +imaginative +joo +reactivated +##rem +##ffled +##uising +consultative +##guide +flop +kaitlyn +mergers +parenting +somber +##vron +supervise +vidhan +##imum +courtship +exemplified +harmonies +medallist +refining +##rrow +##ка +amara +##hum +780 +goalscorer +sited +overshadowed +rohan +displeasure +secretive +multiplied +osman +##orth +engravings +padre +##kali +##veda +miniatures +mis +##yala +clap +pali +rook +##cana +1692 +57th +antennae +astro +oskar +1628 +bulldog +crotch +hackett +yucatan +##sure +amplifiers +brno +ferrara +migrating +##gree +thanking +turing +##eza +mccann +ting +andersson +onslaught +gaines +ganga +incense +standardization +##mation +sentai +scuba +stuffing +turquoise +waivers +alloys +##vitt +regaining +vaults +##clops +##gizing +digger +furry +memorabilia +probing +##iad +payton +rec +deutschland +filippo +opaque +seamen +zenith +afrikaans +##filtration +disciplined +inspirational +##merie +banco +confuse +grafton +tod +##dgets +championed +simi +anomaly +biplane +##ceptive +electrode +##para +1697 +cleavage +crossbow +swirl +informant +##lars +##osta +afi +bonfire +spec +##oux +lakeside +slump +##culus +##lais +##qvist +##rrigan +1016 +facades +borg +inwardly +cervical +xl +pointedly +050 +stabilization +##odon +chests +1699 +hacked +ctv +orthogonal +suzy +##lastic +gaulle +jacobite +rearview +##cam +##erted +ashby +##drik +##igate +##mise +##zbek +affectionately +canine +disperse +latham +##istles +##ivar +spielberg +##orin +##idium +ezekiel +cid +##sg +durga +middletown +##cina +customized +frontiers +harden +##etano +##zzy +1604 +bolsheviks +##66 +coloration +yoko +##bedo +briefs +slabs +debra +liquidation +plumage +##oin +blossoms +dementia +subsidy +1611 +proctor +relational +jerseys +parochial +ter +##ici +esa +peshawar +cavalier +loren +cpi +idiots +shamrock +1646 +dutton +malabar +mustache +##endez +##ocytes +referencing +terminates +marche +yarmouth +##sop +acton +mated +seton +subtly +baptised +beige +extremes +jolted +kristina +telecast +##actic +safeguard +waldo +##baldi +##bular +endeavors +sloppy +subterranean +##ensburg +##itung +delicately +pigment +tq +##scu +1626 +##ound +collisions +coveted +herds +##personal +##meister +##nberger +chopra +##ricting +abnormalities +defective +galician +lucie +##dilly +alligator +likened +##genase +burundi +clears +complexion +derelict +deafening +diablo +fingered +champaign +dogg +enlist +isotope +labeling +mrna +##erre +brilliance +marvelous +##ayo +1652 +crawley +ether +footed +dwellers +deserts +hamish +rubs +warlock +skimmed +##lizer +870 +buick +embark +heraldic +irregularities +##ajan +kiara +##kulam +##ieg +antigen +kowalski +##lge +oakley +visitation +##mbit +vt +##suit +1570 +murderers +##miento +##rites +chimneys +##sling +condemn +custer +exchequer +havre +##ghi +fluctuations +##rations +dfb +hendricks +vaccines +##tarian +nietzsche +biking +juicy +##duced +brooding +scrolling +selangor +##ragan +352 +annum +boomed +seminole +sugarcane +##dna +departmental +dismissing +innsbruck +arteries +ashok +batavia +daze +kun +overtook +##rga +##tlan +beheaded +gaddafi +holm +electronically +faulty +galilee +fractures +kobayashi +##lized +gunmen +magma +aramaic +mala +eastenders +inference +messengers +bf +##qu +407 +bathrooms +##vere +1658 +flashbacks +ideally +misunderstood +##jali +##weather +mendez +##grounds +505 +uncanny +##iii +1709 +friendships +##nbc +sacrament +accommodated +reiterated +logistical +pebbles +thumped +##escence +administering +decrees +drafts +##flight +##cased +##tula +futuristic +picket +intimidation +winthrop +##fahan +interfered +339 +afar +francoise +morally +uta +cochin +croft +dwarfs +##bruck +##dents +##nami +biker +##hner +##meral +nano +##isen +##ometric +##pres +##ан +brightened +meek +parcels +securely +gunners +##jhl +##zko +agile +hysteria +##lten +##rcus +bukit +champs +chevy +cuckoo +leith +sadler +theologians +welded +##section +1663 +jj +plurality +xander +##rooms +##formed +shredded +temps +intimately +pau +tormented +##lok +##stellar +1618 +charred +ems +essen +##mmel +alarms +spraying +ascot +blooms +twinkle +##abia +##apes +internment +obsidian +##chaft +snoop +##dav +##ooping +malibu +##tension +quiver +##itia +hays +mcintosh +travers +walsall +##ffie +1623 +beverley +schwarz +plunging +structurally +m3 +rosenthal +vikram +##tsk +770 +ghz +##onda +##tiv +chalmers +groningen +pew +reckon +unicef +##rvis +55th +##gni +1651 +sulawesi +avila +cai +metaphysical +screwing +turbulence +##mberg +augusto +samba +56th +baffled +momentary +toxin +##urian +##wani +aachen +condoms +dali +steppe +##3d +##app +##oed +##year +adolescence +dauphin +electrically +inaccessible +microscopy +nikita +##ega +atv +##cel +##enter +##oles +##oteric +##ы +accountants +punishments +wrongly +bribes +adventurous +clinch +flinders +southland +##hem +##kata +gough +##ciency +lads +soared +##ה +undergoes +deformation +outlawed +rubbish +##arus +##mussen +##nidae +##rzburg +arcs +##ingdon +##tituted +1695 +wheelbase +wheeling +bombardier +campground +zebra +##lices +##oj +##bain +lullaby +##ecure +donetsk +wylie +grenada +##arding +##ης +squinting +eireann +opposes +##andra +maximal +runes +##broken +##cuting +##iface +##ror +##rosis +additive +britney +adultery +triggering +##drome +detrimental +aarhus +containment +jc +swapped +vichy +##ioms +madly +##oric +##rag +brant +##ckey +##trix +1560 +1612 +broughton +rustling +##stems +##uder +asbestos +mentoring +##nivorous +finley +leaps +##isan +apical +pry +slits +substitutes +##dict +intuitive +fantasia +insistent +unreasonable +##igen +##vna +domed +hannover +margot +ponder +##zziness +impromptu +jian +lc +rampage +stemming +##eft +andrey +gerais +whichever +amnesia +appropriated +anzac +clicks +modifying +ultimatum +cambrian +maids +verve +yellowstone +##mbs +conservatoire +##scribe +adherence +dinners +spectra +imperfect +mysteriously +sidekick +tatar +tuba +##aks +##ifolia +distrust +##athan +##zle +c2 +ronin +zac +##pse +celaena +instrumentalist +scents +skopje +##mbling +comical +compensated +vidal +condor +intersect +jingle +wavelengths +##urrent +mcqueen +##izzly +carp +weasel +422 +kanye +militias +postdoctoral +eugen +gunslinger +##ɛ +faux +hospice +##for +appalled +derivation +dwarves +##elis +dilapidated +##folk +astoria +philology +##lwyn +##otho +##saka +inducing +philanthropy +##bf +##itative +geek +markedly +sql +##yce +bessie +indices +rn +##flict +495 +frowns +resolving +weightlifting +tugs +cleric +contentious +1653 +mania +rms +##miya +##reate +##ruck +##tucket +bien +eels +marek +##ayton +##cence +discreet +unofficially +##ife +leaks +##bber +1705 +332 +dung +compressor +hillsborough +pandit +shillings +distal +##skin +381 +##tat +##you +nosed +##nir +mangrove +undeveloped +##idia +textures +##inho +##500 +##rise +ae +irritating +nay +amazingly +bancroft +apologetic +compassionate +kata +symphonies +##lovic +airspace +##lch +930 +gifford +precautions +fulfillment +sevilla +vulgar +martinique +##urities +looting +piccolo +tidy +##dermott +quadrant +armchair +incomes +mathematicians +stampede +nilsson +##inking +##scan +foo +quarterfinal +##ostal +shang +shouldered +squirrels +##owe +344 +vinegar +##bner +##rchy +##systems +delaying +##trics +ars +dwyer +rhapsody +sponsoring +##gration +bipolar +cinder +starters +##olio +##urst +421 +signage +##nty +aground +figurative +mons +acquaintances +duets +erroneously +soyuz +elliptic +recreated +##cultural +##quette +##ssed +##tma +##zcz +moderator +scares +##itaire +##stones +##udence +juniper +sighting +##just +##nsen +britten +calabria +ry +bop +cramer +forsyth +stillness +##л +airmen +gathers +unfit +##umber +##upt +taunting +##rip +seeker +streamlined +##bution +holster +schumann +tread +vox +##gano +##onzo +strive +dil +reforming +covent +newbury +predicting +##orro +decorate +tre +##puted +andover +ie +asahi +dept +dunkirk +gills +##tori +buren +huskies +##stis +##stov +abstracts +bets +loosen +##opa +1682 +yearning +##glio +##sir +berman +effortlessly +enamel +napoli +persist +##peration +##uez +attache +elisa +b1 +invitations +##kic +accelerating +reindeer +boardwalk +clutches +nelly +polka +starbucks +##kei +adamant +huey +lough +unbroken +adventurer +embroidery +inspecting +stanza +##ducted +naia +taluka +##pone +##roids +chases +deprivation +florian +##jing +##ppet +earthly +##lib +##ssee +colossal +foreigner +vet +freaks +patrice +rosewood +triassic +upstate +##pkins +dominates +ata +chants +ks +vo +##400 +##bley +##raya +##rmed +555 +agra +infiltrate +##ailing +##ilation +##tzer +##uppe +##werk +binoculars +enthusiast +fujian +squeak +##avs +abolitionist +almeida +boredom +hampstead +marsden +rations +##ands +inflated +334 +bonuses +rosalie +patna +##rco +329 +detachments +penitentiary +54th +flourishing +woolf +##dion +##etched +papyrus +##lster +##nsor +##toy +bobbed +dismounted +endelle +inhuman +motorola +tbs +wince +wreath +##ticus +hideout +inspections +sanjay +disgrace +infused +pudding +stalks +##urbed +arsenic +leases +##hyl +##rrard +collarbone +##waite +##wil +dowry +##bant +##edance +genealogical +nitrate +salamanca +scandals +thyroid +necessitated +##! +##" +### +##$ +##% +##& +##' +##( +##) +##* +##+ +##, +##- +##. +##/ +##: +##; +##< +##= +##> +##? +##@ +##[ +##\ +##] +##^ +##_ +##` +##{ +##| +##} +##~ +##¡ +##¢ +##£ +##¤ +##¥ +##¦ +##§ +##¨ +##© +##ª +##« +##¬ +##® +##± +##´ +##µ +##¶ +##· +##º +##» +##¼ +##¾ +##¿ +##æ +##ð +##÷ +##þ +##đ +##ħ +##ŋ +##œ +##ƒ +##ɐ +##ɑ +##ɒ +##ɔ +##ɕ +##ə +##ɡ +##ɣ +##ɨ +##ɪ +##ɫ +##ɬ +##ɯ +##ɲ +##ɴ +##ɹ +##ɾ +##ʀ +##ʁ +##ʂ +##ʃ +##ʉ +##ʊ +##ʋ +##ʌ +##ʎ +##ʐ +##ʑ +##ʒ +##ʔ +##ʰ +##ʲ +##ʳ +##ʷ +##ʸ +##ʻ +##ʼ +##ʾ +##ʿ +##ˈ +##ˡ +##ˢ +##ˣ +##ˤ +##β +##γ +##δ +##ε +##ζ +##θ +##κ +##λ +##μ +##ξ +##ο +##π +##ρ +##σ +##τ +##υ +##φ +##χ +##ψ +##ω +##б +##г +##д +##ж +##з +##м +##п +##с +##у +##ф +##х +##ц +##ч +##ш +##щ +##ъ +##э +##ю +##ђ +##є +##і +##ј +##љ +##њ +##ћ +##ӏ +##ա +##բ +##գ +##դ +##ե +##թ +##ի +##լ +##կ +##հ +##մ +##յ +##ն +##ո +##պ +##ս +##վ +##տ +##ր +##ւ +##ք +##־ +##א +##ב +##ג +##ד +##ו +##ז +##ח +##ט +##י +##ך +##כ +##ל +##ם +##מ +##ן +##נ +##ס +##ע +##ף +##פ +##ץ +##צ +##ק +##ר +##ש +##ת +##، +##ء +##ب +##ت +##ث +##ج +##ح +##خ +##ذ +##ز +##س +##ش +##ص +##ض +##ط +##ظ +##ع +##غ +##ـ +##ف +##ق +##ك +##و +##ى +##ٹ +##پ +##چ +##ک +##گ +##ں +##ھ +##ہ +##ے +##अ +##आ +##उ +##ए +##क +##ख +##ग +##च +##ज +##ट +##ड +##ण +##त +##थ +##द +##ध +##न +##प +##ब +##भ +##म +##य +##र +##ल +##व +##श +##ष +##स +##ह +##ा +##ि +##ी +##ो +##। +##॥ +##ং +##অ +##আ +##ই +##উ +##এ +##ও +##ক +##খ +##গ +##চ +##ছ +##জ +##ট +##ড +##ণ +##ত +##থ +##দ +##ধ +##ন +##প +##ব +##ভ +##ম +##য +##র +##ল +##শ +##ষ +##স +##হ +##া +##ি +##ী +##ে +##க +##ச +##ட +##த +##ந +##ன +##ப +##ம +##ய +##ர +##ல +##ள +##வ +##ா +##ி +##ு +##ே +##ை +##ನ +##ರ +##ಾ +##ක +##ය +##ර +##ල +##ව +##ා +##ก +##ง +##ต +##ท +##น +##พ +##ม +##ย +##ร +##ล +##ว +##ส +##อ +##า +##เ +##་ +##། +##ག +##ང +##ད +##ན +##པ +##བ +##མ +##འ +##ར +##ལ +##ས +##မ +##ა +##ბ +##გ +##დ +##ე +##ვ +##თ +##ი +##კ +##ლ +##მ +##ნ +##ო +##რ +##ს +##ტ +##უ +##ᄀ +##ᄂ +##ᄃ +##ᄅ +##ᄆ +##ᄇ +##ᄉ +##ᄊ +##ᄋ +##ᄌ +##ᄎ +##ᄏ +##ᄐ +##ᄑ +##ᄒ +##ᅡ +##ᅢ +##ᅥ +##ᅦ +##ᅧ +##ᅩ +##ᅪ +##ᅭ +##ᅮ +##ᅯ +##ᅲ +##ᅳ +##ᅴ +##ᅵ +##ᆨ +##ᆫ +##ᆯ +##ᆷ +##ᆸ +##ᆼ +##ᴬ +##ᴮ +##ᴰ +##ᴵ +##ᴺ +##ᵀ +##ᵃ +##ᵇ +##ᵈ +##ᵉ +##ᵍ +##ᵏ +##ᵐ +##ᵒ +##ᵖ +##ᵗ +##ᵘ +##ᵣ +##ᵤ +##ᵥ +##ᶜ +##ᶠ +##‐ +##‑ +##‒ +##– +##— +##― +##‖ +##‘ +##’ +##‚ +##“ +##” +##„ +##† +##‡ +##• +##… +##‰ +##′ +##″ +##› +##‿ +##⁄ +##⁰ +##ⁱ +##⁴ +##⁵ +##⁶ +##⁷ +##⁸ +##⁹ +##⁻ +##ⁿ +##₅ +##₆ +##₇ +##₈ +##₉ +##₊ +##₍ +##₎ +##ₐ +##ₑ +##ₒ +##ₓ +##ₕ +##ₖ +##ₗ +##ₘ +##ₚ +##ₛ +##ₜ +##₤ +##₩ +##€ +##₱ +##₹ +##ℓ +##№ +##ℝ +##™ +##⅓ +##⅔ +##← +##↑ +##→ +##↓ +##↔ +##↦ +##⇄ +##⇌ +##⇒ +##∂ +##∅ +##∆ +##∇ +##∈ +##∗ +##∘ +##√ +##∞ +##∧ +##∨ +##∩ +##∪ +##≈ +##≡ +##≤ +##≥ +##⊂ +##⊆ +##⊕ +##⊗ +##⋅ +##─ +##│ +##■ +##▪ +##● +##★ +##☆ +##☉ +##♠ +##♣ +##♥ +##♦ +##♯ +##⟨ +##⟩ +##ⱼ +##⺩ +##⺼ +##⽥ +##、 +##。 +##〈 +##〉 +##《 +##》 +##「 +##」 +##『 +##』 +##〜 +##あ +##い +##う +##え +##お +##か +##き +##く +##け +##こ +##さ +##し +##す +##せ +##そ +##た +##ち +##っ +##つ +##て +##と +##な +##に +##ぬ +##ね +##の +##は +##ひ +##ふ +##へ +##ほ +##ま +##み +##む +##め +##も +##や +##ゆ +##よ +##ら +##り +##る +##れ +##ろ +##を +##ん +##ァ +##ア +##ィ +##イ +##ウ +##ェ +##エ +##オ +##カ +##キ +##ク +##ケ +##コ +##サ +##シ +##ス +##セ +##タ +##チ +##ッ +##ツ +##テ +##ト +##ナ +##ニ +##ノ +##ハ +##ヒ +##フ +##ヘ +##ホ +##マ +##ミ +##ム +##メ +##モ +##ャ +##ュ +##ョ +##ラ +##リ +##ル +##レ +##ロ +##ワ +##ン +##・ +##ー +##一 +##三 +##上 +##下 +##不 +##世 +##中 +##主 +##久 +##之 +##也 +##事 +##二 +##五 +##井 +##京 +##人 +##亻 +##仁 +##介 +##代 +##仮 +##伊 +##会 +##佐 +##侍 +##保 +##信 +##健 +##元 +##光 +##八 +##公 +##内 +##出 +##分 +##前 +##劉 +##力 +##加 +##勝 +##北 +##区 +##十 +##千 +##南 +##博 +##原 +##口 +##古 +##史 +##司 +##合 +##吉 +##同 +##名 +##和 +##囗 +##四 +##国 +##國 +##土 +##地 +##坂 +##城 +##堂 +##場 +##士 +##夏 +##外 +##大 +##天 +##太 +##夫 +##奈 +##女 +##子 +##学 +##宀 +##宇 +##安 +##宗 +##定 +##宣 +##宮 +##家 +##宿 +##寺 +##將 +##小 +##尚 +##山 +##岡 +##島 +##崎 +##川 +##州 +##巿 +##帝 +##平 +##年 +##幸 +##广 +##弘 +##張 +##彳 +##後 +##御 +##德 +##心 +##忄 +##志 +##忠 +##愛 +##成 +##我 +##戦 +##戸 +##手 +##扌 +##政 +##文 +##新 +##方 +##日 +##明 +##星 +##春 +##昭 +##智 +##曲 +##書 +##月 +##有 +##朝 +##木 +##本 +##李 +##村 +##東 +##松 +##林 +##森 +##楊 +##樹 +##橋 +##歌 +##止 +##正 +##武 +##比 +##氏 +##民 +##水 +##氵 +##氷 +##永 +##江 +##沢 +##河 +##治 +##法 +##海 +##清 +##漢 +##瀬 +##火 +##版 +##犬 +##王 +##生 +##田 +##男 +##疒 +##発 +##白 +##的 +##皇 +##目 +##相 +##省 +##真 +##石 +##示 +##社 +##神 +##福 +##禾 +##秀 +##秋 +##空 +##立 +##章 +##竹 +##糹 +##美 +##義 +##耳 +##良 +##艹 +##花 +##英 +##華 +##葉 +##藤 +##行 +##街 +##西 +##見 +##訁 +##語 +##谷 +##貝 +##貴 +##車 +##軍 +##辶 +##道 +##郎 +##郡 +##部 +##都 +##里 +##野 +##金 +##鈴 +##镇 +##長 +##門 +##間 +##阝 +##阿 +##陳 +##陽 +##雄 +##青 +##面 +##風 +##食 +##香 +##馬 +##高 +##龍 +##龸 +##fi +##fl +##! +##( +##) +##, +##- +##. +##/ +##: +##? +##~ diff --git a/iab_retrieval.py b/iab_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..b4bf6e9264bf1b25ef447fb4edde5bb047c6dbf7 --- /dev/null +++ b/iab_retrieval.py @@ -0,0 +1,464 @@ +from __future__ import annotations + +import json +import re +from functools import lru_cache + +import torch +import torch.nn.functional as F +from transformers import AutoModel, AutoTokenizer + +from config import ( + IAB_RETRIEVAL_DEPTH_BONUS, + IAB_RETRIEVAL_MODEL_MAX_LENGTH, + IAB_RETRIEVAL_MODEL_NAME, + IAB_RETRIEVAL_PREFIX_CONFIDENCE_THRESHOLDS, + IAB_RETRIEVAL_TOP_K, + IAB_TAXONOMY_EMBEDDINGS_PATH, + IAB_TAXONOMY_NODES_PATH, + IAB_TAXONOMY_VERSION, + ensure_artifact_dirs, +) +from iab_taxonomy import IabNode, get_iab_taxonomy, path_to_label + +RETRIEVAL_STOPWORDS = { + "a", + "an", + "and", + "are", + "as", + "at", + "best", + "buy", + "for", + "from", + "how", + "i", + "in", + "is", + "it", + "me", + "my", + "need", + "of", + "on", + "or", + "should", + "the", + "to", + "tonight", + "what", + "which", + "with", +} +GTE_QWEN_QUERY_INSTRUCTION = "Given a user query, retrieve the most relevant IAB content taxonomy category." + + +def round_score(value: float) -> float: + return round(float(value), 4) + + +def _normalize_keyword(value: str) -> str: + value = value.lower().replace("&", " and ") + value = re.sub(r"[^a-z0-9]+", " ", value) + return " ".join(value.split()) + + +def _keyword_tokens(value: str) -> set[str]: + return { + token + for token in _normalize_keyword(value).split() + if token and token not in RETRIEVAL_STOPWORDS and len(token) > 1 + } + + +def _is_gte_qwen_model(model_name: str) -> bool: + normalized = model_name.lower() + return "gte-qwen" in normalized + + +def _last_token_pool(last_hidden_state: torch.Tensor, attention_mask: torch.Tensor) -> torch.Tensor: + left_padding = bool(torch.all(attention_mask[:, -1] == 1)) + if left_padding: + return last_hidden_state[:, -1] + + sequence_lengths = attention_mask.sum(dim=1) - 1 + batch_indices = torch.arange(last_hidden_state.shape[0], device=last_hidden_state.device) + return last_hidden_state[batch_indices, sequence_lengths] + + +def _node_keywords(node: IabNode) -> list[str]: + keywords = {node.label, node.path_label} + keywords.update(node.path) + normalized = {_normalize_keyword(keyword) for keyword in keywords if keyword.strip()} + return sorted(keyword for keyword in normalized if keyword) + + +def _node_retrieval_text(node: IabNode) -> str: + keywords = _node_keywords(node) + parts = [ + f"IAB category path: {node.path_label}", + f"Canonical label: {node.label}", + f"Tier depth: {node.level}", + ] + if len(node.path) > 1: + parts.append(f"Parent path: {' > '.join(node.path[:-1])}") + if keywords: + parts.append(f"Keywords: {', '.join(keywords)}") + return ". ".join(parts) + + +def _serialize_node(node: IabNode) -> dict: + return { + "unique_id": node.unique_id, + "parent_id": node.parent_id, + "label": node.label, + "path": list(node.path), + "path_label": node.path_label, + "level": node.level, + "keywords": _node_keywords(node), + "retrieval_text": _node_retrieval_text(node), + } + + +class LocalTextEmbedder: + def __init__(self, model_name: str, max_length: int): + self.model_name = model_name + self.max_length = max_length + self._tokenizer = None + self._model = None + self._batch_size = 32 + self._device = "cuda" if torch.cuda.is_available() else "cpu" + self._is_gte_qwen = _is_gte_qwen_model(model_name) + + @property + def tokenizer(self): + if self._tokenizer is None: + self._tokenizer = AutoTokenizer.from_pretrained( + self.model_name, + trust_remote_code=self._is_gte_qwen, + ) + return self._tokenizer + + @property + def model(self): + if self._model is None: + model_kwargs = {"trust_remote_code": self._is_gte_qwen} + if self._device == "cuda": + model_kwargs["torch_dtype"] = torch.float16 + self._model = AutoModel.from_pretrained(self.model_name, **model_kwargs) + self._model.to(self._device) + self._model.eval() + return self._model + + def encode_documents(self, texts: list[str], batch_size: int | None = None) -> torch.Tensor: + return self._encode_texts(texts, batch_size=batch_size, treat_as_query=False) + + def encode_queries(self, texts: list[str], batch_size: int | None = None) -> torch.Tensor: + return self._encode_texts(texts, batch_size=batch_size, treat_as_query=True) + + def _encode_texts( + self, + texts: list[str], + batch_size: int | None = None, + treat_as_query: bool = False, + ) -> torch.Tensor: + if not texts: + return torch.empty(0, 0) + + effective_batch_size = batch_size or self._batch_size + rows: list[torch.Tensor] = [] + for start in range(0, len(texts), effective_batch_size): + batch_texts = texts[start : start + effective_batch_size] + if treat_as_query and self._is_gte_qwen: + batch_texts = [ + f"Instruct: {GTE_QWEN_QUERY_INSTRUCTION}\nQuery: {text}" + for text in batch_texts + ] + inputs = self.tokenizer( + batch_texts, + return_tensors="pt", + truncation=True, + padding=True, + max_length=self.max_length, + ) + inputs = {key: value.to(self._device) for key, value in inputs.items()} + with torch.no_grad(): + outputs = self.model(**inputs) + hidden = outputs.last_hidden_state + if self._is_gte_qwen: + pooled = _last_token_pool(hidden, inputs["attention_mask"]) + else: + mask = inputs["attention_mask"].unsqueeze(-1) + pooled = (hidden * mask).sum(dim=1) / mask.sum(dim=1).clamp(min=1) + rows.append(F.normalize(pooled.float(), p=2, dim=1).cpu()) + return torch.cat(rows, dim=0) + + +@lru_cache(maxsize=1) +def get_iab_text_embedder() -> LocalTextEmbedder: + return LocalTextEmbedder(IAB_RETRIEVAL_MODEL_NAME, IAB_RETRIEVAL_MODEL_MAX_LENGTH) + + +def build_iab_taxonomy_embedding_index(batch_size: int = 32) -> dict: + ensure_artifact_dirs() + taxonomy = get_iab_taxonomy() + nodes = [_serialize_node(node) for node in taxonomy.nodes] + embedder = get_iab_text_embedder() + embeddings = embedder.encode_documents([node["retrieval_text"] for node in nodes], batch_size=batch_size) + + IAB_TAXONOMY_NODES_PATH.write_text(json.dumps(nodes, indent=2, sort_keys=True) + "\n", encoding="utf-8") + torch.save( + { + "model_name": embedder.model_name, + "taxonomy_version": IAB_TAXONOMY_VERSION, + "embedding_dim": int(embeddings.shape[1]), + "node_count": len(nodes), + "embeddings": embeddings, + }, + IAB_TAXONOMY_EMBEDDINGS_PATH, + ) + return { + "taxonomy_version": IAB_TAXONOMY_VERSION, + "model_name": embedder.model_name, + "node_count": len(nodes), + "embedding_dim": int(embeddings.shape[1]), + "nodes_path": str(IAB_TAXONOMY_NODES_PATH), + "embeddings_path": str(IAB_TAXONOMY_EMBEDDINGS_PATH), + } + + +class IabEmbeddingRetriever: + def __init__(self): + self.taxonomy = get_iab_taxonomy() + self.embedder = get_iab_text_embedder() + self._nodes: list[dict] | None = None + self._embeddings: torch.Tensor | None = None + + def _load_index(self) -> bool: + if self._nodes is not None and self._embeddings is not None: + return True + if not IAB_TAXONOMY_NODES_PATH.exists() or not IAB_TAXONOMY_EMBEDDINGS_PATH.exists(): + return False + + nodes = json.loads(IAB_TAXONOMY_NODES_PATH.read_text(encoding="utf-8")) + payload = torch.load(IAB_TAXONOMY_EMBEDDINGS_PATH, map_location="cpu") + if payload.get("model_name") != IAB_RETRIEVAL_MODEL_NAME: + return False + if payload.get("taxonomy_version") != IAB_TAXONOMY_VERSION: + return False + + embeddings = payload.get("embeddings") + if not isinstance(embeddings, torch.Tensor): + embeddings = torch.tensor(embeddings, dtype=torch.float32) + if len(nodes) != embeddings.shape[0]: + return False + + self._nodes = nodes + self._embeddings = F.normalize(embeddings.float(), p=2, dim=1) + return True + + def ready(self) -> bool: + return self._load_index() + + @staticmethod + def _score_to_confidence(score: float) -> float: + return min(max((score + 1.0) / 2.0, 0.0), 1.0) + + def _candidate_from_index(self, score: float, index: int) -> dict: + assert self._nodes is not None + node = self._nodes[index] + confidence = self._score_to_confidence(float(score)) + adjusted_confidence = confidence + (IAB_RETRIEVAL_DEPTH_BONUS * max(int(node["level"]) - 1, 0)) + return { + "unique_id": node["unique_id"], + "label": node["label"], + "path": tuple(node["path"]), + "path_label": node["path_label"], + "level": int(node["level"]), + "confidence": round_score(confidence), + "adjusted_confidence": round_score(adjusted_confidence), + "keywords": list(node.get("keywords", [])), + } + + def _rerank_candidates(self, query_text: str, candidates: list[dict]) -> list[dict]: + if not candidates: + return [] + + query_normalized = _normalize_keyword(query_text) + query_tokens = _keyword_tokens(query_text) + + reranked = [] + for candidate in candidates: + keyword_tokens = set() + for keyword in candidate.get("keywords", []): + keyword_tokens.update(_keyword_tokens(keyword)) + + token_overlap = len(query_tokens & keyword_tokens) + path_overlap = len(query_tokens & _keyword_tokens(candidate["path_label"])) + lexical_bonus = min(0.04, (0.008 * token_overlap) + (0.004 * path_overlap)) + + reranked.append( + { + **candidate, + "token_overlap": token_overlap, + "path_overlap": path_overlap, + "lexical_bonus": round_score(lexical_bonus), + "rerank_score": round_score(candidate["adjusted_confidence"] + lexical_bonus), + } + ) + + reranked.sort( + key=lambda item: ( + item["rerank_score"], + item["adjusted_confidence"], + item["confidence"], + ), + reverse=True, + ) + return reranked + + def _top_candidates_from_embedding(self, query_text: str, query_embedding: torch.Tensor) -> list[dict]: + if not self._load_index(): + return [] + + assert self._embeddings is not None + + scores = torch.mv(self._embeddings, query_embedding) + top_k = min(IAB_RETRIEVAL_TOP_K, scores.shape[0]) + top_scores, top_indices = torch.topk(scores, k=top_k) + + candidates = [self._candidate_from_index(score, index) for score, index in zip(top_scores.tolist(), top_indices.tolist())] + return self._rerank_candidates(query_text, candidates) + + def _top_candidates(self, text: str) -> list[dict]: + if not self._load_index(): + return [] + query_embedding = self.embedder.encode_queries([text])[0] + return self._top_candidates_from_embedding(text, query_embedding) + + def _select_path(self, candidates: list[dict]) -> dict | None: + if not candidates: + return None + + top_candidate = candidates[0] + top_path = tuple(top_candidate["path"]) + top_margin = round_score( + top_candidate["confidence"] - candidates[1]["confidence"] if len(candidates) > 1 else top_candidate["confidence"] + ) + prefix_support: dict[tuple[str, ...], float] = {} + for depth in range(1, len(top_path) + 1): + prefix = top_path[:depth] + prefix_support[prefix] = max( + candidate["confidence"] + for candidate in candidates + if tuple(candidate["path"][:depth]) == prefix + ) + + selected_path: tuple[str, ...] | None = None + selected_threshold = 0.0 + for depth in range(1, len(top_path) + 1): + threshold = IAB_RETRIEVAL_PREFIX_CONFIDENCE_THRESHOLDS.get(depth, 0.62) + prefix = top_path[:depth] + if prefix_support[prefix] >= threshold: + selected_path = prefix + selected_threshold = threshold + continue + break + + if selected_path is None: + return None + + stopped_reason = "accepted" if selected_path == top_path else "parent_fallback" + if len(top_path) > 1: + ambiguous_sibling = any( + tuple(candidate["path"][:-1]) == top_path[:-1] + and (top_candidate["confidence"] - candidate["confidence"]) <= 0.03 + for candidate in candidates[1:] + ) + if ambiguous_sibling: + selected_path = top_path[:-1] + selected_threshold = IAB_RETRIEVAL_PREFIX_CONFIDENCE_THRESHOLDS.get(len(selected_path), 0.62) + stopped_reason = "ambiguous_sibling_parent_fallback" + + mapping_confidence = prefix_support[selected_path] + return { + "path": selected_path, + "path_label": path_to_label(selected_path), + "mapping_mode": "nearest_equivalent", + "mapping_confidence": round_score(mapping_confidence), + "confidence_threshold": round_score(selected_threshold), + "top_candidate_confidence": round_score(top_candidate["confidence"]), + "top_margin": top_margin, + "stopped_reason": stopped_reason, + } + + def predict(self, text: str) -> dict | None: + candidates = self._top_candidates(text) + return self._prediction_from_candidates(candidates) + + def _prediction_from_candidates(self, candidates: list[dict]) -> dict | None: + selection = self._select_path(candidates) + if selection is None: + return None + + content = self.taxonomy.build_content_object( + path=selection["path"], + mapping_mode=selection["mapping_mode"], + mapping_confidence=selection["mapping_confidence"], + ) + return { + "label": selection["path_label"], + "confidence": selection["mapping_confidence"], + "raw_confidence": selection["top_candidate_confidence"], + "confidence_threshold": selection["confidence_threshold"], + "calibrated": False, + "meets_confidence_threshold": True, + "content": content, + "path": selection["path"], + "mapping_mode": selection["mapping_mode"], + "mapping_confidence": selection["mapping_confidence"], + "source": "embedding_retrieval", + "retrieval_model_name": IAB_RETRIEVAL_MODEL_NAME, + "stopped_reason": selection["stopped_reason"], + "top_margin": selection["top_margin"], + "top_candidates": [ + { + **candidate, + "path": list(candidate["path"]), + "keywords": candidate["keywords"][:12], + } + for candidate in candidates + ], + } + + def predict_batch(self, texts: list[str], batch_size: int | None = None) -> list[dict | None]: + if not texts: + return [] + if not self._load_index(): + return [None for _ in texts] + + query_embeddings = self.embedder.encode_queries(texts, batch_size=batch_size) + return [ + self._prediction_from_candidates(self._top_candidates_from_embedding(text, query_embedding)) + for text, query_embedding in zip(texts, query_embeddings) + ] + + +@lru_cache(maxsize=1) +def get_iab_embedding_retriever() -> IabEmbeddingRetriever: + return IabEmbeddingRetriever() + + +def predict_iab_content_retrieval(text: str) -> dict | None: + retriever = get_iab_embedding_retriever() + if not retriever.ready(): + return None + return retriever.predict(text) + + +def predict_iab_content_retrieval_batch(texts: list[str], batch_size: int | None = None) -> list[dict | None]: + retriever = get_iab_embedding_retriever() + if not retriever.ready(): + return [None for _ in texts] + return retriever.predict_batch(texts, batch_size=batch_size) diff --git a/iab_taxonomy.py b/iab_taxonomy.py new file mode 100644 index 0000000000000000000000000000000000000000..66f2484a6d6d21c7d88010b9ee72a4df2c131e98 --- /dev/null +++ b/iab_taxonomy.py @@ -0,0 +1,180 @@ +from __future__ import annotations + +import csv +import json +from dataclasses import dataclass +from functools import lru_cache +from pathlib import Path + +from config import IAB_TAXONOMY_GRAPH_PATH, IAB_TAXONOMY_PATH, IAB_TAXONOMY_VERSION + + +@dataclass(frozen=True) +class IabNode: + unique_id: str + parent_id: str | None + label: str + path: tuple[str, ...] + + @property + def level(self) -> int: + return len(self.path) + + @property + def path_label(self) -> str: + return path_to_label(self.path) + + +class IabTaxonomy: + def __init__(self, nodes: list[IabNode]): + self.nodes = nodes + self._path_index = {node.path: node for node in nodes} + self._children_index: dict[tuple[str, ...], list[IabNode]] = {} + self._level_index: dict[int, list[IabNode]] = {} + for node in nodes: + self._children_index.setdefault(node.path[:-1], []).append(node) + self._level_index.setdefault(node.level, []).append(node) + for children in self._children_index.values(): + children.sort(key=lambda item: item.path) + for level_nodes in self._level_index.values(): + level_nodes.sort(key=lambda item: item.path) + + def get_node(self, path: tuple[str, ...]) -> IabNode: + if path not in self._path_index: + raise KeyError(f"Unknown IAB path: {path}") + return self._path_index[path] + + def build_level(self, path: tuple[str, ...]) -> dict: + node = self.get_node(path) + return {"id": node.unique_id, "label": node.label} + + def has_path(self, path: tuple[str, ...]) -> bool: + return path in self._path_index + + def immediate_children(self, prefix: tuple[str, ...]) -> list[IabNode]: + return list(self._children_index.get(prefix, [])) + + def siblings(self, path: tuple[str, ...]) -> list[IabNode]: + node = self.get_node(path) + return [candidate for candidate in self._children_index.get(path[:-1], []) if candidate.path != node.path] + + def level_nodes(self, level: int) -> list[IabNode]: + return list(self._level_index.get(level, [])) + + def to_training_graph(self) -> dict: + nodes = [] + for node in self.nodes: + child_nodes = self.immediate_children(node.path) + sibling_nodes = self.siblings(node.path) + nodes.append( + { + "node_id": node.unique_id, + "parent_id": node.parent_id, + "level": node.level, + "label": node.label, + "path": list(node.path), + "path_label": node.path_label, + "child_ids": [child.unique_id for child in child_nodes], + "child_paths": [child.path_label for child in child_nodes], + "sibling_ids": [sibling.unique_id for sibling in sibling_nodes], + "sibling_paths": [sibling.path_label for sibling in sibling_nodes], + "canonical_surface_name": node.label, + } + ) + return { + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": IAB_TAXONOMY_VERSION, + "node_count": len(nodes), + "level_counts": { + f"tier{level}": len(self.level_nodes(level)) + for level in range(1, 5) + }, + "nodes": nodes, + } + + def build_content_object(self, path: tuple[str, ...], mapping_mode: str, mapping_confidence: float) -> dict: + if not path: + raise ValueError("IAB path must not be empty") + + payload = { + "taxonomy": "IAB Content Taxonomy", + "taxonomy_version": IAB_TAXONOMY_VERSION, + "tier1": self.build_level(path[:1]), + "mapping_mode": mapping_mode, + "mapping_confidence": round(float(mapping_confidence), 4), + } + if len(path) >= 2: + payload["tier2"] = self.build_level(path[:2]) + if len(path) >= 3: + payload["tier3"] = self.build_level(path[:3]) + if len(path) >= 4: + payload["tier4"] = self.build_level(path[:4]) + return payload + + def build_content_object_from_label( + self, + path_label: str, + mapping_mode: str, + mapping_confidence: float, + ) -> dict: + return self.build_content_object( + path=parse_path_label(path_label), + mapping_mode=mapping_mode, + mapping_confidence=mapping_confidence, + ) + + +def parse_path_label(path_label: str) -> tuple[str, ...]: + path = tuple(part.strip() for part in path_label.split(">") if part.strip()) + if not path: + raise ValueError("IAB path label must not be empty") + return path + + +def path_to_label(path: tuple[str, ...]) -> str: + if not path: + raise ValueError("IAB path must not be empty") + return " > ".join(path) + + +def _load_rows(path: Path) -> list[dict]: + with path.open("r", encoding="utf-8") as handle: + reader = csv.reader(handle, delimiter="\t") + rows = list(reader) + + header = rows[1] + data_rows = rows[2:] + parsed = [] + for row in data_rows: + padded = row + [""] * (len(header) - len(row)) + parsed.append(dict(zip(header, padded))) + return parsed + + +@lru_cache(maxsize=1) +def get_iab_taxonomy() -> IabTaxonomy: + nodes = [] + for row in _load_rows(IAB_TAXONOMY_PATH): + path = tuple( + value.strip() + for key in ("Tier 1", "Tier 2", "Tier 3", "Tier 4") + if (value := row.get(key, "").strip()) + ) + if not path: + continue + nodes.append( + IabNode( + unique_id=row["Unique ID"].strip(), + parent_id=row["Parent"].strip() or None, + label=row["Name"].strip(), + path=path, + ) + ) + return IabTaxonomy(nodes) + + +def write_training_graph(path: Path = IAB_TAXONOMY_GRAPH_PATH) -> Path: + taxonomy = get_iab_taxonomy() + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(taxonomy.to_training_graph(), indent=2, sort_keys=True) + "\n", encoding="utf-8") + return path diff --git a/inference.py b/inference.py new file mode 100644 index 0000000000000000000000000000000000000000..25b3e160944bb240df14ad5b48280fcb56df124b --- /dev/null +++ b/inference.py @@ -0,0 +1,5 @@ +from inference_intent_type import examples, main, predict + + +if __name__ == "__main__": + main() diff --git a/inference_decision_phase.py b/inference_decision_phase.py new file mode 100644 index 0000000000000000000000000000000000000000..f5c4a9eaf52d67f5256e7642be15b266bc1aebbe --- /dev/null +++ b/inference_decision_phase.py @@ -0,0 +1,23 @@ +import json + +from model_runtime import get_head + + +def predict(text: str, confidence_threshold: float | None = None): + return get_head("decision_phase").predict(text, confidence_threshold=confidence_threshold) + + +examples = [ + "What is CRM software?", + "What are some CRM options for startups?", + "HubSpot vs Zoho for a small team", + "Which CRM should I buy for a 3-person startup?", + "Start my free trial", + "How do I set up my new CRM?", + "I cannot log into my account", +] + +if __name__ == "__main__": + for text in examples: + print(f"\nInput: {text}") + print("Prediction:", json.dumps(predict(text), indent=2)) diff --git a/inference_iab_classifier.py b/inference_iab_classifier.py new file mode 100644 index 0000000000000000000000000000000000000000..704e961946e860fe96cdff3a15749b188bc61122 --- /dev/null +++ b/inference_iab_classifier.py @@ -0,0 +1,19 @@ +import json + +from iab_classifier import predict_iab_content_classifier + + +def predict(text: str, confidence_threshold: float | None = None): + return predict_iab_content_classifier(text, confidence_threshold=confidence_threshold) + + +examples = [ + "Which laptop should I buy for college?", + "What is CRM software?", + "Book a table for two tonight", +] + +if __name__ == "__main__": + for text in examples: + print(f"\nInput: {text}") + print("Prediction:", json.dumps(predict(text), indent=2)) diff --git a/inference_iab_retrieval.py b/inference_iab_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..ada56f5e54823b95ca1245ff34f3148788c36d44 --- /dev/null +++ b/inference_iab_retrieval.py @@ -0,0 +1,20 @@ +import json + +from iab_retrieval import predict_iab_content_retrieval + + +def predict(text: str): + return predict_iab_content_retrieval(text) + + +examples = [ + "What is CRM software?", + "How do I reset my password?", + "Best project management tool for a startup team", + "best laptop for coding", +] + +if __name__ == "__main__": + for text in examples: + print(f"\nInput: {text}") + print("Prediction:", json.dumps(predict(text), indent=2)) diff --git a/inference_intent_type.py b/inference_intent_type.py new file mode 100644 index 0000000000000000000000000000000000000000..3c07b5beda3a79131b01310dbb354e273accd78f --- /dev/null +++ b/inference_intent_type.py @@ -0,0 +1,34 @@ +import argparse +import json + +from model_runtime import get_head + + +def predict(text: str, confidence_threshold: float | None = None): + return get_head("intent_type").predict(text, confidence_threshold=confidence_threshold) + + +examples = [ + "What is CRM?", + "Best CRM for small teams", + "HubSpot vs Zoho CRM", + "Tell me more", +] + + +def main(): + parser = argparse.ArgumentParser(description="Run intent_type inference for one query or the built-in examples.") + parser.add_argument("text", nargs="?", help="Optional query text to classify.") + args = parser.parse_args() + + if args.text: + print(json.dumps(predict(args.text), indent=2)) + return + + for text in examples: + print(f"\nInput: {text}") + print("Prediction:", json.dumps(predict(text), indent=2)) + + +if __name__ == "__main__": + main() diff --git a/inference_subtype.py b/inference_subtype.py new file mode 100644 index 0000000000000000000000000000000000000000..885053a1cf7e489ad3b32c76060ea36ceda9a273 --- /dev/null +++ b/inference_subtype.py @@ -0,0 +1,20 @@ +import json + +from model_runtime import get_head + + +def predict(text: str, confidence_threshold: float | None = None): + return get_head("intent_subtype").predict(text, confidence_threshold=confidence_threshold) + + +examples = [ + "What is CRM software?", + "HubSpot vs Zoho for a small team", + "Which CRM should I buy for a 3-person startup?", + "How do I reset my password?", +] + +if __name__ == "__main__": + for text in examples: + print(f"\nInput: {text}") + print("Prediction:", json.dumps(predict(text), indent=2)) diff --git a/known_limitations.md b/known_limitations.md new file mode 100644 index 0000000000000000000000000000000000000000..3c8a53ae088d4efb1ecb97a0ff26cd7471bba052 --- /dev/null +++ b/known_limitations.md @@ -0,0 +1,47 @@ +# Known Limitations + +## Model Limits + +- `intent_type v0.1` now uses a manually tuned fallback threshold, but some ambiguous prompts still clear as non-safe intent labels. +- `intent_subtype v0.1` is useful for commercial patterns, but still weak on sparse support and price-seeking cases. +- `decision_phase v0.1` is behaviorally useful but still weak in aggregate metrics. +- `iab_content` now uses local embedding retrieval over taxonomy nodes, but exact-path quality still depends on how well the embedding model separates close sibling categories. +- the composed output is still gated by the weaker calibrated components, so action-style queries can over-fallback. + +## Boundary Confusion + +- `support` and `post_purchase` are cleaner than before, but still fragile on phrasing that mixes setup with a broken flow. +- `consideration` and `decision` can still collapse when a buying query is phrased like a general question. +- `awareness` and `research` remain close for “help me understand” style prompts. +- `deal_seeking` and `education` still blur on price questions phrased as general explanations. +- some broad software topics still need nearest-equivalent IAB mappings because the taxonomy does not have exact SaaS product nodes. +- CRM-style prompts are still a weak spot because retrieval can drift toward adjacent business software categories without a reranker. + +## Intent-Type Gaps + +- the expanded `intent_type` taxonomy now includes `support`, `exploratory`, `creative_generation`, `chit_chat`, and `prohibited`, but these new classes are still data-light until the next full retraining pass. +- short contextual follow-ups are still sensitive to wording and may be over-fallbacked. +- price-seeking prompts can still flip between `commercial`, `informational`, and fallback depending on phrasing. + +## System-Layer Caveats + +- the current policy and opportunity logic is still rule-based even though it now uses subtype. +- `commercial_score` is heuristic, not learned. +- the current `intent_type` threshold is manually sweep-tuned rather than learned jointly with the system layer. +- fallback is still intentionally conservative, which is useful for demos but suppresses some strong action signals. +- subtype is now part of the system decision, but the system still trusts `decision_phase` more than subtype on support safety. +- IAB routing uses the local 3.0 taxonomy TSV plus a local embedding index; exact path quality still depends on the retrieval model and the candidate text stored for each taxonomy node. + +## Regression Tracking + +- structured known-failure tracking now lives in [known_failure_cases.json](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/known_failure_cases.json). +- acceptable weaknesses are now separated from `must_fix` behaviors and can be rerun via [run_regression_suite.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_regression_suite.py). +- current acceptable weaknesses include signup over-fallback, price-seeking underclassification, and support subtype bleed into `emotional_reflection`. +- IAB behavior-lock checks now live in [iab_behavior_lock_cases.json](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_behavior_lock_cases.json) and can be rerun via [run_iab_mapping_suite.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_iab_mapping_suite.py). +- curated IAB quality targets live in [iab_mapping_cases.json](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_mapping_cases.json), with broader target coverage in [iab_cross_vertical_mapping_cases.json](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/examples/iab_cross_vertical_mapping_cases.json) and [run_iab_quality_suite.py](/Users/manikumargouni/Desktop/AdMesh/protocol/agentic-intent-classifier/evaluation/run_iab_quality_suite.py). + +## Product Limits + +- no multi-turn memory is used in the combined classifier. +- no real-traffic labeled IAB dataset is produced yet. +- no audit store, trace viewer, or UI is included beyond the local JSON demo endpoint. diff --git a/model_runtime.py b/model_runtime.py new file mode 100644 index 0000000000000000000000000000000000000000..4a80e5eeb46e014201b02c8231bca1187eac903a --- /dev/null +++ b/model_runtime.py @@ -0,0 +1,284 @@ +from __future__ import annotations + +import json +import os +import inspect +from dataclasses import dataclass +from pathlib import Path +from functools import lru_cache + +os.environ.setdefault("TOKENIZERS_PARALLELISM", "false") + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer + +from config import HEAD_CONFIGS, HeadConfig, _looks_like_local_hf_model_dir +from multitask_runtime import MultiTaskHeadProxy + +_TRAIN_SCRIPT_HINTS: dict[str, str] = { + "intent_type": "python3 training/train.py", + "decision_phase": "python3 training/train_decision_phase.py", + "intent_subtype": "python3 training/train_subtype.py", + "iab_content": "python3 training/train_iab.py", +} + + +def _resolved_model_dir(config: HeadConfig) -> Path: + return Path(config.model_dir).expanduser().resolve() + + +def _missing_head_weights_message(config: HeadConfig) -> str: + path = _resolved_model_dir(config) + train_hint = _TRAIN_SCRIPT_HINTS.get( + config.slug, + "See the `training/` directory for the matching `train_*.py` script.", + ) + return ( + f"Classifier weights for head '{config.slug}' are missing or incomplete at {path}. " + f"Expected a Hugging Face model directory with config.json and " + f"model.safetensors (or pytorch_model.bin), plus tokenizer files. " + f"From the `agentic-intent-classifier` directory, run: {train_hint}. " + f"Note: training only `train_iab.py` does not populate `model_output`; " + f"full `classify_query` / evaluation also needs the intent, subtype, and decision-phase heads." + ) + + +def round_score(value: float) -> float: + return round(float(value), 4) + + +@dataclass(frozen=True) +class CalibrationState: + calibrated: bool + temperature: float + confidence_threshold: float + + +class SequenceClassifierHead: + def __init__(self, config: HeadConfig): + self.config = config + self._tokenizer = None + self._model = None + self._calibration = None + self._predict_batch_size = 32 + self._forward_arg_names = None + + def _weights_dir(self) -> Path: + return _resolved_model_dir(self.config) + + def _require_local_weights(self) -> Path: + weights_dir = self._weights_dir() + if not _looks_like_local_hf_model_dir(weights_dir): + raise FileNotFoundError(_missing_head_weights_message(self.config)) + return weights_dir + + @property + def tokenizer(self): + if self._tokenizer is None: + weights_dir = self._require_local_weights() + self._tokenizer = AutoTokenizer.from_pretrained(str(weights_dir)) + return self._tokenizer + + @property + def model(self): + if self._model is None: + weights_dir = self._require_local_weights() + self._model = AutoModelForSequenceClassification.from_pretrained(str(weights_dir)) + self._model.eval() + return self._model + + @property + def forward_arg_names(self) -> set[str]: + if self._forward_arg_names is None: + self._forward_arg_names = set(inspect.signature(self.model.forward).parameters) + return self._forward_arg_names + + @property + def calibration(self) -> CalibrationState: + if self._calibration is None: + calibrated = False + temperature = 1.0 + confidence_threshold = self.config.default_confidence_threshold + if self.config.calibration_path.exists(): + payload = json.loads(self.config.calibration_path.read_text()) + calibrated = bool(payload.get("calibrated", True)) + temperature = float(payload.get("temperature", 1.0)) + confidence_threshold = float( + payload.get("confidence_threshold", self.config.default_confidence_threshold) + ) + self._calibration = CalibrationState( + calibrated=calibrated, + temperature=max(temperature, 1e-3), + confidence_threshold=min(max(confidence_threshold, 0.0), 1.0), + ) + return self._calibration + + def status(self) -> dict: + weights_dir = self._weights_dir() + return { + "head": self.config.slug, + "model_path": str(weights_dir), + "calibration_path": str(self.config.calibration_path), + "ready": _looks_like_local_hf_model_dir(weights_dir), + "calibrated": self.calibration.calibrated, + } + + def _encode(self, texts: list[str]): + encoded = self.tokenizer( + texts, + return_tensors="pt", + truncation=True, + padding=True, + max_length=self.config.max_length, + ) + return { + key: value + for key, value in encoded.items() + if key in self.forward_arg_names + } + + def _predict_probs(self, texts: list[str]) -> tuple[torch.Tensor, torch.Tensor]: + inputs = self._encode(texts) + with torch.no_grad(): + outputs = self.model(**inputs) + raw_probs = torch.softmax(outputs.logits, dim=-1) + calibrated_probs = torch.softmax(outputs.logits / self.calibration.temperature, dim=-1) + return raw_probs, calibrated_probs + + def predict_probs_batch(self, texts: list[str]) -> tuple[torch.Tensor, torch.Tensor]: + if not texts: + empty = torch.empty((0, len(self.config.labels)), dtype=torch.float32) + return empty, empty + raw_chunks: list[torch.Tensor] = [] + calibrated_chunks: list[torch.Tensor] = [] + for start in range(0, len(texts), self._predict_batch_size): + batch_texts = texts[start : start + self._predict_batch_size] + raw_probs, calibrated_probs = self._predict_probs(batch_texts) + raw_chunks.append(raw_probs.detach().cpu()) + calibrated_chunks.append(calibrated_probs.detach().cpu()) + return torch.cat(raw_chunks, dim=0), torch.cat(calibrated_chunks, dim=0) + + def predict_batch(self, texts: list[str], confidence_threshold: float | None = None) -> list[dict]: + if not texts: + return [] + + effective_threshold = ( + self.calibration.confidence_threshold + if confidence_threshold is None + else min(max(float(confidence_threshold), 0.0), 1.0) + ) + predictions: list[dict] = [] + + for start in range(0, len(texts), self._predict_batch_size): + batch_texts = texts[start : start + self._predict_batch_size] + raw_probs, calibrated_probs = self._predict_probs(batch_texts) + for raw_row, calibrated_row in zip(raw_probs, calibrated_probs): + pred_id = int(torch.argmax(calibrated_row).item()) + confidence = float(calibrated_row[pred_id].item()) + raw_confidence = float(raw_row[pred_id].item()) + predictions.append( + { + "label": self.model.config.id2label[pred_id], + "confidence": round_score(confidence), + "raw_confidence": round_score(raw_confidence), + "confidence_threshold": round_score(effective_threshold), + "calibrated": self.calibration.calibrated, + "meets_confidence_threshold": confidence >= effective_threshold, + } + ) + return predictions + + def predict_candidate_batch( + self, + texts: list[str], + candidate_labels: list[list[str]], + confidence_threshold: float | None = None, + ) -> list[dict]: + if not texts: + return [] + if len(texts) != len(candidate_labels): + raise ValueError("texts and candidate_labels must have the same length") + + effective_threshold = ( + self.calibration.confidence_threshold + if confidence_threshold is None + else min(max(float(confidence_threshold), 0.0), 1.0) + ) + predictions: list[dict] = [] + + for start in range(0, len(texts), self._predict_batch_size): + batch_texts = texts[start : start + self._predict_batch_size] + batch_candidates = candidate_labels[start : start + self._predict_batch_size] + raw_probs, calibrated_probs = self._predict_probs(batch_texts) + for raw_row, calibrated_row, labels in zip(raw_probs, calibrated_probs, batch_candidates): + label_ids = [self.config.label2id[label] for label in labels if label in self.config.label2id] + if not label_ids: + predictions.append( + { + "label": None, + "confidence": 0.0, + "raw_confidence": 0.0, + "candidate_mass": 0.0, + "confidence_threshold": round_score(effective_threshold), + "calibrated": self.calibration.calibrated, + "meets_confidence_threshold": False, + } + ) + continue + + calibrated_slice = calibrated_row[label_ids] + raw_slice = raw_row[label_ids] + calibrated_mass = float(calibrated_slice.sum().item()) + raw_mass = float(raw_slice.sum().item()) + if calibrated_mass <= 0: + predictions.append( + { + "label": labels[0], + "confidence": 0.0, + "raw_confidence": 0.0, + "candidate_mass": 0.0, + "confidence_threshold": round_score(effective_threshold), + "calibrated": self.calibration.calibrated, + "meets_confidence_threshold": False, + } + ) + continue + + normalized_calibrated = calibrated_slice / calibrated_mass + normalized_raw = raw_slice / max(raw_mass, 1e-9) + pred_offset = int(torch.argmax(normalized_calibrated).item()) + pred_id = label_ids[pred_offset] + confidence = float(normalized_calibrated[pred_offset].item()) + raw_confidence = float(normalized_raw[pred_offset].item()) + predictions.append( + { + "label": self.model.config.id2label[pred_id], + "confidence": round_score(confidence), + "raw_confidence": round_score(raw_confidence), + "candidate_mass": round_score(calibrated_mass), + "confidence_threshold": round_score(effective_threshold), + "calibrated": self.calibration.calibrated, + "meets_confidence_threshold": confidence >= effective_threshold, + } + ) + return predictions + + def predict(self, text: str, confidence_threshold: float | None = None) -> dict: + return self.predict_batch([text], confidence_threshold=confidence_threshold)[0] + + def predict_candidates( + self, + text: str, + candidate_labels: list[str], + confidence_threshold: float | None = None, + ) -> dict: + return self.predict_candidate_batch([text], [candidate_labels], confidence_threshold=confidence_threshold)[0] + + +@lru_cache(maxsize=None) +def get_head(head_name: str) -> SequenceClassifierHead: + if head_name not in HEAD_CONFIGS: + raise ValueError(f"Unknown head: {head_name}") + if head_name in {"intent_type", "intent_subtype", "decision_phase"}: + return MultiTaskHeadProxy(head_name) # type: ignore[return-value] + return SequenceClassifierHead(HEAD_CONFIGS[head_name]) diff --git a/multitask_intent_model_output/metadata.json b/multitask_intent_model_output/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..641407647acdb410bc2925cd70f2ff64c21a41f1 --- /dev/null +++ b/multitask_intent_model_output/metadata.json @@ -0,0 +1,95 @@ +{ + "base_model_name": "distilbert-base-uncased", + "format": "admesh_multitask_intent_v1", + "label_maps": { + "decision_phase": { + "id2label": { + "0": "awareness", + "1": "research", + "2": "consideration", + "3": "decision", + "4": "action", + "5": "post_purchase", + "6": "support" + }, + "label2id": { + "action": 4, + "awareness": 0, + "consideration": 2, + "decision": 3, + "post_purchase": 5, + "research": 1, + "support": 6 + } + }, + "intent_subtype": { + "id2label": { + "0": "education", + "1": "product_discovery", + "2": "comparison", + "3": "evaluation", + "4": "deal_seeking", + "5": "provider_selection", + "6": "signup", + "7": "purchase", + "8": "booking", + "9": "download", + "10": "contact_sales", + "11": "task_execution", + "12": "onboarding_setup", + "13": "troubleshooting", + "14": "account_help", + "15": "billing_help", + "16": "follow_up", + "17": "emotional_reflection" + }, + "label2id": { + "account_help": 14, + "billing_help": 15, + "booking": 8, + "comparison": 2, + "contact_sales": 10, + "deal_seeking": 4, + "download": 9, + "education": 0, + "emotional_reflection": 17, + "evaluation": 3, + "follow_up": 16, + "onboarding_setup": 12, + "product_discovery": 1, + "provider_selection": 5, + "purchase": 7, + "signup": 6, + "task_execution": 11, + "troubleshooting": 13 + } + }, + "intent_type": { + "id2label": { + "0": "informational", + "1": "exploratory", + "2": "commercial", + "3": "transactional", + "4": "support", + "5": "personal_reflection", + "6": "creative_generation", + "7": "chit_chat", + "8": "ambiguous", + "9": "prohibited" + }, + "label2id": { + "ambiguous": 8, + "chit_chat": 7, + "commercial": 2, + "creative_generation": 6, + "exploratory": 1, + "informational": 0, + "personal_reflection": 5, + "prohibited": 9, + "support": 4, + "transactional": 3 + } + } + }, + "max_length": 72 +} diff --git a/multitask_intent_model_output/multitask_intent.onnx b/multitask_intent_model_output/multitask_intent.onnx new file mode 100644 index 0000000000000000000000000000000000000000..78d83e3c3cff0e49e795545fd031cdd905f1d4a9 --- /dev/null +++ b/multitask_intent_model_output/multitask_intent.onnx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b5ddd35af5f1384a78f3e6e308eaa10f60782c8bf86120b66aceddcee6318d +size 59456 diff --git a/multitask_intent_model_output/multitask_intent.onnx.data b/multitask_intent_model_output/multitask_intent.onnx.data new file mode 100644 index 0000000000000000000000000000000000000000..56c5d50b11b48a226c7055364587d7e4ab485ca3 --- /dev/null +++ b/multitask_intent_model_output/multitask_intent.onnx.data @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e43ca569ca9418fd2801e6be9ba3a4561c7c2593906c8e86c0f6490fb0ac7dd +size 265598976 diff --git a/multitask_intent_model_output/multitask_model.pt b/multitask_intent_model_output/multitask_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..998c90afe5070b4848f4d510ff3d98cf768388d6 --- /dev/null +++ b/multitask_intent_model_output/multitask_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387c9939f451c52244e30a7ffc0437189c7707371b1f71d9be0caf4118adb7b3 +size 265602027 diff --git a/multitask_intent_model_output/special_tokens_map.json b/multitask_intent_model_output/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..a8b3208c2884c4efb86e49300fdd3dc877220cdf --- /dev/null +++ b/multitask_intent_model_output/special_tokens_map.json @@ -0,0 +1,7 @@ +{ + "cls_token": "[CLS]", + "mask_token": "[MASK]", + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "unk_token": "[UNK]" +} diff --git a/multitask_intent_model_output/tokenizer.json b/multitask_intent_model_output/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..c25d69d631caef6d11afd647e60dcc165ff6e700 --- /dev/null +++ b/multitask_intent_model_output/tokenizer.json @@ -0,0 +1,30686 @@ +{ + "version": "1.0", + "truncation": { + "direction": "Right", + "max_length": 72, + "strategy": "LongestFirst", + "stride": 0 + }, + "padding": { + "strategy": { + "Fixed": 72 + }, + "direction": "Right", + "pad_to_multiple_of": null, + "pad_id": 0, + "pad_type_id": 0, + "pad_token": "[PAD]" + }, + "added_tokens": [ + { + "id": 0, + "content": "[PAD]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 100, + "content": "[UNK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 101, + "content": "[CLS]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 102, + "content": "[SEP]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 103, + "content": "[MASK]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "BertNormalizer", + "clean_text": true, + "handle_chinese_chars": true, + "strip_accents": null, + "lowercase": true + }, + "pre_tokenizer": { + "type": "BertPreTokenizer" + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + } + ], + "pair": [ + { + "SpecialToken": { + "id": "[CLS]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + }, + { + "SpecialToken": { + "id": "[SEP]", + "type_id": 1 + } + } + ], + "special_tokens": { + "[CLS]": { + "id": "[CLS]", + "ids": [ + 101 + ], + "tokens": [ + "[CLS]" + ] + }, + "[SEP]": { + "id": "[SEP]", + "ids": [ + 102 + ], + "tokens": [ + "[SEP]" + ] + } + } + }, + "decoder": { + "type": "WordPiece", + "prefix": "##", + "cleanup": true + }, + "model": { + "type": "WordPiece", + "unk_token": "[UNK]", + "continuing_subword_prefix": "##", + "max_input_chars_per_word": 100, + "vocab": { + "[PAD]": 0, + "[unused0]": 1, + "[unused1]": 2, + "[unused2]": 3, + "[unused3]": 4, + "[unused4]": 5, + "[unused5]": 6, + "[unused6]": 7, + "[unused7]": 8, + "[unused8]": 9, + "[unused9]": 10, + "[unused10]": 11, + "[unused11]": 12, + "[unused12]": 13, + "[unused13]": 14, + "[unused14]": 15, + "[unused15]": 16, + "[unused16]": 17, + "[unused17]": 18, + "[unused18]": 19, + "[unused19]": 20, + "[unused20]": 21, + "[unused21]": 22, + "[unused22]": 23, + "[unused23]": 24, + "[unused24]": 25, + "[unused25]": 26, + "[unused26]": 27, + "[unused27]": 28, + "[unused28]": 29, + "[unused29]": 30, + "[unused30]": 31, + "[unused31]": 32, + "[unused32]": 33, + "[unused33]": 34, + "[unused34]": 35, + "[unused35]": 36, + "[unused36]": 37, + "[unused37]": 38, + "[unused38]": 39, + "[unused39]": 40, + "[unused40]": 41, + "[unused41]": 42, + "[unused42]": 43, + "[unused43]": 44, + "[unused44]": 45, + "[unused45]": 46, + "[unused46]": 47, + "[unused47]": 48, + "[unused48]": 49, + "[unused49]": 50, + "[unused50]": 51, + "[unused51]": 52, + "[unused52]": 53, + "[unused53]": 54, + "[unused54]": 55, + "[unused55]": 56, + "[unused56]": 57, + "[unused57]": 58, + "[unused58]": 59, + "[unused59]": 60, + "[unused60]": 61, + "[unused61]": 62, + "[unused62]": 63, + "[unused63]": 64, + "[unused64]": 65, + "[unused65]": 66, + "[unused66]": 67, + "[unused67]": 68, + "[unused68]": 69, + "[unused69]": 70, + "[unused70]": 71, + "[unused71]": 72, + "[unused72]": 73, + "[unused73]": 74, + "[unused74]": 75, + "[unused75]": 76, + "[unused76]": 77, + "[unused77]": 78, + "[unused78]": 79, + "[unused79]": 80, + "[unused80]": 81, + "[unused81]": 82, + "[unused82]": 83, + "[unused83]": 84, + "[unused84]": 85, + "[unused85]": 86, + "[unused86]": 87, + "[unused87]": 88, + "[unused88]": 89, + "[unused89]": 90, + "[unused90]": 91, + "[unused91]": 92, + "[unused92]": 93, + "[unused93]": 94, + "[unused94]": 95, + "[unused95]": 96, + "[unused96]": 97, + "[unused97]": 98, + "[unused98]": 99, + "[UNK]": 100, + "[CLS]": 101, + "[SEP]": 102, + "[MASK]": 103, + "[unused99]": 104, + "[unused100]": 105, + "[unused101]": 106, + "[unused102]": 107, + "[unused103]": 108, + "[unused104]": 109, + "[unused105]": 110, + "[unused106]": 111, + "[unused107]": 112, + "[unused108]": 113, + "[unused109]": 114, + "[unused110]": 115, + "[unused111]": 116, + "[unused112]": 117, + "[unused113]": 118, + "[unused114]": 119, + "[unused115]": 120, + "[unused116]": 121, + "[unused117]": 122, + "[unused118]": 123, + "[unused119]": 124, + "[unused120]": 125, + "[unused121]": 126, + "[unused122]": 127, + "[unused123]": 128, + "[unused124]": 129, + "[unused125]": 130, + "[unused126]": 131, + "[unused127]": 132, + "[unused128]": 133, + "[unused129]": 134, + "[unused130]": 135, + "[unused131]": 136, + "[unused132]": 137, + "[unused133]": 138, + "[unused134]": 139, + "[unused135]": 140, + "[unused136]": 141, + "[unused137]": 142, + "[unused138]": 143, + "[unused139]": 144, + "[unused140]": 145, + "[unused141]": 146, + "[unused142]": 147, + "[unused143]": 148, + "[unused144]": 149, + "[unused145]": 150, + "[unused146]": 151, + "[unused147]": 152, + "[unused148]": 153, + "[unused149]": 154, + "[unused150]": 155, + "[unused151]": 156, + "[unused152]": 157, + "[unused153]": 158, + "[unused154]": 159, + "[unused155]": 160, + "[unused156]": 161, + "[unused157]": 162, + "[unused158]": 163, + "[unused159]": 164, + "[unused160]": 165, + "[unused161]": 166, + "[unused162]": 167, + "[unused163]": 168, + "[unused164]": 169, + "[unused165]": 170, + "[unused166]": 171, + "[unused167]": 172, + "[unused168]": 173, + "[unused169]": 174, + "[unused170]": 175, + "[unused171]": 176, + "[unused172]": 177, + "[unused173]": 178, + "[unused174]": 179, + "[unused175]": 180, + "[unused176]": 181, + "[unused177]": 182, + "[unused178]": 183, + "[unused179]": 184, + "[unused180]": 185, + "[unused181]": 186, + "[unused182]": 187, + "[unused183]": 188, + "[unused184]": 189, + "[unused185]": 190, + "[unused186]": 191, + "[unused187]": 192, + "[unused188]": 193, + "[unused189]": 194, + "[unused190]": 195, + "[unused191]": 196, + "[unused192]": 197, + "[unused193]": 198, + "[unused194]": 199, + "[unused195]": 200, + "[unused196]": 201, + "[unused197]": 202, + "[unused198]": 203, + "[unused199]": 204, + "[unused200]": 205, + "[unused201]": 206, + "[unused202]": 207, + "[unused203]": 208, + "[unused204]": 209, + "[unused205]": 210, + "[unused206]": 211, + "[unused207]": 212, + "[unused208]": 213, + "[unused209]": 214, + "[unused210]": 215, + "[unused211]": 216, + "[unused212]": 217, + "[unused213]": 218, + "[unused214]": 219, + "[unused215]": 220, + "[unused216]": 221, + "[unused217]": 222, + "[unused218]": 223, + "[unused219]": 224, + "[unused220]": 225, + "[unused221]": 226, + "[unused222]": 227, + "[unused223]": 228, + "[unused224]": 229, + "[unused225]": 230, + "[unused226]": 231, + "[unused227]": 232, + "[unused228]": 233, + "[unused229]": 234, + "[unused230]": 235, + "[unused231]": 236, + "[unused232]": 237, + "[unused233]": 238, + "[unused234]": 239, + "[unused235]": 240, + "[unused236]": 241, + "[unused237]": 242, + "[unused238]": 243, + "[unused239]": 244, + "[unused240]": 245, + "[unused241]": 246, + "[unused242]": 247, + "[unused243]": 248, + "[unused244]": 249, + "[unused245]": 250, + "[unused246]": 251, + "[unused247]": 252, + "[unused248]": 253, + "[unused249]": 254, + "[unused250]": 255, + "[unused251]": 256, + "[unused252]": 257, + "[unused253]": 258, + "[unused254]": 259, + "[unused255]": 260, + "[unused256]": 261, + "[unused257]": 262, + "[unused258]": 263, + "[unused259]": 264, + "[unused260]": 265, + "[unused261]": 266, + "[unused262]": 267, + "[unused263]": 268, + "[unused264]": 269, + "[unused265]": 270, + "[unused266]": 271, + "[unused267]": 272, + "[unused268]": 273, + "[unused269]": 274, + "[unused270]": 275, + "[unused271]": 276, + "[unused272]": 277, + "[unused273]": 278, + "[unused274]": 279, + "[unused275]": 280, + "[unused276]": 281, + "[unused277]": 282, + "[unused278]": 283, + "[unused279]": 284, + "[unused280]": 285, + "[unused281]": 286, + "[unused282]": 287, + "[unused283]": 288, + "[unused284]": 289, + "[unused285]": 290, + "[unused286]": 291, + "[unused287]": 292, + "[unused288]": 293, + "[unused289]": 294, + "[unused290]": 295, + "[unused291]": 296, + "[unused292]": 297, + "[unused293]": 298, + "[unused294]": 299, + "[unused295]": 300, + "[unused296]": 301, + "[unused297]": 302, + "[unused298]": 303, + "[unused299]": 304, + "[unused300]": 305, + "[unused301]": 306, + "[unused302]": 307, + "[unused303]": 308, + "[unused304]": 309, + "[unused305]": 310, + "[unused306]": 311, + "[unused307]": 312, + "[unused308]": 313, + "[unused309]": 314, + "[unused310]": 315, + "[unused311]": 316, + "[unused312]": 317, + "[unused313]": 318, + "[unused314]": 319, + "[unused315]": 320, + "[unused316]": 321, + "[unused317]": 322, + "[unused318]": 323, + "[unused319]": 324, + "[unused320]": 325, + "[unused321]": 326, + "[unused322]": 327, + "[unused323]": 328, + "[unused324]": 329, + "[unused325]": 330, + "[unused326]": 331, + "[unused327]": 332, + "[unused328]": 333, + "[unused329]": 334, + "[unused330]": 335, + "[unused331]": 336, + "[unused332]": 337, + "[unused333]": 338, + "[unused334]": 339, + "[unused335]": 340, + "[unused336]": 341, + "[unused337]": 342, + "[unused338]": 343, + "[unused339]": 344, + "[unused340]": 345, + "[unused341]": 346, + "[unused342]": 347, + "[unused343]": 348, + "[unused344]": 349, + "[unused345]": 350, + "[unused346]": 351, + "[unused347]": 352, + "[unused348]": 353, + "[unused349]": 354, + "[unused350]": 355, + "[unused351]": 356, + "[unused352]": 357, + "[unused353]": 358, + "[unused354]": 359, + "[unused355]": 360, + "[unused356]": 361, + "[unused357]": 362, + "[unused358]": 363, + "[unused359]": 364, + "[unused360]": 365, + "[unused361]": 366, + "[unused362]": 367, + "[unused363]": 368, + "[unused364]": 369, + "[unused365]": 370, + "[unused366]": 371, + "[unused367]": 372, + "[unused368]": 373, + "[unused369]": 374, + "[unused370]": 375, + "[unused371]": 376, + "[unused372]": 377, + "[unused373]": 378, + "[unused374]": 379, + "[unused375]": 380, + "[unused376]": 381, + "[unused377]": 382, + "[unused378]": 383, + "[unused379]": 384, + "[unused380]": 385, + "[unused381]": 386, + "[unused382]": 387, + "[unused383]": 388, + "[unused384]": 389, + "[unused385]": 390, + "[unused386]": 391, + "[unused387]": 392, + "[unused388]": 393, + "[unused389]": 394, + "[unused390]": 395, + "[unused391]": 396, + "[unused392]": 397, + "[unused393]": 398, + "[unused394]": 399, + "[unused395]": 400, + "[unused396]": 401, + "[unused397]": 402, + "[unused398]": 403, + "[unused399]": 404, + "[unused400]": 405, + "[unused401]": 406, + "[unused402]": 407, + "[unused403]": 408, + "[unused404]": 409, + "[unused405]": 410, + "[unused406]": 411, + "[unused407]": 412, + "[unused408]": 413, + "[unused409]": 414, + "[unused410]": 415, + "[unused411]": 416, + "[unused412]": 417, + "[unused413]": 418, + "[unused414]": 419, + "[unused415]": 420, + "[unused416]": 421, + "[unused417]": 422, + "[unused418]": 423, + "[unused419]": 424, + "[unused420]": 425, + "[unused421]": 426, + "[unused422]": 427, + "[unused423]": 428, + "[unused424]": 429, + "[unused425]": 430, + "[unused426]": 431, + "[unused427]": 432, + "[unused428]": 433, + "[unused429]": 434, + "[unused430]": 435, + "[unused431]": 436, + "[unused432]": 437, + "[unused433]": 438, + "[unused434]": 439, + "[unused435]": 440, + "[unused436]": 441, + "[unused437]": 442, + "[unused438]": 443, + "[unused439]": 444, + "[unused440]": 445, + "[unused441]": 446, + "[unused442]": 447, + "[unused443]": 448, + "[unused444]": 449, + "[unused445]": 450, + "[unused446]": 451, + "[unused447]": 452, + "[unused448]": 453, + "[unused449]": 454, + "[unused450]": 455, + "[unused451]": 456, + "[unused452]": 457, + "[unused453]": 458, + "[unused454]": 459, + "[unused455]": 460, + "[unused456]": 461, + "[unused457]": 462, + "[unused458]": 463, + "[unused459]": 464, + "[unused460]": 465, + "[unused461]": 466, + "[unused462]": 467, + "[unused463]": 468, + "[unused464]": 469, + "[unused465]": 470, + "[unused466]": 471, + "[unused467]": 472, + "[unused468]": 473, + "[unused469]": 474, + "[unused470]": 475, + "[unused471]": 476, + "[unused472]": 477, + "[unused473]": 478, + "[unused474]": 479, + "[unused475]": 480, + "[unused476]": 481, + "[unused477]": 482, + "[unused478]": 483, + "[unused479]": 484, + "[unused480]": 485, + "[unused481]": 486, + "[unused482]": 487, + "[unused483]": 488, + "[unused484]": 489, + "[unused485]": 490, + "[unused486]": 491, + "[unused487]": 492, + "[unused488]": 493, + "[unused489]": 494, + "[unused490]": 495, + "[unused491]": 496, + "[unused492]": 497, + "[unused493]": 498, + "[unused494]": 499, + "[unused495]": 500, + "[unused496]": 501, + "[unused497]": 502, + "[unused498]": 503, + "[unused499]": 504, + "[unused500]": 505, + "[unused501]": 506, + "[unused502]": 507, + "[unused503]": 508, + "[unused504]": 509, + "[unused505]": 510, + "[unused506]": 511, + "[unused507]": 512, + "[unused508]": 513, + "[unused509]": 514, + "[unused510]": 515, + "[unused511]": 516, + "[unused512]": 517, + "[unused513]": 518, + "[unused514]": 519, + "[unused515]": 520, + "[unused516]": 521, + "[unused517]": 522, + "[unused518]": 523, + "[unused519]": 524, + "[unused520]": 525, + "[unused521]": 526, + "[unused522]": 527, + "[unused523]": 528, + "[unused524]": 529, + "[unused525]": 530, + "[unused526]": 531, + "[unused527]": 532, + "[unused528]": 533, + "[unused529]": 534, + "[unused530]": 535, + "[unused531]": 536, + "[unused532]": 537, + "[unused533]": 538, + "[unused534]": 539, + "[unused535]": 540, + "[unused536]": 541, + "[unused537]": 542, + "[unused538]": 543, + "[unused539]": 544, + "[unused540]": 545, + "[unused541]": 546, + "[unused542]": 547, + "[unused543]": 548, + "[unused544]": 549, + "[unused545]": 550, + "[unused546]": 551, + "[unused547]": 552, + "[unused548]": 553, + "[unused549]": 554, + "[unused550]": 555, + "[unused551]": 556, + "[unused552]": 557, + "[unused553]": 558, + "[unused554]": 559, + "[unused555]": 560, + "[unused556]": 561, + "[unused557]": 562, + "[unused558]": 563, + "[unused559]": 564, + "[unused560]": 565, + "[unused561]": 566, + "[unused562]": 567, + "[unused563]": 568, + "[unused564]": 569, + "[unused565]": 570, + "[unused566]": 571, + "[unused567]": 572, + "[unused568]": 573, + "[unused569]": 574, + "[unused570]": 575, + "[unused571]": 576, + "[unused572]": 577, + "[unused573]": 578, + "[unused574]": 579, + "[unused575]": 580, + "[unused576]": 581, + "[unused577]": 582, + "[unused578]": 583, + "[unused579]": 584, + "[unused580]": 585, + "[unused581]": 586, + "[unused582]": 587, + "[unused583]": 588, + "[unused584]": 589, + "[unused585]": 590, + "[unused586]": 591, + "[unused587]": 592, + "[unused588]": 593, + "[unused589]": 594, + "[unused590]": 595, + "[unused591]": 596, + "[unused592]": 597, + "[unused593]": 598, + "[unused594]": 599, + "[unused595]": 600, + "[unused596]": 601, + "[unused597]": 602, + "[unused598]": 603, + "[unused599]": 604, + "[unused600]": 605, + "[unused601]": 606, + "[unused602]": 607, + "[unused603]": 608, + "[unused604]": 609, + "[unused605]": 610, + "[unused606]": 611, + "[unused607]": 612, + "[unused608]": 613, + "[unused609]": 614, + "[unused610]": 615, + "[unused611]": 616, + "[unused612]": 617, + "[unused613]": 618, + "[unused614]": 619, + "[unused615]": 620, + "[unused616]": 621, + "[unused617]": 622, + "[unused618]": 623, + "[unused619]": 624, + "[unused620]": 625, + "[unused621]": 626, + "[unused622]": 627, + "[unused623]": 628, + "[unused624]": 629, + "[unused625]": 630, + "[unused626]": 631, + "[unused627]": 632, + "[unused628]": 633, + "[unused629]": 634, + "[unused630]": 635, + "[unused631]": 636, + "[unused632]": 637, + "[unused633]": 638, + "[unused634]": 639, + "[unused635]": 640, + "[unused636]": 641, + "[unused637]": 642, + "[unused638]": 643, + "[unused639]": 644, + "[unused640]": 645, + "[unused641]": 646, + "[unused642]": 647, + "[unused643]": 648, + "[unused644]": 649, + "[unused645]": 650, + "[unused646]": 651, + "[unused647]": 652, + "[unused648]": 653, + "[unused649]": 654, + "[unused650]": 655, + "[unused651]": 656, + "[unused652]": 657, + "[unused653]": 658, + "[unused654]": 659, + "[unused655]": 660, + "[unused656]": 661, + "[unused657]": 662, + "[unused658]": 663, + "[unused659]": 664, + "[unused660]": 665, + "[unused661]": 666, + "[unused662]": 667, + "[unused663]": 668, + "[unused664]": 669, + "[unused665]": 670, + "[unused666]": 671, + "[unused667]": 672, + "[unused668]": 673, + "[unused669]": 674, + "[unused670]": 675, + "[unused671]": 676, + "[unused672]": 677, + "[unused673]": 678, + "[unused674]": 679, + "[unused675]": 680, + "[unused676]": 681, + "[unused677]": 682, + "[unused678]": 683, + "[unused679]": 684, + "[unused680]": 685, + "[unused681]": 686, + "[unused682]": 687, + "[unused683]": 688, + "[unused684]": 689, + "[unused685]": 690, + "[unused686]": 691, + "[unused687]": 692, + "[unused688]": 693, + "[unused689]": 694, + "[unused690]": 695, + "[unused691]": 696, + "[unused692]": 697, + "[unused693]": 698, + "[unused694]": 699, + "[unused695]": 700, + "[unused696]": 701, + "[unused697]": 702, + "[unused698]": 703, + "[unused699]": 704, + "[unused700]": 705, + "[unused701]": 706, + "[unused702]": 707, + "[unused703]": 708, + "[unused704]": 709, + "[unused705]": 710, + "[unused706]": 711, + "[unused707]": 712, + "[unused708]": 713, + "[unused709]": 714, + "[unused710]": 715, + "[unused711]": 716, + "[unused712]": 717, + "[unused713]": 718, + "[unused714]": 719, + "[unused715]": 720, + "[unused716]": 721, + "[unused717]": 722, + "[unused718]": 723, + "[unused719]": 724, + "[unused720]": 725, + "[unused721]": 726, + "[unused722]": 727, + "[unused723]": 728, + "[unused724]": 729, + "[unused725]": 730, + "[unused726]": 731, + "[unused727]": 732, + "[unused728]": 733, + "[unused729]": 734, + "[unused730]": 735, + "[unused731]": 736, + "[unused732]": 737, + "[unused733]": 738, + "[unused734]": 739, + "[unused735]": 740, + "[unused736]": 741, + "[unused737]": 742, + "[unused738]": 743, + "[unused739]": 744, + "[unused740]": 745, + "[unused741]": 746, + "[unused742]": 747, + "[unused743]": 748, + "[unused744]": 749, + "[unused745]": 750, + "[unused746]": 751, + "[unused747]": 752, + "[unused748]": 753, + "[unused749]": 754, + "[unused750]": 755, + "[unused751]": 756, + "[unused752]": 757, + "[unused753]": 758, + "[unused754]": 759, + "[unused755]": 760, + "[unused756]": 761, + "[unused757]": 762, + "[unused758]": 763, + "[unused759]": 764, + "[unused760]": 765, + "[unused761]": 766, + "[unused762]": 767, + "[unused763]": 768, + "[unused764]": 769, + "[unused765]": 770, + "[unused766]": 771, + "[unused767]": 772, + "[unused768]": 773, + "[unused769]": 774, + "[unused770]": 775, + "[unused771]": 776, + "[unused772]": 777, + "[unused773]": 778, + "[unused774]": 779, + "[unused775]": 780, + "[unused776]": 781, + "[unused777]": 782, + "[unused778]": 783, + "[unused779]": 784, + "[unused780]": 785, + "[unused781]": 786, + "[unused782]": 787, + "[unused783]": 788, + "[unused784]": 789, + "[unused785]": 790, + "[unused786]": 791, + "[unused787]": 792, + "[unused788]": 793, + "[unused789]": 794, + "[unused790]": 795, + "[unused791]": 796, + "[unused792]": 797, + "[unused793]": 798, + "[unused794]": 799, + "[unused795]": 800, + "[unused796]": 801, + "[unused797]": 802, + "[unused798]": 803, + "[unused799]": 804, + "[unused800]": 805, + "[unused801]": 806, + "[unused802]": 807, + "[unused803]": 808, + "[unused804]": 809, + "[unused805]": 810, + "[unused806]": 811, + "[unused807]": 812, + "[unused808]": 813, + "[unused809]": 814, + "[unused810]": 815, + "[unused811]": 816, + "[unused812]": 817, + "[unused813]": 818, + "[unused814]": 819, + "[unused815]": 820, + "[unused816]": 821, + "[unused817]": 822, + "[unused818]": 823, + "[unused819]": 824, + "[unused820]": 825, + "[unused821]": 826, + "[unused822]": 827, + "[unused823]": 828, + "[unused824]": 829, + "[unused825]": 830, + "[unused826]": 831, + "[unused827]": 832, + "[unused828]": 833, + "[unused829]": 834, + "[unused830]": 835, + "[unused831]": 836, + "[unused832]": 837, + "[unused833]": 838, + "[unused834]": 839, + "[unused835]": 840, + "[unused836]": 841, + "[unused837]": 842, + "[unused838]": 843, + "[unused839]": 844, + "[unused840]": 845, + "[unused841]": 846, + "[unused842]": 847, + "[unused843]": 848, + "[unused844]": 849, + "[unused845]": 850, + "[unused846]": 851, + "[unused847]": 852, + "[unused848]": 853, + "[unused849]": 854, + "[unused850]": 855, + "[unused851]": 856, + "[unused852]": 857, + "[unused853]": 858, + "[unused854]": 859, + "[unused855]": 860, + "[unused856]": 861, + "[unused857]": 862, + "[unused858]": 863, + "[unused859]": 864, + "[unused860]": 865, + "[unused861]": 866, + "[unused862]": 867, + "[unused863]": 868, + "[unused864]": 869, + "[unused865]": 870, + "[unused866]": 871, + "[unused867]": 872, + "[unused868]": 873, + "[unused869]": 874, + "[unused870]": 875, + "[unused871]": 876, + "[unused872]": 877, + "[unused873]": 878, + "[unused874]": 879, + "[unused875]": 880, + "[unused876]": 881, + "[unused877]": 882, + "[unused878]": 883, + "[unused879]": 884, + "[unused880]": 885, + "[unused881]": 886, + "[unused882]": 887, + "[unused883]": 888, + "[unused884]": 889, + "[unused885]": 890, + "[unused886]": 891, + "[unused887]": 892, + "[unused888]": 893, + "[unused889]": 894, + "[unused890]": 895, + "[unused891]": 896, + "[unused892]": 897, + "[unused893]": 898, + "[unused894]": 899, + "[unused895]": 900, + "[unused896]": 901, + "[unused897]": 902, + "[unused898]": 903, + "[unused899]": 904, + "[unused900]": 905, + "[unused901]": 906, + "[unused902]": 907, + "[unused903]": 908, + "[unused904]": 909, + "[unused905]": 910, + "[unused906]": 911, + "[unused907]": 912, + "[unused908]": 913, + "[unused909]": 914, + "[unused910]": 915, + "[unused911]": 916, + "[unused912]": 917, + "[unused913]": 918, + "[unused914]": 919, + "[unused915]": 920, + "[unused916]": 921, + "[unused917]": 922, + "[unused918]": 923, + "[unused919]": 924, + "[unused920]": 925, + "[unused921]": 926, + "[unused922]": 927, + "[unused923]": 928, + "[unused924]": 929, + "[unused925]": 930, + "[unused926]": 931, + "[unused927]": 932, + "[unused928]": 933, + "[unused929]": 934, + "[unused930]": 935, + "[unused931]": 936, + "[unused932]": 937, + "[unused933]": 938, + "[unused934]": 939, + "[unused935]": 940, + "[unused936]": 941, + "[unused937]": 942, + "[unused938]": 943, + "[unused939]": 944, + "[unused940]": 945, + "[unused941]": 946, + "[unused942]": 947, + "[unused943]": 948, + "[unused944]": 949, + "[unused945]": 950, + "[unused946]": 951, + "[unused947]": 952, + "[unused948]": 953, + "[unused949]": 954, + "[unused950]": 955, + "[unused951]": 956, + "[unused952]": 957, + "[unused953]": 958, + "[unused954]": 959, + "[unused955]": 960, + "[unused956]": 961, + "[unused957]": 962, + "[unused958]": 963, + "[unused959]": 964, + "[unused960]": 965, + "[unused961]": 966, + "[unused962]": 967, + "[unused963]": 968, + "[unused964]": 969, + "[unused965]": 970, + "[unused966]": 971, + "[unused967]": 972, + "[unused968]": 973, + "[unused969]": 974, + "[unused970]": 975, + "[unused971]": 976, + "[unused972]": 977, + "[unused973]": 978, + "[unused974]": 979, + "[unused975]": 980, + "[unused976]": 981, + "[unused977]": 982, + "[unused978]": 983, + "[unused979]": 984, + "[unused980]": 985, + "[unused981]": 986, + "[unused982]": 987, + "[unused983]": 988, + "[unused984]": 989, + "[unused985]": 990, + "[unused986]": 991, + "[unused987]": 992, + "[unused988]": 993, + "[unused989]": 994, + "[unused990]": 995, + "[unused991]": 996, + "[unused992]": 997, + "[unused993]": 998, + "!": 999, + "\"": 1000, + "#": 1001, + "$": 1002, + "%": 1003, + "&": 1004, + "'": 1005, + "(": 1006, + ")": 1007, + "*": 1008, + "+": 1009, + ",": 1010, + "-": 1011, + ".": 1012, + "/": 1013, + "0": 1014, + "1": 1015, + "2": 1016, + "3": 1017, + "4": 1018, + "5": 1019, + "6": 1020, + "7": 1021, + "8": 1022, + "9": 1023, + ":": 1024, + ";": 1025, + "<": 1026, + "=": 1027, + ">": 1028, + "?": 1029, + "@": 1030, + "[": 1031, + "\\": 1032, + "]": 1033, + "^": 1034, + "_": 1035, + "`": 1036, + "a": 1037, + "b": 1038, + "c": 1039, + "d": 1040, + "e": 1041, + "f": 1042, + "g": 1043, + "h": 1044, + "i": 1045, + "j": 1046, + "k": 1047, + "l": 1048, + "m": 1049, + "n": 1050, + "o": 1051, + "p": 1052, + "q": 1053, + "r": 1054, + "s": 1055, + "t": 1056, + "u": 1057, + "v": 1058, + "w": 1059, + "x": 1060, + "y": 1061, + "z": 1062, + "{": 1063, + "|": 1064, + "}": 1065, + "~": 1066, + "¡": 1067, + "¢": 1068, + "£": 1069, + "¤": 1070, + "¥": 1071, + "¦": 1072, + "§": 1073, + "¨": 1074, + "©": 1075, + "ª": 1076, + "«": 1077, + "¬": 1078, + "®": 1079, + "°": 1080, + "±": 1081, + "²": 1082, + "³": 1083, + "´": 1084, + "µ": 1085, + "¶": 1086, + "·": 1087, + "¹": 1088, + "º": 1089, + "»": 1090, + "¼": 1091, + "½": 1092, + "¾": 1093, + "¿": 1094, + "×": 1095, + "ß": 1096, + "æ": 1097, + "ð": 1098, + "÷": 1099, + "ø": 1100, + "þ": 1101, + "đ": 1102, + "ħ": 1103, + "ı": 1104, + "ł": 1105, + "ŋ": 1106, + "œ": 1107, + "ƒ": 1108, + "ɐ": 1109, + "ɑ": 1110, + "ɒ": 1111, + "ɔ": 1112, + "ɕ": 1113, + "ə": 1114, + "ɛ": 1115, + "ɡ": 1116, + "ɣ": 1117, + "ɨ": 1118, + "ɪ": 1119, + "ɫ": 1120, + "ɬ": 1121, + "ɯ": 1122, + "ɲ": 1123, + "ɴ": 1124, + "ɹ": 1125, + "ɾ": 1126, + "ʀ": 1127, + "ʁ": 1128, + "ʂ": 1129, + "ʃ": 1130, + "ʉ": 1131, + "ʊ": 1132, + "ʋ": 1133, + "ʌ": 1134, + "ʎ": 1135, + "ʐ": 1136, + "ʑ": 1137, + "ʒ": 1138, + "ʔ": 1139, + "ʰ": 1140, + "ʲ": 1141, + "ʳ": 1142, + "ʷ": 1143, + "ʸ": 1144, + "ʻ": 1145, + "ʼ": 1146, + "ʾ": 1147, + "ʿ": 1148, + "ˈ": 1149, + "ː": 1150, + "ˡ": 1151, + "ˢ": 1152, + "ˣ": 1153, + "ˤ": 1154, + "α": 1155, + "β": 1156, + "γ": 1157, + "δ": 1158, + "ε": 1159, + "ζ": 1160, + "η": 1161, + "θ": 1162, + "ι": 1163, + "κ": 1164, + "λ": 1165, + "μ": 1166, + "ν": 1167, + "ξ": 1168, + "ο": 1169, + "π": 1170, + "ρ": 1171, + "ς": 1172, + "σ": 1173, + "τ": 1174, + "υ": 1175, + "φ": 1176, + "χ": 1177, + "ψ": 1178, + "ω": 1179, + "а": 1180, + "б": 1181, + "в": 1182, + "г": 1183, + "д": 1184, + "е": 1185, + "ж": 1186, + "з": 1187, + "и": 1188, + "к": 1189, + "л": 1190, + "м": 1191, + "н": 1192, + "о": 1193, + "п": 1194, + "р": 1195, + "с": 1196, + "т": 1197, + "у": 1198, + "ф": 1199, + "х": 1200, + "ц": 1201, + "ч": 1202, + "ш": 1203, + "щ": 1204, + "ъ": 1205, + "ы": 1206, + "ь": 1207, + "э": 1208, + "ю": 1209, + "я": 1210, + "ђ": 1211, + "є": 1212, + "і": 1213, + "ј": 1214, + "љ": 1215, + "њ": 1216, + "ћ": 1217, + "ӏ": 1218, + "ա": 1219, + "բ": 1220, + "գ": 1221, + "դ": 1222, + "ե": 1223, + "թ": 1224, + "ի": 1225, + "լ": 1226, + "կ": 1227, + "հ": 1228, + "մ": 1229, + "յ": 1230, + "ն": 1231, + "ո": 1232, + "պ": 1233, + "ս": 1234, + "վ": 1235, + "տ": 1236, + "ր": 1237, + "ւ": 1238, + "ք": 1239, + "־": 1240, + "א": 1241, + "ב": 1242, + "ג": 1243, + "ד": 1244, + "ה": 1245, + "ו": 1246, + "ז": 1247, + "ח": 1248, + "ט": 1249, + "י": 1250, + "ך": 1251, + "כ": 1252, + "ל": 1253, + "ם": 1254, + "מ": 1255, + "ן": 1256, + "נ": 1257, + "ס": 1258, + "ע": 1259, + "ף": 1260, + "פ": 1261, + "ץ": 1262, + "צ": 1263, + "ק": 1264, + "ר": 1265, + "ש": 1266, + "ת": 1267, + "،": 1268, + "ء": 1269, + "ا": 1270, + "ب": 1271, + "ة": 1272, + "ت": 1273, + "ث": 1274, + "ج": 1275, + "ح": 1276, + "خ": 1277, + "د": 1278, + "ذ": 1279, + "ر": 1280, + "ز": 1281, + "س": 1282, + "ش": 1283, + "ص": 1284, + "ض": 1285, + "ط": 1286, + "ظ": 1287, + "ع": 1288, + "غ": 1289, + "ـ": 1290, + "ف": 1291, + "ق": 1292, + "ك": 1293, + "ل": 1294, + "م": 1295, + "ن": 1296, + "ه": 1297, + "و": 1298, + "ى": 1299, + "ي": 1300, + "ٹ": 1301, + "پ": 1302, + "چ": 1303, + "ک": 1304, + "گ": 1305, + "ں": 1306, + "ھ": 1307, + "ہ": 1308, + "ی": 1309, + "ے": 1310, + "अ": 1311, + "आ": 1312, + "उ": 1313, + "ए": 1314, + "क": 1315, + "ख": 1316, + "ग": 1317, + "च": 1318, + "ज": 1319, + "ट": 1320, + "ड": 1321, + "ण": 1322, + "त": 1323, + "थ": 1324, + "द": 1325, + "ध": 1326, + "न": 1327, + "प": 1328, + "ब": 1329, + "भ": 1330, + "म": 1331, + "य": 1332, + "र": 1333, + "ल": 1334, + "व": 1335, + "श": 1336, + "ष": 1337, + "स": 1338, + "ह": 1339, + "ा": 1340, + "ि": 1341, + "ी": 1342, + "ो": 1343, + "।": 1344, + "॥": 1345, + "ং": 1346, + "অ": 1347, + "আ": 1348, + "ই": 1349, + "উ": 1350, + "এ": 1351, + "ও": 1352, + "ক": 1353, + "খ": 1354, + "গ": 1355, + "চ": 1356, + "ছ": 1357, + "জ": 1358, + "ট": 1359, + "ড": 1360, + "ণ": 1361, + "ত": 1362, + "থ": 1363, + "দ": 1364, + "ধ": 1365, + "ন": 1366, + "প": 1367, + "ব": 1368, + "ভ": 1369, + "ম": 1370, + "য": 1371, + "র": 1372, + "ল": 1373, + "শ": 1374, + "ষ": 1375, + "স": 1376, + "হ": 1377, + "া": 1378, + "ি": 1379, + "ী": 1380, + "ে": 1381, + "க": 1382, + "ச": 1383, + "ட": 1384, + "த": 1385, + "ந": 1386, + "ன": 1387, + "ப": 1388, + "ம": 1389, + "ய": 1390, + "ர": 1391, + "ல": 1392, + "ள": 1393, + "வ": 1394, + "ா": 1395, + "ி": 1396, + "ு": 1397, + "ே": 1398, + "ை": 1399, + "ನ": 1400, + "ರ": 1401, + "ಾ": 1402, + "ක": 1403, + "ය": 1404, + "ර": 1405, + "ල": 1406, + "ව": 1407, + "ා": 1408, + "ก": 1409, + "ง": 1410, + "ต": 1411, + "ท": 1412, + "น": 1413, + "พ": 1414, + "ม": 1415, + "ย": 1416, + "ร": 1417, + "ล": 1418, + "ว": 1419, + "ส": 1420, + "อ": 1421, + "า": 1422, + "เ": 1423, + "་": 1424, + "།": 1425, + "ག": 1426, + "ང": 1427, + "ད": 1428, + "ན": 1429, + "པ": 1430, + "བ": 1431, + "མ": 1432, + "འ": 1433, + "ར": 1434, + "ལ": 1435, + "ས": 1436, + "မ": 1437, + "ა": 1438, + "ბ": 1439, + "გ": 1440, + "დ": 1441, + "ე": 1442, + "ვ": 1443, + "თ": 1444, + "ი": 1445, + "კ": 1446, + "ლ": 1447, + "მ": 1448, + "ნ": 1449, + "ო": 1450, + "რ": 1451, + "ს": 1452, + "ტ": 1453, + "უ": 1454, + "ᄀ": 1455, + "ᄂ": 1456, + "ᄃ": 1457, + "ᄅ": 1458, + "ᄆ": 1459, + "ᄇ": 1460, + "ᄉ": 1461, + "ᄊ": 1462, + "ᄋ": 1463, + "ᄌ": 1464, + "ᄎ": 1465, + "ᄏ": 1466, + "ᄐ": 1467, + "ᄑ": 1468, + "ᄒ": 1469, + "ᅡ": 1470, + "ᅢ": 1471, + "ᅥ": 1472, + "ᅦ": 1473, + "ᅧ": 1474, + "ᅩ": 1475, + "ᅪ": 1476, + "ᅭ": 1477, + "ᅮ": 1478, + "ᅯ": 1479, + "ᅲ": 1480, + "ᅳ": 1481, + "ᅴ": 1482, + "ᅵ": 1483, + "ᆨ": 1484, + "ᆫ": 1485, + "ᆯ": 1486, + "ᆷ": 1487, + "ᆸ": 1488, + "ᆼ": 1489, + "ᴬ": 1490, + "ᴮ": 1491, + "ᴰ": 1492, + "ᴵ": 1493, + "ᴺ": 1494, + "ᵀ": 1495, + "ᵃ": 1496, + "ᵇ": 1497, + "ᵈ": 1498, + "ᵉ": 1499, + "ᵍ": 1500, + "ᵏ": 1501, + "ᵐ": 1502, + "ᵒ": 1503, + "ᵖ": 1504, + "ᵗ": 1505, + "ᵘ": 1506, + "ᵢ": 1507, + "ᵣ": 1508, + "ᵤ": 1509, + "ᵥ": 1510, + "ᶜ": 1511, + "ᶠ": 1512, + "‐": 1513, + "‑": 1514, + "‒": 1515, + "–": 1516, + "—": 1517, + "―": 1518, + "‖": 1519, + "‘": 1520, + "’": 1521, + "‚": 1522, + "“": 1523, + "”": 1524, + "„": 1525, + "†": 1526, + "‡": 1527, + "•": 1528, + "…": 1529, + "‰": 1530, + "′": 1531, + "″": 1532, + "›": 1533, + "‿": 1534, + "⁄": 1535, + "⁰": 1536, + "ⁱ": 1537, + "⁴": 1538, + "⁵": 1539, + "⁶": 1540, + "⁷": 1541, + "⁸": 1542, + "⁹": 1543, + "⁺": 1544, + "⁻": 1545, + "ⁿ": 1546, + "₀": 1547, + "₁": 1548, + "₂": 1549, + "₃": 1550, + "₄": 1551, + "₅": 1552, + "₆": 1553, + "₇": 1554, + "₈": 1555, + "₉": 1556, + "₊": 1557, + "₍": 1558, + "₎": 1559, + "ₐ": 1560, + "ₑ": 1561, + "ₒ": 1562, + "ₓ": 1563, + "ₕ": 1564, + "ₖ": 1565, + "ₗ": 1566, + "ₘ": 1567, + "ₙ": 1568, + "ₚ": 1569, + "ₛ": 1570, + "ₜ": 1571, + "₤": 1572, + "₩": 1573, + "€": 1574, + "₱": 1575, + "₹": 1576, + "ℓ": 1577, + "№": 1578, + "ℝ": 1579, + "™": 1580, + "⅓": 1581, + "⅔": 1582, + "←": 1583, + "↑": 1584, + "→": 1585, + "↓": 1586, + "↔": 1587, + "↦": 1588, + "⇄": 1589, + "⇌": 1590, + "⇒": 1591, + "∂": 1592, + "∅": 1593, + "∆": 1594, + "∇": 1595, + "∈": 1596, + "−": 1597, + "∗": 1598, + "∘": 1599, + "√": 1600, + "∞": 1601, + "∧": 1602, + "∨": 1603, + "∩": 1604, + "∪": 1605, + "≈": 1606, + "≡": 1607, + "≤": 1608, + "≥": 1609, + "⊂": 1610, + "⊆": 1611, + "⊕": 1612, + "⊗": 1613, + "⋅": 1614, + "─": 1615, + "│": 1616, + "■": 1617, + "▪": 1618, + "●": 1619, + "★": 1620, + "☆": 1621, + "☉": 1622, + "♠": 1623, + "♣": 1624, + "♥": 1625, + "♦": 1626, + "♭": 1627, + "♯": 1628, + "⟨": 1629, + "⟩": 1630, + "ⱼ": 1631, + "⺩": 1632, + "⺼": 1633, + "⽥": 1634, + "、": 1635, + "。": 1636, + "〈": 1637, + "〉": 1638, + "《": 1639, + "》": 1640, + "「": 1641, + "」": 1642, + "『": 1643, + "』": 1644, + "〜": 1645, + "あ": 1646, + "い": 1647, + "う": 1648, + "え": 1649, + "お": 1650, + "か": 1651, + "き": 1652, + "く": 1653, + "け": 1654, + "こ": 1655, + "さ": 1656, + "し": 1657, + "す": 1658, + "せ": 1659, + "そ": 1660, + "た": 1661, + "ち": 1662, + "っ": 1663, + "つ": 1664, + "て": 1665, + "と": 1666, + "な": 1667, + "に": 1668, + "ぬ": 1669, + "ね": 1670, + "の": 1671, + "は": 1672, + "ひ": 1673, + "ふ": 1674, + "へ": 1675, + "ほ": 1676, + "ま": 1677, + "み": 1678, + "む": 1679, + "め": 1680, + "も": 1681, + "や": 1682, + "ゆ": 1683, + "よ": 1684, + "ら": 1685, + "り": 1686, + "る": 1687, + "れ": 1688, + "ろ": 1689, + "を": 1690, + "ん": 1691, + "ァ": 1692, + "ア": 1693, + "ィ": 1694, + "イ": 1695, + "ウ": 1696, + "ェ": 1697, + "エ": 1698, + "オ": 1699, + "カ": 1700, + "キ": 1701, + "ク": 1702, + "ケ": 1703, + "コ": 1704, + "サ": 1705, + "シ": 1706, + "ス": 1707, + "セ": 1708, + "タ": 1709, + "チ": 1710, + "ッ": 1711, + "ツ": 1712, + "テ": 1713, + "ト": 1714, + "ナ": 1715, + "ニ": 1716, + "ノ": 1717, + "ハ": 1718, + "ヒ": 1719, + "フ": 1720, + "ヘ": 1721, + "ホ": 1722, + "マ": 1723, + "ミ": 1724, + "ム": 1725, + "メ": 1726, + "モ": 1727, + "ャ": 1728, + "ュ": 1729, + "ョ": 1730, + "ラ": 1731, + "リ": 1732, + "ル": 1733, + "レ": 1734, + "ロ": 1735, + "ワ": 1736, + "ン": 1737, + "・": 1738, + "ー": 1739, + "一": 1740, + "三": 1741, + "上": 1742, + "下": 1743, + "不": 1744, + "世": 1745, + "中": 1746, + "主": 1747, + "久": 1748, + "之": 1749, + "也": 1750, + "事": 1751, + "二": 1752, + "五": 1753, + "井": 1754, + "京": 1755, + "人": 1756, + "亻": 1757, + "仁": 1758, + "介": 1759, + "代": 1760, + "仮": 1761, + "伊": 1762, + "会": 1763, + "佐": 1764, + "侍": 1765, + "保": 1766, + "信": 1767, + "健": 1768, + "元": 1769, + "光": 1770, + "八": 1771, + "公": 1772, + "内": 1773, + "出": 1774, + "分": 1775, + "前": 1776, + "劉": 1777, + "力": 1778, + "加": 1779, + "勝": 1780, + "北": 1781, + "区": 1782, + "十": 1783, + "千": 1784, + "南": 1785, + "博": 1786, + "原": 1787, + "口": 1788, + "古": 1789, + "史": 1790, + "司": 1791, + "合": 1792, + "吉": 1793, + "同": 1794, + "名": 1795, + "和": 1796, + "囗": 1797, + "四": 1798, + "国": 1799, + "國": 1800, + "土": 1801, + "地": 1802, + "坂": 1803, + "城": 1804, + "堂": 1805, + "場": 1806, + "士": 1807, + "夏": 1808, + "外": 1809, + "大": 1810, + "天": 1811, + "太": 1812, + "夫": 1813, + "奈": 1814, + "女": 1815, + "子": 1816, + "学": 1817, + "宀": 1818, + "宇": 1819, + "安": 1820, + "宗": 1821, + "定": 1822, + "宣": 1823, + "宮": 1824, + "家": 1825, + "宿": 1826, + "寺": 1827, + "將": 1828, + "小": 1829, + "尚": 1830, + "山": 1831, + "岡": 1832, + "島": 1833, + "崎": 1834, + "川": 1835, + "州": 1836, + "巿": 1837, + "帝": 1838, + "平": 1839, + "年": 1840, + "幸": 1841, + "广": 1842, + "弘": 1843, + "張": 1844, + "彳": 1845, + "後": 1846, + "御": 1847, + "德": 1848, + "心": 1849, + "忄": 1850, + "志": 1851, + "忠": 1852, + "愛": 1853, + "成": 1854, + "我": 1855, + "戦": 1856, + "戸": 1857, + "手": 1858, + "扌": 1859, + "政": 1860, + "文": 1861, + "新": 1862, + "方": 1863, + "日": 1864, + "明": 1865, + "星": 1866, + "春": 1867, + "昭": 1868, + "智": 1869, + "曲": 1870, + "書": 1871, + "月": 1872, + "有": 1873, + "朝": 1874, + "木": 1875, + "本": 1876, + "李": 1877, + "村": 1878, + "東": 1879, + "松": 1880, + "林": 1881, + "森": 1882, + "楊": 1883, + "樹": 1884, + "橋": 1885, + "歌": 1886, + "止": 1887, + "正": 1888, + "武": 1889, + "比": 1890, + "氏": 1891, + "民": 1892, + "水": 1893, + "氵": 1894, + "氷": 1895, + "永": 1896, + "江": 1897, + "沢": 1898, + "河": 1899, + "治": 1900, + "法": 1901, + "海": 1902, + "清": 1903, + "漢": 1904, + "瀬": 1905, + "火": 1906, + "版": 1907, + "犬": 1908, + "王": 1909, + "生": 1910, + "田": 1911, + "男": 1912, + "疒": 1913, + "発": 1914, + "白": 1915, + "的": 1916, + "皇": 1917, + "目": 1918, + "相": 1919, + "省": 1920, + "真": 1921, + "石": 1922, + "示": 1923, + "社": 1924, + "神": 1925, + "福": 1926, + "禾": 1927, + "秀": 1928, + "秋": 1929, + "空": 1930, + "立": 1931, + "章": 1932, + "竹": 1933, + "糹": 1934, + "美": 1935, + "義": 1936, + "耳": 1937, + "良": 1938, + "艹": 1939, + "花": 1940, + "英": 1941, + "華": 1942, + "葉": 1943, + "藤": 1944, + "行": 1945, + "街": 1946, + "西": 1947, + "見": 1948, + "訁": 1949, + "語": 1950, + "谷": 1951, + "貝": 1952, + "貴": 1953, + "車": 1954, + "軍": 1955, + "辶": 1956, + "道": 1957, + "郎": 1958, + "郡": 1959, + "部": 1960, + "都": 1961, + "里": 1962, + "野": 1963, + "金": 1964, + "鈴": 1965, + "镇": 1966, + "長": 1967, + "門": 1968, + "間": 1969, + "阝": 1970, + "阿": 1971, + "陳": 1972, + "陽": 1973, + "雄": 1974, + "青": 1975, + "面": 1976, + "風": 1977, + "食": 1978, + "香": 1979, + "馬": 1980, + "高": 1981, + "龍": 1982, + "龸": 1983, + "fi": 1984, + "fl": 1985, + "!": 1986, + "(": 1987, + ")": 1988, + ",": 1989, + "-": 1990, + ".": 1991, + "/": 1992, + ":": 1993, + "?": 1994, + "~": 1995, + "the": 1996, + "of": 1997, + "and": 1998, + "in": 1999, + "to": 2000, + "was": 2001, + "he": 2002, + "is": 2003, + "as": 2004, + "for": 2005, + "on": 2006, + "with": 2007, + "that": 2008, + "it": 2009, + "his": 2010, + "by": 2011, + "at": 2012, + "from": 2013, + "her": 2014, + "##s": 2015, + "she": 2016, + "you": 2017, + "had": 2018, + "an": 2019, + "were": 2020, + "but": 2021, + "be": 2022, + "this": 2023, + "are": 2024, + "not": 2025, + "my": 2026, + "they": 2027, + "one": 2028, + "which": 2029, + "or": 2030, + "have": 2031, + "him": 2032, + "me": 2033, + "first": 2034, + "all": 2035, + "also": 2036, + "their": 2037, + "has": 2038, + "up": 2039, + "who": 2040, + "out": 2041, + "been": 2042, + "when": 2043, + "after": 2044, + "there": 2045, + "into": 2046, + "new": 2047, + "two": 2048, + "its": 2049, + "##a": 2050, + "time": 2051, + "would": 2052, + "no": 2053, + "what": 2054, + "about": 2055, + "said": 2056, + "we": 2057, + "over": 2058, + "then": 2059, + "other": 2060, + "so": 2061, + "more": 2062, + "##e": 2063, + "can": 2064, + "if": 2065, + "like": 2066, + "back": 2067, + "them": 2068, + "only": 2069, + "some": 2070, + "could": 2071, + "##i": 2072, + "where": 2073, + "just": 2074, + "##ing": 2075, + "during": 2076, + "before": 2077, + "##n": 2078, + "do": 2079, + "##o": 2080, + "made": 2081, + "school": 2082, + "through": 2083, + "than": 2084, + "now": 2085, + "years": 2086, + "most": 2087, + "world": 2088, + "may": 2089, + "between": 2090, + "down": 2091, + "well": 2092, + "three": 2093, + "##d": 2094, + "year": 2095, + "while": 2096, + "will": 2097, + "##ed": 2098, + "##r": 2099, + "##y": 2100, + "later": 2101, + "##t": 2102, + "city": 2103, + "under": 2104, + "around": 2105, + "did": 2106, + "such": 2107, + "being": 2108, + "used": 2109, + "state": 2110, + "people": 2111, + "part": 2112, + "know": 2113, + "against": 2114, + "your": 2115, + "many": 2116, + "second": 2117, + "university": 2118, + "both": 2119, + "national": 2120, + "##er": 2121, + "these": 2122, + "don": 2123, + "known": 2124, + "off": 2125, + "way": 2126, + "until": 2127, + "re": 2128, + "how": 2129, + "even": 2130, + "get": 2131, + "head": 2132, + "...": 2133, + "didn": 2134, + "##ly": 2135, + "team": 2136, + "american": 2137, + "because": 2138, + "de": 2139, + "##l": 2140, + "born": 2141, + "united": 2142, + "film": 2143, + "since": 2144, + "still": 2145, + "long": 2146, + "work": 2147, + "south": 2148, + "us": 2149, + "became": 2150, + "any": 2151, + "high": 2152, + "again": 2153, + "day": 2154, + "family": 2155, + "see": 2156, + "right": 2157, + "man": 2158, + "eyes": 2159, + "house": 2160, + "season": 2161, + "war": 2162, + "states": 2163, + "including": 2164, + "took": 2165, + "life": 2166, + "north": 2167, + "same": 2168, + "each": 2169, + "called": 2170, + "name": 2171, + "much": 2172, + "place": 2173, + "however": 2174, + "go": 2175, + "four": 2176, + "group": 2177, + "another": 2178, + "found": 2179, + "won": 2180, + "area": 2181, + "here": 2182, + "going": 2183, + "10": 2184, + "away": 2185, + "series": 2186, + "left": 2187, + "home": 2188, + "music": 2189, + "best": 2190, + "make": 2191, + "hand": 2192, + "number": 2193, + "company": 2194, + "several": 2195, + "never": 2196, + "last": 2197, + "john": 2198, + "000": 2199, + "very": 2200, + "album": 2201, + "take": 2202, + "end": 2203, + "good": 2204, + "too": 2205, + "following": 2206, + "released": 2207, + "game": 2208, + "played": 2209, + "little": 2210, + "began": 2211, + "district": 2212, + "##m": 2213, + "old": 2214, + "want": 2215, + "those": 2216, + "side": 2217, + "held": 2218, + "own": 2219, + "early": 2220, + "county": 2221, + "ll": 2222, + "league": 2223, + "use": 2224, + "west": 2225, + "##u": 2226, + "face": 2227, + "think": 2228, + "##es": 2229, + "2010": 2230, + "government": 2231, + "##h": 2232, + "march": 2233, + "came": 2234, + "small": 2235, + "general": 2236, + "town": 2237, + "june": 2238, + "##on": 2239, + "line": 2240, + "based": 2241, + "something": 2242, + "##k": 2243, + "september": 2244, + "thought": 2245, + "looked": 2246, + "along": 2247, + "international": 2248, + "2011": 2249, + "air": 2250, + "july": 2251, + "club": 2252, + "went": 2253, + "january": 2254, + "october": 2255, + "our": 2256, + "august": 2257, + "april": 2258, + "york": 2259, + "12": 2260, + "few": 2261, + "2012": 2262, + "2008": 2263, + "east": 2264, + "show": 2265, + "member": 2266, + "college": 2267, + "2009": 2268, + "father": 2269, + "public": 2270, + "##us": 2271, + "come": 2272, + "men": 2273, + "five": 2274, + "set": 2275, + "station": 2276, + "church": 2277, + "##c": 2278, + "next": 2279, + "former": 2280, + "november": 2281, + "room": 2282, + "party": 2283, + "located": 2284, + "december": 2285, + "2013": 2286, + "age": 2287, + "got": 2288, + "2007": 2289, + "##g": 2290, + "system": 2291, + "let": 2292, + "love": 2293, + "2006": 2294, + "though": 2295, + "every": 2296, + "2014": 2297, + "look": 2298, + "song": 2299, + "water": 2300, + "century": 2301, + "without": 2302, + "body": 2303, + "black": 2304, + "night": 2305, + "within": 2306, + "great": 2307, + "women": 2308, + "single": 2309, + "ve": 2310, + "building": 2311, + "large": 2312, + "population": 2313, + "river": 2314, + "named": 2315, + "band": 2316, + "white": 2317, + "started": 2318, + "##an": 2319, + "once": 2320, + "15": 2321, + "20": 2322, + "should": 2323, + "18": 2324, + "2015": 2325, + "service": 2326, + "top": 2327, + "built": 2328, + "british": 2329, + "open": 2330, + "death": 2331, + "king": 2332, + "moved": 2333, + "local": 2334, + "times": 2335, + "children": 2336, + "february": 2337, + "book": 2338, + "why": 2339, + "11": 2340, + "door": 2341, + "need": 2342, + "president": 2343, + "order": 2344, + "final": 2345, + "road": 2346, + "wasn": 2347, + "although": 2348, + "due": 2349, + "major": 2350, + "died": 2351, + "village": 2352, + "third": 2353, + "knew": 2354, + "2016": 2355, + "asked": 2356, + "turned": 2357, + "st": 2358, + "wanted": 2359, + "say": 2360, + "##p": 2361, + "together": 2362, + "received": 2363, + "main": 2364, + "son": 2365, + "served": 2366, + "different": 2367, + "##en": 2368, + "behind": 2369, + "himself": 2370, + "felt": 2371, + "members": 2372, + "power": 2373, + "football": 2374, + "law": 2375, + "voice": 2376, + "play": 2377, + "##in": 2378, + "near": 2379, + "park": 2380, + "history": 2381, + "30": 2382, + "having": 2383, + "2005": 2384, + "16": 2385, + "##man": 2386, + "saw": 2387, + "mother": 2388, + "##al": 2389, + "army": 2390, + "point": 2391, + "front": 2392, + "help": 2393, + "english": 2394, + "street": 2395, + "art": 2396, + "late": 2397, + "hands": 2398, + "games": 2399, + "award": 2400, + "##ia": 2401, + "young": 2402, + "14": 2403, + "put": 2404, + "published": 2405, + "country": 2406, + "division": 2407, + "across": 2408, + "told": 2409, + "13": 2410, + "often": 2411, + "ever": 2412, + "french": 2413, + "london": 2414, + "center": 2415, + "six": 2416, + "red": 2417, + "2017": 2418, + "led": 2419, + "days": 2420, + "include": 2421, + "light": 2422, + "25": 2423, + "find": 2424, + "tell": 2425, + "among": 2426, + "species": 2427, + "really": 2428, + "according": 2429, + "central": 2430, + "half": 2431, + "2004": 2432, + "form": 2433, + "original": 2434, + "gave": 2435, + "office": 2436, + "making": 2437, + "enough": 2438, + "lost": 2439, + "full": 2440, + "opened": 2441, + "must": 2442, + "included": 2443, + "live": 2444, + "given": 2445, + "german": 2446, + "player": 2447, + "run": 2448, + "business": 2449, + "woman": 2450, + "community": 2451, + "cup": 2452, + "might": 2453, + "million": 2454, + "land": 2455, + "2000": 2456, + "court": 2457, + "development": 2458, + "17": 2459, + "short": 2460, + "round": 2461, + "ii": 2462, + "km": 2463, + "seen": 2464, + "class": 2465, + "story": 2466, + "always": 2467, + "become": 2468, + "sure": 2469, + "research": 2470, + "almost": 2471, + "director": 2472, + "council": 2473, + "la": 2474, + "##2": 2475, + "career": 2476, + "things": 2477, + "using": 2478, + "island": 2479, + "##z": 2480, + "couldn": 2481, + "car": 2482, + "##is": 2483, + "24": 2484, + "close": 2485, + "force": 2486, + "##1": 2487, + "better": 2488, + "free": 2489, + "support": 2490, + "control": 2491, + "field": 2492, + "students": 2493, + "2003": 2494, + "education": 2495, + "married": 2496, + "##b": 2497, + "nothing": 2498, + "worked": 2499, + "others": 2500, + "record": 2501, + "big": 2502, + "inside": 2503, + "level": 2504, + "anything": 2505, + "continued": 2506, + "give": 2507, + "james": 2508, + "##3": 2509, + "military": 2510, + "established": 2511, + "non": 2512, + "returned": 2513, + "feel": 2514, + "does": 2515, + "title": 2516, + "written": 2517, + "thing": 2518, + "feet": 2519, + "william": 2520, + "far": 2521, + "co": 2522, + "association": 2523, + "hard": 2524, + "already": 2525, + "2002": 2526, + "##ra": 2527, + "championship": 2528, + "human": 2529, + "western": 2530, + "100": 2531, + "##na": 2532, + "department": 2533, + "hall": 2534, + "role": 2535, + "various": 2536, + "production": 2537, + "21": 2538, + "19": 2539, + "heart": 2540, + "2001": 2541, + "living": 2542, + "fire": 2543, + "version": 2544, + "##ers": 2545, + "##f": 2546, + "television": 2547, + "royal": 2548, + "##4": 2549, + "produced": 2550, + "working": 2551, + "act": 2552, + "case": 2553, + "society": 2554, + "region": 2555, + "present": 2556, + "radio": 2557, + "period": 2558, + "looking": 2559, + "least": 2560, + "total": 2561, + "keep": 2562, + "england": 2563, + "wife": 2564, + "program": 2565, + "per": 2566, + "brother": 2567, + "mind": 2568, + "special": 2569, + "22": 2570, + "##le": 2571, + "am": 2572, + "works": 2573, + "soon": 2574, + "##6": 2575, + "political": 2576, + "george": 2577, + "services": 2578, + "taken": 2579, + "created": 2580, + "##7": 2581, + "further": 2582, + "able": 2583, + "reached": 2584, + "david": 2585, + "union": 2586, + "joined": 2587, + "upon": 2588, + "done": 2589, + "important": 2590, + "social": 2591, + "information": 2592, + "either": 2593, + "##ic": 2594, + "##x": 2595, + "appeared": 2596, + "position": 2597, + "ground": 2598, + "lead": 2599, + "rock": 2600, + "dark": 2601, + "election": 2602, + "23": 2603, + "board": 2604, + "france": 2605, + "hair": 2606, + "course": 2607, + "arms": 2608, + "site": 2609, + "police": 2610, + "girl": 2611, + "instead": 2612, + "real": 2613, + "sound": 2614, + "##v": 2615, + "words": 2616, + "moment": 2617, + "##te": 2618, + "someone": 2619, + "##8": 2620, + "summer": 2621, + "project": 2622, + "announced": 2623, + "san": 2624, + "less": 2625, + "wrote": 2626, + "past": 2627, + "followed": 2628, + "##5": 2629, + "blue": 2630, + "founded": 2631, + "al": 2632, + "finally": 2633, + "india": 2634, + "taking": 2635, + "records": 2636, + "america": 2637, + "##ne": 2638, + "1999": 2639, + "design": 2640, + "considered": 2641, + "northern": 2642, + "god": 2643, + "stop": 2644, + "battle": 2645, + "toward": 2646, + "european": 2647, + "outside": 2648, + "described": 2649, + "track": 2650, + "today": 2651, + "playing": 2652, + "language": 2653, + "28": 2654, + "call": 2655, + "26": 2656, + "heard": 2657, + "professional": 2658, + "low": 2659, + "australia": 2660, + "miles": 2661, + "california": 2662, + "win": 2663, + "yet": 2664, + "green": 2665, + "##ie": 2666, + "trying": 2667, + "blood": 2668, + "##ton": 2669, + "southern": 2670, + "science": 2671, + "maybe": 2672, + "everything": 2673, + "match": 2674, + "square": 2675, + "27": 2676, + "mouth": 2677, + "video": 2678, + "race": 2679, + "recorded": 2680, + "leave": 2681, + "above": 2682, + "##9": 2683, + "daughter": 2684, + "points": 2685, + "space": 2686, + "1998": 2687, + "museum": 2688, + "change": 2689, + "middle": 2690, + "common": 2691, + "##0": 2692, + "move": 2693, + "tv": 2694, + "post": 2695, + "##ta": 2696, + "lake": 2697, + "seven": 2698, + "tried": 2699, + "elected": 2700, + "closed": 2701, + "ten": 2702, + "paul": 2703, + "minister": 2704, + "##th": 2705, + "months": 2706, + "start": 2707, + "chief": 2708, + "return": 2709, + "canada": 2710, + "person": 2711, + "sea": 2712, + "release": 2713, + "similar": 2714, + "modern": 2715, + "brought": 2716, + "rest": 2717, + "hit": 2718, + "formed": 2719, + "mr": 2720, + "##la": 2721, + "1997": 2722, + "floor": 2723, + "event": 2724, + "doing": 2725, + "thomas": 2726, + "1996": 2727, + "robert": 2728, + "care": 2729, + "killed": 2730, + "training": 2731, + "star": 2732, + "week": 2733, + "needed": 2734, + "turn": 2735, + "finished": 2736, + "railway": 2737, + "rather": 2738, + "news": 2739, + "health": 2740, + "sent": 2741, + "example": 2742, + "ran": 2743, + "term": 2744, + "michael": 2745, + "coming": 2746, + "currently": 2747, + "yes": 2748, + "forces": 2749, + "despite": 2750, + "gold": 2751, + "areas": 2752, + "50": 2753, + "stage": 2754, + "fact": 2755, + "29": 2756, + "dead": 2757, + "says": 2758, + "popular": 2759, + "2018": 2760, + "originally": 2761, + "germany": 2762, + "probably": 2763, + "developed": 2764, + "result": 2765, + "pulled": 2766, + "friend": 2767, + "stood": 2768, + "money": 2769, + "running": 2770, + "mi": 2771, + "signed": 2772, + "word": 2773, + "songs": 2774, + "child": 2775, + "eventually": 2776, + "met": 2777, + "tour": 2778, + "average": 2779, + "teams": 2780, + "minutes": 2781, + "festival": 2782, + "current": 2783, + "deep": 2784, + "kind": 2785, + "1995": 2786, + "decided": 2787, + "usually": 2788, + "eastern": 2789, + "seemed": 2790, + "##ness": 2791, + "episode": 2792, + "bed": 2793, + "added": 2794, + "table": 2795, + "indian": 2796, + "private": 2797, + "charles": 2798, + "route": 2799, + "available": 2800, + "idea": 2801, + "throughout": 2802, + "centre": 2803, + "addition": 2804, + "appointed": 2805, + "style": 2806, + "1994": 2807, + "books": 2808, + "eight": 2809, + "construction": 2810, + "press": 2811, + "mean": 2812, + "wall": 2813, + "friends": 2814, + "remained": 2815, + "schools": 2816, + "study": 2817, + "##ch": 2818, + "##um": 2819, + "institute": 2820, + "oh": 2821, + "chinese": 2822, + "sometimes": 2823, + "events": 2824, + "possible": 2825, + "1992": 2826, + "australian": 2827, + "type": 2828, + "brown": 2829, + "forward": 2830, + "talk": 2831, + "process": 2832, + "food": 2833, + "debut": 2834, + "seat": 2835, + "performance": 2836, + "committee": 2837, + "features": 2838, + "character": 2839, + "arts": 2840, + "herself": 2841, + "else": 2842, + "lot": 2843, + "strong": 2844, + "russian": 2845, + "range": 2846, + "hours": 2847, + "peter": 2848, + "arm": 2849, + "##da": 2850, + "morning": 2851, + "dr": 2852, + "sold": 2853, + "##ry": 2854, + "quickly": 2855, + "directed": 2856, + "1993": 2857, + "guitar": 2858, + "china": 2859, + "##w": 2860, + "31": 2861, + "list": 2862, + "##ma": 2863, + "performed": 2864, + "media": 2865, + "uk": 2866, + "players": 2867, + "smile": 2868, + "##rs": 2869, + "myself": 2870, + "40": 2871, + "placed": 2872, + "coach": 2873, + "province": 2874, + "towards": 2875, + "wouldn": 2876, + "leading": 2877, + "whole": 2878, + "boy": 2879, + "official": 2880, + "designed": 2881, + "grand": 2882, + "census": 2883, + "##el": 2884, + "europe": 2885, + "attack": 2886, + "japanese": 2887, + "henry": 2888, + "1991": 2889, + "##re": 2890, + "##os": 2891, + "cross": 2892, + "getting": 2893, + "alone": 2894, + "action": 2895, + "lower": 2896, + "network": 2897, + "wide": 2898, + "washington": 2899, + "japan": 2900, + "1990": 2901, + "hospital": 2902, + "believe": 2903, + "changed": 2904, + "sister": 2905, + "##ar": 2906, + "hold": 2907, + "gone": 2908, + "sir": 2909, + "hadn": 2910, + "ship": 2911, + "##ka": 2912, + "studies": 2913, + "academy": 2914, + "shot": 2915, + "rights": 2916, + "below": 2917, + "base": 2918, + "bad": 2919, + "involved": 2920, + "kept": 2921, + "largest": 2922, + "##ist": 2923, + "bank": 2924, + "future": 2925, + "especially": 2926, + "beginning": 2927, + "mark": 2928, + "movement": 2929, + "section": 2930, + "female": 2931, + "magazine": 2932, + "plan": 2933, + "professor": 2934, + "lord": 2935, + "longer": 2936, + "##ian": 2937, + "sat": 2938, + "walked": 2939, + "hill": 2940, + "actually": 2941, + "civil": 2942, + "energy": 2943, + "model": 2944, + "families": 2945, + "size": 2946, + "thus": 2947, + "aircraft": 2948, + "completed": 2949, + "includes": 2950, + "data": 2951, + "captain": 2952, + "##or": 2953, + "fight": 2954, + "vocals": 2955, + "featured": 2956, + "richard": 2957, + "bridge": 2958, + "fourth": 2959, + "1989": 2960, + "officer": 2961, + "stone": 2962, + "hear": 2963, + "##ism": 2964, + "means": 2965, + "medical": 2966, + "groups": 2967, + "management": 2968, + "self": 2969, + "lips": 2970, + "competition": 2971, + "entire": 2972, + "lived": 2973, + "technology": 2974, + "leaving": 2975, + "federal": 2976, + "tournament": 2977, + "bit": 2978, + "passed": 2979, + "hot": 2980, + "independent": 2981, + "awards": 2982, + "kingdom": 2983, + "mary": 2984, + "spent": 2985, + "fine": 2986, + "doesn": 2987, + "reported": 2988, + "##ling": 2989, + "jack": 2990, + "fall": 2991, + "raised": 2992, + "itself": 2993, + "stay": 2994, + "true": 2995, + "studio": 2996, + "1988": 2997, + "sports": 2998, + "replaced": 2999, + "paris": 3000, + "systems": 3001, + "saint": 3002, + "leader": 3003, + "theatre": 3004, + "whose": 3005, + "market": 3006, + "capital": 3007, + "parents": 3008, + "spanish": 3009, + "canadian": 3010, + "earth": 3011, + "##ity": 3012, + "cut": 3013, + "degree": 3014, + "writing": 3015, + "bay": 3016, + "christian": 3017, + "awarded": 3018, + "natural": 3019, + "higher": 3020, + "bill": 3021, + "##as": 3022, + "coast": 3023, + "provided": 3024, + "previous": 3025, + "senior": 3026, + "ft": 3027, + "valley": 3028, + "organization": 3029, + "stopped": 3030, + "onto": 3031, + "countries": 3032, + "parts": 3033, + "conference": 3034, + "queen": 3035, + "security": 3036, + "interest": 3037, + "saying": 3038, + "allowed": 3039, + "master": 3040, + "earlier": 3041, + "phone": 3042, + "matter": 3043, + "smith": 3044, + "winning": 3045, + "try": 3046, + "happened": 3047, + "moving": 3048, + "campaign": 3049, + "los": 3050, + "##ley": 3051, + "breath": 3052, + "nearly": 3053, + "mid": 3054, + "1987": 3055, + "certain": 3056, + "girls": 3057, + "date": 3058, + "italian": 3059, + "african": 3060, + "standing": 3061, + "fell": 3062, + "artist": 3063, + "##ted": 3064, + "shows": 3065, + "deal": 3066, + "mine": 3067, + "industry": 3068, + "1986": 3069, + "##ng": 3070, + "everyone": 3071, + "republic": 3072, + "provide": 3073, + "collection": 3074, + "library": 3075, + "student": 3076, + "##ville": 3077, + "primary": 3078, + "owned": 3079, + "older": 3080, + "via": 3081, + "heavy": 3082, + "1st": 3083, + "makes": 3084, + "##able": 3085, + "attention": 3086, + "anyone": 3087, + "africa": 3088, + "##ri": 3089, + "stated": 3090, + "length": 3091, + "ended": 3092, + "fingers": 3093, + "command": 3094, + "staff": 3095, + "skin": 3096, + "foreign": 3097, + "opening": 3098, + "governor": 3099, + "okay": 3100, + "medal": 3101, + "kill": 3102, + "sun": 3103, + "cover": 3104, + "job": 3105, + "1985": 3106, + "introduced": 3107, + "chest": 3108, + "hell": 3109, + "feeling": 3110, + "##ies": 3111, + "success": 3112, + "meet": 3113, + "reason": 3114, + "standard": 3115, + "meeting": 3116, + "novel": 3117, + "1984": 3118, + "trade": 3119, + "source": 3120, + "buildings": 3121, + "##land": 3122, + "rose": 3123, + "guy": 3124, + "goal": 3125, + "##ur": 3126, + "chapter": 3127, + "native": 3128, + "husband": 3129, + "previously": 3130, + "unit": 3131, + "limited": 3132, + "entered": 3133, + "weeks": 3134, + "producer": 3135, + "operations": 3136, + "mountain": 3137, + "takes": 3138, + "covered": 3139, + "forced": 3140, + "related": 3141, + "roman": 3142, + "complete": 3143, + "successful": 3144, + "key": 3145, + "texas": 3146, + "cold": 3147, + "##ya": 3148, + "channel": 3149, + "1980": 3150, + "traditional": 3151, + "films": 3152, + "dance": 3153, + "clear": 3154, + "approximately": 3155, + "500": 3156, + "nine": 3157, + "van": 3158, + "prince": 3159, + "question": 3160, + "active": 3161, + "tracks": 3162, + "ireland": 3163, + "regional": 3164, + "silver": 3165, + "author": 3166, + "personal": 3167, + "sense": 3168, + "operation": 3169, + "##ine": 3170, + "economic": 3171, + "1983": 3172, + "holding": 3173, + "twenty": 3174, + "isbn": 3175, + "additional": 3176, + "speed": 3177, + "hour": 3178, + "edition": 3179, + "regular": 3180, + "historic": 3181, + "places": 3182, + "whom": 3183, + "shook": 3184, + "movie": 3185, + "km²": 3186, + "secretary": 3187, + "prior": 3188, + "report": 3189, + "chicago": 3190, + "read": 3191, + "foundation": 3192, + "view": 3193, + "engine": 3194, + "scored": 3195, + "1982": 3196, + "units": 3197, + "ask": 3198, + "airport": 3199, + "property": 3200, + "ready": 3201, + "immediately": 3202, + "lady": 3203, + "month": 3204, + "listed": 3205, + "contract": 3206, + "##de": 3207, + "manager": 3208, + "themselves": 3209, + "lines": 3210, + "##ki": 3211, + "navy": 3212, + "writer": 3213, + "meant": 3214, + "##ts": 3215, + "runs": 3216, + "##ro": 3217, + "practice": 3218, + "championships": 3219, + "singer": 3220, + "glass": 3221, + "commission": 3222, + "required": 3223, + "forest": 3224, + "starting": 3225, + "culture": 3226, + "generally": 3227, + "giving": 3228, + "access": 3229, + "attended": 3230, + "test": 3231, + "couple": 3232, + "stand": 3233, + "catholic": 3234, + "martin": 3235, + "caught": 3236, + "executive": 3237, + "##less": 3238, + "eye": 3239, + "##ey": 3240, + "thinking": 3241, + "chair": 3242, + "quite": 3243, + "shoulder": 3244, + "1979": 3245, + "hope": 3246, + "decision": 3247, + "plays": 3248, + "defeated": 3249, + "municipality": 3250, + "whether": 3251, + "structure": 3252, + "offered": 3253, + "slowly": 3254, + "pain": 3255, + "ice": 3256, + "direction": 3257, + "##ion": 3258, + "paper": 3259, + "mission": 3260, + "1981": 3261, + "mostly": 3262, + "200": 3263, + "noted": 3264, + "individual": 3265, + "managed": 3266, + "nature": 3267, + "lives": 3268, + "plant": 3269, + "##ha": 3270, + "helped": 3271, + "except": 3272, + "studied": 3273, + "computer": 3274, + "figure": 3275, + "relationship": 3276, + "issue": 3277, + "significant": 3278, + "loss": 3279, + "die": 3280, + "smiled": 3281, + "gun": 3282, + "ago": 3283, + "highest": 3284, + "1972": 3285, + "##am": 3286, + "male": 3287, + "bring": 3288, + "goals": 3289, + "mexico": 3290, + "problem": 3291, + "distance": 3292, + "commercial": 3293, + "completely": 3294, + "location": 3295, + "annual": 3296, + "famous": 3297, + "drive": 3298, + "1976": 3299, + "neck": 3300, + "1978": 3301, + "surface": 3302, + "caused": 3303, + "italy": 3304, + "understand": 3305, + "greek": 3306, + "highway": 3307, + "wrong": 3308, + "hotel": 3309, + "comes": 3310, + "appearance": 3311, + "joseph": 3312, + "double": 3313, + "issues": 3314, + "musical": 3315, + "companies": 3316, + "castle": 3317, + "income": 3318, + "review": 3319, + "assembly": 3320, + "bass": 3321, + "initially": 3322, + "parliament": 3323, + "artists": 3324, + "experience": 3325, + "1974": 3326, + "particular": 3327, + "walk": 3328, + "foot": 3329, + "engineering": 3330, + "talking": 3331, + "window": 3332, + "dropped": 3333, + "##ter": 3334, + "miss": 3335, + "baby": 3336, + "boys": 3337, + "break": 3338, + "1975": 3339, + "stars": 3340, + "edge": 3341, + "remember": 3342, + "policy": 3343, + "carried": 3344, + "train": 3345, + "stadium": 3346, + "bar": 3347, + "sex": 3348, + "angeles": 3349, + "evidence": 3350, + "##ge": 3351, + "becoming": 3352, + "assistant": 3353, + "soviet": 3354, + "1977": 3355, + "upper": 3356, + "step": 3357, + "wing": 3358, + "1970": 3359, + "youth": 3360, + "financial": 3361, + "reach": 3362, + "##ll": 3363, + "actor": 3364, + "numerous": 3365, + "##se": 3366, + "##st": 3367, + "nodded": 3368, + "arrived": 3369, + "##ation": 3370, + "minute": 3371, + "##nt": 3372, + "believed": 3373, + "sorry": 3374, + "complex": 3375, + "beautiful": 3376, + "victory": 3377, + "associated": 3378, + "temple": 3379, + "1968": 3380, + "1973": 3381, + "chance": 3382, + "perhaps": 3383, + "metal": 3384, + "##son": 3385, + "1945": 3386, + "bishop": 3387, + "##et": 3388, + "lee": 3389, + "launched": 3390, + "particularly": 3391, + "tree": 3392, + "le": 3393, + "retired": 3394, + "subject": 3395, + "prize": 3396, + "contains": 3397, + "yeah": 3398, + "theory": 3399, + "empire": 3400, + "##ce": 3401, + "suddenly": 3402, + "waiting": 3403, + "trust": 3404, + "recording": 3405, + "##to": 3406, + "happy": 3407, + "terms": 3408, + "camp": 3409, + "champion": 3410, + "1971": 3411, + "religious": 3412, + "pass": 3413, + "zealand": 3414, + "names": 3415, + "2nd": 3416, + "port": 3417, + "ancient": 3418, + "tom": 3419, + "corner": 3420, + "represented": 3421, + "watch": 3422, + "legal": 3423, + "anti": 3424, + "justice": 3425, + "cause": 3426, + "watched": 3427, + "brothers": 3428, + "45": 3429, + "material": 3430, + "changes": 3431, + "simply": 3432, + "response": 3433, + "louis": 3434, + "fast": 3435, + "##ting": 3436, + "answer": 3437, + "60": 3438, + "historical": 3439, + "1969": 3440, + "stories": 3441, + "straight": 3442, + "create": 3443, + "feature": 3444, + "increased": 3445, + "rate": 3446, + "administration": 3447, + "virginia": 3448, + "el": 3449, + "activities": 3450, + "cultural": 3451, + "overall": 3452, + "winner": 3453, + "programs": 3454, + "basketball": 3455, + "legs": 3456, + "guard": 3457, + "beyond": 3458, + "cast": 3459, + "doctor": 3460, + "mm": 3461, + "flight": 3462, + "results": 3463, + "remains": 3464, + "cost": 3465, + "effect": 3466, + "winter": 3467, + "##ble": 3468, + "larger": 3469, + "islands": 3470, + "problems": 3471, + "chairman": 3472, + "grew": 3473, + "commander": 3474, + "isn": 3475, + "1967": 3476, + "pay": 3477, + "failed": 3478, + "selected": 3479, + "hurt": 3480, + "fort": 3481, + "box": 3482, + "regiment": 3483, + "majority": 3484, + "journal": 3485, + "35": 3486, + "edward": 3487, + "plans": 3488, + "##ke": 3489, + "##ni": 3490, + "shown": 3491, + "pretty": 3492, + "irish": 3493, + "characters": 3494, + "directly": 3495, + "scene": 3496, + "likely": 3497, + "operated": 3498, + "allow": 3499, + "spring": 3500, + "##j": 3501, + "junior": 3502, + "matches": 3503, + "looks": 3504, + "mike": 3505, + "houses": 3506, + "fellow": 3507, + "##tion": 3508, + "beach": 3509, + "marriage": 3510, + "##ham": 3511, + "##ive": 3512, + "rules": 3513, + "oil": 3514, + "65": 3515, + "florida": 3516, + "expected": 3517, + "nearby": 3518, + "congress": 3519, + "sam": 3520, + "peace": 3521, + "recent": 3522, + "iii": 3523, + "wait": 3524, + "subsequently": 3525, + "cell": 3526, + "##do": 3527, + "variety": 3528, + "serving": 3529, + "agreed": 3530, + "please": 3531, + "poor": 3532, + "joe": 3533, + "pacific": 3534, + "attempt": 3535, + "wood": 3536, + "democratic": 3537, + "piece": 3538, + "prime": 3539, + "##ca": 3540, + "rural": 3541, + "mile": 3542, + "touch": 3543, + "appears": 3544, + "township": 3545, + "1964": 3546, + "1966": 3547, + "soldiers": 3548, + "##men": 3549, + "##ized": 3550, + "1965": 3551, + "pennsylvania": 3552, + "closer": 3553, + "fighting": 3554, + "claimed": 3555, + "score": 3556, + "jones": 3557, + "physical": 3558, + "editor": 3559, + "##ous": 3560, + "filled": 3561, + "genus": 3562, + "specific": 3563, + "sitting": 3564, + "super": 3565, + "mom": 3566, + "##va": 3567, + "therefore": 3568, + "supported": 3569, + "status": 3570, + "fear": 3571, + "cases": 3572, + "store": 3573, + "meaning": 3574, + "wales": 3575, + "minor": 3576, + "spain": 3577, + "tower": 3578, + "focus": 3579, + "vice": 3580, + "frank": 3581, + "follow": 3582, + "parish": 3583, + "separate": 3584, + "golden": 3585, + "horse": 3586, + "fifth": 3587, + "remaining": 3588, + "branch": 3589, + "32": 3590, + "presented": 3591, + "stared": 3592, + "##id": 3593, + "uses": 3594, + "secret": 3595, + "forms": 3596, + "##co": 3597, + "baseball": 3598, + "exactly": 3599, + "##ck": 3600, + "choice": 3601, + "note": 3602, + "discovered": 3603, + "travel": 3604, + "composed": 3605, + "truth": 3606, + "russia": 3607, + "ball": 3608, + "color": 3609, + "kiss": 3610, + "dad": 3611, + "wind": 3612, + "continue": 3613, + "ring": 3614, + "referred": 3615, + "numbers": 3616, + "digital": 3617, + "greater": 3618, + "##ns": 3619, + "metres": 3620, + "slightly": 3621, + "direct": 3622, + "increase": 3623, + "1960": 3624, + "responsible": 3625, + "crew": 3626, + "rule": 3627, + "trees": 3628, + "troops": 3629, + "##no": 3630, + "broke": 3631, + "goes": 3632, + "individuals": 3633, + "hundred": 3634, + "weight": 3635, + "creek": 3636, + "sleep": 3637, + "memory": 3638, + "defense": 3639, + "provides": 3640, + "ordered": 3641, + "code": 3642, + "value": 3643, + "jewish": 3644, + "windows": 3645, + "1944": 3646, + "safe": 3647, + "judge": 3648, + "whatever": 3649, + "corps": 3650, + "realized": 3651, + "growing": 3652, + "pre": 3653, + "##ga": 3654, + "cities": 3655, + "alexander": 3656, + "gaze": 3657, + "lies": 3658, + "spread": 3659, + "scott": 3660, + "letter": 3661, + "showed": 3662, + "situation": 3663, + "mayor": 3664, + "transport": 3665, + "watching": 3666, + "workers": 3667, + "extended": 3668, + "##li": 3669, + "expression": 3670, + "normal": 3671, + "##ment": 3672, + "chart": 3673, + "multiple": 3674, + "border": 3675, + "##ba": 3676, + "host": 3677, + "##ner": 3678, + "daily": 3679, + "mrs": 3680, + "walls": 3681, + "piano": 3682, + "##ko": 3683, + "heat": 3684, + "cannot": 3685, + "##ate": 3686, + "earned": 3687, + "products": 3688, + "drama": 3689, + "era": 3690, + "authority": 3691, + "seasons": 3692, + "join": 3693, + "grade": 3694, + "##io": 3695, + "sign": 3696, + "difficult": 3697, + "machine": 3698, + "1963": 3699, + "territory": 3700, + "mainly": 3701, + "##wood": 3702, + "stations": 3703, + "squadron": 3704, + "1962": 3705, + "stepped": 3706, + "iron": 3707, + "19th": 3708, + "##led": 3709, + "serve": 3710, + "appear": 3711, + "sky": 3712, + "speak": 3713, + "broken": 3714, + "charge": 3715, + "knowledge": 3716, + "kilometres": 3717, + "removed": 3718, + "ships": 3719, + "article": 3720, + "campus": 3721, + "simple": 3722, + "##ty": 3723, + "pushed": 3724, + "britain": 3725, + "##ve": 3726, + "leaves": 3727, + "recently": 3728, + "cd": 3729, + "soft": 3730, + "boston": 3731, + "latter": 3732, + "easy": 3733, + "acquired": 3734, + "poland": 3735, + "##sa": 3736, + "quality": 3737, + "officers": 3738, + "presence": 3739, + "planned": 3740, + "nations": 3741, + "mass": 3742, + "broadcast": 3743, + "jean": 3744, + "share": 3745, + "image": 3746, + "influence": 3747, + "wild": 3748, + "offer": 3749, + "emperor": 3750, + "electric": 3751, + "reading": 3752, + "headed": 3753, + "ability": 3754, + "promoted": 3755, + "yellow": 3756, + "ministry": 3757, + "1942": 3758, + "throat": 3759, + "smaller": 3760, + "politician": 3761, + "##by": 3762, + "latin": 3763, + "spoke": 3764, + "cars": 3765, + "williams": 3766, + "males": 3767, + "lack": 3768, + "pop": 3769, + "80": 3770, + "##ier": 3771, + "acting": 3772, + "seeing": 3773, + "consists": 3774, + "##ti": 3775, + "estate": 3776, + "1961": 3777, + "pressure": 3778, + "johnson": 3779, + "newspaper": 3780, + "jr": 3781, + "chris": 3782, + "olympics": 3783, + "online": 3784, + "conditions": 3785, + "beat": 3786, + "elements": 3787, + "walking": 3788, + "vote": 3789, + "##field": 3790, + "needs": 3791, + "carolina": 3792, + "text": 3793, + "featuring": 3794, + "global": 3795, + "block": 3796, + "shirt": 3797, + "levels": 3798, + "francisco": 3799, + "purpose": 3800, + "females": 3801, + "et": 3802, + "dutch": 3803, + "duke": 3804, + "ahead": 3805, + "gas": 3806, + "twice": 3807, + "safety": 3808, + "serious": 3809, + "turning": 3810, + "highly": 3811, + "lieutenant": 3812, + "firm": 3813, + "maria": 3814, + "amount": 3815, + "mixed": 3816, + "daniel": 3817, + "proposed": 3818, + "perfect": 3819, + "agreement": 3820, + "affairs": 3821, + "3rd": 3822, + "seconds": 3823, + "contemporary": 3824, + "paid": 3825, + "1943": 3826, + "prison": 3827, + "save": 3828, + "kitchen": 3829, + "label": 3830, + "administrative": 3831, + "intended": 3832, + "constructed": 3833, + "academic": 3834, + "nice": 3835, + "teacher": 3836, + "races": 3837, + "1956": 3838, + "formerly": 3839, + "corporation": 3840, + "ben": 3841, + "nation": 3842, + "issued": 3843, + "shut": 3844, + "1958": 3845, + "drums": 3846, + "housing": 3847, + "victoria": 3848, + "seems": 3849, + "opera": 3850, + "1959": 3851, + "graduated": 3852, + "function": 3853, + "von": 3854, + "mentioned": 3855, + "picked": 3856, + "build": 3857, + "recognized": 3858, + "shortly": 3859, + "protection": 3860, + "picture": 3861, + "notable": 3862, + "exchange": 3863, + "elections": 3864, + "1980s": 3865, + "loved": 3866, + "percent": 3867, + "racing": 3868, + "fish": 3869, + "elizabeth": 3870, + "garden": 3871, + "volume": 3872, + "hockey": 3873, + "1941": 3874, + "beside": 3875, + "settled": 3876, + "##ford": 3877, + "1940": 3878, + "competed": 3879, + "replied": 3880, + "drew": 3881, + "1948": 3882, + "actress": 3883, + "marine": 3884, + "scotland": 3885, + "steel": 3886, + "glanced": 3887, + "farm": 3888, + "steve": 3889, + "1957": 3890, + "risk": 3891, + "tonight": 3892, + "positive": 3893, + "magic": 3894, + "singles": 3895, + "effects": 3896, + "gray": 3897, + "screen": 3898, + "dog": 3899, + "##ja": 3900, + "residents": 3901, + "bus": 3902, + "sides": 3903, + "none": 3904, + "secondary": 3905, + "literature": 3906, + "polish": 3907, + "destroyed": 3908, + "flying": 3909, + "founder": 3910, + "households": 3911, + "1939": 3912, + "lay": 3913, + "reserve": 3914, + "usa": 3915, + "gallery": 3916, + "##ler": 3917, + "1946": 3918, + "industrial": 3919, + "younger": 3920, + "approach": 3921, + "appearances": 3922, + "urban": 3923, + "ones": 3924, + "1950": 3925, + "finish": 3926, + "avenue": 3927, + "powerful": 3928, + "fully": 3929, + "growth": 3930, + "page": 3931, + "honor": 3932, + "jersey": 3933, + "projects": 3934, + "advanced": 3935, + "revealed": 3936, + "basic": 3937, + "90": 3938, + "infantry": 3939, + "pair": 3940, + "equipment": 3941, + "visit": 3942, + "33": 3943, + "evening": 3944, + "search": 3945, + "grant": 3946, + "effort": 3947, + "solo": 3948, + "treatment": 3949, + "buried": 3950, + "republican": 3951, + "primarily": 3952, + "bottom": 3953, + "owner": 3954, + "1970s": 3955, + "israel": 3956, + "gives": 3957, + "jim": 3958, + "dream": 3959, + "bob": 3960, + "remain": 3961, + "spot": 3962, + "70": 3963, + "notes": 3964, + "produce": 3965, + "champions": 3966, + "contact": 3967, + "ed": 3968, + "soul": 3969, + "accepted": 3970, + "ways": 3971, + "del": 3972, + "##ally": 3973, + "losing": 3974, + "split": 3975, + "price": 3976, + "capacity": 3977, + "basis": 3978, + "trial": 3979, + "questions": 3980, + "##ina": 3981, + "1955": 3982, + "20th": 3983, + "guess": 3984, + "officially": 3985, + "memorial": 3986, + "naval": 3987, + "initial": 3988, + "##ization": 3989, + "whispered": 3990, + "median": 3991, + "engineer": 3992, + "##ful": 3993, + "sydney": 3994, + "##go": 3995, + "columbia": 3996, + "strength": 3997, + "300": 3998, + "1952": 3999, + "tears": 4000, + "senate": 4001, + "00": 4002, + "card": 4003, + "asian": 4004, + "agent": 4005, + "1947": 4006, + "software": 4007, + "44": 4008, + "draw": 4009, + "warm": 4010, + "supposed": 4011, + "com": 4012, + "pro": 4013, + "##il": 4014, + "transferred": 4015, + "leaned": 4016, + "##at": 4017, + "candidate": 4018, + "escape": 4019, + "mountains": 4020, + "asia": 4021, + "potential": 4022, + "activity": 4023, + "entertainment": 4024, + "seem": 4025, + "traffic": 4026, + "jackson": 4027, + "murder": 4028, + "36": 4029, + "slow": 4030, + "product": 4031, + "orchestra": 4032, + "haven": 4033, + "agency": 4034, + "bbc": 4035, + "taught": 4036, + "website": 4037, + "comedy": 4038, + "unable": 4039, + "storm": 4040, + "planning": 4041, + "albums": 4042, + "rugby": 4043, + "environment": 4044, + "scientific": 4045, + "grabbed": 4046, + "protect": 4047, + "##hi": 4048, + "boat": 4049, + "typically": 4050, + "1954": 4051, + "1953": 4052, + "damage": 4053, + "principal": 4054, + "divided": 4055, + "dedicated": 4056, + "mount": 4057, + "ohio": 4058, + "##berg": 4059, + "pick": 4060, + "fought": 4061, + "driver": 4062, + "##der": 4063, + "empty": 4064, + "shoulders": 4065, + "sort": 4066, + "thank": 4067, + "berlin": 4068, + "prominent": 4069, + "account": 4070, + "freedom": 4071, + "necessary": 4072, + "efforts": 4073, + "alex": 4074, + "headquarters": 4075, + "follows": 4076, + "alongside": 4077, + "des": 4078, + "simon": 4079, + "andrew": 4080, + "suggested": 4081, + "operating": 4082, + "learning": 4083, + "steps": 4084, + "1949": 4085, + "sweet": 4086, + "technical": 4087, + "begin": 4088, + "easily": 4089, + "34": 4090, + "teeth": 4091, + "speaking": 4092, + "settlement": 4093, + "scale": 4094, + "##sh": 4095, + "renamed": 4096, + "ray": 4097, + "max": 4098, + "enemy": 4099, + "semi": 4100, + "joint": 4101, + "compared": 4102, + "##rd": 4103, + "scottish": 4104, + "leadership": 4105, + "analysis": 4106, + "offers": 4107, + "georgia": 4108, + "pieces": 4109, + "captured": 4110, + "animal": 4111, + "deputy": 4112, + "guest": 4113, + "organized": 4114, + "##lin": 4115, + "tony": 4116, + "combined": 4117, + "method": 4118, + "challenge": 4119, + "1960s": 4120, + "huge": 4121, + "wants": 4122, + "battalion": 4123, + "sons": 4124, + "rise": 4125, + "crime": 4126, + "types": 4127, + "facilities": 4128, + "telling": 4129, + "path": 4130, + "1951": 4131, + "platform": 4132, + "sit": 4133, + "1990s": 4134, + "##lo": 4135, + "tells": 4136, + "assigned": 4137, + "rich": 4138, + "pull": 4139, + "##ot": 4140, + "commonly": 4141, + "alive": 4142, + "##za": 4143, + "letters": 4144, + "concept": 4145, + "conducted": 4146, + "wearing": 4147, + "happen": 4148, + "bought": 4149, + "becomes": 4150, + "holy": 4151, + "gets": 4152, + "ocean": 4153, + "defeat": 4154, + "languages": 4155, + "purchased": 4156, + "coffee": 4157, + "occurred": 4158, + "titled": 4159, + "##q": 4160, + "declared": 4161, + "applied": 4162, + "sciences": 4163, + "concert": 4164, + "sounds": 4165, + "jazz": 4166, + "brain": 4167, + "##me": 4168, + "painting": 4169, + "fleet": 4170, + "tax": 4171, + "nick": 4172, + "##ius": 4173, + "michigan": 4174, + "count": 4175, + "animals": 4176, + "leaders": 4177, + "episodes": 4178, + "##line": 4179, + "content": 4180, + "##den": 4181, + "birth": 4182, + "##it": 4183, + "clubs": 4184, + "64": 4185, + "palace": 4186, + "critical": 4187, + "refused": 4188, + "fair": 4189, + "leg": 4190, + "laughed": 4191, + "returning": 4192, + "surrounding": 4193, + "participated": 4194, + "formation": 4195, + "lifted": 4196, + "pointed": 4197, + "connected": 4198, + "rome": 4199, + "medicine": 4200, + "laid": 4201, + "taylor": 4202, + "santa": 4203, + "powers": 4204, + "adam": 4205, + "tall": 4206, + "shared": 4207, + "focused": 4208, + "knowing": 4209, + "yards": 4210, + "entrance": 4211, + "falls": 4212, + "##wa": 4213, + "calling": 4214, + "##ad": 4215, + "sources": 4216, + "chosen": 4217, + "beneath": 4218, + "resources": 4219, + "yard": 4220, + "##ite": 4221, + "nominated": 4222, + "silence": 4223, + "zone": 4224, + "defined": 4225, + "##que": 4226, + "gained": 4227, + "thirty": 4228, + "38": 4229, + "bodies": 4230, + "moon": 4231, + "##ard": 4232, + "adopted": 4233, + "christmas": 4234, + "widely": 4235, + "register": 4236, + "apart": 4237, + "iran": 4238, + "premier": 4239, + "serves": 4240, + "du": 4241, + "unknown": 4242, + "parties": 4243, + "##les": 4244, + "generation": 4245, + "##ff": 4246, + "continues": 4247, + "quick": 4248, + "fields": 4249, + "brigade": 4250, + "quiet": 4251, + "teaching": 4252, + "clothes": 4253, + "impact": 4254, + "weapons": 4255, + "partner": 4256, + "flat": 4257, + "theater": 4258, + "supreme": 4259, + "1938": 4260, + "37": 4261, + "relations": 4262, + "##tor": 4263, + "plants": 4264, + "suffered": 4265, + "1936": 4266, + "wilson": 4267, + "kids": 4268, + "begins": 4269, + "##age": 4270, + "1918": 4271, + "seats": 4272, + "armed": 4273, + "internet": 4274, + "models": 4275, + "worth": 4276, + "laws": 4277, + "400": 4278, + "communities": 4279, + "classes": 4280, + "background": 4281, + "knows": 4282, + "thanks": 4283, + "quarter": 4284, + "reaching": 4285, + "humans": 4286, + "carry": 4287, + "killing": 4288, + "format": 4289, + "kong": 4290, + "hong": 4291, + "setting": 4292, + "75": 4293, + "architecture": 4294, + "disease": 4295, + "railroad": 4296, + "inc": 4297, + "possibly": 4298, + "wish": 4299, + "arthur": 4300, + "thoughts": 4301, + "harry": 4302, + "doors": 4303, + "density": 4304, + "##di": 4305, + "crowd": 4306, + "illinois": 4307, + "stomach": 4308, + "tone": 4309, + "unique": 4310, + "reports": 4311, + "anyway": 4312, + "##ir": 4313, + "liberal": 4314, + "der": 4315, + "vehicle": 4316, + "thick": 4317, + "dry": 4318, + "drug": 4319, + "faced": 4320, + "largely": 4321, + "facility": 4322, + "theme": 4323, + "holds": 4324, + "creation": 4325, + "strange": 4326, + "colonel": 4327, + "##mi": 4328, + "revolution": 4329, + "bell": 4330, + "politics": 4331, + "turns": 4332, + "silent": 4333, + "rail": 4334, + "relief": 4335, + "independence": 4336, + "combat": 4337, + "shape": 4338, + "write": 4339, + "determined": 4340, + "sales": 4341, + "learned": 4342, + "4th": 4343, + "finger": 4344, + "oxford": 4345, + "providing": 4346, + "1937": 4347, + "heritage": 4348, + "fiction": 4349, + "situated": 4350, + "designated": 4351, + "allowing": 4352, + "distribution": 4353, + "hosted": 4354, + "##est": 4355, + "sight": 4356, + "interview": 4357, + "estimated": 4358, + "reduced": 4359, + "##ria": 4360, + "toronto": 4361, + "footballer": 4362, + "keeping": 4363, + "guys": 4364, + "damn": 4365, + "claim": 4366, + "motion": 4367, + "sport": 4368, + "sixth": 4369, + "stayed": 4370, + "##ze": 4371, + "en": 4372, + "rear": 4373, + "receive": 4374, + "handed": 4375, + "twelve": 4376, + "dress": 4377, + "audience": 4378, + "granted": 4379, + "brazil": 4380, + "##well": 4381, + "spirit": 4382, + "##ated": 4383, + "noticed": 4384, + "etc": 4385, + "olympic": 4386, + "representative": 4387, + "eric": 4388, + "tight": 4389, + "trouble": 4390, + "reviews": 4391, + "drink": 4392, + "vampire": 4393, + "missing": 4394, + "roles": 4395, + "ranked": 4396, + "newly": 4397, + "household": 4398, + "finals": 4399, + "wave": 4400, + "critics": 4401, + "##ee": 4402, + "phase": 4403, + "massachusetts": 4404, + "pilot": 4405, + "unlike": 4406, + "philadelphia": 4407, + "bright": 4408, + "guns": 4409, + "crown": 4410, + "organizations": 4411, + "roof": 4412, + "42": 4413, + "respectively": 4414, + "clearly": 4415, + "tongue": 4416, + "marked": 4417, + "circle": 4418, + "fox": 4419, + "korea": 4420, + "bronze": 4421, + "brian": 4422, + "expanded": 4423, + "sexual": 4424, + "supply": 4425, + "yourself": 4426, + "inspired": 4427, + "labour": 4428, + "fc": 4429, + "##ah": 4430, + "reference": 4431, + "vision": 4432, + "draft": 4433, + "connection": 4434, + "brand": 4435, + "reasons": 4436, + "1935": 4437, + "classic": 4438, + "driving": 4439, + "trip": 4440, + "jesus": 4441, + "cells": 4442, + "entry": 4443, + "1920": 4444, + "neither": 4445, + "trail": 4446, + "claims": 4447, + "atlantic": 4448, + "orders": 4449, + "labor": 4450, + "nose": 4451, + "afraid": 4452, + "identified": 4453, + "intelligence": 4454, + "calls": 4455, + "cancer": 4456, + "attacked": 4457, + "passing": 4458, + "stephen": 4459, + "positions": 4460, + "imperial": 4461, + "grey": 4462, + "jason": 4463, + "39": 4464, + "sunday": 4465, + "48": 4466, + "swedish": 4467, + "avoid": 4468, + "extra": 4469, + "uncle": 4470, + "message": 4471, + "covers": 4472, + "allows": 4473, + "surprise": 4474, + "materials": 4475, + "fame": 4476, + "hunter": 4477, + "##ji": 4478, + "1930": 4479, + "citizens": 4480, + "figures": 4481, + "davis": 4482, + "environmental": 4483, + "confirmed": 4484, + "shit": 4485, + "titles": 4486, + "di": 4487, + "performing": 4488, + "difference": 4489, + "acts": 4490, + "attacks": 4491, + "##ov": 4492, + "existing": 4493, + "votes": 4494, + "opportunity": 4495, + "nor": 4496, + "shop": 4497, + "entirely": 4498, + "trains": 4499, + "opposite": 4500, + "pakistan": 4501, + "##pa": 4502, + "develop": 4503, + "resulted": 4504, + "representatives": 4505, + "actions": 4506, + "reality": 4507, + "pressed": 4508, + "##ish": 4509, + "barely": 4510, + "wine": 4511, + "conversation": 4512, + "faculty": 4513, + "northwest": 4514, + "ends": 4515, + "documentary": 4516, + "nuclear": 4517, + "stock": 4518, + "grace": 4519, + "sets": 4520, + "eat": 4521, + "alternative": 4522, + "##ps": 4523, + "bag": 4524, + "resulting": 4525, + "creating": 4526, + "surprised": 4527, + "cemetery": 4528, + "1919": 4529, + "drop": 4530, + "finding": 4531, + "sarah": 4532, + "cricket": 4533, + "streets": 4534, + "tradition": 4535, + "ride": 4536, + "1933": 4537, + "exhibition": 4538, + "target": 4539, + "ear": 4540, + "explained": 4541, + "rain": 4542, + "composer": 4543, + "injury": 4544, + "apartment": 4545, + "municipal": 4546, + "educational": 4547, + "occupied": 4548, + "netherlands": 4549, + "clean": 4550, + "billion": 4551, + "constitution": 4552, + "learn": 4553, + "1914": 4554, + "maximum": 4555, + "classical": 4556, + "francis": 4557, + "lose": 4558, + "opposition": 4559, + "jose": 4560, + "ontario": 4561, + "bear": 4562, + "core": 4563, + "hills": 4564, + "rolled": 4565, + "ending": 4566, + "drawn": 4567, + "permanent": 4568, + "fun": 4569, + "##tes": 4570, + "##lla": 4571, + "lewis": 4572, + "sites": 4573, + "chamber": 4574, + "ryan": 4575, + "##way": 4576, + "scoring": 4577, + "height": 4578, + "1934": 4579, + "##house": 4580, + "lyrics": 4581, + "staring": 4582, + "55": 4583, + "officials": 4584, + "1917": 4585, + "snow": 4586, + "oldest": 4587, + "##tic": 4588, + "orange": 4589, + "##ger": 4590, + "qualified": 4591, + "interior": 4592, + "apparently": 4593, + "succeeded": 4594, + "thousand": 4595, + "dinner": 4596, + "lights": 4597, + "existence": 4598, + "fans": 4599, + "heavily": 4600, + "41": 4601, + "greatest": 4602, + "conservative": 4603, + "send": 4604, + "bowl": 4605, + "plus": 4606, + "enter": 4607, + "catch": 4608, + "##un": 4609, + "economy": 4610, + "duty": 4611, + "1929": 4612, + "speech": 4613, + "authorities": 4614, + "princess": 4615, + "performances": 4616, + "versions": 4617, + "shall": 4618, + "graduate": 4619, + "pictures": 4620, + "effective": 4621, + "remembered": 4622, + "poetry": 4623, + "desk": 4624, + "crossed": 4625, + "starring": 4626, + "starts": 4627, + "passenger": 4628, + "sharp": 4629, + "##ant": 4630, + "acres": 4631, + "ass": 4632, + "weather": 4633, + "falling": 4634, + "rank": 4635, + "fund": 4636, + "supporting": 4637, + "check": 4638, + "adult": 4639, + "publishing": 4640, + "heads": 4641, + "cm": 4642, + "southeast": 4643, + "lane": 4644, + "##burg": 4645, + "application": 4646, + "bc": 4647, + "##ura": 4648, + "les": 4649, + "condition": 4650, + "transfer": 4651, + "prevent": 4652, + "display": 4653, + "ex": 4654, + "regions": 4655, + "earl": 4656, + "federation": 4657, + "cool": 4658, + "relatively": 4659, + "answered": 4660, + "besides": 4661, + "1928": 4662, + "obtained": 4663, + "portion": 4664, + "##town": 4665, + "mix": 4666, + "##ding": 4667, + "reaction": 4668, + "liked": 4669, + "dean": 4670, + "express": 4671, + "peak": 4672, + "1932": 4673, + "##tte": 4674, + "counter": 4675, + "religion": 4676, + "chain": 4677, + "rare": 4678, + "miller": 4679, + "convention": 4680, + "aid": 4681, + "lie": 4682, + "vehicles": 4683, + "mobile": 4684, + "perform": 4685, + "squad": 4686, + "wonder": 4687, + "lying": 4688, + "crazy": 4689, + "sword": 4690, + "##ping": 4691, + "attempted": 4692, + "centuries": 4693, + "weren": 4694, + "philosophy": 4695, + "category": 4696, + "##ize": 4697, + "anna": 4698, + "interested": 4699, + "47": 4700, + "sweden": 4701, + "wolf": 4702, + "frequently": 4703, + "abandoned": 4704, + "kg": 4705, + "literary": 4706, + "alliance": 4707, + "task": 4708, + "entitled": 4709, + "##ay": 4710, + "threw": 4711, + "promotion": 4712, + "factory": 4713, + "tiny": 4714, + "soccer": 4715, + "visited": 4716, + "matt": 4717, + "fm": 4718, + "achieved": 4719, + "52": 4720, + "defence": 4721, + "internal": 4722, + "persian": 4723, + "43": 4724, + "methods": 4725, + "##ging": 4726, + "arrested": 4727, + "otherwise": 4728, + "cambridge": 4729, + "programming": 4730, + "villages": 4731, + "elementary": 4732, + "districts": 4733, + "rooms": 4734, + "criminal": 4735, + "conflict": 4736, + "worry": 4737, + "trained": 4738, + "1931": 4739, + "attempts": 4740, + "waited": 4741, + "signal": 4742, + "bird": 4743, + "truck": 4744, + "subsequent": 4745, + "programme": 4746, + "##ol": 4747, + "ad": 4748, + "49": 4749, + "communist": 4750, + "details": 4751, + "faith": 4752, + "sector": 4753, + "patrick": 4754, + "carrying": 4755, + "laugh": 4756, + "##ss": 4757, + "controlled": 4758, + "korean": 4759, + "showing": 4760, + "origin": 4761, + "fuel": 4762, + "evil": 4763, + "1927": 4764, + "##ent": 4765, + "brief": 4766, + "identity": 4767, + "darkness": 4768, + "address": 4769, + "pool": 4770, + "missed": 4771, + "publication": 4772, + "web": 4773, + "planet": 4774, + "ian": 4775, + "anne": 4776, + "wings": 4777, + "invited": 4778, + "##tt": 4779, + "briefly": 4780, + "standards": 4781, + "kissed": 4782, + "##be": 4783, + "ideas": 4784, + "climate": 4785, + "causing": 4786, + "walter": 4787, + "worse": 4788, + "albert": 4789, + "articles": 4790, + "winners": 4791, + "desire": 4792, + "aged": 4793, + "northeast": 4794, + "dangerous": 4795, + "gate": 4796, + "doubt": 4797, + "1922": 4798, + "wooden": 4799, + "multi": 4800, + "##ky": 4801, + "poet": 4802, + "rising": 4803, + "funding": 4804, + "46": 4805, + "communications": 4806, + "communication": 4807, + "violence": 4808, + "copies": 4809, + "prepared": 4810, + "ford": 4811, + "investigation": 4812, + "skills": 4813, + "1924": 4814, + "pulling": 4815, + "electronic": 4816, + "##ak": 4817, + "##ial": 4818, + "##han": 4819, + "containing": 4820, + "ultimately": 4821, + "offices": 4822, + "singing": 4823, + "understanding": 4824, + "restaurant": 4825, + "tomorrow": 4826, + "fashion": 4827, + "christ": 4828, + "ward": 4829, + "da": 4830, + "pope": 4831, + "stands": 4832, + "5th": 4833, + "flow": 4834, + "studios": 4835, + "aired": 4836, + "commissioned": 4837, + "contained": 4838, + "exist": 4839, + "fresh": 4840, + "americans": 4841, + "##per": 4842, + "wrestling": 4843, + "approved": 4844, + "kid": 4845, + "employed": 4846, + "respect": 4847, + "suit": 4848, + "1925": 4849, + "angel": 4850, + "asking": 4851, + "increasing": 4852, + "frame": 4853, + "angry": 4854, + "selling": 4855, + "1950s": 4856, + "thin": 4857, + "finds": 4858, + "##nd": 4859, + "temperature": 4860, + "statement": 4861, + "ali": 4862, + "explain": 4863, + "inhabitants": 4864, + "towns": 4865, + "extensive": 4866, + "narrow": 4867, + "51": 4868, + "jane": 4869, + "flowers": 4870, + "images": 4871, + "promise": 4872, + "somewhere": 4873, + "object": 4874, + "fly": 4875, + "closely": 4876, + "##ls": 4877, + "1912": 4878, + "bureau": 4879, + "cape": 4880, + "1926": 4881, + "weekly": 4882, + "presidential": 4883, + "legislative": 4884, + "1921": 4885, + "##ai": 4886, + "##au": 4887, + "launch": 4888, + "founding": 4889, + "##ny": 4890, + "978": 4891, + "##ring": 4892, + "artillery": 4893, + "strike": 4894, + "un": 4895, + "institutions": 4896, + "roll": 4897, + "writers": 4898, + "landing": 4899, + "chose": 4900, + "kevin": 4901, + "anymore": 4902, + "pp": 4903, + "##ut": 4904, + "attorney": 4905, + "fit": 4906, + "dan": 4907, + "billboard": 4908, + "receiving": 4909, + "agricultural": 4910, + "breaking": 4911, + "sought": 4912, + "dave": 4913, + "admitted": 4914, + "lands": 4915, + "mexican": 4916, + "##bury": 4917, + "charlie": 4918, + "specifically": 4919, + "hole": 4920, + "iv": 4921, + "howard": 4922, + "credit": 4923, + "moscow": 4924, + "roads": 4925, + "accident": 4926, + "1923": 4927, + "proved": 4928, + "wear": 4929, + "struck": 4930, + "hey": 4931, + "guards": 4932, + "stuff": 4933, + "slid": 4934, + "expansion": 4935, + "1915": 4936, + "cat": 4937, + "anthony": 4938, + "##kin": 4939, + "melbourne": 4940, + "opposed": 4941, + "sub": 4942, + "southwest": 4943, + "architect": 4944, + "failure": 4945, + "plane": 4946, + "1916": 4947, + "##ron": 4948, + "map": 4949, + "camera": 4950, + "tank": 4951, + "listen": 4952, + "regarding": 4953, + "wet": 4954, + "introduction": 4955, + "metropolitan": 4956, + "link": 4957, + "ep": 4958, + "fighter": 4959, + "inch": 4960, + "grown": 4961, + "gene": 4962, + "anger": 4963, + "fixed": 4964, + "buy": 4965, + "dvd": 4966, + "khan": 4967, + "domestic": 4968, + "worldwide": 4969, + "chapel": 4970, + "mill": 4971, + "functions": 4972, + "examples": 4973, + "##head": 4974, + "developing": 4975, + "1910": 4976, + "turkey": 4977, + "hits": 4978, + "pocket": 4979, + "antonio": 4980, + "papers": 4981, + "grow": 4982, + "unless": 4983, + "circuit": 4984, + "18th": 4985, + "concerned": 4986, + "attached": 4987, + "journalist": 4988, + "selection": 4989, + "journey": 4990, + "converted": 4991, + "provincial": 4992, + "painted": 4993, + "hearing": 4994, + "aren": 4995, + "bands": 4996, + "negative": 4997, + "aside": 4998, + "wondered": 4999, + "knight": 5000, + "lap": 5001, + "survey": 5002, + "ma": 5003, + "##ow": 5004, + "noise": 5005, + "billy": 5006, + "##ium": 5007, + "shooting": 5008, + "guide": 5009, + "bedroom": 5010, + "priest": 5011, + "resistance": 5012, + "motor": 5013, + "homes": 5014, + "sounded": 5015, + "giant": 5016, + "##mer": 5017, + "150": 5018, + "scenes": 5019, + "equal": 5020, + "comic": 5021, + "patients": 5022, + "hidden": 5023, + "solid": 5024, + "actual": 5025, + "bringing": 5026, + "afternoon": 5027, + "touched": 5028, + "funds": 5029, + "wedding": 5030, + "consisted": 5031, + "marie": 5032, + "canal": 5033, + "sr": 5034, + "kim": 5035, + "treaty": 5036, + "turkish": 5037, + "recognition": 5038, + "residence": 5039, + "cathedral": 5040, + "broad": 5041, + "knees": 5042, + "incident": 5043, + "shaped": 5044, + "fired": 5045, + "norwegian": 5046, + "handle": 5047, + "cheek": 5048, + "contest": 5049, + "represent": 5050, + "##pe": 5051, + "representing": 5052, + "beauty": 5053, + "##sen": 5054, + "birds": 5055, + "advantage": 5056, + "emergency": 5057, + "wrapped": 5058, + "drawing": 5059, + "notice": 5060, + "pink": 5061, + "broadcasting": 5062, + "##ong": 5063, + "somehow": 5064, + "bachelor": 5065, + "seventh": 5066, + "collected": 5067, + "registered": 5068, + "establishment": 5069, + "alan": 5070, + "assumed": 5071, + "chemical": 5072, + "personnel": 5073, + "roger": 5074, + "retirement": 5075, + "jeff": 5076, + "portuguese": 5077, + "wore": 5078, + "tied": 5079, + "device": 5080, + "threat": 5081, + "progress": 5082, + "advance": 5083, + "##ised": 5084, + "banks": 5085, + "hired": 5086, + "manchester": 5087, + "nfl": 5088, + "teachers": 5089, + "structures": 5090, + "forever": 5091, + "##bo": 5092, + "tennis": 5093, + "helping": 5094, + "saturday": 5095, + "sale": 5096, + "applications": 5097, + "junction": 5098, + "hip": 5099, + "incorporated": 5100, + "neighborhood": 5101, + "dressed": 5102, + "ceremony": 5103, + "##ds": 5104, + "influenced": 5105, + "hers": 5106, + "visual": 5107, + "stairs": 5108, + "decades": 5109, + "inner": 5110, + "kansas": 5111, + "hung": 5112, + "hoped": 5113, + "gain": 5114, + "scheduled": 5115, + "downtown": 5116, + "engaged": 5117, + "austria": 5118, + "clock": 5119, + "norway": 5120, + "certainly": 5121, + "pale": 5122, + "protected": 5123, + "1913": 5124, + "victor": 5125, + "employees": 5126, + "plate": 5127, + "putting": 5128, + "surrounded": 5129, + "##ists": 5130, + "finishing": 5131, + "blues": 5132, + "tropical": 5133, + "##ries": 5134, + "minnesota": 5135, + "consider": 5136, + "philippines": 5137, + "accept": 5138, + "54": 5139, + "retrieved": 5140, + "1900": 5141, + "concern": 5142, + "anderson": 5143, + "properties": 5144, + "institution": 5145, + "gordon": 5146, + "successfully": 5147, + "vietnam": 5148, + "##dy": 5149, + "backing": 5150, + "outstanding": 5151, + "muslim": 5152, + "crossing": 5153, + "folk": 5154, + "producing": 5155, + "usual": 5156, + "demand": 5157, + "occurs": 5158, + "observed": 5159, + "lawyer": 5160, + "educated": 5161, + "##ana": 5162, + "kelly": 5163, + "string": 5164, + "pleasure": 5165, + "budget": 5166, + "items": 5167, + "quietly": 5168, + "colorado": 5169, + "philip": 5170, + "typical": 5171, + "##worth": 5172, + "derived": 5173, + "600": 5174, + "survived": 5175, + "asks": 5176, + "mental": 5177, + "##ide": 5178, + "56": 5179, + "jake": 5180, + "jews": 5181, + "distinguished": 5182, + "ltd": 5183, + "1911": 5184, + "sri": 5185, + "extremely": 5186, + "53": 5187, + "athletic": 5188, + "loud": 5189, + "thousands": 5190, + "worried": 5191, + "shadow": 5192, + "transportation": 5193, + "horses": 5194, + "weapon": 5195, + "arena": 5196, + "importance": 5197, + "users": 5198, + "tim": 5199, + "objects": 5200, + "contributed": 5201, + "dragon": 5202, + "douglas": 5203, + "aware": 5204, + "senator": 5205, + "johnny": 5206, + "jordan": 5207, + "sisters": 5208, + "engines": 5209, + "flag": 5210, + "investment": 5211, + "samuel": 5212, + "shock": 5213, + "capable": 5214, + "clark": 5215, + "row": 5216, + "wheel": 5217, + "refers": 5218, + "session": 5219, + "familiar": 5220, + "biggest": 5221, + "wins": 5222, + "hate": 5223, + "maintained": 5224, + "drove": 5225, + "hamilton": 5226, + "request": 5227, + "expressed": 5228, + "injured": 5229, + "underground": 5230, + "churches": 5231, + "walker": 5232, + "wars": 5233, + "tunnel": 5234, + "passes": 5235, + "stupid": 5236, + "agriculture": 5237, + "softly": 5238, + "cabinet": 5239, + "regarded": 5240, + "joining": 5241, + "indiana": 5242, + "##ea": 5243, + "##ms": 5244, + "push": 5245, + "dates": 5246, + "spend": 5247, + "behavior": 5248, + "woods": 5249, + "protein": 5250, + "gently": 5251, + "chase": 5252, + "morgan": 5253, + "mention": 5254, + "burning": 5255, + "wake": 5256, + "combination": 5257, + "occur": 5258, + "mirror": 5259, + "leads": 5260, + "jimmy": 5261, + "indeed": 5262, + "impossible": 5263, + "singapore": 5264, + "paintings": 5265, + "covering": 5266, + "##nes": 5267, + "soldier": 5268, + "locations": 5269, + "attendance": 5270, + "sell": 5271, + "historian": 5272, + "wisconsin": 5273, + "invasion": 5274, + "argued": 5275, + "painter": 5276, + "diego": 5277, + "changing": 5278, + "egypt": 5279, + "##don": 5280, + "experienced": 5281, + "inches": 5282, + "##ku": 5283, + "missouri": 5284, + "vol": 5285, + "grounds": 5286, + "spoken": 5287, + "switzerland": 5288, + "##gan": 5289, + "reform": 5290, + "rolling": 5291, + "ha": 5292, + "forget": 5293, + "massive": 5294, + "resigned": 5295, + "burned": 5296, + "allen": 5297, + "tennessee": 5298, + "locked": 5299, + "values": 5300, + "improved": 5301, + "##mo": 5302, + "wounded": 5303, + "universe": 5304, + "sick": 5305, + "dating": 5306, + "facing": 5307, + "pack": 5308, + "purchase": 5309, + "user": 5310, + "##pur": 5311, + "moments": 5312, + "##ul": 5313, + "merged": 5314, + "anniversary": 5315, + "1908": 5316, + "coal": 5317, + "brick": 5318, + "understood": 5319, + "causes": 5320, + "dynasty": 5321, + "queensland": 5322, + "establish": 5323, + "stores": 5324, + "crisis": 5325, + "promote": 5326, + "hoping": 5327, + "views": 5328, + "cards": 5329, + "referee": 5330, + "extension": 5331, + "##si": 5332, + "raise": 5333, + "arizona": 5334, + "improve": 5335, + "colonial": 5336, + "formal": 5337, + "charged": 5338, + "##rt": 5339, + "palm": 5340, + "lucky": 5341, + "hide": 5342, + "rescue": 5343, + "faces": 5344, + "95": 5345, + "feelings": 5346, + "candidates": 5347, + "juan": 5348, + "##ell": 5349, + "goods": 5350, + "6th": 5351, + "courses": 5352, + "weekend": 5353, + "59": 5354, + "luke": 5355, + "cash": 5356, + "fallen": 5357, + "##om": 5358, + "delivered": 5359, + "affected": 5360, + "installed": 5361, + "carefully": 5362, + "tries": 5363, + "swiss": 5364, + "hollywood": 5365, + "costs": 5366, + "lincoln": 5367, + "responsibility": 5368, + "##he": 5369, + "shore": 5370, + "file": 5371, + "proper": 5372, + "normally": 5373, + "maryland": 5374, + "assistance": 5375, + "jump": 5376, + "constant": 5377, + "offering": 5378, + "friendly": 5379, + "waters": 5380, + "persons": 5381, + "realize": 5382, + "contain": 5383, + "trophy": 5384, + "800": 5385, + "partnership": 5386, + "factor": 5387, + "58": 5388, + "musicians": 5389, + "cry": 5390, + "bound": 5391, + "oregon": 5392, + "indicated": 5393, + "hero": 5394, + "houston": 5395, + "medium": 5396, + "##ure": 5397, + "consisting": 5398, + "somewhat": 5399, + "##ara": 5400, + "57": 5401, + "cycle": 5402, + "##che": 5403, + "beer": 5404, + "moore": 5405, + "frederick": 5406, + "gotten": 5407, + "eleven": 5408, + "worst": 5409, + "weak": 5410, + "approached": 5411, + "arranged": 5412, + "chin": 5413, + "loan": 5414, + "universal": 5415, + "bond": 5416, + "fifteen": 5417, + "pattern": 5418, + "disappeared": 5419, + "##ney": 5420, + "translated": 5421, + "##zed": 5422, + "lip": 5423, + "arab": 5424, + "capture": 5425, + "interests": 5426, + "insurance": 5427, + "##chi": 5428, + "shifted": 5429, + "cave": 5430, + "prix": 5431, + "warning": 5432, + "sections": 5433, + "courts": 5434, + "coat": 5435, + "plot": 5436, + "smell": 5437, + "feed": 5438, + "golf": 5439, + "favorite": 5440, + "maintain": 5441, + "knife": 5442, + "vs": 5443, + "voted": 5444, + "degrees": 5445, + "finance": 5446, + "quebec": 5447, + "opinion": 5448, + "translation": 5449, + "manner": 5450, + "ruled": 5451, + "operate": 5452, + "productions": 5453, + "choose": 5454, + "musician": 5455, + "discovery": 5456, + "confused": 5457, + "tired": 5458, + "separated": 5459, + "stream": 5460, + "techniques": 5461, + "committed": 5462, + "attend": 5463, + "ranking": 5464, + "kings": 5465, + "throw": 5466, + "passengers": 5467, + "measure": 5468, + "horror": 5469, + "fan": 5470, + "mining": 5471, + "sand": 5472, + "danger": 5473, + "salt": 5474, + "calm": 5475, + "decade": 5476, + "dam": 5477, + "require": 5478, + "runner": 5479, + "##ik": 5480, + "rush": 5481, + "associate": 5482, + "greece": 5483, + "##ker": 5484, + "rivers": 5485, + "consecutive": 5486, + "matthew": 5487, + "##ski": 5488, + "sighed": 5489, + "sq": 5490, + "documents": 5491, + "steam": 5492, + "edited": 5493, + "closing": 5494, + "tie": 5495, + "accused": 5496, + "1905": 5497, + "##ini": 5498, + "islamic": 5499, + "distributed": 5500, + "directors": 5501, + "organisation": 5502, + "bruce": 5503, + "7th": 5504, + "breathing": 5505, + "mad": 5506, + "lit": 5507, + "arrival": 5508, + "concrete": 5509, + "taste": 5510, + "08": 5511, + "composition": 5512, + "shaking": 5513, + "faster": 5514, + "amateur": 5515, + "adjacent": 5516, + "stating": 5517, + "1906": 5518, + "twin": 5519, + "flew": 5520, + "##ran": 5521, + "tokyo": 5522, + "publications": 5523, + "##tone": 5524, + "obviously": 5525, + "ridge": 5526, + "storage": 5527, + "1907": 5528, + "carl": 5529, + "pages": 5530, + "concluded": 5531, + "desert": 5532, + "driven": 5533, + "universities": 5534, + "ages": 5535, + "terminal": 5536, + "sequence": 5537, + "borough": 5538, + "250": 5539, + "constituency": 5540, + "creative": 5541, + "cousin": 5542, + "economics": 5543, + "dreams": 5544, + "margaret": 5545, + "notably": 5546, + "reduce": 5547, + "montreal": 5548, + "mode": 5549, + "17th": 5550, + "ears": 5551, + "saved": 5552, + "jan": 5553, + "vocal": 5554, + "##ica": 5555, + "1909": 5556, + "andy": 5557, + "##jo": 5558, + "riding": 5559, + "roughly": 5560, + "threatened": 5561, + "##ise": 5562, + "meters": 5563, + "meanwhile": 5564, + "landed": 5565, + "compete": 5566, + "repeated": 5567, + "grass": 5568, + "czech": 5569, + "regularly": 5570, + "charges": 5571, + "tea": 5572, + "sudden": 5573, + "appeal": 5574, + "##ung": 5575, + "solution": 5576, + "describes": 5577, + "pierre": 5578, + "classification": 5579, + "glad": 5580, + "parking": 5581, + "##ning": 5582, + "belt": 5583, + "physics": 5584, + "99": 5585, + "rachel": 5586, + "add": 5587, + "hungarian": 5588, + "participate": 5589, + "expedition": 5590, + "damaged": 5591, + "gift": 5592, + "childhood": 5593, + "85": 5594, + "fifty": 5595, + "##red": 5596, + "mathematics": 5597, + "jumped": 5598, + "letting": 5599, + "defensive": 5600, + "mph": 5601, + "##ux": 5602, + "##gh": 5603, + "testing": 5604, + "##hip": 5605, + "hundreds": 5606, + "shoot": 5607, + "owners": 5608, + "matters": 5609, + "smoke": 5610, + "israeli": 5611, + "kentucky": 5612, + "dancing": 5613, + "mounted": 5614, + "grandfather": 5615, + "emma": 5616, + "designs": 5617, + "profit": 5618, + "argentina": 5619, + "##gs": 5620, + "truly": 5621, + "li": 5622, + "lawrence": 5623, + "cole": 5624, + "begun": 5625, + "detroit": 5626, + "willing": 5627, + "branches": 5628, + "smiling": 5629, + "decide": 5630, + "miami": 5631, + "enjoyed": 5632, + "recordings": 5633, + "##dale": 5634, + "poverty": 5635, + "ethnic": 5636, + "gay": 5637, + "##bi": 5638, + "gary": 5639, + "arabic": 5640, + "09": 5641, + "accompanied": 5642, + "##one": 5643, + "##ons": 5644, + "fishing": 5645, + "determine": 5646, + "residential": 5647, + "acid": 5648, + "##ary": 5649, + "alice": 5650, + "returns": 5651, + "starred": 5652, + "mail": 5653, + "##ang": 5654, + "jonathan": 5655, + "strategy": 5656, + "##ue": 5657, + "net": 5658, + "forty": 5659, + "cook": 5660, + "businesses": 5661, + "equivalent": 5662, + "commonwealth": 5663, + "distinct": 5664, + "ill": 5665, + "##cy": 5666, + "seriously": 5667, + "##ors": 5668, + "##ped": 5669, + "shift": 5670, + "harris": 5671, + "replace": 5672, + "rio": 5673, + "imagine": 5674, + "formula": 5675, + "ensure": 5676, + "##ber": 5677, + "additionally": 5678, + "scheme": 5679, + "conservation": 5680, + "occasionally": 5681, + "purposes": 5682, + "feels": 5683, + "favor": 5684, + "##and": 5685, + "##ore": 5686, + "1930s": 5687, + "contrast": 5688, + "hanging": 5689, + "hunt": 5690, + "movies": 5691, + "1904": 5692, + "instruments": 5693, + "victims": 5694, + "danish": 5695, + "christopher": 5696, + "busy": 5697, + "demon": 5698, + "sugar": 5699, + "earliest": 5700, + "colony": 5701, + "studying": 5702, + "balance": 5703, + "duties": 5704, + "##ks": 5705, + "belgium": 5706, + "slipped": 5707, + "carter": 5708, + "05": 5709, + "visible": 5710, + "stages": 5711, + "iraq": 5712, + "fifa": 5713, + "##im": 5714, + "commune": 5715, + "forming": 5716, + "zero": 5717, + "07": 5718, + "continuing": 5719, + "talked": 5720, + "counties": 5721, + "legend": 5722, + "bathroom": 5723, + "option": 5724, + "tail": 5725, + "clay": 5726, + "daughters": 5727, + "afterwards": 5728, + "severe": 5729, + "jaw": 5730, + "visitors": 5731, + "##ded": 5732, + "devices": 5733, + "aviation": 5734, + "russell": 5735, + "kate": 5736, + "##vi": 5737, + "entering": 5738, + "subjects": 5739, + "##ino": 5740, + "temporary": 5741, + "swimming": 5742, + "forth": 5743, + "smooth": 5744, + "ghost": 5745, + "audio": 5746, + "bush": 5747, + "operates": 5748, + "rocks": 5749, + "movements": 5750, + "signs": 5751, + "eddie": 5752, + "##tz": 5753, + "ann": 5754, + "voices": 5755, + "honorary": 5756, + "06": 5757, + "memories": 5758, + "dallas": 5759, + "pure": 5760, + "measures": 5761, + "racial": 5762, + "promised": 5763, + "66": 5764, + "harvard": 5765, + "ceo": 5766, + "16th": 5767, + "parliamentary": 5768, + "indicate": 5769, + "benefit": 5770, + "flesh": 5771, + "dublin": 5772, + "louisiana": 5773, + "1902": 5774, + "1901": 5775, + "patient": 5776, + "sleeping": 5777, + "1903": 5778, + "membership": 5779, + "coastal": 5780, + "medieval": 5781, + "wanting": 5782, + "element": 5783, + "scholars": 5784, + "rice": 5785, + "62": 5786, + "limit": 5787, + "survive": 5788, + "makeup": 5789, + "rating": 5790, + "definitely": 5791, + "collaboration": 5792, + "obvious": 5793, + "##tan": 5794, + "boss": 5795, + "ms": 5796, + "baron": 5797, + "birthday": 5798, + "linked": 5799, + "soil": 5800, + "diocese": 5801, + "##lan": 5802, + "ncaa": 5803, + "##mann": 5804, + "offensive": 5805, + "shell": 5806, + "shouldn": 5807, + "waist": 5808, + "##tus": 5809, + "plain": 5810, + "ross": 5811, + "organ": 5812, + "resolution": 5813, + "manufacturing": 5814, + "adding": 5815, + "relative": 5816, + "kennedy": 5817, + "98": 5818, + "whilst": 5819, + "moth": 5820, + "marketing": 5821, + "gardens": 5822, + "crash": 5823, + "72": 5824, + "heading": 5825, + "partners": 5826, + "credited": 5827, + "carlos": 5828, + "moves": 5829, + "cable": 5830, + "##zi": 5831, + "marshall": 5832, + "##out": 5833, + "depending": 5834, + "bottle": 5835, + "represents": 5836, + "rejected": 5837, + "responded": 5838, + "existed": 5839, + "04": 5840, + "jobs": 5841, + "denmark": 5842, + "lock": 5843, + "##ating": 5844, + "treated": 5845, + "graham": 5846, + "routes": 5847, + "talent": 5848, + "commissioner": 5849, + "drugs": 5850, + "secure": 5851, + "tests": 5852, + "reign": 5853, + "restored": 5854, + "photography": 5855, + "##gi": 5856, + "contributions": 5857, + "oklahoma": 5858, + "designer": 5859, + "disc": 5860, + "grin": 5861, + "seattle": 5862, + "robin": 5863, + "paused": 5864, + "atlanta": 5865, + "unusual": 5866, + "##gate": 5867, + "praised": 5868, + "las": 5869, + "laughing": 5870, + "satellite": 5871, + "hungary": 5872, + "visiting": 5873, + "##sky": 5874, + "interesting": 5875, + "factors": 5876, + "deck": 5877, + "poems": 5878, + "norman": 5879, + "##water": 5880, + "stuck": 5881, + "speaker": 5882, + "rifle": 5883, + "domain": 5884, + "premiered": 5885, + "##her": 5886, + "dc": 5887, + "comics": 5888, + "actors": 5889, + "01": 5890, + "reputation": 5891, + "eliminated": 5892, + "8th": 5893, + "ceiling": 5894, + "prisoners": 5895, + "script": 5896, + "##nce": 5897, + "leather": 5898, + "austin": 5899, + "mississippi": 5900, + "rapidly": 5901, + "admiral": 5902, + "parallel": 5903, + "charlotte": 5904, + "guilty": 5905, + "tools": 5906, + "gender": 5907, + "divisions": 5908, + "fruit": 5909, + "##bs": 5910, + "laboratory": 5911, + "nelson": 5912, + "fantasy": 5913, + "marry": 5914, + "rapid": 5915, + "aunt": 5916, + "tribe": 5917, + "requirements": 5918, + "aspects": 5919, + "suicide": 5920, + "amongst": 5921, + "adams": 5922, + "bone": 5923, + "ukraine": 5924, + "abc": 5925, + "kick": 5926, + "sees": 5927, + "edinburgh": 5928, + "clothing": 5929, + "column": 5930, + "rough": 5931, + "gods": 5932, + "hunting": 5933, + "broadway": 5934, + "gathered": 5935, + "concerns": 5936, + "##ek": 5937, + "spending": 5938, + "ty": 5939, + "12th": 5940, + "snapped": 5941, + "requires": 5942, + "solar": 5943, + "bones": 5944, + "cavalry": 5945, + "##tta": 5946, + "iowa": 5947, + "drinking": 5948, + "waste": 5949, + "index": 5950, + "franklin": 5951, + "charity": 5952, + "thompson": 5953, + "stewart": 5954, + "tip": 5955, + "flash": 5956, + "landscape": 5957, + "friday": 5958, + "enjoy": 5959, + "singh": 5960, + "poem": 5961, + "listening": 5962, + "##back": 5963, + "eighth": 5964, + "fred": 5965, + "differences": 5966, + "adapted": 5967, + "bomb": 5968, + "ukrainian": 5969, + "surgery": 5970, + "corporate": 5971, + "masters": 5972, + "anywhere": 5973, + "##more": 5974, + "waves": 5975, + "odd": 5976, + "sean": 5977, + "portugal": 5978, + "orleans": 5979, + "dick": 5980, + "debate": 5981, + "kent": 5982, + "eating": 5983, + "puerto": 5984, + "cleared": 5985, + "96": 5986, + "expect": 5987, + "cinema": 5988, + "97": 5989, + "guitarist": 5990, + "blocks": 5991, + "electrical": 5992, + "agree": 5993, + "involving": 5994, + "depth": 5995, + "dying": 5996, + "panel": 5997, + "struggle": 5998, + "##ged": 5999, + "peninsula": 6000, + "adults": 6001, + "novels": 6002, + "emerged": 6003, + "vienna": 6004, + "metro": 6005, + "debuted": 6006, + "shoes": 6007, + "tamil": 6008, + "songwriter": 6009, + "meets": 6010, + "prove": 6011, + "beating": 6012, + "instance": 6013, + "heaven": 6014, + "scared": 6015, + "sending": 6016, + "marks": 6017, + "artistic": 6018, + "passage": 6019, + "superior": 6020, + "03": 6021, + "significantly": 6022, + "shopping": 6023, + "##tive": 6024, + "retained": 6025, + "##izing": 6026, + "malaysia": 6027, + "technique": 6028, + "cheeks": 6029, + "##ola": 6030, + "warren": 6031, + "maintenance": 6032, + "destroy": 6033, + "extreme": 6034, + "allied": 6035, + "120": 6036, + "appearing": 6037, + "##yn": 6038, + "fill": 6039, + "advice": 6040, + "alabama": 6041, + "qualifying": 6042, + "policies": 6043, + "cleveland": 6044, + "hat": 6045, + "battery": 6046, + "smart": 6047, + "authors": 6048, + "10th": 6049, + "soundtrack": 6050, + "acted": 6051, + "dated": 6052, + "lb": 6053, + "glance": 6054, + "equipped": 6055, + "coalition": 6056, + "funny": 6057, + "outer": 6058, + "ambassador": 6059, + "roy": 6060, + "possibility": 6061, + "couples": 6062, + "campbell": 6063, + "dna": 6064, + "loose": 6065, + "ethan": 6066, + "supplies": 6067, + "1898": 6068, + "gonna": 6069, + "88": 6070, + "monster": 6071, + "##res": 6072, + "shake": 6073, + "agents": 6074, + "frequency": 6075, + "springs": 6076, + "dogs": 6077, + "practices": 6078, + "61": 6079, + "gang": 6080, + "plastic": 6081, + "easier": 6082, + "suggests": 6083, + "gulf": 6084, + "blade": 6085, + "exposed": 6086, + "colors": 6087, + "industries": 6088, + "markets": 6089, + "pan": 6090, + "nervous": 6091, + "electoral": 6092, + "charts": 6093, + "legislation": 6094, + "ownership": 6095, + "##idae": 6096, + "mac": 6097, + "appointment": 6098, + "shield": 6099, + "copy": 6100, + "assault": 6101, + "socialist": 6102, + "abbey": 6103, + "monument": 6104, + "license": 6105, + "throne": 6106, + "employment": 6107, + "jay": 6108, + "93": 6109, + "replacement": 6110, + "charter": 6111, + "cloud": 6112, + "powered": 6113, + "suffering": 6114, + "accounts": 6115, + "oak": 6116, + "connecticut": 6117, + "strongly": 6118, + "wright": 6119, + "colour": 6120, + "crystal": 6121, + "13th": 6122, + "context": 6123, + "welsh": 6124, + "networks": 6125, + "voiced": 6126, + "gabriel": 6127, + "jerry": 6128, + "##cing": 6129, + "forehead": 6130, + "mp": 6131, + "##ens": 6132, + "manage": 6133, + "schedule": 6134, + "totally": 6135, + "remix": 6136, + "##ii": 6137, + "forests": 6138, + "occupation": 6139, + "print": 6140, + "nicholas": 6141, + "brazilian": 6142, + "strategic": 6143, + "vampires": 6144, + "engineers": 6145, + "76": 6146, + "roots": 6147, + "seek": 6148, + "correct": 6149, + "instrumental": 6150, + "und": 6151, + "alfred": 6152, + "backed": 6153, + "hop": 6154, + "##des": 6155, + "stanley": 6156, + "robinson": 6157, + "traveled": 6158, + "wayne": 6159, + "welcome": 6160, + "austrian": 6161, + "achieve": 6162, + "67": 6163, + "exit": 6164, + "rates": 6165, + "1899": 6166, + "strip": 6167, + "whereas": 6168, + "##cs": 6169, + "sing": 6170, + "deeply": 6171, + "adventure": 6172, + "bobby": 6173, + "rick": 6174, + "jamie": 6175, + "careful": 6176, + "components": 6177, + "cap": 6178, + "useful": 6179, + "personality": 6180, + "knee": 6181, + "##shi": 6182, + "pushing": 6183, + "hosts": 6184, + "02": 6185, + "protest": 6186, + "ca": 6187, + "ottoman": 6188, + "symphony": 6189, + "##sis": 6190, + "63": 6191, + "boundary": 6192, + "1890": 6193, + "processes": 6194, + "considering": 6195, + "considerable": 6196, + "tons": 6197, + "##work": 6198, + "##ft": 6199, + "##nia": 6200, + "cooper": 6201, + "trading": 6202, + "dear": 6203, + "conduct": 6204, + "91": 6205, + "illegal": 6206, + "apple": 6207, + "revolutionary": 6208, + "holiday": 6209, + "definition": 6210, + "harder": 6211, + "##van": 6212, + "jacob": 6213, + "circumstances": 6214, + "destruction": 6215, + "##lle": 6216, + "popularity": 6217, + "grip": 6218, + "classified": 6219, + "liverpool": 6220, + "donald": 6221, + "baltimore": 6222, + "flows": 6223, + "seeking": 6224, + "honour": 6225, + "approval": 6226, + "92": 6227, + "mechanical": 6228, + "till": 6229, + "happening": 6230, + "statue": 6231, + "critic": 6232, + "increasingly": 6233, + "immediate": 6234, + "describe": 6235, + "commerce": 6236, + "stare": 6237, + "##ster": 6238, + "indonesia": 6239, + "meat": 6240, + "rounds": 6241, + "boats": 6242, + "baker": 6243, + "orthodox": 6244, + "depression": 6245, + "formally": 6246, + "worn": 6247, + "naked": 6248, + "claire": 6249, + "muttered": 6250, + "sentence": 6251, + "11th": 6252, + "emily": 6253, + "document": 6254, + "77": 6255, + "criticism": 6256, + "wished": 6257, + "vessel": 6258, + "spiritual": 6259, + "bent": 6260, + "virgin": 6261, + "parker": 6262, + "minimum": 6263, + "murray": 6264, + "lunch": 6265, + "danny": 6266, + "printed": 6267, + "compilation": 6268, + "keyboards": 6269, + "false": 6270, + "blow": 6271, + "belonged": 6272, + "68": 6273, + "raising": 6274, + "78": 6275, + "cutting": 6276, + "##board": 6277, + "pittsburgh": 6278, + "##up": 6279, + "9th": 6280, + "shadows": 6281, + "81": 6282, + "hated": 6283, + "indigenous": 6284, + "jon": 6285, + "15th": 6286, + "barry": 6287, + "scholar": 6288, + "ah": 6289, + "##zer": 6290, + "oliver": 6291, + "##gy": 6292, + "stick": 6293, + "susan": 6294, + "meetings": 6295, + "attracted": 6296, + "spell": 6297, + "romantic": 6298, + "##ver": 6299, + "ye": 6300, + "1895": 6301, + "photo": 6302, + "demanded": 6303, + "customers": 6304, + "##ac": 6305, + "1896": 6306, + "logan": 6307, + "revival": 6308, + "keys": 6309, + "modified": 6310, + "commanded": 6311, + "jeans": 6312, + "##ious": 6313, + "upset": 6314, + "raw": 6315, + "phil": 6316, + "detective": 6317, + "hiding": 6318, + "resident": 6319, + "vincent": 6320, + "##bly": 6321, + "experiences": 6322, + "diamond": 6323, + "defeating": 6324, + "coverage": 6325, + "lucas": 6326, + "external": 6327, + "parks": 6328, + "franchise": 6329, + "helen": 6330, + "bible": 6331, + "successor": 6332, + "percussion": 6333, + "celebrated": 6334, + "il": 6335, + "lift": 6336, + "profile": 6337, + "clan": 6338, + "romania": 6339, + "##ied": 6340, + "mills": 6341, + "##su": 6342, + "nobody": 6343, + "achievement": 6344, + "shrugged": 6345, + "fault": 6346, + "1897": 6347, + "rhythm": 6348, + "initiative": 6349, + "breakfast": 6350, + "carbon": 6351, + "700": 6352, + "69": 6353, + "lasted": 6354, + "violent": 6355, + "74": 6356, + "wound": 6357, + "ken": 6358, + "killer": 6359, + "gradually": 6360, + "filmed": 6361, + "°c": 6362, + "dollars": 6363, + "processing": 6364, + "94": 6365, + "remove": 6366, + "criticized": 6367, + "guests": 6368, + "sang": 6369, + "chemistry": 6370, + "##vin": 6371, + "legislature": 6372, + "disney": 6373, + "##bridge": 6374, + "uniform": 6375, + "escaped": 6376, + "integrated": 6377, + "proposal": 6378, + "purple": 6379, + "denied": 6380, + "liquid": 6381, + "karl": 6382, + "influential": 6383, + "morris": 6384, + "nights": 6385, + "stones": 6386, + "intense": 6387, + "experimental": 6388, + "twisted": 6389, + "71": 6390, + "84": 6391, + "##ld": 6392, + "pace": 6393, + "nazi": 6394, + "mitchell": 6395, + "ny": 6396, + "blind": 6397, + "reporter": 6398, + "newspapers": 6399, + "14th": 6400, + "centers": 6401, + "burn": 6402, + "basin": 6403, + "forgotten": 6404, + "surviving": 6405, + "filed": 6406, + "collections": 6407, + "monastery": 6408, + "losses": 6409, + "manual": 6410, + "couch": 6411, + "description": 6412, + "appropriate": 6413, + "merely": 6414, + "tag": 6415, + "missions": 6416, + "sebastian": 6417, + "restoration": 6418, + "replacing": 6419, + "triple": 6420, + "73": 6421, + "elder": 6422, + "julia": 6423, + "warriors": 6424, + "benjamin": 6425, + "julian": 6426, + "convinced": 6427, + "stronger": 6428, + "amazing": 6429, + "declined": 6430, + "versus": 6431, + "merchant": 6432, + "happens": 6433, + "output": 6434, + "finland": 6435, + "bare": 6436, + "barbara": 6437, + "absence": 6438, + "ignored": 6439, + "dawn": 6440, + "injuries": 6441, + "##port": 6442, + "producers": 6443, + "##ram": 6444, + "82": 6445, + "luis": 6446, + "##ities": 6447, + "kw": 6448, + "admit": 6449, + "expensive": 6450, + "electricity": 6451, + "nba": 6452, + "exception": 6453, + "symbol": 6454, + "##ving": 6455, + "ladies": 6456, + "shower": 6457, + "sheriff": 6458, + "characteristics": 6459, + "##je": 6460, + "aimed": 6461, + "button": 6462, + "ratio": 6463, + "effectively": 6464, + "summit": 6465, + "angle": 6466, + "jury": 6467, + "bears": 6468, + "foster": 6469, + "vessels": 6470, + "pants": 6471, + "executed": 6472, + "evans": 6473, + "dozen": 6474, + "advertising": 6475, + "kicked": 6476, + "patrol": 6477, + "1889": 6478, + "competitions": 6479, + "lifetime": 6480, + "principles": 6481, + "athletics": 6482, + "##logy": 6483, + "birmingham": 6484, + "sponsored": 6485, + "89": 6486, + "rob": 6487, + "nomination": 6488, + "1893": 6489, + "acoustic": 6490, + "##sm": 6491, + "creature": 6492, + "longest": 6493, + "##tra": 6494, + "credits": 6495, + "harbor": 6496, + "dust": 6497, + "josh": 6498, + "##so": 6499, + "territories": 6500, + "milk": 6501, + "infrastructure": 6502, + "completion": 6503, + "thailand": 6504, + "indians": 6505, + "leon": 6506, + "archbishop": 6507, + "##sy": 6508, + "assist": 6509, + "pitch": 6510, + "blake": 6511, + "arrangement": 6512, + "girlfriend": 6513, + "serbian": 6514, + "operational": 6515, + "hence": 6516, + "sad": 6517, + "scent": 6518, + "fur": 6519, + "dj": 6520, + "sessions": 6521, + "hp": 6522, + "refer": 6523, + "rarely": 6524, + "##ora": 6525, + "exists": 6526, + "1892": 6527, + "##ten": 6528, + "scientists": 6529, + "dirty": 6530, + "penalty": 6531, + "burst": 6532, + "portrait": 6533, + "seed": 6534, + "79": 6535, + "pole": 6536, + "limits": 6537, + "rival": 6538, + "1894": 6539, + "stable": 6540, + "alpha": 6541, + "grave": 6542, + "constitutional": 6543, + "alcohol": 6544, + "arrest": 6545, + "flower": 6546, + "mystery": 6547, + "devil": 6548, + "architectural": 6549, + "relationships": 6550, + "greatly": 6551, + "habitat": 6552, + "##istic": 6553, + "larry": 6554, + "progressive": 6555, + "remote": 6556, + "cotton": 6557, + "##ics": 6558, + "##ok": 6559, + "preserved": 6560, + "reaches": 6561, + "##ming": 6562, + "cited": 6563, + "86": 6564, + "vast": 6565, + "scholarship": 6566, + "decisions": 6567, + "cbs": 6568, + "joy": 6569, + "teach": 6570, + "1885": 6571, + "editions": 6572, + "knocked": 6573, + "eve": 6574, + "searching": 6575, + "partly": 6576, + "participation": 6577, + "gap": 6578, + "animated": 6579, + "fate": 6580, + "excellent": 6581, + "##ett": 6582, + "na": 6583, + "87": 6584, + "alternate": 6585, + "saints": 6586, + "youngest": 6587, + "##ily": 6588, + "climbed": 6589, + "##ita": 6590, + "##tors": 6591, + "suggest": 6592, + "##ct": 6593, + "discussion": 6594, + "staying": 6595, + "choir": 6596, + "lakes": 6597, + "jacket": 6598, + "revenue": 6599, + "nevertheless": 6600, + "peaked": 6601, + "instrument": 6602, + "wondering": 6603, + "annually": 6604, + "managing": 6605, + "neil": 6606, + "1891": 6607, + "signing": 6608, + "terry": 6609, + "##ice": 6610, + "apply": 6611, + "clinical": 6612, + "brooklyn": 6613, + "aim": 6614, + "catherine": 6615, + "fuck": 6616, + "farmers": 6617, + "figured": 6618, + "ninth": 6619, + "pride": 6620, + "hugh": 6621, + "evolution": 6622, + "ordinary": 6623, + "involvement": 6624, + "comfortable": 6625, + "shouted": 6626, + "tech": 6627, + "encouraged": 6628, + "taiwan": 6629, + "representation": 6630, + "sharing": 6631, + "##lia": 6632, + "##em": 6633, + "panic": 6634, + "exact": 6635, + "cargo": 6636, + "competing": 6637, + "fat": 6638, + "cried": 6639, + "83": 6640, + "1920s": 6641, + "occasions": 6642, + "pa": 6643, + "cabin": 6644, + "borders": 6645, + "utah": 6646, + "marcus": 6647, + "##isation": 6648, + "badly": 6649, + "muscles": 6650, + "##ance": 6651, + "victorian": 6652, + "transition": 6653, + "warner": 6654, + "bet": 6655, + "permission": 6656, + "##rin": 6657, + "slave": 6658, + "terrible": 6659, + "similarly": 6660, + "shares": 6661, + "seth": 6662, + "uefa": 6663, + "possession": 6664, + "medals": 6665, + "benefits": 6666, + "colleges": 6667, + "lowered": 6668, + "perfectly": 6669, + "mall": 6670, + "transit": 6671, + "##ye": 6672, + "##kar": 6673, + "publisher": 6674, + "##ened": 6675, + "harrison": 6676, + "deaths": 6677, + "elevation": 6678, + "##ae": 6679, + "asleep": 6680, + "machines": 6681, + "sigh": 6682, + "ash": 6683, + "hardly": 6684, + "argument": 6685, + "occasion": 6686, + "parent": 6687, + "leo": 6688, + "decline": 6689, + "1888": 6690, + "contribution": 6691, + "##ua": 6692, + "concentration": 6693, + "1000": 6694, + "opportunities": 6695, + "hispanic": 6696, + "guardian": 6697, + "extent": 6698, + "emotions": 6699, + "hips": 6700, + "mason": 6701, + "volumes": 6702, + "bloody": 6703, + "controversy": 6704, + "diameter": 6705, + "steady": 6706, + "mistake": 6707, + "phoenix": 6708, + "identify": 6709, + "violin": 6710, + "##sk": 6711, + "departure": 6712, + "richmond": 6713, + "spin": 6714, + "funeral": 6715, + "enemies": 6716, + "1864": 6717, + "gear": 6718, + "literally": 6719, + "connor": 6720, + "random": 6721, + "sergeant": 6722, + "grab": 6723, + "confusion": 6724, + "1865": 6725, + "transmission": 6726, + "informed": 6727, + "op": 6728, + "leaning": 6729, + "sacred": 6730, + "suspended": 6731, + "thinks": 6732, + "gates": 6733, + "portland": 6734, + "luck": 6735, + "agencies": 6736, + "yours": 6737, + "hull": 6738, + "expert": 6739, + "muscle": 6740, + "layer": 6741, + "practical": 6742, + "sculpture": 6743, + "jerusalem": 6744, + "latest": 6745, + "lloyd": 6746, + "statistics": 6747, + "deeper": 6748, + "recommended": 6749, + "warrior": 6750, + "arkansas": 6751, + "mess": 6752, + "supports": 6753, + "greg": 6754, + "eagle": 6755, + "1880": 6756, + "recovered": 6757, + "rated": 6758, + "concerts": 6759, + "rushed": 6760, + "##ano": 6761, + "stops": 6762, + "eggs": 6763, + "files": 6764, + "premiere": 6765, + "keith": 6766, + "##vo": 6767, + "delhi": 6768, + "turner": 6769, + "pit": 6770, + "affair": 6771, + "belief": 6772, + "paint": 6773, + "##zing": 6774, + "mate": 6775, + "##ach": 6776, + "##ev": 6777, + "victim": 6778, + "##ology": 6779, + "withdrew": 6780, + "bonus": 6781, + "styles": 6782, + "fled": 6783, + "##ud": 6784, + "glasgow": 6785, + "technologies": 6786, + "funded": 6787, + "nbc": 6788, + "adaptation": 6789, + "##ata": 6790, + "portrayed": 6791, + "cooperation": 6792, + "supporters": 6793, + "judges": 6794, + "bernard": 6795, + "justin": 6796, + "hallway": 6797, + "ralph": 6798, + "##ick": 6799, + "graduating": 6800, + "controversial": 6801, + "distant": 6802, + "continental": 6803, + "spider": 6804, + "bite": 6805, + "##ho": 6806, + "recognize": 6807, + "intention": 6808, + "mixing": 6809, + "##ese": 6810, + "egyptian": 6811, + "bow": 6812, + "tourism": 6813, + "suppose": 6814, + "claiming": 6815, + "tiger": 6816, + "dominated": 6817, + "participants": 6818, + "vi": 6819, + "##ru": 6820, + "nurse": 6821, + "partially": 6822, + "tape": 6823, + "##rum": 6824, + "psychology": 6825, + "##rn": 6826, + "essential": 6827, + "touring": 6828, + "duo": 6829, + "voting": 6830, + "civilian": 6831, + "emotional": 6832, + "channels": 6833, + "##king": 6834, + "apparent": 6835, + "hebrew": 6836, + "1887": 6837, + "tommy": 6838, + "carrier": 6839, + "intersection": 6840, + "beast": 6841, + "hudson": 6842, + "##gar": 6843, + "##zo": 6844, + "lab": 6845, + "nova": 6846, + "bench": 6847, + "discuss": 6848, + "costa": 6849, + "##ered": 6850, + "detailed": 6851, + "behalf": 6852, + "drivers": 6853, + "unfortunately": 6854, + "obtain": 6855, + "##lis": 6856, + "rocky": 6857, + "##dae": 6858, + "siege": 6859, + "friendship": 6860, + "honey": 6861, + "##rian": 6862, + "1861": 6863, + "amy": 6864, + "hang": 6865, + "posted": 6866, + "governments": 6867, + "collins": 6868, + "respond": 6869, + "wildlife": 6870, + "preferred": 6871, + "operator": 6872, + "##po": 6873, + "laura": 6874, + "pregnant": 6875, + "videos": 6876, + "dennis": 6877, + "suspected": 6878, + "boots": 6879, + "instantly": 6880, + "weird": 6881, + "automatic": 6882, + "businessman": 6883, + "alleged": 6884, + "placing": 6885, + "throwing": 6886, + "ph": 6887, + "mood": 6888, + "1862": 6889, + "perry": 6890, + "venue": 6891, + "jet": 6892, + "remainder": 6893, + "##lli": 6894, + "##ci": 6895, + "passion": 6896, + "biological": 6897, + "boyfriend": 6898, + "1863": 6899, + "dirt": 6900, + "buffalo": 6901, + "ron": 6902, + "segment": 6903, + "fa": 6904, + "abuse": 6905, + "##era": 6906, + "genre": 6907, + "thrown": 6908, + "stroke": 6909, + "colored": 6910, + "stress": 6911, + "exercise": 6912, + "displayed": 6913, + "##gen": 6914, + "struggled": 6915, + "##tti": 6916, + "abroad": 6917, + "dramatic": 6918, + "wonderful": 6919, + "thereafter": 6920, + "madrid": 6921, + "component": 6922, + "widespread": 6923, + "##sed": 6924, + "tale": 6925, + "citizen": 6926, + "todd": 6927, + "monday": 6928, + "1886": 6929, + "vancouver": 6930, + "overseas": 6931, + "forcing": 6932, + "crying": 6933, + "descent": 6934, + "##ris": 6935, + "discussed": 6936, + "substantial": 6937, + "ranks": 6938, + "regime": 6939, + "1870": 6940, + "provinces": 6941, + "switch": 6942, + "drum": 6943, + "zane": 6944, + "ted": 6945, + "tribes": 6946, + "proof": 6947, + "lp": 6948, + "cream": 6949, + "researchers": 6950, + "volunteer": 6951, + "manor": 6952, + "silk": 6953, + "milan": 6954, + "donated": 6955, + "allies": 6956, + "venture": 6957, + "principle": 6958, + "delivery": 6959, + "enterprise": 6960, + "##ves": 6961, + "##ans": 6962, + "bars": 6963, + "traditionally": 6964, + "witch": 6965, + "reminded": 6966, + "copper": 6967, + "##uk": 6968, + "pete": 6969, + "inter": 6970, + "links": 6971, + "colin": 6972, + "grinned": 6973, + "elsewhere": 6974, + "competitive": 6975, + "frequent": 6976, + "##oy": 6977, + "scream": 6978, + "##hu": 6979, + "tension": 6980, + "texts": 6981, + "submarine": 6982, + "finnish": 6983, + "defending": 6984, + "defend": 6985, + "pat": 6986, + "detail": 6987, + "1884": 6988, + "affiliated": 6989, + "stuart": 6990, + "themes": 6991, + "villa": 6992, + "periods": 6993, + "tool": 6994, + "belgian": 6995, + "ruling": 6996, + "crimes": 6997, + "answers": 6998, + "folded": 6999, + "licensed": 7000, + "resort": 7001, + "demolished": 7002, + "hans": 7003, + "lucy": 7004, + "1881": 7005, + "lion": 7006, + "traded": 7007, + "photographs": 7008, + "writes": 7009, + "craig": 7010, + "##fa": 7011, + "trials": 7012, + "generated": 7013, + "beth": 7014, + "noble": 7015, + "debt": 7016, + "percentage": 7017, + "yorkshire": 7018, + "erected": 7019, + "ss": 7020, + "viewed": 7021, + "grades": 7022, + "confidence": 7023, + "ceased": 7024, + "islam": 7025, + "telephone": 7026, + "retail": 7027, + "##ible": 7028, + "chile": 7029, + "m²": 7030, + "roberts": 7031, + "sixteen": 7032, + "##ich": 7033, + "commented": 7034, + "hampshire": 7035, + "innocent": 7036, + "dual": 7037, + "pounds": 7038, + "checked": 7039, + "regulations": 7040, + "afghanistan": 7041, + "sung": 7042, + "rico": 7043, + "liberty": 7044, + "assets": 7045, + "bigger": 7046, + "options": 7047, + "angels": 7048, + "relegated": 7049, + "tribute": 7050, + "wells": 7051, + "attending": 7052, + "leaf": 7053, + "##yan": 7054, + "butler": 7055, + "romanian": 7056, + "forum": 7057, + "monthly": 7058, + "lisa": 7059, + "patterns": 7060, + "gmina": 7061, + "##tory": 7062, + "madison": 7063, + "hurricane": 7064, + "rev": 7065, + "##ians": 7066, + "bristol": 7067, + "##ula": 7068, + "elite": 7069, + "valuable": 7070, + "disaster": 7071, + "democracy": 7072, + "awareness": 7073, + "germans": 7074, + "freyja": 7075, + "##ins": 7076, + "loop": 7077, + "absolutely": 7078, + "paying": 7079, + "populations": 7080, + "maine": 7081, + "sole": 7082, + "prayer": 7083, + "spencer": 7084, + "releases": 7085, + "doorway": 7086, + "bull": 7087, + "##ani": 7088, + "lover": 7089, + "midnight": 7090, + "conclusion": 7091, + "##sson": 7092, + "thirteen": 7093, + "lily": 7094, + "mediterranean": 7095, + "##lt": 7096, + "nhl": 7097, + "proud": 7098, + "sample": 7099, + "##hill": 7100, + "drummer": 7101, + "guinea": 7102, + "##ova": 7103, + "murphy": 7104, + "climb": 7105, + "##ston": 7106, + "instant": 7107, + "attributed": 7108, + "horn": 7109, + "ain": 7110, + "railways": 7111, + "steven": 7112, + "##ao": 7113, + "autumn": 7114, + "ferry": 7115, + "opponent": 7116, + "root": 7117, + "traveling": 7118, + "secured": 7119, + "corridor": 7120, + "stretched": 7121, + "tales": 7122, + "sheet": 7123, + "trinity": 7124, + "cattle": 7125, + "helps": 7126, + "indicates": 7127, + "manhattan": 7128, + "murdered": 7129, + "fitted": 7130, + "1882": 7131, + "gentle": 7132, + "grandmother": 7133, + "mines": 7134, + "shocked": 7135, + "vegas": 7136, + "produces": 7137, + "##light": 7138, + "caribbean": 7139, + "##ou": 7140, + "belong": 7141, + "continuous": 7142, + "desperate": 7143, + "drunk": 7144, + "historically": 7145, + "trio": 7146, + "waved": 7147, + "raf": 7148, + "dealing": 7149, + "nathan": 7150, + "bat": 7151, + "murmured": 7152, + "interrupted": 7153, + "residing": 7154, + "scientist": 7155, + "pioneer": 7156, + "harold": 7157, + "aaron": 7158, + "##net": 7159, + "delta": 7160, + "attempting": 7161, + "minority": 7162, + "mini": 7163, + "believes": 7164, + "chorus": 7165, + "tend": 7166, + "lots": 7167, + "eyed": 7168, + "indoor": 7169, + "load": 7170, + "shots": 7171, + "updated": 7172, + "jail": 7173, + "##llo": 7174, + "concerning": 7175, + "connecting": 7176, + "wealth": 7177, + "##ved": 7178, + "slaves": 7179, + "arrive": 7180, + "rangers": 7181, + "sufficient": 7182, + "rebuilt": 7183, + "##wick": 7184, + "cardinal": 7185, + "flood": 7186, + "muhammad": 7187, + "whenever": 7188, + "relation": 7189, + "runners": 7190, + "moral": 7191, + "repair": 7192, + "viewers": 7193, + "arriving": 7194, + "revenge": 7195, + "punk": 7196, + "assisted": 7197, + "bath": 7198, + "fairly": 7199, + "breathe": 7200, + "lists": 7201, + "innings": 7202, + "illustrated": 7203, + "whisper": 7204, + "nearest": 7205, + "voters": 7206, + "clinton": 7207, + "ties": 7208, + "ultimate": 7209, + "screamed": 7210, + "beijing": 7211, + "lions": 7212, + "andre": 7213, + "fictional": 7214, + "gathering": 7215, + "comfort": 7216, + "radar": 7217, + "suitable": 7218, + "dismissed": 7219, + "hms": 7220, + "ban": 7221, + "pine": 7222, + "wrist": 7223, + "atmosphere": 7224, + "voivodeship": 7225, + "bid": 7226, + "timber": 7227, + "##ned": 7228, + "##nan": 7229, + "giants": 7230, + "##ane": 7231, + "cameron": 7232, + "recovery": 7233, + "uss": 7234, + "identical": 7235, + "categories": 7236, + "switched": 7237, + "serbia": 7238, + "laughter": 7239, + "noah": 7240, + "ensemble": 7241, + "therapy": 7242, + "peoples": 7243, + "touching": 7244, + "##off": 7245, + "locally": 7246, + "pearl": 7247, + "platforms": 7248, + "everywhere": 7249, + "ballet": 7250, + "tables": 7251, + "lanka": 7252, + "herbert": 7253, + "outdoor": 7254, + "toured": 7255, + "derek": 7256, + "1883": 7257, + "spaces": 7258, + "contested": 7259, + "swept": 7260, + "1878": 7261, + "exclusive": 7262, + "slight": 7263, + "connections": 7264, + "##dra": 7265, + "winds": 7266, + "prisoner": 7267, + "collective": 7268, + "bangladesh": 7269, + "tube": 7270, + "publicly": 7271, + "wealthy": 7272, + "thai": 7273, + "##ys": 7274, + "isolated": 7275, + "select": 7276, + "##ric": 7277, + "insisted": 7278, + "pen": 7279, + "fortune": 7280, + "ticket": 7281, + "spotted": 7282, + "reportedly": 7283, + "animation": 7284, + "enforcement": 7285, + "tanks": 7286, + "110": 7287, + "decides": 7288, + "wider": 7289, + "lowest": 7290, + "owen": 7291, + "##time": 7292, + "nod": 7293, + "hitting": 7294, + "##hn": 7295, + "gregory": 7296, + "furthermore": 7297, + "magazines": 7298, + "fighters": 7299, + "solutions": 7300, + "##ery": 7301, + "pointing": 7302, + "requested": 7303, + "peru": 7304, + "reed": 7305, + "chancellor": 7306, + "knights": 7307, + "mask": 7308, + "worker": 7309, + "eldest": 7310, + "flames": 7311, + "reduction": 7312, + "1860": 7313, + "volunteers": 7314, + "##tis": 7315, + "reporting": 7316, + "##hl": 7317, + "wire": 7318, + "advisory": 7319, + "endemic": 7320, + "origins": 7321, + "settlers": 7322, + "pursue": 7323, + "knock": 7324, + "consumer": 7325, + "1876": 7326, + "eu": 7327, + "compound": 7328, + "creatures": 7329, + "mansion": 7330, + "sentenced": 7331, + "ivan": 7332, + "deployed": 7333, + "guitars": 7334, + "frowned": 7335, + "involves": 7336, + "mechanism": 7337, + "kilometers": 7338, + "perspective": 7339, + "shops": 7340, + "maps": 7341, + "terminus": 7342, + "duncan": 7343, + "alien": 7344, + "fist": 7345, + "bridges": 7346, + "##pers": 7347, + "heroes": 7348, + "fed": 7349, + "derby": 7350, + "swallowed": 7351, + "##ros": 7352, + "patent": 7353, + "sara": 7354, + "illness": 7355, + "characterized": 7356, + "adventures": 7357, + "slide": 7358, + "hawaii": 7359, + "jurisdiction": 7360, + "##op": 7361, + "organised": 7362, + "##side": 7363, + "adelaide": 7364, + "walks": 7365, + "biology": 7366, + "se": 7367, + "##ties": 7368, + "rogers": 7369, + "swing": 7370, + "tightly": 7371, + "boundaries": 7372, + "##rie": 7373, + "prepare": 7374, + "implementation": 7375, + "stolen": 7376, + "##sha": 7377, + "certified": 7378, + "colombia": 7379, + "edwards": 7380, + "garage": 7381, + "##mm": 7382, + "recalled": 7383, + "##ball": 7384, + "rage": 7385, + "harm": 7386, + "nigeria": 7387, + "breast": 7388, + "##ren": 7389, + "furniture": 7390, + "pupils": 7391, + "settle": 7392, + "##lus": 7393, + "cuba": 7394, + "balls": 7395, + "client": 7396, + "alaska": 7397, + "21st": 7398, + "linear": 7399, + "thrust": 7400, + "celebration": 7401, + "latino": 7402, + "genetic": 7403, + "terror": 7404, + "##cia": 7405, + "##ening": 7406, + "lightning": 7407, + "fee": 7408, + "witness": 7409, + "lodge": 7410, + "establishing": 7411, + "skull": 7412, + "##ique": 7413, + "earning": 7414, + "hood": 7415, + "##ei": 7416, + "rebellion": 7417, + "wang": 7418, + "sporting": 7419, + "warned": 7420, + "missile": 7421, + "devoted": 7422, + "activist": 7423, + "porch": 7424, + "worship": 7425, + "fourteen": 7426, + "package": 7427, + "1871": 7428, + "decorated": 7429, + "##shire": 7430, + "housed": 7431, + "##ock": 7432, + "chess": 7433, + "sailed": 7434, + "doctors": 7435, + "oscar": 7436, + "joan": 7437, + "treat": 7438, + "garcia": 7439, + "harbour": 7440, + "jeremy": 7441, + "##ire": 7442, + "traditions": 7443, + "dominant": 7444, + "jacques": 7445, + "##gon": 7446, + "##wan": 7447, + "relocated": 7448, + "1879": 7449, + "amendment": 7450, + "sized": 7451, + "companion": 7452, + "simultaneously": 7453, + "volleyball": 7454, + "spun": 7455, + "acre": 7456, + "increases": 7457, + "stopping": 7458, + "loves": 7459, + "belongs": 7460, + "affect": 7461, + "drafted": 7462, + "tossed": 7463, + "scout": 7464, + "battles": 7465, + "1875": 7466, + "filming": 7467, + "shoved": 7468, + "munich": 7469, + "tenure": 7470, + "vertical": 7471, + "romance": 7472, + "pc": 7473, + "##cher": 7474, + "argue": 7475, + "##ical": 7476, + "craft": 7477, + "ranging": 7478, + "www": 7479, + "opens": 7480, + "honest": 7481, + "tyler": 7482, + "yesterday": 7483, + "virtual": 7484, + "##let": 7485, + "muslims": 7486, + "reveal": 7487, + "snake": 7488, + "immigrants": 7489, + "radical": 7490, + "screaming": 7491, + "speakers": 7492, + "firing": 7493, + "saving": 7494, + "belonging": 7495, + "ease": 7496, + "lighting": 7497, + "prefecture": 7498, + "blame": 7499, + "farmer": 7500, + "hungry": 7501, + "grows": 7502, + "rubbed": 7503, + "beam": 7504, + "sur": 7505, + "subsidiary": 7506, + "##cha": 7507, + "armenian": 7508, + "sao": 7509, + "dropping": 7510, + "conventional": 7511, + "##fer": 7512, + "microsoft": 7513, + "reply": 7514, + "qualify": 7515, + "spots": 7516, + "1867": 7517, + "sweat": 7518, + "festivals": 7519, + "##ken": 7520, + "immigration": 7521, + "physician": 7522, + "discover": 7523, + "exposure": 7524, + "sandy": 7525, + "explanation": 7526, + "isaac": 7527, + "implemented": 7528, + "##fish": 7529, + "hart": 7530, + "initiated": 7531, + "connect": 7532, + "stakes": 7533, + "presents": 7534, + "heights": 7535, + "householder": 7536, + "pleased": 7537, + "tourist": 7538, + "regardless": 7539, + "slip": 7540, + "closest": 7541, + "##ction": 7542, + "surely": 7543, + "sultan": 7544, + "brings": 7545, + "riley": 7546, + "preparation": 7547, + "aboard": 7548, + "slammed": 7549, + "baptist": 7550, + "experiment": 7551, + "ongoing": 7552, + "interstate": 7553, + "organic": 7554, + "playoffs": 7555, + "##ika": 7556, + "1877": 7557, + "130": 7558, + "##tar": 7559, + "hindu": 7560, + "error": 7561, + "tours": 7562, + "tier": 7563, + "plenty": 7564, + "arrangements": 7565, + "talks": 7566, + "trapped": 7567, + "excited": 7568, + "sank": 7569, + "ho": 7570, + "athens": 7571, + "1872": 7572, + "denver": 7573, + "welfare": 7574, + "suburb": 7575, + "athletes": 7576, + "trick": 7577, + "diverse": 7578, + "belly": 7579, + "exclusively": 7580, + "yelled": 7581, + "1868": 7582, + "##med": 7583, + "conversion": 7584, + "##ette": 7585, + "1874": 7586, + "internationally": 7587, + "computers": 7588, + "conductor": 7589, + "abilities": 7590, + "sensitive": 7591, + "hello": 7592, + "dispute": 7593, + "measured": 7594, + "globe": 7595, + "rocket": 7596, + "prices": 7597, + "amsterdam": 7598, + "flights": 7599, + "tigers": 7600, + "inn": 7601, + "municipalities": 7602, + "emotion": 7603, + "references": 7604, + "3d": 7605, + "##mus": 7606, + "explains": 7607, + "airlines": 7608, + "manufactured": 7609, + "pm": 7610, + "archaeological": 7611, + "1873": 7612, + "interpretation": 7613, + "devon": 7614, + "comment": 7615, + "##ites": 7616, + "settlements": 7617, + "kissing": 7618, + "absolute": 7619, + "improvement": 7620, + "suite": 7621, + "impressed": 7622, + "barcelona": 7623, + "sullivan": 7624, + "jefferson": 7625, + "towers": 7626, + "jesse": 7627, + "julie": 7628, + "##tin": 7629, + "##lu": 7630, + "grandson": 7631, + "hi": 7632, + "gauge": 7633, + "regard": 7634, + "rings": 7635, + "interviews": 7636, + "trace": 7637, + "raymond": 7638, + "thumb": 7639, + "departments": 7640, + "burns": 7641, + "serial": 7642, + "bulgarian": 7643, + "scores": 7644, + "demonstrated": 7645, + "##ix": 7646, + "1866": 7647, + "kyle": 7648, + "alberta": 7649, + "underneath": 7650, + "romanized": 7651, + "##ward": 7652, + "relieved": 7653, + "acquisition": 7654, + "phrase": 7655, + "cliff": 7656, + "reveals": 7657, + "han": 7658, + "cuts": 7659, + "merger": 7660, + "custom": 7661, + "##dar": 7662, + "nee": 7663, + "gilbert": 7664, + "graduation": 7665, + "##nts": 7666, + "assessment": 7667, + "cafe": 7668, + "difficulty": 7669, + "demands": 7670, + "swung": 7671, + "democrat": 7672, + "jennifer": 7673, + "commons": 7674, + "1940s": 7675, + "grove": 7676, + "##yo": 7677, + "completing": 7678, + "focuses": 7679, + "sum": 7680, + "substitute": 7681, + "bearing": 7682, + "stretch": 7683, + "reception": 7684, + "##py": 7685, + "reflected": 7686, + "essentially": 7687, + "destination": 7688, + "pairs": 7689, + "##ched": 7690, + "survival": 7691, + "resource": 7692, + "##bach": 7693, + "promoting": 7694, + "doubles": 7695, + "messages": 7696, + "tear": 7697, + "##down": 7698, + "##fully": 7699, + "parade": 7700, + "florence": 7701, + "harvey": 7702, + "incumbent": 7703, + "partial": 7704, + "framework": 7705, + "900": 7706, + "pedro": 7707, + "frozen": 7708, + "procedure": 7709, + "olivia": 7710, + "controls": 7711, + "##mic": 7712, + "shelter": 7713, + "personally": 7714, + "temperatures": 7715, + "##od": 7716, + "brisbane": 7717, + "tested": 7718, + "sits": 7719, + "marble": 7720, + "comprehensive": 7721, + "oxygen": 7722, + "leonard": 7723, + "##kov": 7724, + "inaugural": 7725, + "iranian": 7726, + "referring": 7727, + "quarters": 7728, + "attitude": 7729, + "##ivity": 7730, + "mainstream": 7731, + "lined": 7732, + "mars": 7733, + "dakota": 7734, + "norfolk": 7735, + "unsuccessful": 7736, + "##°": 7737, + "explosion": 7738, + "helicopter": 7739, + "congressional": 7740, + "##sing": 7741, + "inspector": 7742, + "bitch": 7743, + "seal": 7744, + "departed": 7745, + "divine": 7746, + "##ters": 7747, + "coaching": 7748, + "examination": 7749, + "punishment": 7750, + "manufacturer": 7751, + "sink": 7752, + "columns": 7753, + "unincorporated": 7754, + "signals": 7755, + "nevada": 7756, + "squeezed": 7757, + "dylan": 7758, + "dining": 7759, + "photos": 7760, + "martial": 7761, + "manuel": 7762, + "eighteen": 7763, + "elevator": 7764, + "brushed": 7765, + "plates": 7766, + "ministers": 7767, + "ivy": 7768, + "congregation": 7769, + "##len": 7770, + "slept": 7771, + "specialized": 7772, + "taxes": 7773, + "curve": 7774, + "restricted": 7775, + "negotiations": 7776, + "likes": 7777, + "statistical": 7778, + "arnold": 7779, + "inspiration": 7780, + "execution": 7781, + "bold": 7782, + "intermediate": 7783, + "significance": 7784, + "margin": 7785, + "ruler": 7786, + "wheels": 7787, + "gothic": 7788, + "intellectual": 7789, + "dependent": 7790, + "listened": 7791, + "eligible": 7792, + "buses": 7793, + "widow": 7794, + "syria": 7795, + "earn": 7796, + "cincinnati": 7797, + "collapsed": 7798, + "recipient": 7799, + "secrets": 7800, + "accessible": 7801, + "philippine": 7802, + "maritime": 7803, + "goddess": 7804, + "clerk": 7805, + "surrender": 7806, + "breaks": 7807, + "playoff": 7808, + "database": 7809, + "##ified": 7810, + "##lon": 7811, + "ideal": 7812, + "beetle": 7813, + "aspect": 7814, + "soap": 7815, + "regulation": 7816, + "strings": 7817, + "expand": 7818, + "anglo": 7819, + "shorter": 7820, + "crosses": 7821, + "retreat": 7822, + "tough": 7823, + "coins": 7824, + "wallace": 7825, + "directions": 7826, + "pressing": 7827, + "##oon": 7828, + "shipping": 7829, + "locomotives": 7830, + "comparison": 7831, + "topics": 7832, + "nephew": 7833, + "##mes": 7834, + "distinction": 7835, + "honors": 7836, + "travelled": 7837, + "sierra": 7838, + "ibn": 7839, + "##over": 7840, + "fortress": 7841, + "sa": 7842, + "recognised": 7843, + "carved": 7844, + "1869": 7845, + "clients": 7846, + "##dan": 7847, + "intent": 7848, + "##mar": 7849, + "coaches": 7850, + "describing": 7851, + "bread": 7852, + "##ington": 7853, + "beaten": 7854, + "northwestern": 7855, + "##ona": 7856, + "merit": 7857, + "youtube": 7858, + "collapse": 7859, + "challenges": 7860, + "em": 7861, + "historians": 7862, + "objective": 7863, + "submitted": 7864, + "virus": 7865, + "attacking": 7866, + "drake": 7867, + "assume": 7868, + "##ere": 7869, + "diseases": 7870, + "marc": 7871, + "stem": 7872, + "leeds": 7873, + "##cus": 7874, + "##ab": 7875, + "farming": 7876, + "glasses": 7877, + "##lock": 7878, + "visits": 7879, + "nowhere": 7880, + "fellowship": 7881, + "relevant": 7882, + "carries": 7883, + "restaurants": 7884, + "experiments": 7885, + "101": 7886, + "constantly": 7887, + "bases": 7888, + "targets": 7889, + "shah": 7890, + "tenth": 7891, + "opponents": 7892, + "verse": 7893, + "territorial": 7894, + "##ira": 7895, + "writings": 7896, + "corruption": 7897, + "##hs": 7898, + "instruction": 7899, + "inherited": 7900, + "reverse": 7901, + "emphasis": 7902, + "##vic": 7903, + "employee": 7904, + "arch": 7905, + "keeps": 7906, + "rabbi": 7907, + "watson": 7908, + "payment": 7909, + "uh": 7910, + "##ala": 7911, + "nancy": 7912, + "##tre": 7913, + "venice": 7914, + "fastest": 7915, + "sexy": 7916, + "banned": 7917, + "adrian": 7918, + "properly": 7919, + "ruth": 7920, + "touchdown": 7921, + "dollar": 7922, + "boards": 7923, + "metre": 7924, + "circles": 7925, + "edges": 7926, + "favour": 7927, + "comments": 7928, + "ok": 7929, + "travels": 7930, + "liberation": 7931, + "scattered": 7932, + "firmly": 7933, + "##ular": 7934, + "holland": 7935, + "permitted": 7936, + "diesel": 7937, + "kenya": 7938, + "den": 7939, + "originated": 7940, + "##ral": 7941, + "demons": 7942, + "resumed": 7943, + "dragged": 7944, + "rider": 7945, + "##rus": 7946, + "servant": 7947, + "blinked": 7948, + "extend": 7949, + "torn": 7950, + "##ias": 7951, + "##sey": 7952, + "input": 7953, + "meal": 7954, + "everybody": 7955, + "cylinder": 7956, + "kinds": 7957, + "camps": 7958, + "##fe": 7959, + "bullet": 7960, + "logic": 7961, + "##wn": 7962, + "croatian": 7963, + "evolved": 7964, + "healthy": 7965, + "fool": 7966, + "chocolate": 7967, + "wise": 7968, + "preserve": 7969, + "pradesh": 7970, + "##ess": 7971, + "respective": 7972, + "1850": 7973, + "##ew": 7974, + "chicken": 7975, + "artificial": 7976, + "gross": 7977, + "corresponding": 7978, + "convicted": 7979, + "cage": 7980, + "caroline": 7981, + "dialogue": 7982, + "##dor": 7983, + "narrative": 7984, + "stranger": 7985, + "mario": 7986, + "br": 7987, + "christianity": 7988, + "failing": 7989, + "trent": 7990, + "commanding": 7991, + "buddhist": 7992, + "1848": 7993, + "maurice": 7994, + "focusing": 7995, + "yale": 7996, + "bike": 7997, + "altitude": 7998, + "##ering": 7999, + "mouse": 8000, + "revised": 8001, + "##sley": 8002, + "veteran": 8003, + "##ig": 8004, + "pulls": 8005, + "theology": 8006, + "crashed": 8007, + "campaigns": 8008, + "legion": 8009, + "##ability": 8010, + "drag": 8011, + "excellence": 8012, + "customer": 8013, + "cancelled": 8014, + "intensity": 8015, + "excuse": 8016, + "##lar": 8017, + "liga": 8018, + "participating": 8019, + "contributing": 8020, + "printing": 8021, + "##burn": 8022, + "variable": 8023, + "##rk": 8024, + "curious": 8025, + "bin": 8026, + "legacy": 8027, + "renaissance": 8028, + "##my": 8029, + "symptoms": 8030, + "binding": 8031, + "vocalist": 8032, + "dancer": 8033, + "##nie": 8034, + "grammar": 8035, + "gospel": 8036, + "democrats": 8037, + "ya": 8038, + "enters": 8039, + "sc": 8040, + "diplomatic": 8041, + "hitler": 8042, + "##ser": 8043, + "clouds": 8044, + "mathematical": 8045, + "quit": 8046, + "defended": 8047, + "oriented": 8048, + "##heim": 8049, + "fundamental": 8050, + "hardware": 8051, + "impressive": 8052, + "equally": 8053, + "convince": 8054, + "confederate": 8055, + "guilt": 8056, + "chuck": 8057, + "sliding": 8058, + "##ware": 8059, + "magnetic": 8060, + "narrowed": 8061, + "petersburg": 8062, + "bulgaria": 8063, + "otto": 8064, + "phd": 8065, + "skill": 8066, + "##ama": 8067, + "reader": 8068, + "hopes": 8069, + "pitcher": 8070, + "reservoir": 8071, + "hearts": 8072, + "automatically": 8073, + "expecting": 8074, + "mysterious": 8075, + "bennett": 8076, + "extensively": 8077, + "imagined": 8078, + "seeds": 8079, + "monitor": 8080, + "fix": 8081, + "##ative": 8082, + "journalism": 8083, + "struggling": 8084, + "signature": 8085, + "ranch": 8086, + "encounter": 8087, + "photographer": 8088, + "observation": 8089, + "protests": 8090, + "##pin": 8091, + "influences": 8092, + "##hr": 8093, + "calendar": 8094, + "##all": 8095, + "cruz": 8096, + "croatia": 8097, + "locomotive": 8098, + "hughes": 8099, + "naturally": 8100, + "shakespeare": 8101, + "basement": 8102, + "hook": 8103, + "uncredited": 8104, + "faded": 8105, + "theories": 8106, + "approaches": 8107, + "dare": 8108, + "phillips": 8109, + "filling": 8110, + "fury": 8111, + "obama": 8112, + "##ain": 8113, + "efficient": 8114, + "arc": 8115, + "deliver": 8116, + "min": 8117, + "raid": 8118, + "breeding": 8119, + "inducted": 8120, + "leagues": 8121, + "efficiency": 8122, + "axis": 8123, + "montana": 8124, + "eagles": 8125, + "##ked": 8126, + "supplied": 8127, + "instructions": 8128, + "karen": 8129, + "picking": 8130, + "indicating": 8131, + "trap": 8132, + "anchor": 8133, + "practically": 8134, + "christians": 8135, + "tomb": 8136, + "vary": 8137, + "occasional": 8138, + "electronics": 8139, + "lords": 8140, + "readers": 8141, + "newcastle": 8142, + "faint": 8143, + "innovation": 8144, + "collect": 8145, + "situations": 8146, + "engagement": 8147, + "160": 8148, + "claude": 8149, + "mixture": 8150, + "##feld": 8151, + "peer": 8152, + "tissue": 8153, + "logo": 8154, + "lean": 8155, + "##ration": 8156, + "°f": 8157, + "floors": 8158, + "##ven": 8159, + "architects": 8160, + "reducing": 8161, + "##our": 8162, + "##ments": 8163, + "rope": 8164, + "1859": 8165, + "ottawa": 8166, + "##har": 8167, + "samples": 8168, + "banking": 8169, + "declaration": 8170, + "proteins": 8171, + "resignation": 8172, + "francois": 8173, + "saudi": 8174, + "advocate": 8175, + "exhibited": 8176, + "armor": 8177, + "twins": 8178, + "divorce": 8179, + "##ras": 8180, + "abraham": 8181, + "reviewed": 8182, + "jo": 8183, + "temporarily": 8184, + "matrix": 8185, + "physically": 8186, + "pulse": 8187, + "curled": 8188, + "##ena": 8189, + "difficulties": 8190, + "bengal": 8191, + "usage": 8192, + "##ban": 8193, + "annie": 8194, + "riders": 8195, + "certificate": 8196, + "##pi": 8197, + "holes": 8198, + "warsaw": 8199, + "distinctive": 8200, + "jessica": 8201, + "##mon": 8202, + "mutual": 8203, + "1857": 8204, + "customs": 8205, + "circular": 8206, + "eugene": 8207, + "removal": 8208, + "loaded": 8209, + "mere": 8210, + "vulnerable": 8211, + "depicted": 8212, + "generations": 8213, + "dame": 8214, + "heir": 8215, + "enormous": 8216, + "lightly": 8217, + "climbing": 8218, + "pitched": 8219, + "lessons": 8220, + "pilots": 8221, + "nepal": 8222, + "ram": 8223, + "google": 8224, + "preparing": 8225, + "brad": 8226, + "louise": 8227, + "renowned": 8228, + "##₂": 8229, + "liam": 8230, + "##ably": 8231, + "plaza": 8232, + "shaw": 8233, + "sophie": 8234, + "brilliant": 8235, + "bills": 8236, + "##bar": 8237, + "##nik": 8238, + "fucking": 8239, + "mainland": 8240, + "server": 8241, + "pleasant": 8242, + "seized": 8243, + "veterans": 8244, + "jerked": 8245, + "fail": 8246, + "beta": 8247, + "brush": 8248, + "radiation": 8249, + "stored": 8250, + "warmth": 8251, + "southeastern": 8252, + "nate": 8253, + "sin": 8254, + "raced": 8255, + "berkeley": 8256, + "joke": 8257, + "athlete": 8258, + "designation": 8259, + "trunk": 8260, + "##low": 8261, + "roland": 8262, + "qualification": 8263, + "archives": 8264, + "heels": 8265, + "artwork": 8266, + "receives": 8267, + "judicial": 8268, + "reserves": 8269, + "##bed": 8270, + "woke": 8271, + "installation": 8272, + "abu": 8273, + "floating": 8274, + "fake": 8275, + "lesser": 8276, + "excitement": 8277, + "interface": 8278, + "concentrated": 8279, + "addressed": 8280, + "characteristic": 8281, + "amanda": 8282, + "saxophone": 8283, + "monk": 8284, + "auto": 8285, + "##bus": 8286, + "releasing": 8287, + "egg": 8288, + "dies": 8289, + "interaction": 8290, + "defender": 8291, + "ce": 8292, + "outbreak": 8293, + "glory": 8294, + "loving": 8295, + "##bert": 8296, + "sequel": 8297, + "consciousness": 8298, + "http": 8299, + "awake": 8300, + "ski": 8301, + "enrolled": 8302, + "##ress": 8303, + "handling": 8304, + "rookie": 8305, + "brow": 8306, + "somebody": 8307, + "biography": 8308, + "warfare": 8309, + "amounts": 8310, + "contracts": 8311, + "presentation": 8312, + "fabric": 8313, + "dissolved": 8314, + "challenged": 8315, + "meter": 8316, + "psychological": 8317, + "lt": 8318, + "elevated": 8319, + "rally": 8320, + "accurate": 8321, + "##tha": 8322, + "hospitals": 8323, + "undergraduate": 8324, + "specialist": 8325, + "venezuela": 8326, + "exhibit": 8327, + "shed": 8328, + "nursing": 8329, + "protestant": 8330, + "fluid": 8331, + "structural": 8332, + "footage": 8333, + "jared": 8334, + "consistent": 8335, + "prey": 8336, + "##ska": 8337, + "succession": 8338, + "reflect": 8339, + "exile": 8340, + "lebanon": 8341, + "wiped": 8342, + "suspect": 8343, + "shanghai": 8344, + "resting": 8345, + "integration": 8346, + "preservation": 8347, + "marvel": 8348, + "variant": 8349, + "pirates": 8350, + "sheep": 8351, + "rounded": 8352, + "capita": 8353, + "sailing": 8354, + "colonies": 8355, + "manuscript": 8356, + "deemed": 8357, + "variations": 8358, + "clarke": 8359, + "functional": 8360, + "emerging": 8361, + "boxing": 8362, + "relaxed": 8363, + "curse": 8364, + "azerbaijan": 8365, + "heavyweight": 8366, + "nickname": 8367, + "editorial": 8368, + "rang": 8369, + "grid": 8370, + "tightened": 8371, + "earthquake": 8372, + "flashed": 8373, + "miguel": 8374, + "rushing": 8375, + "##ches": 8376, + "improvements": 8377, + "boxes": 8378, + "brooks": 8379, + "180": 8380, + "consumption": 8381, + "molecular": 8382, + "felix": 8383, + "societies": 8384, + "repeatedly": 8385, + "variation": 8386, + "aids": 8387, + "civic": 8388, + "graphics": 8389, + "professionals": 8390, + "realm": 8391, + "autonomous": 8392, + "receiver": 8393, + "delayed": 8394, + "workshop": 8395, + "militia": 8396, + "chairs": 8397, + "trump": 8398, + "canyon": 8399, + "##point": 8400, + "harsh": 8401, + "extending": 8402, + "lovely": 8403, + "happiness": 8404, + "##jan": 8405, + "stake": 8406, + "eyebrows": 8407, + "embassy": 8408, + "wellington": 8409, + "hannah": 8410, + "##ella": 8411, + "sony": 8412, + "corners": 8413, + "bishops": 8414, + "swear": 8415, + "cloth": 8416, + "contents": 8417, + "xi": 8418, + "namely": 8419, + "commenced": 8420, + "1854": 8421, + "stanford": 8422, + "nashville": 8423, + "courage": 8424, + "graphic": 8425, + "commitment": 8426, + "garrison": 8427, + "##bin": 8428, + "hamlet": 8429, + "clearing": 8430, + "rebels": 8431, + "attraction": 8432, + "literacy": 8433, + "cooking": 8434, + "ruins": 8435, + "temples": 8436, + "jenny": 8437, + "humanity": 8438, + "celebrate": 8439, + "hasn": 8440, + "freight": 8441, + "sixty": 8442, + "rebel": 8443, + "bastard": 8444, + "##art": 8445, + "newton": 8446, + "##ada": 8447, + "deer": 8448, + "##ges": 8449, + "##ching": 8450, + "smiles": 8451, + "delaware": 8452, + "singers": 8453, + "##ets": 8454, + "approaching": 8455, + "assists": 8456, + "flame": 8457, + "##ph": 8458, + "boulevard": 8459, + "barrel": 8460, + "planted": 8461, + "##ome": 8462, + "pursuit": 8463, + "##sia": 8464, + "consequences": 8465, + "posts": 8466, + "shallow": 8467, + "invitation": 8468, + "rode": 8469, + "depot": 8470, + "ernest": 8471, + "kane": 8472, + "rod": 8473, + "concepts": 8474, + "preston": 8475, + "topic": 8476, + "chambers": 8477, + "striking": 8478, + "blast": 8479, + "arrives": 8480, + "descendants": 8481, + "montgomery": 8482, + "ranges": 8483, + "worlds": 8484, + "##lay": 8485, + "##ari": 8486, + "span": 8487, + "chaos": 8488, + "praise": 8489, + "##ag": 8490, + "fewer": 8491, + "1855": 8492, + "sanctuary": 8493, + "mud": 8494, + "fbi": 8495, + "##ions": 8496, + "programmes": 8497, + "maintaining": 8498, + "unity": 8499, + "harper": 8500, + "bore": 8501, + "handsome": 8502, + "closure": 8503, + "tournaments": 8504, + "thunder": 8505, + "nebraska": 8506, + "linda": 8507, + "facade": 8508, + "puts": 8509, + "satisfied": 8510, + "argentine": 8511, + "dale": 8512, + "cork": 8513, + "dome": 8514, + "panama": 8515, + "##yl": 8516, + "1858": 8517, + "tasks": 8518, + "experts": 8519, + "##ates": 8520, + "feeding": 8521, + "equation": 8522, + "##las": 8523, + "##ida": 8524, + "##tu": 8525, + "engage": 8526, + "bryan": 8527, + "##ax": 8528, + "um": 8529, + "quartet": 8530, + "melody": 8531, + "disbanded": 8532, + "sheffield": 8533, + "blocked": 8534, + "gasped": 8535, + "delay": 8536, + "kisses": 8537, + "maggie": 8538, + "connects": 8539, + "##non": 8540, + "sts": 8541, + "poured": 8542, + "creator": 8543, + "publishers": 8544, + "##we": 8545, + "guided": 8546, + "ellis": 8547, + "extinct": 8548, + "hug": 8549, + "gaining": 8550, + "##ord": 8551, + "complicated": 8552, + "##bility": 8553, + "poll": 8554, + "clenched": 8555, + "investigate": 8556, + "##use": 8557, + "thereby": 8558, + "quantum": 8559, + "spine": 8560, + "cdp": 8561, + "humor": 8562, + "kills": 8563, + "administered": 8564, + "semifinals": 8565, + "##du": 8566, + "encountered": 8567, + "ignore": 8568, + "##bu": 8569, + "commentary": 8570, + "##maker": 8571, + "bother": 8572, + "roosevelt": 8573, + "140": 8574, + "plains": 8575, + "halfway": 8576, + "flowing": 8577, + "cultures": 8578, + "crack": 8579, + "imprisoned": 8580, + "neighboring": 8581, + "airline": 8582, + "##ses": 8583, + "##view": 8584, + "##mate": 8585, + "##ec": 8586, + "gather": 8587, + "wolves": 8588, + "marathon": 8589, + "transformed": 8590, + "##ill": 8591, + "cruise": 8592, + "organisations": 8593, + "carol": 8594, + "punch": 8595, + "exhibitions": 8596, + "numbered": 8597, + "alarm": 8598, + "ratings": 8599, + "daddy": 8600, + "silently": 8601, + "##stein": 8602, + "queens": 8603, + "colours": 8604, + "impression": 8605, + "guidance": 8606, + "liu": 8607, + "tactical": 8608, + "##rat": 8609, + "marshal": 8610, + "della": 8611, + "arrow": 8612, + "##ings": 8613, + "rested": 8614, + "feared": 8615, + "tender": 8616, + "owns": 8617, + "bitter": 8618, + "advisor": 8619, + "escort": 8620, + "##ides": 8621, + "spare": 8622, + "farms": 8623, + "grants": 8624, + "##ene": 8625, + "dragons": 8626, + "encourage": 8627, + "colleagues": 8628, + "cameras": 8629, + "##und": 8630, + "sucked": 8631, + "pile": 8632, + "spirits": 8633, + "prague": 8634, + "statements": 8635, + "suspension": 8636, + "landmark": 8637, + "fence": 8638, + "torture": 8639, + "recreation": 8640, + "bags": 8641, + "permanently": 8642, + "survivors": 8643, + "pond": 8644, + "spy": 8645, + "predecessor": 8646, + "bombing": 8647, + "coup": 8648, + "##og": 8649, + "protecting": 8650, + "transformation": 8651, + "glow": 8652, + "##lands": 8653, + "##book": 8654, + "dug": 8655, + "priests": 8656, + "andrea": 8657, + "feat": 8658, + "barn": 8659, + "jumping": 8660, + "##chen": 8661, + "##ologist": 8662, + "##con": 8663, + "casualties": 8664, + "stern": 8665, + "auckland": 8666, + "pipe": 8667, + "serie": 8668, + "revealing": 8669, + "ba": 8670, + "##bel": 8671, + "trevor": 8672, + "mercy": 8673, + "spectrum": 8674, + "yang": 8675, + "consist": 8676, + "governing": 8677, + "collaborated": 8678, + "possessed": 8679, + "epic": 8680, + "comprises": 8681, + "blew": 8682, + "shane": 8683, + "##ack": 8684, + "lopez": 8685, + "honored": 8686, + "magical": 8687, + "sacrifice": 8688, + "judgment": 8689, + "perceived": 8690, + "hammer": 8691, + "mtv": 8692, + "baronet": 8693, + "tune": 8694, + "das": 8695, + "missionary": 8696, + "sheets": 8697, + "350": 8698, + "neutral": 8699, + "oral": 8700, + "threatening": 8701, + "attractive": 8702, + "shade": 8703, + "aims": 8704, + "seminary": 8705, + "##master": 8706, + "estates": 8707, + "1856": 8708, + "michel": 8709, + "wounds": 8710, + "refugees": 8711, + "manufacturers": 8712, + "##nic": 8713, + "mercury": 8714, + "syndrome": 8715, + "porter": 8716, + "##iya": 8717, + "##din": 8718, + "hamburg": 8719, + "identification": 8720, + "upstairs": 8721, + "purse": 8722, + "widened": 8723, + "pause": 8724, + "cared": 8725, + "breathed": 8726, + "affiliate": 8727, + "santiago": 8728, + "prevented": 8729, + "celtic": 8730, + "fisher": 8731, + "125": 8732, + "recruited": 8733, + "byzantine": 8734, + "reconstruction": 8735, + "farther": 8736, + "##mp": 8737, + "diet": 8738, + "sake": 8739, + "au": 8740, + "spite": 8741, + "sensation": 8742, + "##ert": 8743, + "blank": 8744, + "separation": 8745, + "105": 8746, + "##hon": 8747, + "vladimir": 8748, + "armies": 8749, + "anime": 8750, + "##lie": 8751, + "accommodate": 8752, + "orbit": 8753, + "cult": 8754, + "sofia": 8755, + "archive": 8756, + "##ify": 8757, + "##box": 8758, + "founders": 8759, + "sustained": 8760, + "disorder": 8761, + "honours": 8762, + "northeastern": 8763, + "mia": 8764, + "crops": 8765, + "violet": 8766, + "threats": 8767, + "blanket": 8768, + "fires": 8769, + "canton": 8770, + "followers": 8771, + "southwestern": 8772, + "prototype": 8773, + "voyage": 8774, + "assignment": 8775, + "altered": 8776, + "moderate": 8777, + "protocol": 8778, + "pistol": 8779, + "##eo": 8780, + "questioned": 8781, + "brass": 8782, + "lifting": 8783, + "1852": 8784, + "math": 8785, + "authored": 8786, + "##ual": 8787, + "doug": 8788, + "dimensional": 8789, + "dynamic": 8790, + "##san": 8791, + "1851": 8792, + "pronounced": 8793, + "grateful": 8794, + "quest": 8795, + "uncomfortable": 8796, + "boom": 8797, + "presidency": 8798, + "stevens": 8799, + "relating": 8800, + "politicians": 8801, + "chen": 8802, + "barrier": 8803, + "quinn": 8804, + "diana": 8805, + "mosque": 8806, + "tribal": 8807, + "cheese": 8808, + "palmer": 8809, + "portions": 8810, + "sometime": 8811, + "chester": 8812, + "treasure": 8813, + "wu": 8814, + "bend": 8815, + "download": 8816, + "millions": 8817, + "reforms": 8818, + "registration": 8819, + "##osa": 8820, + "consequently": 8821, + "monitoring": 8822, + "ate": 8823, + "preliminary": 8824, + "brandon": 8825, + "invented": 8826, + "ps": 8827, + "eaten": 8828, + "exterior": 8829, + "intervention": 8830, + "ports": 8831, + "documented": 8832, + "log": 8833, + "displays": 8834, + "lecture": 8835, + "sally": 8836, + "favourite": 8837, + "##itz": 8838, + "vermont": 8839, + "lo": 8840, + "invisible": 8841, + "isle": 8842, + "breed": 8843, + "##ator": 8844, + "journalists": 8845, + "relay": 8846, + "speaks": 8847, + "backward": 8848, + "explore": 8849, + "midfielder": 8850, + "actively": 8851, + "stefan": 8852, + "procedures": 8853, + "cannon": 8854, + "blond": 8855, + "kenneth": 8856, + "centered": 8857, + "servants": 8858, + "chains": 8859, + "libraries": 8860, + "malcolm": 8861, + "essex": 8862, + "henri": 8863, + "slavery": 8864, + "##hal": 8865, + "facts": 8866, + "fairy": 8867, + "coached": 8868, + "cassie": 8869, + "cats": 8870, + "washed": 8871, + "cop": 8872, + "##fi": 8873, + "announcement": 8874, + "item": 8875, + "2000s": 8876, + "vinyl": 8877, + "activated": 8878, + "marco": 8879, + "frontier": 8880, + "growled": 8881, + "curriculum": 8882, + "##das": 8883, + "loyal": 8884, + "accomplished": 8885, + "leslie": 8886, + "ritual": 8887, + "kenny": 8888, + "##00": 8889, + "vii": 8890, + "napoleon": 8891, + "hollow": 8892, + "hybrid": 8893, + "jungle": 8894, + "stationed": 8895, + "friedrich": 8896, + "counted": 8897, + "##ulated": 8898, + "platinum": 8899, + "theatrical": 8900, + "seated": 8901, + "col": 8902, + "rubber": 8903, + "glen": 8904, + "1840": 8905, + "diversity": 8906, + "healing": 8907, + "extends": 8908, + "id": 8909, + "provisions": 8910, + "administrator": 8911, + "columbus": 8912, + "##oe": 8913, + "tributary": 8914, + "te": 8915, + "assured": 8916, + "org": 8917, + "##uous": 8918, + "prestigious": 8919, + "examined": 8920, + "lectures": 8921, + "grammy": 8922, + "ronald": 8923, + "associations": 8924, + "bailey": 8925, + "allan": 8926, + "essays": 8927, + "flute": 8928, + "believing": 8929, + "consultant": 8930, + "proceedings": 8931, + "travelling": 8932, + "1853": 8933, + "kit": 8934, + "kerala": 8935, + "yugoslavia": 8936, + "buddy": 8937, + "methodist": 8938, + "##ith": 8939, + "burial": 8940, + "centres": 8941, + "batman": 8942, + "##nda": 8943, + "discontinued": 8944, + "bo": 8945, + "dock": 8946, + "stockholm": 8947, + "lungs": 8948, + "severely": 8949, + "##nk": 8950, + "citing": 8951, + "manga": 8952, + "##ugh": 8953, + "steal": 8954, + "mumbai": 8955, + "iraqi": 8956, + "robot": 8957, + "celebrity": 8958, + "bride": 8959, + "broadcasts": 8960, + "abolished": 8961, + "pot": 8962, + "joel": 8963, + "overhead": 8964, + "franz": 8965, + "packed": 8966, + "reconnaissance": 8967, + "johann": 8968, + "acknowledged": 8969, + "introduce": 8970, + "handled": 8971, + "doctorate": 8972, + "developments": 8973, + "drinks": 8974, + "alley": 8975, + "palestine": 8976, + "##nis": 8977, + "##aki": 8978, + "proceeded": 8979, + "recover": 8980, + "bradley": 8981, + "grain": 8982, + "patch": 8983, + "afford": 8984, + "infection": 8985, + "nationalist": 8986, + "legendary": 8987, + "##ath": 8988, + "interchange": 8989, + "virtually": 8990, + "gen": 8991, + "gravity": 8992, + "exploration": 8993, + "amber": 8994, + "vital": 8995, + "wishes": 8996, + "powell": 8997, + "doctrine": 8998, + "elbow": 8999, + "screenplay": 9000, + "##bird": 9001, + "contribute": 9002, + "indonesian": 9003, + "pet": 9004, + "creates": 9005, + "##com": 9006, + "enzyme": 9007, + "kylie": 9008, + "discipline": 9009, + "drops": 9010, + "manila": 9011, + "hunger": 9012, + "##ien": 9013, + "layers": 9014, + "suffer": 9015, + "fever": 9016, + "bits": 9017, + "monica": 9018, + "keyboard": 9019, + "manages": 9020, + "##hood": 9021, + "searched": 9022, + "appeals": 9023, + "##bad": 9024, + "testament": 9025, + "grande": 9026, + "reid": 9027, + "##war": 9028, + "beliefs": 9029, + "congo": 9030, + "##ification": 9031, + "##dia": 9032, + "si": 9033, + "requiring": 9034, + "##via": 9035, + "casey": 9036, + "1849": 9037, + "regret": 9038, + "streak": 9039, + "rape": 9040, + "depends": 9041, + "syrian": 9042, + "sprint": 9043, + "pound": 9044, + "tourists": 9045, + "upcoming": 9046, + "pub": 9047, + "##xi": 9048, + "tense": 9049, + "##els": 9050, + "practiced": 9051, + "echo": 9052, + "nationwide": 9053, + "guild": 9054, + "motorcycle": 9055, + "liz": 9056, + "##zar": 9057, + "chiefs": 9058, + "desired": 9059, + "elena": 9060, + "bye": 9061, + "precious": 9062, + "absorbed": 9063, + "relatives": 9064, + "booth": 9065, + "pianist": 9066, + "##mal": 9067, + "citizenship": 9068, + "exhausted": 9069, + "wilhelm": 9070, + "##ceae": 9071, + "##hed": 9072, + "noting": 9073, + "quarterback": 9074, + "urge": 9075, + "hectares": 9076, + "##gue": 9077, + "ace": 9078, + "holly": 9079, + "##tal": 9080, + "blonde": 9081, + "davies": 9082, + "parked": 9083, + "sustainable": 9084, + "stepping": 9085, + "twentieth": 9086, + "airfield": 9087, + "galaxy": 9088, + "nest": 9089, + "chip": 9090, + "##nell": 9091, + "tan": 9092, + "shaft": 9093, + "paulo": 9094, + "requirement": 9095, + "##zy": 9096, + "paradise": 9097, + "tobacco": 9098, + "trans": 9099, + "renewed": 9100, + "vietnamese": 9101, + "##cker": 9102, + "##ju": 9103, + "suggesting": 9104, + "catching": 9105, + "holmes": 9106, + "enjoying": 9107, + "md": 9108, + "trips": 9109, + "colt": 9110, + "holder": 9111, + "butterfly": 9112, + "nerve": 9113, + "reformed": 9114, + "cherry": 9115, + "bowling": 9116, + "trailer": 9117, + "carriage": 9118, + "goodbye": 9119, + "appreciate": 9120, + "toy": 9121, + "joshua": 9122, + "interactive": 9123, + "enabled": 9124, + "involve": 9125, + "##kan": 9126, + "collar": 9127, + "determination": 9128, + "bunch": 9129, + "facebook": 9130, + "recall": 9131, + "shorts": 9132, + "superintendent": 9133, + "episcopal": 9134, + "frustration": 9135, + "giovanni": 9136, + "nineteenth": 9137, + "laser": 9138, + "privately": 9139, + "array": 9140, + "circulation": 9141, + "##ovic": 9142, + "armstrong": 9143, + "deals": 9144, + "painful": 9145, + "permit": 9146, + "discrimination": 9147, + "##wi": 9148, + "aires": 9149, + "retiring": 9150, + "cottage": 9151, + "ni": 9152, + "##sta": 9153, + "horizon": 9154, + "ellen": 9155, + "jamaica": 9156, + "ripped": 9157, + "fernando": 9158, + "chapters": 9159, + "playstation": 9160, + "patron": 9161, + "lecturer": 9162, + "navigation": 9163, + "behaviour": 9164, + "genes": 9165, + "georgian": 9166, + "export": 9167, + "solomon": 9168, + "rivals": 9169, + "swift": 9170, + "seventeen": 9171, + "rodriguez": 9172, + "princeton": 9173, + "independently": 9174, + "sox": 9175, + "1847": 9176, + "arguing": 9177, + "entity": 9178, + "casting": 9179, + "hank": 9180, + "criteria": 9181, + "oakland": 9182, + "geographic": 9183, + "milwaukee": 9184, + "reflection": 9185, + "expanding": 9186, + "conquest": 9187, + "dubbed": 9188, + "##tv": 9189, + "halt": 9190, + "brave": 9191, + "brunswick": 9192, + "doi": 9193, + "arched": 9194, + "curtis": 9195, + "divorced": 9196, + "predominantly": 9197, + "somerset": 9198, + "streams": 9199, + "ugly": 9200, + "zoo": 9201, + "horrible": 9202, + "curved": 9203, + "buenos": 9204, + "fierce": 9205, + "dictionary": 9206, + "vector": 9207, + "theological": 9208, + "unions": 9209, + "handful": 9210, + "stability": 9211, + "chan": 9212, + "punjab": 9213, + "segments": 9214, + "##lly": 9215, + "altar": 9216, + "ignoring": 9217, + "gesture": 9218, + "monsters": 9219, + "pastor": 9220, + "##stone": 9221, + "thighs": 9222, + "unexpected": 9223, + "operators": 9224, + "abruptly": 9225, + "coin": 9226, + "compiled": 9227, + "associates": 9228, + "improving": 9229, + "migration": 9230, + "pin": 9231, + "##ose": 9232, + "compact": 9233, + "collegiate": 9234, + "reserved": 9235, + "##urs": 9236, + "quarterfinals": 9237, + "roster": 9238, + "restore": 9239, + "assembled": 9240, + "hurry": 9241, + "oval": 9242, + "##cies": 9243, + "1846": 9244, + "flags": 9245, + "martha": 9246, + "##del": 9247, + "victories": 9248, + "sharply": 9249, + "##rated": 9250, + "argues": 9251, + "deadly": 9252, + "neo": 9253, + "drawings": 9254, + "symbols": 9255, + "performer": 9256, + "##iel": 9257, + "griffin": 9258, + "restrictions": 9259, + "editing": 9260, + "andrews": 9261, + "java": 9262, + "journals": 9263, + "arabia": 9264, + "compositions": 9265, + "dee": 9266, + "pierce": 9267, + "removing": 9268, + "hindi": 9269, + "casino": 9270, + "runway": 9271, + "civilians": 9272, + "minds": 9273, + "nasa": 9274, + "hotels": 9275, + "##zation": 9276, + "refuge": 9277, + "rent": 9278, + "retain": 9279, + "potentially": 9280, + "conferences": 9281, + "suburban": 9282, + "conducting": 9283, + "##tto": 9284, + "##tions": 9285, + "##tle": 9286, + "descended": 9287, + "massacre": 9288, + "##cal": 9289, + "ammunition": 9290, + "terrain": 9291, + "fork": 9292, + "souls": 9293, + "counts": 9294, + "chelsea": 9295, + "durham": 9296, + "drives": 9297, + "cab": 9298, + "##bank": 9299, + "perth": 9300, + "realizing": 9301, + "palestinian": 9302, + "finn": 9303, + "simpson": 9304, + "##dal": 9305, + "betty": 9306, + "##ule": 9307, + "moreover": 9308, + "particles": 9309, + "cardinals": 9310, + "tent": 9311, + "evaluation": 9312, + "extraordinary": 9313, + "##oid": 9314, + "inscription": 9315, + "##works": 9316, + "wednesday": 9317, + "chloe": 9318, + "maintains": 9319, + "panels": 9320, + "ashley": 9321, + "trucks": 9322, + "##nation": 9323, + "cluster": 9324, + "sunlight": 9325, + "strikes": 9326, + "zhang": 9327, + "##wing": 9328, + "dialect": 9329, + "canon": 9330, + "##ap": 9331, + "tucked": 9332, + "##ws": 9333, + "collecting": 9334, + "##mas": 9335, + "##can": 9336, + "##sville": 9337, + "maker": 9338, + "quoted": 9339, + "evan": 9340, + "franco": 9341, + "aria": 9342, + "buying": 9343, + "cleaning": 9344, + "eva": 9345, + "closet": 9346, + "provision": 9347, + "apollo": 9348, + "clinic": 9349, + "rat": 9350, + "##ez": 9351, + "necessarily": 9352, + "ac": 9353, + "##gle": 9354, + "##ising": 9355, + "venues": 9356, + "flipped": 9357, + "cent": 9358, + "spreading": 9359, + "trustees": 9360, + "checking": 9361, + "authorized": 9362, + "##sco": 9363, + "disappointed": 9364, + "##ado": 9365, + "notion": 9366, + "duration": 9367, + "trumpet": 9368, + "hesitated": 9369, + "topped": 9370, + "brussels": 9371, + "rolls": 9372, + "theoretical": 9373, + "hint": 9374, + "define": 9375, + "aggressive": 9376, + "repeat": 9377, + "wash": 9378, + "peaceful": 9379, + "optical": 9380, + "width": 9381, + "allegedly": 9382, + "mcdonald": 9383, + "strict": 9384, + "copyright": 9385, + "##illa": 9386, + "investors": 9387, + "mar": 9388, + "jam": 9389, + "witnesses": 9390, + "sounding": 9391, + "miranda": 9392, + "michelle": 9393, + "privacy": 9394, + "hugo": 9395, + "harmony": 9396, + "##pp": 9397, + "valid": 9398, + "lynn": 9399, + "glared": 9400, + "nina": 9401, + "102": 9402, + "headquartered": 9403, + "diving": 9404, + "boarding": 9405, + "gibson": 9406, + "##ncy": 9407, + "albanian": 9408, + "marsh": 9409, + "routine": 9410, + "dealt": 9411, + "enhanced": 9412, + "er": 9413, + "intelligent": 9414, + "substance": 9415, + "targeted": 9416, + "enlisted": 9417, + "discovers": 9418, + "spinning": 9419, + "observations": 9420, + "pissed": 9421, + "smoking": 9422, + "rebecca": 9423, + "capitol": 9424, + "visa": 9425, + "varied": 9426, + "costume": 9427, + "seemingly": 9428, + "indies": 9429, + "compensation": 9430, + "surgeon": 9431, + "thursday": 9432, + "arsenal": 9433, + "westminster": 9434, + "suburbs": 9435, + "rid": 9436, + "anglican": 9437, + "##ridge": 9438, + "knots": 9439, + "foods": 9440, + "alumni": 9441, + "lighter": 9442, + "fraser": 9443, + "whoever": 9444, + "portal": 9445, + "scandal": 9446, + "##ray": 9447, + "gavin": 9448, + "advised": 9449, + "instructor": 9450, + "flooding": 9451, + "terrorist": 9452, + "##ale": 9453, + "teenage": 9454, + "interim": 9455, + "senses": 9456, + "duck": 9457, + "teen": 9458, + "thesis": 9459, + "abby": 9460, + "eager": 9461, + "overcome": 9462, + "##ile": 9463, + "newport": 9464, + "glenn": 9465, + "rises": 9466, + "shame": 9467, + "##cc": 9468, + "prompted": 9469, + "priority": 9470, + "forgot": 9471, + "bomber": 9472, + "nicolas": 9473, + "protective": 9474, + "360": 9475, + "cartoon": 9476, + "katherine": 9477, + "breeze": 9478, + "lonely": 9479, + "trusted": 9480, + "henderson": 9481, + "richardson": 9482, + "relax": 9483, + "banner": 9484, + "candy": 9485, + "palms": 9486, + "remarkable": 9487, + "##rio": 9488, + "legends": 9489, + "cricketer": 9490, + "essay": 9491, + "ordained": 9492, + "edmund": 9493, + "rifles": 9494, + "trigger": 9495, + "##uri": 9496, + "##away": 9497, + "sail": 9498, + "alert": 9499, + "1830": 9500, + "audiences": 9501, + "penn": 9502, + "sussex": 9503, + "siblings": 9504, + "pursued": 9505, + "indianapolis": 9506, + "resist": 9507, + "rosa": 9508, + "consequence": 9509, + "succeed": 9510, + "avoided": 9511, + "1845": 9512, + "##ulation": 9513, + "inland": 9514, + "##tie": 9515, + "##nna": 9516, + "counsel": 9517, + "profession": 9518, + "chronicle": 9519, + "hurried": 9520, + "##una": 9521, + "eyebrow": 9522, + "eventual": 9523, + "bleeding": 9524, + "innovative": 9525, + "cure": 9526, + "##dom": 9527, + "committees": 9528, + "accounting": 9529, + "con": 9530, + "scope": 9531, + "hardy": 9532, + "heather": 9533, + "tenor": 9534, + "gut": 9535, + "herald": 9536, + "codes": 9537, + "tore": 9538, + "scales": 9539, + "wagon": 9540, + "##oo": 9541, + "luxury": 9542, + "tin": 9543, + "prefer": 9544, + "fountain": 9545, + "triangle": 9546, + "bonds": 9547, + "darling": 9548, + "convoy": 9549, + "dried": 9550, + "traced": 9551, + "beings": 9552, + "troy": 9553, + "accidentally": 9554, + "slam": 9555, + "findings": 9556, + "smelled": 9557, + "joey": 9558, + "lawyers": 9559, + "outcome": 9560, + "steep": 9561, + "bosnia": 9562, + "configuration": 9563, + "shifting": 9564, + "toll": 9565, + "brook": 9566, + "performers": 9567, + "lobby": 9568, + "philosophical": 9569, + "construct": 9570, + "shrine": 9571, + "aggregate": 9572, + "boot": 9573, + "cox": 9574, + "phenomenon": 9575, + "savage": 9576, + "insane": 9577, + "solely": 9578, + "reynolds": 9579, + "lifestyle": 9580, + "##ima": 9581, + "nationally": 9582, + "holdings": 9583, + "consideration": 9584, + "enable": 9585, + "edgar": 9586, + "mo": 9587, + "mama": 9588, + "##tein": 9589, + "fights": 9590, + "relegation": 9591, + "chances": 9592, + "atomic": 9593, + "hub": 9594, + "conjunction": 9595, + "awkward": 9596, + "reactions": 9597, + "currency": 9598, + "finale": 9599, + "kumar": 9600, + "underwent": 9601, + "steering": 9602, + "elaborate": 9603, + "gifts": 9604, + "comprising": 9605, + "melissa": 9606, + "veins": 9607, + "reasonable": 9608, + "sunshine": 9609, + "chi": 9610, + "solve": 9611, + "trails": 9612, + "inhabited": 9613, + "elimination": 9614, + "ethics": 9615, + "huh": 9616, + "ana": 9617, + "molly": 9618, + "consent": 9619, + "apartments": 9620, + "layout": 9621, + "marines": 9622, + "##ces": 9623, + "hunters": 9624, + "bulk": 9625, + "##oma": 9626, + "hometown": 9627, + "##wall": 9628, + "##mont": 9629, + "cracked": 9630, + "reads": 9631, + "neighbouring": 9632, + "withdrawn": 9633, + "admission": 9634, + "wingspan": 9635, + "damned": 9636, + "anthology": 9637, + "lancashire": 9638, + "brands": 9639, + "batting": 9640, + "forgive": 9641, + "cuban": 9642, + "awful": 9643, + "##lyn": 9644, + "104": 9645, + "dimensions": 9646, + "imagination": 9647, + "##ade": 9648, + "dante": 9649, + "##ship": 9650, + "tracking": 9651, + "desperately": 9652, + "goalkeeper": 9653, + "##yne": 9654, + "groaned": 9655, + "workshops": 9656, + "confident": 9657, + "burton": 9658, + "gerald": 9659, + "milton": 9660, + "circus": 9661, + "uncertain": 9662, + "slope": 9663, + "copenhagen": 9664, + "sophia": 9665, + "fog": 9666, + "philosopher": 9667, + "portraits": 9668, + "accent": 9669, + "cycling": 9670, + "varying": 9671, + "gripped": 9672, + "larvae": 9673, + "garrett": 9674, + "specified": 9675, + "scotia": 9676, + "mature": 9677, + "luther": 9678, + "kurt": 9679, + "rap": 9680, + "##kes": 9681, + "aerial": 9682, + "750": 9683, + "ferdinand": 9684, + "heated": 9685, + "es": 9686, + "transported": 9687, + "##shan": 9688, + "safely": 9689, + "nonetheless": 9690, + "##orn": 9691, + "##gal": 9692, + "motors": 9693, + "demanding": 9694, + "##sburg": 9695, + "startled": 9696, + "##brook": 9697, + "ally": 9698, + "generate": 9699, + "caps": 9700, + "ghana": 9701, + "stained": 9702, + "demo": 9703, + "mentions": 9704, + "beds": 9705, + "ap": 9706, + "afterward": 9707, + "diary": 9708, + "##bling": 9709, + "utility": 9710, + "##iro": 9711, + "richards": 9712, + "1837": 9713, + "conspiracy": 9714, + "conscious": 9715, + "shining": 9716, + "footsteps": 9717, + "observer": 9718, + "cyprus": 9719, + "urged": 9720, + "loyalty": 9721, + "developer": 9722, + "probability": 9723, + "olive": 9724, + "upgraded": 9725, + "gym": 9726, + "miracle": 9727, + "insects": 9728, + "graves": 9729, + "1844": 9730, + "ourselves": 9731, + "hydrogen": 9732, + "amazon": 9733, + "katie": 9734, + "tickets": 9735, + "poets": 9736, + "##pm": 9737, + "planes": 9738, + "##pan": 9739, + "prevention": 9740, + "witnessed": 9741, + "dense": 9742, + "jin": 9743, + "randy": 9744, + "tang": 9745, + "warehouse": 9746, + "monroe": 9747, + "bang": 9748, + "archived": 9749, + "elderly": 9750, + "investigations": 9751, + "alec": 9752, + "granite": 9753, + "mineral": 9754, + "conflicts": 9755, + "controlling": 9756, + "aboriginal": 9757, + "carlo": 9758, + "##zu": 9759, + "mechanics": 9760, + "stan": 9761, + "stark": 9762, + "rhode": 9763, + "skirt": 9764, + "est": 9765, + "##berry": 9766, + "bombs": 9767, + "respected": 9768, + "##horn": 9769, + "imposed": 9770, + "limestone": 9771, + "deny": 9772, + "nominee": 9773, + "memphis": 9774, + "grabbing": 9775, + "disabled": 9776, + "##als": 9777, + "amusement": 9778, + "aa": 9779, + "frankfurt": 9780, + "corn": 9781, + "referendum": 9782, + "varies": 9783, + "slowed": 9784, + "disk": 9785, + "firms": 9786, + "unconscious": 9787, + "incredible": 9788, + "clue": 9789, + "sue": 9790, + "##zhou": 9791, + "twist": 9792, + "##cio": 9793, + "joins": 9794, + "idaho": 9795, + "chad": 9796, + "developers": 9797, + "computing": 9798, + "destroyer": 9799, + "103": 9800, + "mortal": 9801, + "tucker": 9802, + "kingston": 9803, + "choices": 9804, + "yu": 9805, + "carson": 9806, + "1800": 9807, + "os": 9808, + "whitney": 9809, + "geneva": 9810, + "pretend": 9811, + "dimension": 9812, + "staged": 9813, + "plateau": 9814, + "maya": 9815, + "##une": 9816, + "freestyle": 9817, + "##bc": 9818, + "rovers": 9819, + "hiv": 9820, + "##ids": 9821, + "tristan": 9822, + "classroom": 9823, + "prospect": 9824, + "##hus": 9825, + "honestly": 9826, + "diploma": 9827, + "lied": 9828, + "thermal": 9829, + "auxiliary": 9830, + "feast": 9831, + "unlikely": 9832, + "iata": 9833, + "##tel": 9834, + "morocco": 9835, + "pounding": 9836, + "treasury": 9837, + "lithuania": 9838, + "considerably": 9839, + "1841": 9840, + "dish": 9841, + "1812": 9842, + "geological": 9843, + "matching": 9844, + "stumbled": 9845, + "destroying": 9846, + "marched": 9847, + "brien": 9848, + "advances": 9849, + "cake": 9850, + "nicole": 9851, + "belle": 9852, + "settling": 9853, + "measuring": 9854, + "directing": 9855, + "##mie": 9856, + "tuesday": 9857, + "bassist": 9858, + "capabilities": 9859, + "stunned": 9860, + "fraud": 9861, + "torpedo": 9862, + "##list": 9863, + "##phone": 9864, + "anton": 9865, + "wisdom": 9866, + "surveillance": 9867, + "ruined": 9868, + "##ulate": 9869, + "lawsuit": 9870, + "healthcare": 9871, + "theorem": 9872, + "halls": 9873, + "trend": 9874, + "aka": 9875, + "horizontal": 9876, + "dozens": 9877, + "acquire": 9878, + "lasting": 9879, + "swim": 9880, + "hawk": 9881, + "gorgeous": 9882, + "fees": 9883, + "vicinity": 9884, + "decrease": 9885, + "adoption": 9886, + "tactics": 9887, + "##ography": 9888, + "pakistani": 9889, + "##ole": 9890, + "draws": 9891, + "##hall": 9892, + "willie": 9893, + "burke": 9894, + "heath": 9895, + "algorithm": 9896, + "integral": 9897, + "powder": 9898, + "elliott": 9899, + "brigadier": 9900, + "jackie": 9901, + "tate": 9902, + "varieties": 9903, + "darker": 9904, + "##cho": 9905, + "lately": 9906, + "cigarette": 9907, + "specimens": 9908, + "adds": 9909, + "##ree": 9910, + "##ensis": 9911, + "##inger": 9912, + "exploded": 9913, + "finalist": 9914, + "cia": 9915, + "murders": 9916, + "wilderness": 9917, + "arguments": 9918, + "nicknamed": 9919, + "acceptance": 9920, + "onwards": 9921, + "manufacture": 9922, + "robertson": 9923, + "jets": 9924, + "tampa": 9925, + "enterprises": 9926, + "blog": 9927, + "loudly": 9928, + "composers": 9929, + "nominations": 9930, + "1838": 9931, + "ai": 9932, + "malta": 9933, + "inquiry": 9934, + "automobile": 9935, + "hosting": 9936, + "viii": 9937, + "rays": 9938, + "tilted": 9939, + "grief": 9940, + "museums": 9941, + "strategies": 9942, + "furious": 9943, + "euro": 9944, + "equality": 9945, + "cohen": 9946, + "poison": 9947, + "surrey": 9948, + "wireless": 9949, + "governed": 9950, + "ridiculous": 9951, + "moses": 9952, + "##esh": 9953, + "##room": 9954, + "vanished": 9955, + "##ito": 9956, + "barnes": 9957, + "attract": 9958, + "morrison": 9959, + "istanbul": 9960, + "##iness": 9961, + "absent": 9962, + "rotation": 9963, + "petition": 9964, + "janet": 9965, + "##logical": 9966, + "satisfaction": 9967, + "custody": 9968, + "deliberately": 9969, + "observatory": 9970, + "comedian": 9971, + "surfaces": 9972, + "pinyin": 9973, + "novelist": 9974, + "strictly": 9975, + "canterbury": 9976, + "oslo": 9977, + "monks": 9978, + "embrace": 9979, + "ibm": 9980, + "jealous": 9981, + "photograph": 9982, + "continent": 9983, + "dorothy": 9984, + "marina": 9985, + "doc": 9986, + "excess": 9987, + "holden": 9988, + "allegations": 9989, + "explaining": 9990, + "stack": 9991, + "avoiding": 9992, + "lance": 9993, + "storyline": 9994, + "majesty": 9995, + "poorly": 9996, + "spike": 9997, + "dos": 9998, + "bradford": 9999, + "raven": 10000, + "travis": 10001, + "classics": 10002, + "proven": 10003, + "voltage": 10004, + "pillow": 10005, + "fists": 10006, + "butt": 10007, + "1842": 10008, + "interpreted": 10009, + "##car": 10010, + "1839": 10011, + "gage": 10012, + "telegraph": 10013, + "lens": 10014, + "promising": 10015, + "expelled": 10016, + "casual": 10017, + "collector": 10018, + "zones": 10019, + "##min": 10020, + "silly": 10021, + "nintendo": 10022, + "##kh": 10023, + "##bra": 10024, + "downstairs": 10025, + "chef": 10026, + "suspicious": 10027, + "afl": 10028, + "flies": 10029, + "vacant": 10030, + "uganda": 10031, + "pregnancy": 10032, + "condemned": 10033, + "lutheran": 10034, + "estimates": 10035, + "cheap": 10036, + "decree": 10037, + "saxon": 10038, + "proximity": 10039, + "stripped": 10040, + "idiot": 10041, + "deposits": 10042, + "contrary": 10043, + "presenter": 10044, + "magnus": 10045, + "glacier": 10046, + "im": 10047, + "offense": 10048, + "edwin": 10049, + "##ori": 10050, + "upright": 10051, + "##long": 10052, + "bolt": 10053, + "##ois": 10054, + "toss": 10055, + "geographical": 10056, + "##izes": 10057, + "environments": 10058, + "delicate": 10059, + "marking": 10060, + "abstract": 10061, + "xavier": 10062, + "nails": 10063, + "windsor": 10064, + "plantation": 10065, + "occurring": 10066, + "equity": 10067, + "saskatchewan": 10068, + "fears": 10069, + "drifted": 10070, + "sequences": 10071, + "vegetation": 10072, + "revolt": 10073, + "##stic": 10074, + "1843": 10075, + "sooner": 10076, + "fusion": 10077, + "opposing": 10078, + "nato": 10079, + "skating": 10080, + "1836": 10081, + "secretly": 10082, + "ruin": 10083, + "lease": 10084, + "##oc": 10085, + "edit": 10086, + "##nne": 10087, + "flora": 10088, + "anxiety": 10089, + "ruby": 10090, + "##ological": 10091, + "##mia": 10092, + "tel": 10093, + "bout": 10094, + "taxi": 10095, + "emmy": 10096, + "frost": 10097, + "rainbow": 10098, + "compounds": 10099, + "foundations": 10100, + "rainfall": 10101, + "assassination": 10102, + "nightmare": 10103, + "dominican": 10104, + "##win": 10105, + "achievements": 10106, + "deserve": 10107, + "orlando": 10108, + "intact": 10109, + "armenia": 10110, + "##nte": 10111, + "calgary": 10112, + "valentine": 10113, + "106": 10114, + "marion": 10115, + "proclaimed": 10116, + "theodore": 10117, + "bells": 10118, + "courtyard": 10119, + "thigh": 10120, + "gonzalez": 10121, + "console": 10122, + "troop": 10123, + "minimal": 10124, + "monte": 10125, + "everyday": 10126, + "##ence": 10127, + "##if": 10128, + "supporter": 10129, + "terrorism": 10130, + "buck": 10131, + "openly": 10132, + "presbyterian": 10133, + "activists": 10134, + "carpet": 10135, + "##iers": 10136, + "rubbing": 10137, + "uprising": 10138, + "##yi": 10139, + "cute": 10140, + "conceived": 10141, + "legally": 10142, + "##cht": 10143, + "millennium": 10144, + "cello": 10145, + "velocity": 10146, + "ji": 10147, + "rescued": 10148, + "cardiff": 10149, + "1835": 10150, + "rex": 10151, + "concentrate": 10152, + "senators": 10153, + "beard": 10154, + "rendered": 10155, + "glowing": 10156, + "battalions": 10157, + "scouts": 10158, + "competitors": 10159, + "sculptor": 10160, + "catalogue": 10161, + "arctic": 10162, + "ion": 10163, + "raja": 10164, + "bicycle": 10165, + "wow": 10166, + "glancing": 10167, + "lawn": 10168, + "##woman": 10169, + "gentleman": 10170, + "lighthouse": 10171, + "publish": 10172, + "predicted": 10173, + "calculated": 10174, + "##val": 10175, + "variants": 10176, + "##gne": 10177, + "strain": 10178, + "##ui": 10179, + "winston": 10180, + "deceased": 10181, + "##nus": 10182, + "touchdowns": 10183, + "brady": 10184, + "caleb": 10185, + "sinking": 10186, + "echoed": 10187, + "crush": 10188, + "hon": 10189, + "blessed": 10190, + "protagonist": 10191, + "hayes": 10192, + "endangered": 10193, + "magnitude": 10194, + "editors": 10195, + "##tine": 10196, + "estimate": 10197, + "responsibilities": 10198, + "##mel": 10199, + "backup": 10200, + "laying": 10201, + "consumed": 10202, + "sealed": 10203, + "zurich": 10204, + "lovers": 10205, + "frustrated": 10206, + "##eau": 10207, + "ahmed": 10208, + "kicking": 10209, + "mit": 10210, + "treasurer": 10211, + "1832": 10212, + "biblical": 10213, + "refuse": 10214, + "terrified": 10215, + "pump": 10216, + "agrees": 10217, + "genuine": 10218, + "imprisonment": 10219, + "refuses": 10220, + "plymouth": 10221, + "##hen": 10222, + "lou": 10223, + "##nen": 10224, + "tara": 10225, + "trembling": 10226, + "antarctic": 10227, + "ton": 10228, + "learns": 10229, + "##tas": 10230, + "crap": 10231, + "crucial": 10232, + "faction": 10233, + "atop": 10234, + "##borough": 10235, + "wrap": 10236, + "lancaster": 10237, + "odds": 10238, + "hopkins": 10239, + "erik": 10240, + "lyon": 10241, + "##eon": 10242, + "bros": 10243, + "##ode": 10244, + "snap": 10245, + "locality": 10246, + "tips": 10247, + "empress": 10248, + "crowned": 10249, + "cal": 10250, + "acclaimed": 10251, + "chuckled": 10252, + "##ory": 10253, + "clara": 10254, + "sends": 10255, + "mild": 10256, + "towel": 10257, + "##fl": 10258, + "##day": 10259, + "##а": 10260, + "wishing": 10261, + "assuming": 10262, + "interviewed": 10263, + "##bal": 10264, + "##die": 10265, + "interactions": 10266, + "eden": 10267, + "cups": 10268, + "helena": 10269, + "##lf": 10270, + "indie": 10271, + "beck": 10272, + "##fire": 10273, + "batteries": 10274, + "filipino": 10275, + "wizard": 10276, + "parted": 10277, + "##lam": 10278, + "traces": 10279, + "##born": 10280, + "rows": 10281, + "idol": 10282, + "albany": 10283, + "delegates": 10284, + "##ees": 10285, + "##sar": 10286, + "discussions": 10287, + "##ex": 10288, + "notre": 10289, + "instructed": 10290, + "belgrade": 10291, + "highways": 10292, + "suggestion": 10293, + "lauren": 10294, + "possess": 10295, + "orientation": 10296, + "alexandria": 10297, + "abdul": 10298, + "beats": 10299, + "salary": 10300, + "reunion": 10301, + "ludwig": 10302, + "alright": 10303, + "wagner": 10304, + "intimate": 10305, + "pockets": 10306, + "slovenia": 10307, + "hugged": 10308, + "brighton": 10309, + "merchants": 10310, + "cruel": 10311, + "stole": 10312, + "trek": 10313, + "slopes": 10314, + "repairs": 10315, + "enrollment": 10316, + "politically": 10317, + "underlying": 10318, + "promotional": 10319, + "counting": 10320, + "boeing": 10321, + "##bb": 10322, + "isabella": 10323, + "naming": 10324, + "##и": 10325, + "keen": 10326, + "bacteria": 10327, + "listing": 10328, + "separately": 10329, + "belfast": 10330, + "ussr": 10331, + "450": 10332, + "lithuanian": 10333, + "anybody": 10334, + "ribs": 10335, + "sphere": 10336, + "martinez": 10337, + "cock": 10338, + "embarrassed": 10339, + "proposals": 10340, + "fragments": 10341, + "nationals": 10342, + "##fs": 10343, + "##wski": 10344, + "premises": 10345, + "fin": 10346, + "1500": 10347, + "alpine": 10348, + "matched": 10349, + "freely": 10350, + "bounded": 10351, + "jace": 10352, + "sleeve": 10353, + "##af": 10354, + "gaming": 10355, + "pier": 10356, + "populated": 10357, + "evident": 10358, + "##like": 10359, + "frances": 10360, + "flooded": 10361, + "##dle": 10362, + "frightened": 10363, + "pour": 10364, + "trainer": 10365, + "framed": 10366, + "visitor": 10367, + "challenging": 10368, + "pig": 10369, + "wickets": 10370, + "##fold": 10371, + "infected": 10372, + "email": 10373, + "##pes": 10374, + "arose": 10375, + "##aw": 10376, + "reward": 10377, + "ecuador": 10378, + "oblast": 10379, + "vale": 10380, + "ch": 10381, + "shuttle": 10382, + "##usa": 10383, + "bach": 10384, + "rankings": 10385, + "forbidden": 10386, + "cornwall": 10387, + "accordance": 10388, + "salem": 10389, + "consumers": 10390, + "bruno": 10391, + "fantastic": 10392, + "toes": 10393, + "machinery": 10394, + "resolved": 10395, + "julius": 10396, + "remembering": 10397, + "propaganda": 10398, + "iceland": 10399, + "bombardment": 10400, + "tide": 10401, + "contacts": 10402, + "wives": 10403, + "##rah": 10404, + "concerto": 10405, + "macdonald": 10406, + "albania": 10407, + "implement": 10408, + "daisy": 10409, + "tapped": 10410, + "sudan": 10411, + "helmet": 10412, + "angela": 10413, + "mistress": 10414, + "##lic": 10415, + "crop": 10416, + "sunk": 10417, + "finest": 10418, + "##craft": 10419, + "hostile": 10420, + "##ute": 10421, + "##tsu": 10422, + "boxer": 10423, + "fr": 10424, + "paths": 10425, + "adjusted": 10426, + "habit": 10427, + "ballot": 10428, + "supervision": 10429, + "soprano": 10430, + "##zen": 10431, + "bullets": 10432, + "wicked": 10433, + "sunset": 10434, + "regiments": 10435, + "disappear": 10436, + "lamp": 10437, + "performs": 10438, + "app": 10439, + "##gia": 10440, + "##oa": 10441, + "rabbit": 10442, + "digging": 10443, + "incidents": 10444, + "entries": 10445, + "##cion": 10446, + "dishes": 10447, + "##oi": 10448, + "introducing": 10449, + "##ati": 10450, + "##fied": 10451, + "freshman": 10452, + "slot": 10453, + "jill": 10454, + "tackles": 10455, + "baroque": 10456, + "backs": 10457, + "##iest": 10458, + "lone": 10459, + "sponsor": 10460, + "destiny": 10461, + "altogether": 10462, + "convert": 10463, + "##aro": 10464, + "consensus": 10465, + "shapes": 10466, + "demonstration": 10467, + "basically": 10468, + "feminist": 10469, + "auction": 10470, + "artifacts": 10471, + "##bing": 10472, + "strongest": 10473, + "twitter": 10474, + "halifax": 10475, + "2019": 10476, + "allmusic": 10477, + "mighty": 10478, + "smallest": 10479, + "precise": 10480, + "alexandra": 10481, + "viola": 10482, + "##los": 10483, + "##ille": 10484, + "manuscripts": 10485, + "##illo": 10486, + "dancers": 10487, + "ari": 10488, + "managers": 10489, + "monuments": 10490, + "blades": 10491, + "barracks": 10492, + "springfield": 10493, + "maiden": 10494, + "consolidated": 10495, + "electron": 10496, + "##end": 10497, + "berry": 10498, + "airing": 10499, + "wheat": 10500, + "nobel": 10501, + "inclusion": 10502, + "blair": 10503, + "payments": 10504, + "geography": 10505, + "bee": 10506, + "cc": 10507, + "eleanor": 10508, + "react": 10509, + "##hurst": 10510, + "afc": 10511, + "manitoba": 10512, + "##yu": 10513, + "su": 10514, + "lineup": 10515, + "fitness": 10516, + "recreational": 10517, + "investments": 10518, + "airborne": 10519, + "disappointment": 10520, + "##dis": 10521, + "edmonton": 10522, + "viewing": 10523, + "##row": 10524, + "renovation": 10525, + "##cast": 10526, + "infant": 10527, + "bankruptcy": 10528, + "roses": 10529, + "aftermath": 10530, + "pavilion": 10531, + "##yer": 10532, + "carpenter": 10533, + "withdrawal": 10534, + "ladder": 10535, + "##hy": 10536, + "discussing": 10537, + "popped": 10538, + "reliable": 10539, + "agreements": 10540, + "rochester": 10541, + "##abad": 10542, + "curves": 10543, + "bombers": 10544, + "220": 10545, + "rao": 10546, + "reverend": 10547, + "decreased": 10548, + "choosing": 10549, + "107": 10550, + "stiff": 10551, + "consulting": 10552, + "naples": 10553, + "crawford": 10554, + "tracy": 10555, + "ka": 10556, + "ribbon": 10557, + "cops": 10558, + "##lee": 10559, + "crushed": 10560, + "deciding": 10561, + "unified": 10562, + "teenager": 10563, + "accepting": 10564, + "flagship": 10565, + "explorer": 10566, + "poles": 10567, + "sanchez": 10568, + "inspection": 10569, + "revived": 10570, + "skilled": 10571, + "induced": 10572, + "exchanged": 10573, + "flee": 10574, + "locals": 10575, + "tragedy": 10576, + "swallow": 10577, + "loading": 10578, + "hanna": 10579, + "demonstrate": 10580, + "##ela": 10581, + "salvador": 10582, + "flown": 10583, + "contestants": 10584, + "civilization": 10585, + "##ines": 10586, + "wanna": 10587, + "rhodes": 10588, + "fletcher": 10589, + "hector": 10590, + "knocking": 10591, + "considers": 10592, + "##ough": 10593, + "nash": 10594, + "mechanisms": 10595, + "sensed": 10596, + "mentally": 10597, + "walt": 10598, + "unclear": 10599, + "##eus": 10600, + "renovated": 10601, + "madame": 10602, + "##cks": 10603, + "crews": 10604, + "governmental": 10605, + "##hin": 10606, + "undertaken": 10607, + "monkey": 10608, + "##ben": 10609, + "##ato": 10610, + "fatal": 10611, + "armored": 10612, + "copa": 10613, + "caves": 10614, + "governance": 10615, + "grasp": 10616, + "perception": 10617, + "certification": 10618, + "froze": 10619, + "damp": 10620, + "tugged": 10621, + "wyoming": 10622, + "##rg": 10623, + "##ero": 10624, + "newman": 10625, + "##lor": 10626, + "nerves": 10627, + "curiosity": 10628, + "graph": 10629, + "115": 10630, + "##ami": 10631, + "withdraw": 10632, + "tunnels": 10633, + "dull": 10634, + "meredith": 10635, + "moss": 10636, + "exhibits": 10637, + "neighbors": 10638, + "communicate": 10639, + "accuracy": 10640, + "explored": 10641, + "raiders": 10642, + "republicans": 10643, + "secular": 10644, + "kat": 10645, + "superman": 10646, + "penny": 10647, + "criticised": 10648, + "##tch": 10649, + "freed": 10650, + "update": 10651, + "conviction": 10652, + "wade": 10653, + "ham": 10654, + "likewise": 10655, + "delegation": 10656, + "gotta": 10657, + "doll": 10658, + "promises": 10659, + "technological": 10660, + "myth": 10661, + "nationality": 10662, + "resolve": 10663, + "convent": 10664, + "##mark": 10665, + "sharon": 10666, + "dig": 10667, + "sip": 10668, + "coordinator": 10669, + "entrepreneur": 10670, + "fold": 10671, + "##dine": 10672, + "capability": 10673, + "councillor": 10674, + "synonym": 10675, + "blown": 10676, + "swan": 10677, + "cursed": 10678, + "1815": 10679, + "jonas": 10680, + "haired": 10681, + "sofa": 10682, + "canvas": 10683, + "keeper": 10684, + "rivalry": 10685, + "##hart": 10686, + "rapper": 10687, + "speedway": 10688, + "swords": 10689, + "postal": 10690, + "maxwell": 10691, + "estonia": 10692, + "potter": 10693, + "recurring": 10694, + "##nn": 10695, + "##ave": 10696, + "errors": 10697, + "##oni": 10698, + "cognitive": 10699, + "1834": 10700, + "##²": 10701, + "claws": 10702, + "nadu": 10703, + "roberto": 10704, + "bce": 10705, + "wrestler": 10706, + "ellie": 10707, + "##ations": 10708, + "infinite": 10709, + "ink": 10710, + "##tia": 10711, + "presumably": 10712, + "finite": 10713, + "staircase": 10714, + "108": 10715, + "noel": 10716, + "patricia": 10717, + "nacional": 10718, + "##cation": 10719, + "chill": 10720, + "eternal": 10721, + "tu": 10722, + "preventing": 10723, + "prussia": 10724, + "fossil": 10725, + "limbs": 10726, + "##logist": 10727, + "ernst": 10728, + "frog": 10729, + "perez": 10730, + "rene": 10731, + "##ace": 10732, + "pizza": 10733, + "prussian": 10734, + "##ios": 10735, + "##vy": 10736, + "molecules": 10737, + "regulatory": 10738, + "answering": 10739, + "opinions": 10740, + "sworn": 10741, + "lengths": 10742, + "supposedly": 10743, + "hypothesis": 10744, + "upward": 10745, + "habitats": 10746, + "seating": 10747, + "ancestors": 10748, + "drank": 10749, + "yield": 10750, + "hd": 10751, + "synthesis": 10752, + "researcher": 10753, + "modest": 10754, + "##var": 10755, + "mothers": 10756, + "peered": 10757, + "voluntary": 10758, + "homeland": 10759, + "##the": 10760, + "acclaim": 10761, + "##igan": 10762, + "static": 10763, + "valve": 10764, + "luxembourg": 10765, + "alto": 10766, + "carroll": 10767, + "fe": 10768, + "receptor": 10769, + "norton": 10770, + "ambulance": 10771, + "##tian": 10772, + "johnston": 10773, + "catholics": 10774, + "depicting": 10775, + "jointly": 10776, + "elephant": 10777, + "gloria": 10778, + "mentor": 10779, + "badge": 10780, + "ahmad": 10781, + "distinguish": 10782, + "remarked": 10783, + "councils": 10784, + "precisely": 10785, + "allison": 10786, + "advancing": 10787, + "detection": 10788, + "crowded": 10789, + "##10": 10790, + "cooperative": 10791, + "ankle": 10792, + "mercedes": 10793, + "dagger": 10794, + "surrendered": 10795, + "pollution": 10796, + "commit": 10797, + "subway": 10798, + "jeffrey": 10799, + "lesson": 10800, + "sculptures": 10801, + "provider": 10802, + "##fication": 10803, + "membrane": 10804, + "timothy": 10805, + "rectangular": 10806, + "fiscal": 10807, + "heating": 10808, + "teammate": 10809, + "basket": 10810, + "particle": 10811, + "anonymous": 10812, + "deployment": 10813, + "##ple": 10814, + "missiles": 10815, + "courthouse": 10816, + "proportion": 10817, + "shoe": 10818, + "sec": 10819, + "##ller": 10820, + "complaints": 10821, + "forbes": 10822, + "blacks": 10823, + "abandon": 10824, + "remind": 10825, + "sizes": 10826, + "overwhelming": 10827, + "autobiography": 10828, + "natalie": 10829, + "##awa": 10830, + "risks": 10831, + "contestant": 10832, + "countryside": 10833, + "babies": 10834, + "scorer": 10835, + "invaded": 10836, + "enclosed": 10837, + "proceed": 10838, + "hurling": 10839, + "disorders": 10840, + "##cu": 10841, + "reflecting": 10842, + "continuously": 10843, + "cruiser": 10844, + "graduates": 10845, + "freeway": 10846, + "investigated": 10847, + "ore": 10848, + "deserved": 10849, + "maid": 10850, + "blocking": 10851, + "phillip": 10852, + "jorge": 10853, + "shakes": 10854, + "dove": 10855, + "mann": 10856, + "variables": 10857, + "lacked": 10858, + "burden": 10859, + "accompanying": 10860, + "que": 10861, + "consistently": 10862, + "organizing": 10863, + "provisional": 10864, + "complained": 10865, + "endless": 10866, + "##rm": 10867, + "tubes": 10868, + "juice": 10869, + "georges": 10870, + "krishna": 10871, + "mick": 10872, + "labels": 10873, + "thriller": 10874, + "##uch": 10875, + "laps": 10876, + "arcade": 10877, + "sage": 10878, + "snail": 10879, + "##table": 10880, + "shannon": 10881, + "fi": 10882, + "laurence": 10883, + "seoul": 10884, + "vacation": 10885, + "presenting": 10886, + "hire": 10887, + "churchill": 10888, + "surprisingly": 10889, + "prohibited": 10890, + "savannah": 10891, + "technically": 10892, + "##oli": 10893, + "170": 10894, + "##lessly": 10895, + "testimony": 10896, + "suited": 10897, + "speeds": 10898, + "toys": 10899, + "romans": 10900, + "mlb": 10901, + "flowering": 10902, + "measurement": 10903, + "talented": 10904, + "kay": 10905, + "settings": 10906, + "charleston": 10907, + "expectations": 10908, + "shattered": 10909, + "achieving": 10910, + "triumph": 10911, + "ceremonies": 10912, + "portsmouth": 10913, + "lanes": 10914, + "mandatory": 10915, + "loser": 10916, + "stretching": 10917, + "cologne": 10918, + "realizes": 10919, + "seventy": 10920, + "cornell": 10921, + "careers": 10922, + "webb": 10923, + "##ulating": 10924, + "americas": 10925, + "budapest": 10926, + "ava": 10927, + "suspicion": 10928, + "##ison": 10929, + "yo": 10930, + "conrad": 10931, + "##hai": 10932, + "sterling": 10933, + "jessie": 10934, + "rector": 10935, + "##az": 10936, + "1831": 10937, + "transform": 10938, + "organize": 10939, + "loans": 10940, + "christine": 10941, + "volcanic": 10942, + "warrant": 10943, + "slender": 10944, + "summers": 10945, + "subfamily": 10946, + "newer": 10947, + "danced": 10948, + "dynamics": 10949, + "rhine": 10950, + "proceeds": 10951, + "heinrich": 10952, + "gastropod": 10953, + "commands": 10954, + "sings": 10955, + "facilitate": 10956, + "easter": 10957, + "ra": 10958, + "positioned": 10959, + "responses": 10960, + "expense": 10961, + "fruits": 10962, + "yanked": 10963, + "imported": 10964, + "25th": 10965, + "velvet": 10966, + "vic": 10967, + "primitive": 10968, + "tribune": 10969, + "baldwin": 10970, + "neighbourhood": 10971, + "donna": 10972, + "rip": 10973, + "hay": 10974, + "pr": 10975, + "##uro": 10976, + "1814": 10977, + "espn": 10978, + "welcomed": 10979, + "##aria": 10980, + "qualifier": 10981, + "glare": 10982, + "highland": 10983, + "timing": 10984, + "##cted": 10985, + "shells": 10986, + "eased": 10987, + "geometry": 10988, + "louder": 10989, + "exciting": 10990, + "slovakia": 10991, + "##sion": 10992, + "##iz": 10993, + "##lot": 10994, + "savings": 10995, + "prairie": 10996, + "##ques": 10997, + "marching": 10998, + "rafael": 10999, + "tonnes": 11000, + "##lled": 11001, + "curtain": 11002, + "preceding": 11003, + "shy": 11004, + "heal": 11005, + "greene": 11006, + "worthy": 11007, + "##pot": 11008, + "detachment": 11009, + "bury": 11010, + "sherman": 11011, + "##eck": 11012, + "reinforced": 11013, + "seeks": 11014, + "bottles": 11015, + "contracted": 11016, + "duchess": 11017, + "outfit": 11018, + "walsh": 11019, + "##sc": 11020, + "mickey": 11021, + "##ase": 11022, + "geoffrey": 11023, + "archer": 11024, + "squeeze": 11025, + "dawson": 11026, + "eliminate": 11027, + "invention": 11028, + "##enberg": 11029, + "neal": 11030, + "##eth": 11031, + "stance": 11032, + "dealer": 11033, + "coral": 11034, + "maple": 11035, + "retire": 11036, + "polo": 11037, + "simplified": 11038, + "##ht": 11039, + "1833": 11040, + "hid": 11041, + "watts": 11042, + "backwards": 11043, + "jules": 11044, + "##oke": 11045, + "genesis": 11046, + "mt": 11047, + "frames": 11048, + "rebounds": 11049, + "burma": 11050, + "woodland": 11051, + "moist": 11052, + "santos": 11053, + "whispers": 11054, + "drained": 11055, + "subspecies": 11056, + "##aa": 11057, + "streaming": 11058, + "ulster": 11059, + "burnt": 11060, + "correspondence": 11061, + "maternal": 11062, + "gerard": 11063, + "denis": 11064, + "stealing": 11065, + "##load": 11066, + "genius": 11067, + "duchy": 11068, + "##oria": 11069, + "inaugurated": 11070, + "momentum": 11071, + "suits": 11072, + "placement": 11073, + "sovereign": 11074, + "clause": 11075, + "thames": 11076, + "##hara": 11077, + "confederation": 11078, + "reservation": 11079, + "sketch": 11080, + "yankees": 11081, + "lets": 11082, + "rotten": 11083, + "charm": 11084, + "hal": 11085, + "verses": 11086, + "ultra": 11087, + "commercially": 11088, + "dot": 11089, + "salon": 11090, + "citation": 11091, + "adopt": 11092, + "winnipeg": 11093, + "mist": 11094, + "allocated": 11095, + "cairo": 11096, + "##boy": 11097, + "jenkins": 11098, + "interference": 11099, + "objectives": 11100, + "##wind": 11101, + "1820": 11102, + "portfolio": 11103, + "armoured": 11104, + "sectors": 11105, + "##eh": 11106, + "initiatives": 11107, + "##world": 11108, + "integrity": 11109, + "exercises": 11110, + "robe": 11111, + "tap": 11112, + "ab": 11113, + "gazed": 11114, + "##tones": 11115, + "distracted": 11116, + "rulers": 11117, + "111": 11118, + "favorable": 11119, + "jerome": 11120, + "tended": 11121, + "cart": 11122, + "factories": 11123, + "##eri": 11124, + "diplomat": 11125, + "valued": 11126, + "gravel": 11127, + "charitable": 11128, + "##try": 11129, + "calvin": 11130, + "exploring": 11131, + "chang": 11132, + "shepherd": 11133, + "terrace": 11134, + "pdf": 11135, + "pupil": 11136, + "##ural": 11137, + "reflects": 11138, + "ups": 11139, + "##rch": 11140, + "governors": 11141, + "shelf": 11142, + "depths": 11143, + "##nberg": 11144, + "trailed": 11145, + "crest": 11146, + "tackle": 11147, + "##nian": 11148, + "##ats": 11149, + "hatred": 11150, + "##kai": 11151, + "clare": 11152, + "makers": 11153, + "ethiopia": 11154, + "longtime": 11155, + "detected": 11156, + "embedded": 11157, + "lacking": 11158, + "slapped": 11159, + "rely": 11160, + "thomson": 11161, + "anticipation": 11162, + "iso": 11163, + "morton": 11164, + "successive": 11165, + "agnes": 11166, + "screenwriter": 11167, + "straightened": 11168, + "philippe": 11169, + "playwright": 11170, + "haunted": 11171, + "licence": 11172, + "iris": 11173, + "intentions": 11174, + "sutton": 11175, + "112": 11176, + "logical": 11177, + "correctly": 11178, + "##weight": 11179, + "branded": 11180, + "licked": 11181, + "tipped": 11182, + "silva": 11183, + "ricky": 11184, + "narrator": 11185, + "requests": 11186, + "##ents": 11187, + "greeted": 11188, + "supernatural": 11189, + "cow": 11190, + "##wald": 11191, + "lung": 11192, + "refusing": 11193, + "employer": 11194, + "strait": 11195, + "gaelic": 11196, + "liner": 11197, + "##piece": 11198, + "zoe": 11199, + "sabha": 11200, + "##mba": 11201, + "driveway": 11202, + "harvest": 11203, + "prints": 11204, + "bates": 11205, + "reluctantly": 11206, + "threshold": 11207, + "algebra": 11208, + "ira": 11209, + "wherever": 11210, + "coupled": 11211, + "240": 11212, + "assumption": 11213, + "picks": 11214, + "##air": 11215, + "designers": 11216, + "raids": 11217, + "gentlemen": 11218, + "##ean": 11219, + "roller": 11220, + "blowing": 11221, + "leipzig": 11222, + "locks": 11223, + "screw": 11224, + "dressing": 11225, + "strand": 11226, + "##lings": 11227, + "scar": 11228, + "dwarf": 11229, + "depicts": 11230, + "##nu": 11231, + "nods": 11232, + "##mine": 11233, + "differ": 11234, + "boris": 11235, + "##eur": 11236, + "yuan": 11237, + "flip": 11238, + "##gie": 11239, + "mob": 11240, + "invested": 11241, + "questioning": 11242, + "applying": 11243, + "##ture": 11244, + "shout": 11245, + "##sel": 11246, + "gameplay": 11247, + "blamed": 11248, + "illustrations": 11249, + "bothered": 11250, + "weakness": 11251, + "rehabilitation": 11252, + "##of": 11253, + "##zes": 11254, + "envelope": 11255, + "rumors": 11256, + "miners": 11257, + "leicester": 11258, + "subtle": 11259, + "kerry": 11260, + "##ico": 11261, + "ferguson": 11262, + "##fu": 11263, + "premiership": 11264, + "ne": 11265, + "##cat": 11266, + "bengali": 11267, + "prof": 11268, + "catches": 11269, + "remnants": 11270, + "dana": 11271, + "##rily": 11272, + "shouting": 11273, + "presidents": 11274, + "baltic": 11275, + "ought": 11276, + "ghosts": 11277, + "dances": 11278, + "sailors": 11279, + "shirley": 11280, + "fancy": 11281, + "dominic": 11282, + "##bie": 11283, + "madonna": 11284, + "##rick": 11285, + "bark": 11286, + "buttons": 11287, + "gymnasium": 11288, + "ashes": 11289, + "liver": 11290, + "toby": 11291, + "oath": 11292, + "providence": 11293, + "doyle": 11294, + "evangelical": 11295, + "nixon": 11296, + "cement": 11297, + "carnegie": 11298, + "embarked": 11299, + "hatch": 11300, + "surroundings": 11301, + "guarantee": 11302, + "needing": 11303, + "pirate": 11304, + "essence": 11305, + "##bee": 11306, + "filter": 11307, + "crane": 11308, + "hammond": 11309, + "projected": 11310, + "immune": 11311, + "percy": 11312, + "twelfth": 11313, + "##ult": 11314, + "regent": 11315, + "doctoral": 11316, + "damon": 11317, + "mikhail": 11318, + "##ichi": 11319, + "lu": 11320, + "critically": 11321, + "elect": 11322, + "realised": 11323, + "abortion": 11324, + "acute": 11325, + "screening": 11326, + "mythology": 11327, + "steadily": 11328, + "##fc": 11329, + "frown": 11330, + "nottingham": 11331, + "kirk": 11332, + "wa": 11333, + "minneapolis": 11334, + "##rra": 11335, + "module": 11336, + "algeria": 11337, + "mc": 11338, + "nautical": 11339, + "encounters": 11340, + "surprising": 11341, + "statues": 11342, + "availability": 11343, + "shirts": 11344, + "pie": 11345, + "alma": 11346, + "brows": 11347, + "munster": 11348, + "mack": 11349, + "soup": 11350, + "crater": 11351, + "tornado": 11352, + "sanskrit": 11353, + "cedar": 11354, + "explosive": 11355, + "bordered": 11356, + "dixon": 11357, + "planets": 11358, + "stamp": 11359, + "exam": 11360, + "happily": 11361, + "##bble": 11362, + "carriers": 11363, + "kidnapped": 11364, + "##vis": 11365, + "accommodation": 11366, + "emigrated": 11367, + "##met": 11368, + "knockout": 11369, + "correspondent": 11370, + "violation": 11371, + "profits": 11372, + "peaks": 11373, + "lang": 11374, + "specimen": 11375, + "agenda": 11376, + "ancestry": 11377, + "pottery": 11378, + "spelling": 11379, + "equations": 11380, + "obtaining": 11381, + "ki": 11382, + "linking": 11383, + "1825": 11384, + "debris": 11385, + "asylum": 11386, + "##20": 11387, + "buddhism": 11388, + "teddy": 11389, + "##ants": 11390, + "gazette": 11391, + "##nger": 11392, + "##sse": 11393, + "dental": 11394, + "eligibility": 11395, + "utc": 11396, + "fathers": 11397, + "averaged": 11398, + "zimbabwe": 11399, + "francesco": 11400, + "coloured": 11401, + "hissed": 11402, + "translator": 11403, + "lynch": 11404, + "mandate": 11405, + "humanities": 11406, + "mackenzie": 11407, + "uniforms": 11408, + "lin": 11409, + "##iana": 11410, + "##gio": 11411, + "asset": 11412, + "mhz": 11413, + "fitting": 11414, + "samantha": 11415, + "genera": 11416, + "wei": 11417, + "rim": 11418, + "beloved": 11419, + "shark": 11420, + "riot": 11421, + "entities": 11422, + "expressions": 11423, + "indo": 11424, + "carmen": 11425, + "slipping": 11426, + "owing": 11427, + "abbot": 11428, + "neighbor": 11429, + "sidney": 11430, + "##av": 11431, + "rats": 11432, + "recommendations": 11433, + "encouraging": 11434, + "squadrons": 11435, + "anticipated": 11436, + "commanders": 11437, + "conquered": 11438, + "##oto": 11439, + "donations": 11440, + "diagnosed": 11441, + "##mond": 11442, + "divide": 11443, + "##iva": 11444, + "guessed": 11445, + "decoration": 11446, + "vernon": 11447, + "auditorium": 11448, + "revelation": 11449, + "conversations": 11450, + "##kers": 11451, + "##power": 11452, + "herzegovina": 11453, + "dash": 11454, + "alike": 11455, + "protested": 11456, + "lateral": 11457, + "herman": 11458, + "accredited": 11459, + "mg": 11460, + "##gent": 11461, + "freeman": 11462, + "mel": 11463, + "fiji": 11464, + "crow": 11465, + "crimson": 11466, + "##rine": 11467, + "livestock": 11468, + "##pped": 11469, + "humanitarian": 11470, + "bored": 11471, + "oz": 11472, + "whip": 11473, + "##lene": 11474, + "##ali": 11475, + "legitimate": 11476, + "alter": 11477, + "grinning": 11478, + "spelled": 11479, + "anxious": 11480, + "oriental": 11481, + "wesley": 11482, + "##nin": 11483, + "##hole": 11484, + "carnival": 11485, + "controller": 11486, + "detect": 11487, + "##ssa": 11488, + "bowed": 11489, + "educator": 11490, + "kosovo": 11491, + "macedonia": 11492, + "##sin": 11493, + "occupy": 11494, + "mastering": 11495, + "stephanie": 11496, + "janeiro": 11497, + "para": 11498, + "unaware": 11499, + "nurses": 11500, + "noon": 11501, + "135": 11502, + "cam": 11503, + "hopefully": 11504, + "ranger": 11505, + "combine": 11506, + "sociology": 11507, + "polar": 11508, + "rica": 11509, + "##eer": 11510, + "neill": 11511, + "##sman": 11512, + "holocaust": 11513, + "##ip": 11514, + "doubled": 11515, + "lust": 11516, + "1828": 11517, + "109": 11518, + "decent": 11519, + "cooling": 11520, + "unveiled": 11521, + "##card": 11522, + "1829": 11523, + "nsw": 11524, + "homer": 11525, + "chapman": 11526, + "meyer": 11527, + "##gin": 11528, + "dive": 11529, + "mae": 11530, + "reagan": 11531, + "expertise": 11532, + "##gled": 11533, + "darwin": 11534, + "brooke": 11535, + "sided": 11536, + "prosecution": 11537, + "investigating": 11538, + "comprised": 11539, + "petroleum": 11540, + "genres": 11541, + "reluctant": 11542, + "differently": 11543, + "trilogy": 11544, + "johns": 11545, + "vegetables": 11546, + "corpse": 11547, + "highlighted": 11548, + "lounge": 11549, + "pension": 11550, + "unsuccessfully": 11551, + "elegant": 11552, + "aided": 11553, + "ivory": 11554, + "beatles": 11555, + "amelia": 11556, + "cain": 11557, + "dubai": 11558, + "sunny": 11559, + "immigrant": 11560, + "babe": 11561, + "click": 11562, + "##nder": 11563, + "underwater": 11564, + "pepper": 11565, + "combining": 11566, + "mumbled": 11567, + "atlas": 11568, + "horns": 11569, + "accessed": 11570, + "ballad": 11571, + "physicians": 11572, + "homeless": 11573, + "gestured": 11574, + "rpm": 11575, + "freak": 11576, + "louisville": 11577, + "corporations": 11578, + "patriots": 11579, + "prizes": 11580, + "rational": 11581, + "warn": 11582, + "modes": 11583, + "decorative": 11584, + "overnight": 11585, + "din": 11586, + "troubled": 11587, + "phantom": 11588, + "##ort": 11589, + "monarch": 11590, + "sheer": 11591, + "##dorf": 11592, + "generals": 11593, + "guidelines": 11594, + "organs": 11595, + "addresses": 11596, + "##zon": 11597, + "enhance": 11598, + "curling": 11599, + "parishes": 11600, + "cord": 11601, + "##kie": 11602, + "linux": 11603, + "caesar": 11604, + "deutsche": 11605, + "bavaria": 11606, + "##bia": 11607, + "coleman": 11608, + "cyclone": 11609, + "##eria": 11610, + "bacon": 11611, + "petty": 11612, + "##yama": 11613, + "##old": 11614, + "hampton": 11615, + "diagnosis": 11616, + "1824": 11617, + "throws": 11618, + "complexity": 11619, + "rita": 11620, + "disputed": 11621, + "##₃": 11622, + "pablo": 11623, + "##sch": 11624, + "marketed": 11625, + "trafficking": 11626, + "##ulus": 11627, + "examine": 11628, + "plague": 11629, + "formats": 11630, + "##oh": 11631, + "vault": 11632, + "faithful": 11633, + "##bourne": 11634, + "webster": 11635, + "##ox": 11636, + "highlights": 11637, + "##ient": 11638, + "##ann": 11639, + "phones": 11640, + "vacuum": 11641, + "sandwich": 11642, + "modeling": 11643, + "##gated": 11644, + "bolivia": 11645, + "clergy": 11646, + "qualities": 11647, + "isabel": 11648, + "##nas": 11649, + "##ars": 11650, + "wears": 11651, + "screams": 11652, + "reunited": 11653, + "annoyed": 11654, + "bra": 11655, + "##ancy": 11656, + "##rate": 11657, + "differential": 11658, + "transmitter": 11659, + "tattoo": 11660, + "container": 11661, + "poker": 11662, + "##och": 11663, + "excessive": 11664, + "resides": 11665, + "cowboys": 11666, + "##tum": 11667, + "augustus": 11668, + "trash": 11669, + "providers": 11670, + "statute": 11671, + "retreated": 11672, + "balcony": 11673, + "reversed": 11674, + "void": 11675, + "storey": 11676, + "preceded": 11677, + "masses": 11678, + "leap": 11679, + "laughs": 11680, + "neighborhoods": 11681, + "wards": 11682, + "schemes": 11683, + "falcon": 11684, + "santo": 11685, + "battlefield": 11686, + "pad": 11687, + "ronnie": 11688, + "thread": 11689, + "lesbian": 11690, + "venus": 11691, + "##dian": 11692, + "beg": 11693, + "sandstone": 11694, + "daylight": 11695, + "punched": 11696, + "gwen": 11697, + "analog": 11698, + "stroked": 11699, + "wwe": 11700, + "acceptable": 11701, + "measurements": 11702, + "dec": 11703, + "toxic": 11704, + "##kel": 11705, + "adequate": 11706, + "surgical": 11707, + "economist": 11708, + "parameters": 11709, + "varsity": 11710, + "##sberg": 11711, + "quantity": 11712, + "ella": 11713, + "##chy": 11714, + "##rton": 11715, + "countess": 11716, + "generating": 11717, + "precision": 11718, + "diamonds": 11719, + "expressway": 11720, + "ga": 11721, + "##ı": 11722, + "1821": 11723, + "uruguay": 11724, + "talents": 11725, + "galleries": 11726, + "expenses": 11727, + "scanned": 11728, + "colleague": 11729, + "outlets": 11730, + "ryder": 11731, + "lucien": 11732, + "##ila": 11733, + "paramount": 11734, + "##bon": 11735, + "syracuse": 11736, + "dim": 11737, + "fangs": 11738, + "gown": 11739, + "sweep": 11740, + "##sie": 11741, + "toyota": 11742, + "missionaries": 11743, + "websites": 11744, + "##nsis": 11745, + "sentences": 11746, + "adviser": 11747, + "val": 11748, + "trademark": 11749, + "spells": 11750, + "##plane": 11751, + "patience": 11752, + "starter": 11753, + "slim": 11754, + "##borg": 11755, + "toe": 11756, + "incredibly": 11757, + "shoots": 11758, + "elliot": 11759, + "nobility": 11760, + "##wyn": 11761, + "cowboy": 11762, + "endorsed": 11763, + "gardner": 11764, + "tendency": 11765, + "persuaded": 11766, + "organisms": 11767, + "emissions": 11768, + "kazakhstan": 11769, + "amused": 11770, + "boring": 11771, + "chips": 11772, + "themed": 11773, + "##hand": 11774, + "llc": 11775, + "constantinople": 11776, + "chasing": 11777, + "systematic": 11778, + "guatemala": 11779, + "borrowed": 11780, + "erin": 11781, + "carey": 11782, + "##hard": 11783, + "highlands": 11784, + "struggles": 11785, + "1810": 11786, + "##ifying": 11787, + "##ced": 11788, + "wong": 11789, + "exceptions": 11790, + "develops": 11791, + "enlarged": 11792, + "kindergarten": 11793, + "castro": 11794, + "##ern": 11795, + "##rina": 11796, + "leigh": 11797, + "zombie": 11798, + "juvenile": 11799, + "##most": 11800, + "consul": 11801, + "##nar": 11802, + "sailor": 11803, + "hyde": 11804, + "clarence": 11805, + "intensive": 11806, + "pinned": 11807, + "nasty": 11808, + "useless": 11809, + "jung": 11810, + "clayton": 11811, + "stuffed": 11812, + "exceptional": 11813, + "ix": 11814, + "apostolic": 11815, + "230": 11816, + "transactions": 11817, + "##dge": 11818, + "exempt": 11819, + "swinging": 11820, + "cove": 11821, + "religions": 11822, + "##ash": 11823, + "shields": 11824, + "dairy": 11825, + "bypass": 11826, + "190": 11827, + "pursuing": 11828, + "bug": 11829, + "joyce": 11830, + "bombay": 11831, + "chassis": 11832, + "southampton": 11833, + "chat": 11834, + "interact": 11835, + "redesignated": 11836, + "##pen": 11837, + "nascar": 11838, + "pray": 11839, + "salmon": 11840, + "rigid": 11841, + "regained": 11842, + "malaysian": 11843, + "grim": 11844, + "publicity": 11845, + "constituted": 11846, + "capturing": 11847, + "toilet": 11848, + "delegate": 11849, + "purely": 11850, + "tray": 11851, + "drift": 11852, + "loosely": 11853, + "striker": 11854, + "weakened": 11855, + "trinidad": 11856, + "mitch": 11857, + "itv": 11858, + "defines": 11859, + "transmitted": 11860, + "ming": 11861, + "scarlet": 11862, + "nodding": 11863, + "fitzgerald": 11864, + "fu": 11865, + "narrowly": 11866, + "sp": 11867, + "tooth": 11868, + "standings": 11869, + "virtue": 11870, + "##₁": 11871, + "##wara": 11872, + "##cting": 11873, + "chateau": 11874, + "gloves": 11875, + "lid": 11876, + "##nel": 11877, + "hurting": 11878, + "conservatory": 11879, + "##pel": 11880, + "sinclair": 11881, + "reopened": 11882, + "sympathy": 11883, + "nigerian": 11884, + "strode": 11885, + "advocated": 11886, + "optional": 11887, + "chronic": 11888, + "discharge": 11889, + "##rc": 11890, + "suck": 11891, + "compatible": 11892, + "laurel": 11893, + "stella": 11894, + "shi": 11895, + "fails": 11896, + "wage": 11897, + "dodge": 11898, + "128": 11899, + "informal": 11900, + "sorts": 11901, + "levi": 11902, + "buddha": 11903, + "villagers": 11904, + "##aka": 11905, + "chronicles": 11906, + "heavier": 11907, + "summoned": 11908, + "gateway": 11909, + "3000": 11910, + "eleventh": 11911, + "jewelry": 11912, + "translations": 11913, + "accordingly": 11914, + "seas": 11915, + "##ency": 11916, + "fiber": 11917, + "pyramid": 11918, + "cubic": 11919, + "dragging": 11920, + "##ista": 11921, + "caring": 11922, + "##ops": 11923, + "android": 11924, + "contacted": 11925, + "lunar": 11926, + "##dt": 11927, + "kai": 11928, + "lisbon": 11929, + "patted": 11930, + "1826": 11931, + "sacramento": 11932, + "theft": 11933, + "madagascar": 11934, + "subtropical": 11935, + "disputes": 11936, + "ta": 11937, + "holidays": 11938, + "piper": 11939, + "willow": 11940, + "mare": 11941, + "cane": 11942, + "itunes": 11943, + "newfoundland": 11944, + "benny": 11945, + "companions": 11946, + "dong": 11947, + "raj": 11948, + "observe": 11949, + "roar": 11950, + "charming": 11951, + "plaque": 11952, + "tibetan": 11953, + "fossils": 11954, + "enacted": 11955, + "manning": 11956, + "bubble": 11957, + "tina": 11958, + "tanzania": 11959, + "##eda": 11960, + "##hir": 11961, + "funk": 11962, + "swamp": 11963, + "deputies": 11964, + "cloak": 11965, + "ufc": 11966, + "scenario": 11967, + "par": 11968, + "scratch": 11969, + "metals": 11970, + "anthem": 11971, + "guru": 11972, + "engaging": 11973, + "specially": 11974, + "##boat": 11975, + "dialects": 11976, + "nineteen": 11977, + "cecil": 11978, + "duet": 11979, + "disability": 11980, + "messenger": 11981, + "unofficial": 11982, + "##lies": 11983, + "defunct": 11984, + "eds": 11985, + "moonlight": 11986, + "drainage": 11987, + "surname": 11988, + "puzzle": 11989, + "honda": 11990, + "switching": 11991, + "conservatives": 11992, + "mammals": 11993, + "knox": 11994, + "broadcaster": 11995, + "sidewalk": 11996, + "cope": 11997, + "##ried": 11998, + "benson": 11999, + "princes": 12000, + "peterson": 12001, + "##sal": 12002, + "bedford": 12003, + "sharks": 12004, + "eli": 12005, + "wreck": 12006, + "alberto": 12007, + "gasp": 12008, + "archaeology": 12009, + "lgbt": 12010, + "teaches": 12011, + "securities": 12012, + "madness": 12013, + "compromise": 12014, + "waving": 12015, + "coordination": 12016, + "davidson": 12017, + "visions": 12018, + "leased": 12019, + "possibilities": 12020, + "eighty": 12021, + "jun": 12022, + "fernandez": 12023, + "enthusiasm": 12024, + "assassin": 12025, + "sponsorship": 12026, + "reviewer": 12027, + "kingdoms": 12028, + "estonian": 12029, + "laboratories": 12030, + "##fy": 12031, + "##nal": 12032, + "applies": 12033, + "verb": 12034, + "celebrations": 12035, + "##zzo": 12036, + "rowing": 12037, + "lightweight": 12038, + "sadness": 12039, + "submit": 12040, + "mvp": 12041, + "balanced": 12042, + "dude": 12043, + "##vas": 12044, + "explicitly": 12045, + "metric": 12046, + "magnificent": 12047, + "mound": 12048, + "brett": 12049, + "mohammad": 12050, + "mistakes": 12051, + "irregular": 12052, + "##hing": 12053, + "##ass": 12054, + "sanders": 12055, + "betrayed": 12056, + "shipped": 12057, + "surge": 12058, + "##enburg": 12059, + "reporters": 12060, + "termed": 12061, + "georg": 12062, + "pity": 12063, + "verbal": 12064, + "bulls": 12065, + "abbreviated": 12066, + "enabling": 12067, + "appealed": 12068, + "##are": 12069, + "##atic": 12070, + "sicily": 12071, + "sting": 12072, + "heel": 12073, + "sweetheart": 12074, + "bart": 12075, + "spacecraft": 12076, + "brutal": 12077, + "monarchy": 12078, + "##tter": 12079, + "aberdeen": 12080, + "cameo": 12081, + "diane": 12082, + "##ub": 12083, + "survivor": 12084, + "clyde": 12085, + "##aries": 12086, + "complaint": 12087, + "##makers": 12088, + "clarinet": 12089, + "delicious": 12090, + "chilean": 12091, + "karnataka": 12092, + "coordinates": 12093, + "1818": 12094, + "panties": 12095, + "##rst": 12096, + "pretending": 12097, + "ar": 12098, + "dramatically": 12099, + "kiev": 12100, + "bella": 12101, + "tends": 12102, + "distances": 12103, + "113": 12104, + "catalog": 12105, + "launching": 12106, + "instances": 12107, + "telecommunications": 12108, + "portable": 12109, + "lindsay": 12110, + "vatican": 12111, + "##eim": 12112, + "angles": 12113, + "aliens": 12114, + "marker": 12115, + "stint": 12116, + "screens": 12117, + "bolton": 12118, + "##rne": 12119, + "judy": 12120, + "wool": 12121, + "benedict": 12122, + "plasma": 12123, + "europa": 12124, + "spark": 12125, + "imaging": 12126, + "filmmaker": 12127, + "swiftly": 12128, + "##een": 12129, + "contributor": 12130, + "##nor": 12131, + "opted": 12132, + "stamps": 12133, + "apologize": 12134, + "financing": 12135, + "butter": 12136, + "gideon": 12137, + "sophisticated": 12138, + "alignment": 12139, + "avery": 12140, + "chemicals": 12141, + "yearly": 12142, + "speculation": 12143, + "prominence": 12144, + "professionally": 12145, + "##ils": 12146, + "immortal": 12147, + "institutional": 12148, + "inception": 12149, + "wrists": 12150, + "identifying": 12151, + "tribunal": 12152, + "derives": 12153, + "gains": 12154, + "##wo": 12155, + "papal": 12156, + "preference": 12157, + "linguistic": 12158, + "vince": 12159, + "operative": 12160, + "brewery": 12161, + "##ont": 12162, + "unemployment": 12163, + "boyd": 12164, + "##ured": 12165, + "##outs": 12166, + "albeit": 12167, + "prophet": 12168, + "1813": 12169, + "bi": 12170, + "##rr": 12171, + "##face": 12172, + "##rad": 12173, + "quarterly": 12174, + "asteroid": 12175, + "cleaned": 12176, + "radius": 12177, + "temper": 12178, + "##llen": 12179, + "telugu": 12180, + "jerk": 12181, + "viscount": 12182, + "menu": 12183, + "##ote": 12184, + "glimpse": 12185, + "##aya": 12186, + "yacht": 12187, + "hawaiian": 12188, + "baden": 12189, + "##rl": 12190, + "laptop": 12191, + "readily": 12192, + "##gu": 12193, + "monetary": 12194, + "offshore": 12195, + "scots": 12196, + "watches": 12197, + "##yang": 12198, + "##arian": 12199, + "upgrade": 12200, + "needle": 12201, + "xbox": 12202, + "lea": 12203, + "encyclopedia": 12204, + "flank": 12205, + "fingertips": 12206, + "##pus": 12207, + "delight": 12208, + "teachings": 12209, + "confirm": 12210, + "roth": 12211, + "beaches": 12212, + "midway": 12213, + "winters": 12214, + "##iah": 12215, + "teasing": 12216, + "daytime": 12217, + "beverly": 12218, + "gambling": 12219, + "bonnie": 12220, + "##backs": 12221, + "regulated": 12222, + "clement": 12223, + "hermann": 12224, + "tricks": 12225, + "knot": 12226, + "##shing": 12227, + "##uring": 12228, + "##vre": 12229, + "detached": 12230, + "ecological": 12231, + "owed": 12232, + "specialty": 12233, + "byron": 12234, + "inventor": 12235, + "bats": 12236, + "stays": 12237, + "screened": 12238, + "unesco": 12239, + "midland": 12240, + "trim": 12241, + "affection": 12242, + "##ander": 12243, + "##rry": 12244, + "jess": 12245, + "thoroughly": 12246, + "feedback": 12247, + "##uma": 12248, + "chennai": 12249, + "strained": 12250, + "heartbeat": 12251, + "wrapping": 12252, + "overtime": 12253, + "pleaded": 12254, + "##sworth": 12255, + "mon": 12256, + "leisure": 12257, + "oclc": 12258, + "##tate": 12259, + "##ele": 12260, + "feathers": 12261, + "angelo": 12262, + "thirds": 12263, + "nuts": 12264, + "surveys": 12265, + "clever": 12266, + "gill": 12267, + "commentator": 12268, + "##dos": 12269, + "darren": 12270, + "rides": 12271, + "gibraltar": 12272, + "##nc": 12273, + "##mu": 12274, + "dissolution": 12275, + "dedication": 12276, + "shin": 12277, + "meals": 12278, + "saddle": 12279, + "elvis": 12280, + "reds": 12281, + "chaired": 12282, + "taller": 12283, + "appreciation": 12284, + "functioning": 12285, + "niece": 12286, + "favored": 12287, + "advocacy": 12288, + "robbie": 12289, + "criminals": 12290, + "suffolk": 12291, + "yugoslav": 12292, + "passport": 12293, + "constable": 12294, + "congressman": 12295, + "hastings": 12296, + "vera": 12297, + "##rov": 12298, + "consecrated": 12299, + "sparks": 12300, + "ecclesiastical": 12301, + "confined": 12302, + "##ovich": 12303, + "muller": 12304, + "floyd": 12305, + "nora": 12306, + "1822": 12307, + "paved": 12308, + "1827": 12309, + "cumberland": 12310, + "ned": 12311, + "saga": 12312, + "spiral": 12313, + "##flow": 12314, + "appreciated": 12315, + "yi": 12316, + "collaborative": 12317, + "treating": 12318, + "similarities": 12319, + "feminine": 12320, + "finishes": 12321, + "##ib": 12322, + "jade": 12323, + "import": 12324, + "##nse": 12325, + "##hot": 12326, + "champagne": 12327, + "mice": 12328, + "securing": 12329, + "celebrities": 12330, + "helsinki": 12331, + "attributes": 12332, + "##gos": 12333, + "cousins": 12334, + "phases": 12335, + "ache": 12336, + "lucia": 12337, + "gandhi": 12338, + "submission": 12339, + "vicar": 12340, + "spear": 12341, + "shine": 12342, + "tasmania": 12343, + "biting": 12344, + "detention": 12345, + "constitute": 12346, + "tighter": 12347, + "seasonal": 12348, + "##gus": 12349, + "terrestrial": 12350, + "matthews": 12351, + "##oka": 12352, + "effectiveness": 12353, + "parody": 12354, + "philharmonic": 12355, + "##onic": 12356, + "1816": 12357, + "strangers": 12358, + "encoded": 12359, + "consortium": 12360, + "guaranteed": 12361, + "regards": 12362, + "shifts": 12363, + "tortured": 12364, + "collision": 12365, + "supervisor": 12366, + "inform": 12367, + "broader": 12368, + "insight": 12369, + "theaters": 12370, + "armour": 12371, + "emeritus": 12372, + "blink": 12373, + "incorporates": 12374, + "mapping": 12375, + "##50": 12376, + "##ein": 12377, + "handball": 12378, + "flexible": 12379, + "##nta": 12380, + "substantially": 12381, + "generous": 12382, + "thief": 12383, + "##own": 12384, + "carr": 12385, + "loses": 12386, + "1793": 12387, + "prose": 12388, + "ucla": 12389, + "romeo": 12390, + "generic": 12391, + "metallic": 12392, + "realization": 12393, + "damages": 12394, + "mk": 12395, + "commissioners": 12396, + "zach": 12397, + "default": 12398, + "##ther": 12399, + "helicopters": 12400, + "lengthy": 12401, + "stems": 12402, + "spa": 12403, + "partnered": 12404, + "spectators": 12405, + "rogue": 12406, + "indication": 12407, + "penalties": 12408, + "teresa": 12409, + "1801": 12410, + "sen": 12411, + "##tric": 12412, + "dalton": 12413, + "##wich": 12414, + "irving": 12415, + "photographic": 12416, + "##vey": 12417, + "dell": 12418, + "deaf": 12419, + "peters": 12420, + "excluded": 12421, + "unsure": 12422, + "##vable": 12423, + "patterson": 12424, + "crawled": 12425, + "##zio": 12426, + "resided": 12427, + "whipped": 12428, + "latvia": 12429, + "slower": 12430, + "ecole": 12431, + "pipes": 12432, + "employers": 12433, + "maharashtra": 12434, + "comparable": 12435, + "va": 12436, + "textile": 12437, + "pageant": 12438, + "##gel": 12439, + "alphabet": 12440, + "binary": 12441, + "irrigation": 12442, + "chartered": 12443, + "choked": 12444, + "antoine": 12445, + "offs": 12446, + "waking": 12447, + "supplement": 12448, + "##wen": 12449, + "quantities": 12450, + "demolition": 12451, + "regain": 12452, + "locate": 12453, + "urdu": 12454, + "folks": 12455, + "alt": 12456, + "114": 12457, + "##mc": 12458, + "scary": 12459, + "andreas": 12460, + "whites": 12461, + "##ava": 12462, + "classrooms": 12463, + "mw": 12464, + "aesthetic": 12465, + "publishes": 12466, + "valleys": 12467, + "guides": 12468, + "cubs": 12469, + "johannes": 12470, + "bryant": 12471, + "conventions": 12472, + "affecting": 12473, + "##itt": 12474, + "drain": 12475, + "awesome": 12476, + "isolation": 12477, + "prosecutor": 12478, + "ambitious": 12479, + "apology": 12480, + "captive": 12481, + "downs": 12482, + "atmospheric": 12483, + "lorenzo": 12484, + "aisle": 12485, + "beef": 12486, + "foul": 12487, + "##onia": 12488, + "kidding": 12489, + "composite": 12490, + "disturbed": 12491, + "illusion": 12492, + "natives": 12493, + "##ffer": 12494, + "emi": 12495, + "rockets": 12496, + "riverside": 12497, + "wartime": 12498, + "painters": 12499, + "adolf": 12500, + "melted": 12501, + "##ail": 12502, + "uncertainty": 12503, + "simulation": 12504, + "hawks": 12505, + "progressed": 12506, + "meantime": 12507, + "builder": 12508, + "spray": 12509, + "breach": 12510, + "unhappy": 12511, + "regina": 12512, + "russians": 12513, + "##urg": 12514, + "determining": 12515, + "##tation": 12516, + "tram": 12517, + "1806": 12518, + "##quin": 12519, + "aging": 12520, + "##12": 12521, + "1823": 12522, + "garion": 12523, + "rented": 12524, + "mister": 12525, + "diaz": 12526, + "terminated": 12527, + "clip": 12528, + "1817": 12529, + "depend": 12530, + "nervously": 12531, + "disco": 12532, + "owe": 12533, + "defenders": 12534, + "shiva": 12535, + "notorious": 12536, + "disbelief": 12537, + "shiny": 12538, + "worcester": 12539, + "##gation": 12540, + "##yr": 12541, + "trailing": 12542, + "undertook": 12543, + "islander": 12544, + "belarus": 12545, + "limitations": 12546, + "watershed": 12547, + "fuller": 12548, + "overlooking": 12549, + "utilized": 12550, + "raphael": 12551, + "1819": 12552, + "synthetic": 12553, + "breakdown": 12554, + "klein": 12555, + "##nate": 12556, + "moaned": 12557, + "memoir": 12558, + "lamb": 12559, + "practicing": 12560, + "##erly": 12561, + "cellular": 12562, + "arrows": 12563, + "exotic": 12564, + "##graphy": 12565, + "witches": 12566, + "117": 12567, + "charted": 12568, + "rey": 12569, + "hut": 12570, + "hierarchy": 12571, + "subdivision": 12572, + "freshwater": 12573, + "giuseppe": 12574, + "aloud": 12575, + "reyes": 12576, + "qatar": 12577, + "marty": 12578, + "sideways": 12579, + "utterly": 12580, + "sexually": 12581, + "jude": 12582, + "prayers": 12583, + "mccarthy": 12584, + "softball": 12585, + "blend": 12586, + "damien": 12587, + "##gging": 12588, + "##metric": 12589, + "wholly": 12590, + "erupted": 12591, + "lebanese": 12592, + "negro": 12593, + "revenues": 12594, + "tasted": 12595, + "comparative": 12596, + "teamed": 12597, + "transaction": 12598, + "labeled": 12599, + "maori": 12600, + "sovereignty": 12601, + "parkway": 12602, + "trauma": 12603, + "gran": 12604, + "malay": 12605, + "121": 12606, + "advancement": 12607, + "descendant": 12608, + "2020": 12609, + "buzz": 12610, + "salvation": 12611, + "inventory": 12612, + "symbolic": 12613, + "##making": 12614, + "antarctica": 12615, + "mps": 12616, + "##gas": 12617, + "##bro": 12618, + "mohammed": 12619, + "myanmar": 12620, + "holt": 12621, + "submarines": 12622, + "tones": 12623, + "##lman": 12624, + "locker": 12625, + "patriarch": 12626, + "bangkok": 12627, + "emerson": 12628, + "remarks": 12629, + "predators": 12630, + "kin": 12631, + "afghan": 12632, + "confession": 12633, + "norwich": 12634, + "rental": 12635, + "emerge": 12636, + "advantages": 12637, + "##zel": 12638, + "rca": 12639, + "##hold": 12640, + "shortened": 12641, + "storms": 12642, + "aidan": 12643, + "##matic": 12644, + "autonomy": 12645, + "compliance": 12646, + "##quet": 12647, + "dudley": 12648, + "atp": 12649, + "##osis": 12650, + "1803": 12651, + "motto": 12652, + "documentation": 12653, + "summary": 12654, + "professors": 12655, + "spectacular": 12656, + "christina": 12657, + "archdiocese": 12658, + "flashing": 12659, + "innocence": 12660, + "remake": 12661, + "##dell": 12662, + "psychic": 12663, + "reef": 12664, + "scare": 12665, + "employ": 12666, + "rs": 12667, + "sticks": 12668, + "meg": 12669, + "gus": 12670, + "leans": 12671, + "##ude": 12672, + "accompany": 12673, + "bergen": 12674, + "tomas": 12675, + "##iko": 12676, + "doom": 12677, + "wages": 12678, + "pools": 12679, + "##nch": 12680, + "##bes": 12681, + "breasts": 12682, + "scholarly": 12683, + "alison": 12684, + "outline": 12685, + "brittany": 12686, + "breakthrough": 12687, + "willis": 12688, + "realistic": 12689, + "##cut": 12690, + "##boro": 12691, + "competitor": 12692, + "##stan": 12693, + "pike": 12694, + "picnic": 12695, + "icon": 12696, + "designing": 12697, + "commercials": 12698, + "washing": 12699, + "villain": 12700, + "skiing": 12701, + "micro": 12702, + "costumes": 12703, + "auburn": 12704, + "halted": 12705, + "executives": 12706, + "##hat": 12707, + "logistics": 12708, + "cycles": 12709, + "vowel": 12710, + "applicable": 12711, + "barrett": 12712, + "exclaimed": 12713, + "eurovision": 12714, + "eternity": 12715, + "ramon": 12716, + "##umi": 12717, + "##lls": 12718, + "modifications": 12719, + "sweeping": 12720, + "disgust": 12721, + "##uck": 12722, + "torch": 12723, + "aviv": 12724, + "ensuring": 12725, + "rude": 12726, + "dusty": 12727, + "sonic": 12728, + "donovan": 12729, + "outskirts": 12730, + "cu": 12731, + "pathway": 12732, + "##band": 12733, + "##gun": 12734, + "##lines": 12735, + "disciplines": 12736, + "acids": 12737, + "cadet": 12738, + "paired": 12739, + "##40": 12740, + "sketches": 12741, + "##sive": 12742, + "marriages": 12743, + "##⁺": 12744, + "folding": 12745, + "peers": 12746, + "slovak": 12747, + "implies": 12748, + "admired": 12749, + "##beck": 12750, + "1880s": 12751, + "leopold": 12752, + "instinct": 12753, + "attained": 12754, + "weston": 12755, + "megan": 12756, + "horace": 12757, + "##ination": 12758, + "dorsal": 12759, + "ingredients": 12760, + "evolutionary": 12761, + "##its": 12762, + "complications": 12763, + "deity": 12764, + "lethal": 12765, + "brushing": 12766, + "levy": 12767, + "deserted": 12768, + "institutes": 12769, + "posthumously": 12770, + "delivering": 12771, + "telescope": 12772, + "coronation": 12773, + "motivated": 12774, + "rapids": 12775, + "luc": 12776, + "flicked": 12777, + "pays": 12778, + "volcano": 12779, + "tanner": 12780, + "weighed": 12781, + "##nica": 12782, + "crowds": 12783, + "frankie": 12784, + "gifted": 12785, + "addressing": 12786, + "granddaughter": 12787, + "winding": 12788, + "##rna": 12789, + "constantine": 12790, + "gomez": 12791, + "##front": 12792, + "landscapes": 12793, + "rudolf": 12794, + "anthropology": 12795, + "slate": 12796, + "werewolf": 12797, + "##lio": 12798, + "astronomy": 12799, + "circa": 12800, + "rouge": 12801, + "dreaming": 12802, + "sack": 12803, + "knelt": 12804, + "drowned": 12805, + "naomi": 12806, + "prolific": 12807, + "tracked": 12808, + "freezing": 12809, + "herb": 12810, + "##dium": 12811, + "agony": 12812, + "randall": 12813, + "twisting": 12814, + "wendy": 12815, + "deposit": 12816, + "touches": 12817, + "vein": 12818, + "wheeler": 12819, + "##bbled": 12820, + "##bor": 12821, + "batted": 12822, + "retaining": 12823, + "tire": 12824, + "presently": 12825, + "compare": 12826, + "specification": 12827, + "daemon": 12828, + "nigel": 12829, + "##grave": 12830, + "merry": 12831, + "recommendation": 12832, + "czechoslovakia": 12833, + "sandra": 12834, + "ng": 12835, + "roma": 12836, + "##sts": 12837, + "lambert": 12838, + "inheritance": 12839, + "sheikh": 12840, + "winchester": 12841, + "cries": 12842, + "examining": 12843, + "##yle": 12844, + "comeback": 12845, + "cuisine": 12846, + "nave": 12847, + "##iv": 12848, + "ko": 12849, + "retrieve": 12850, + "tomatoes": 12851, + "barker": 12852, + "polished": 12853, + "defining": 12854, + "irene": 12855, + "lantern": 12856, + "personalities": 12857, + "begging": 12858, + "tract": 12859, + "swore": 12860, + "1809": 12861, + "175": 12862, + "##gic": 12863, + "omaha": 12864, + "brotherhood": 12865, + "##rley": 12866, + "haiti": 12867, + "##ots": 12868, + "exeter": 12869, + "##ete": 12870, + "##zia": 12871, + "steele": 12872, + "dumb": 12873, + "pearson": 12874, + "210": 12875, + "surveyed": 12876, + "elisabeth": 12877, + "trends": 12878, + "##ef": 12879, + "fritz": 12880, + "##rf": 12881, + "premium": 12882, + "bugs": 12883, + "fraction": 12884, + "calmly": 12885, + "viking": 12886, + "##birds": 12887, + "tug": 12888, + "inserted": 12889, + "unusually": 12890, + "##ield": 12891, + "confronted": 12892, + "distress": 12893, + "crashing": 12894, + "brent": 12895, + "turks": 12896, + "resign": 12897, + "##olo": 12898, + "cambodia": 12899, + "gabe": 12900, + "sauce": 12901, + "##kal": 12902, + "evelyn": 12903, + "116": 12904, + "extant": 12905, + "clusters": 12906, + "quarry": 12907, + "teenagers": 12908, + "luna": 12909, + "##lers": 12910, + "##ister": 12911, + "affiliation": 12912, + "drill": 12913, + "##ashi": 12914, + "panthers": 12915, + "scenic": 12916, + "libya": 12917, + "anita": 12918, + "strengthen": 12919, + "inscriptions": 12920, + "##cated": 12921, + "lace": 12922, + "sued": 12923, + "judith": 12924, + "riots": 12925, + "##uted": 12926, + "mint": 12927, + "##eta": 12928, + "preparations": 12929, + "midst": 12930, + "dub": 12931, + "challenger": 12932, + "##vich": 12933, + "mock": 12934, + "cf": 12935, + "displaced": 12936, + "wicket": 12937, + "breaths": 12938, + "enables": 12939, + "schmidt": 12940, + "analyst": 12941, + "##lum": 12942, + "ag": 12943, + "highlight": 12944, + "automotive": 12945, + "axe": 12946, + "josef": 12947, + "newark": 12948, + "sufficiently": 12949, + "resembles": 12950, + "50th": 12951, + "##pal": 12952, + "flushed": 12953, + "mum": 12954, + "traits": 12955, + "##ante": 12956, + "commodore": 12957, + "incomplete": 12958, + "warming": 12959, + "titular": 12960, + "ceremonial": 12961, + "ethical": 12962, + "118": 12963, + "celebrating": 12964, + "eighteenth": 12965, + "cao": 12966, + "lima": 12967, + "medalist": 12968, + "mobility": 12969, + "strips": 12970, + "snakes": 12971, + "##city": 12972, + "miniature": 12973, + "zagreb": 12974, + "barton": 12975, + "escapes": 12976, + "umbrella": 12977, + "automated": 12978, + "doubted": 12979, + "differs": 12980, + "cooled": 12981, + "georgetown": 12982, + "dresden": 12983, + "cooked": 12984, + "fade": 12985, + "wyatt": 12986, + "rna": 12987, + "jacobs": 12988, + "carlton": 12989, + "abundant": 12990, + "stereo": 12991, + "boost": 12992, + "madras": 12993, + "inning": 12994, + "##hia": 12995, + "spur": 12996, + "ip": 12997, + "malayalam": 12998, + "begged": 12999, + "osaka": 13000, + "groan": 13001, + "escaping": 13002, + "charging": 13003, + "dose": 13004, + "vista": 13005, + "##aj": 13006, + "bud": 13007, + "papa": 13008, + "communists": 13009, + "advocates": 13010, + "edged": 13011, + "tri": 13012, + "##cent": 13013, + "resemble": 13014, + "peaking": 13015, + "necklace": 13016, + "fried": 13017, + "montenegro": 13018, + "saxony": 13019, + "goose": 13020, + "glances": 13021, + "stuttgart": 13022, + "curator": 13023, + "recruit": 13024, + "grocery": 13025, + "sympathetic": 13026, + "##tting": 13027, + "##fort": 13028, + "127": 13029, + "lotus": 13030, + "randolph": 13031, + "ancestor": 13032, + "##rand": 13033, + "succeeding": 13034, + "jupiter": 13035, + "1798": 13036, + "macedonian": 13037, + "##heads": 13038, + "hiking": 13039, + "1808": 13040, + "handing": 13041, + "fischer": 13042, + "##itive": 13043, + "garbage": 13044, + "node": 13045, + "##pies": 13046, + "prone": 13047, + "singular": 13048, + "papua": 13049, + "inclined": 13050, + "attractions": 13051, + "italia": 13052, + "pouring": 13053, + "motioned": 13054, + "grandma": 13055, + "garnered": 13056, + "jacksonville": 13057, + "corp": 13058, + "ego": 13059, + "ringing": 13060, + "aluminum": 13061, + "##hausen": 13062, + "ordering": 13063, + "##foot": 13064, + "drawer": 13065, + "traders": 13066, + "synagogue": 13067, + "##play": 13068, + "##kawa": 13069, + "resistant": 13070, + "wandering": 13071, + "fragile": 13072, + "fiona": 13073, + "teased": 13074, + "var": 13075, + "hardcore": 13076, + "soaked": 13077, + "jubilee": 13078, + "decisive": 13079, + "exposition": 13080, + "mercer": 13081, + "poster": 13082, + "valencia": 13083, + "hale": 13084, + "kuwait": 13085, + "1811": 13086, + "##ises": 13087, + "##wr": 13088, + "##eed": 13089, + "tavern": 13090, + "gamma": 13091, + "122": 13092, + "johan": 13093, + "##uer": 13094, + "airways": 13095, + "amino": 13096, + "gil": 13097, + "##ury": 13098, + "vocational": 13099, + "domains": 13100, + "torres": 13101, + "##sp": 13102, + "generator": 13103, + "folklore": 13104, + "outcomes": 13105, + "##keeper": 13106, + "canberra": 13107, + "shooter": 13108, + "fl": 13109, + "beams": 13110, + "confrontation": 13111, + "##lling": 13112, + "##gram": 13113, + "feb": 13114, + "aligned": 13115, + "forestry": 13116, + "pipeline": 13117, + "jax": 13118, + "motorway": 13119, + "conception": 13120, + "decay": 13121, + "##tos": 13122, + "coffin": 13123, + "##cott": 13124, + "stalin": 13125, + "1805": 13126, + "escorted": 13127, + "minded": 13128, + "##nam": 13129, + "sitcom": 13130, + "purchasing": 13131, + "twilight": 13132, + "veronica": 13133, + "additions": 13134, + "passive": 13135, + "tensions": 13136, + "straw": 13137, + "123": 13138, + "frequencies": 13139, + "1804": 13140, + "refugee": 13141, + "cultivation": 13142, + "##iate": 13143, + "christie": 13144, + "clary": 13145, + "bulletin": 13146, + "crept": 13147, + "disposal": 13148, + "##rich": 13149, + "##zong": 13150, + "processor": 13151, + "crescent": 13152, + "##rol": 13153, + "bmw": 13154, + "emphasized": 13155, + "whale": 13156, + "nazis": 13157, + "aurora": 13158, + "##eng": 13159, + "dwelling": 13160, + "hauled": 13161, + "sponsors": 13162, + "toledo": 13163, + "mega": 13164, + "ideology": 13165, + "theatres": 13166, + "tessa": 13167, + "cerambycidae": 13168, + "saves": 13169, + "turtle": 13170, + "cone": 13171, + "suspects": 13172, + "kara": 13173, + "rusty": 13174, + "yelling": 13175, + "greeks": 13176, + "mozart": 13177, + "shades": 13178, + "cocked": 13179, + "participant": 13180, + "##tro": 13181, + "shire": 13182, + "spit": 13183, + "freeze": 13184, + "necessity": 13185, + "##cos": 13186, + "inmates": 13187, + "nielsen": 13188, + "councillors": 13189, + "loaned": 13190, + "uncommon": 13191, + "omar": 13192, + "peasants": 13193, + "botanical": 13194, + "offspring": 13195, + "daniels": 13196, + "formations": 13197, + "jokes": 13198, + "1794": 13199, + "pioneers": 13200, + "sigma": 13201, + "licensing": 13202, + "##sus": 13203, + "wheelchair": 13204, + "polite": 13205, + "1807": 13206, + "liquor": 13207, + "pratt": 13208, + "trustee": 13209, + "##uta": 13210, + "forewings": 13211, + "balloon": 13212, + "##zz": 13213, + "kilometre": 13214, + "camping": 13215, + "explicit": 13216, + "casually": 13217, + "shawn": 13218, + "foolish": 13219, + "teammates": 13220, + "nm": 13221, + "hassan": 13222, + "carrie": 13223, + "judged": 13224, + "satisfy": 13225, + "vanessa": 13226, + "knives": 13227, + "selective": 13228, + "cnn": 13229, + "flowed": 13230, + "##lice": 13231, + "eclipse": 13232, + "stressed": 13233, + "eliza": 13234, + "mathematician": 13235, + "cease": 13236, + "cultivated": 13237, + "##roy": 13238, + "commissions": 13239, + "browns": 13240, + "##ania": 13241, + "destroyers": 13242, + "sheridan": 13243, + "meadow": 13244, + "##rius": 13245, + "minerals": 13246, + "##cial": 13247, + "downstream": 13248, + "clash": 13249, + "gram": 13250, + "memoirs": 13251, + "ventures": 13252, + "baha": 13253, + "seymour": 13254, + "archie": 13255, + "midlands": 13256, + "edith": 13257, + "fare": 13258, + "flynn": 13259, + "invite": 13260, + "canceled": 13261, + "tiles": 13262, + "stabbed": 13263, + "boulder": 13264, + "incorporate": 13265, + "amended": 13266, + "camden": 13267, + "facial": 13268, + "mollusk": 13269, + "unreleased": 13270, + "descriptions": 13271, + "yoga": 13272, + "grabs": 13273, + "550": 13274, + "raises": 13275, + "ramp": 13276, + "shiver": 13277, + "##rose": 13278, + "coined": 13279, + "pioneering": 13280, + "tunes": 13281, + "qing": 13282, + "warwick": 13283, + "tops": 13284, + "119": 13285, + "melanie": 13286, + "giles": 13287, + "##rous": 13288, + "wandered": 13289, + "##inal": 13290, + "annexed": 13291, + "nov": 13292, + "30th": 13293, + "unnamed": 13294, + "##ished": 13295, + "organizational": 13296, + "airplane": 13297, + "normandy": 13298, + "stoke": 13299, + "whistle": 13300, + "blessing": 13301, + "violations": 13302, + "chased": 13303, + "holders": 13304, + "shotgun": 13305, + "##ctic": 13306, + "outlet": 13307, + "reactor": 13308, + "##vik": 13309, + "tires": 13310, + "tearing": 13311, + "shores": 13312, + "fortified": 13313, + "mascot": 13314, + "constituencies": 13315, + "nc": 13316, + "columnist": 13317, + "productive": 13318, + "tibet": 13319, + "##rta": 13320, + "lineage": 13321, + "hooked": 13322, + "oct": 13323, + "tapes": 13324, + "judging": 13325, + "cody": 13326, + "##gger": 13327, + "hansen": 13328, + "kashmir": 13329, + "triggered": 13330, + "##eva": 13331, + "solved": 13332, + "cliffs": 13333, + "##tree": 13334, + "resisted": 13335, + "anatomy": 13336, + "protesters": 13337, + "transparent": 13338, + "implied": 13339, + "##iga": 13340, + "injection": 13341, + "mattress": 13342, + "excluding": 13343, + "##mbo": 13344, + "defenses": 13345, + "helpless": 13346, + "devotion": 13347, + "##elli": 13348, + "growl": 13349, + "liberals": 13350, + "weber": 13351, + "phenomena": 13352, + "atoms": 13353, + "plug": 13354, + "##iff": 13355, + "mortality": 13356, + "apprentice": 13357, + "howe": 13358, + "convincing": 13359, + "aaa": 13360, + "swimmer": 13361, + "barber": 13362, + "leone": 13363, + "promptly": 13364, + "sodium": 13365, + "def": 13366, + "nowadays": 13367, + "arise": 13368, + "##oning": 13369, + "gloucester": 13370, + "corrected": 13371, + "dignity": 13372, + "norm": 13373, + "erie": 13374, + "##ders": 13375, + "elders": 13376, + "evacuated": 13377, + "sylvia": 13378, + "compression": 13379, + "##yar": 13380, + "hartford": 13381, + "pose": 13382, + "backpack": 13383, + "reasoning": 13384, + "accepts": 13385, + "24th": 13386, + "wipe": 13387, + "millimetres": 13388, + "marcel": 13389, + "##oda": 13390, + "dodgers": 13391, + "albion": 13392, + "1790": 13393, + "overwhelmed": 13394, + "aerospace": 13395, + "oaks": 13396, + "1795": 13397, + "showcase": 13398, + "acknowledge": 13399, + "recovering": 13400, + "nolan": 13401, + "ashe": 13402, + "hurts": 13403, + "geology": 13404, + "fashioned": 13405, + "disappearance": 13406, + "farewell": 13407, + "swollen": 13408, + "shrug": 13409, + "marquis": 13410, + "wimbledon": 13411, + "124": 13412, + "rue": 13413, + "1792": 13414, + "commemorate": 13415, + "reduces": 13416, + "experiencing": 13417, + "inevitable": 13418, + "calcutta": 13419, + "intel": 13420, + "##court": 13421, + "murderer": 13422, + "sticking": 13423, + "fisheries": 13424, + "imagery": 13425, + "bloom": 13426, + "280": 13427, + "brake": 13428, + "##inus": 13429, + "gustav": 13430, + "hesitation": 13431, + "memorable": 13432, + "po": 13433, + "viral": 13434, + "beans": 13435, + "accidents": 13436, + "tunisia": 13437, + "antenna": 13438, + "spilled": 13439, + "consort": 13440, + "treatments": 13441, + "aye": 13442, + "perimeter": 13443, + "##gard": 13444, + "donation": 13445, + "hostage": 13446, + "migrated": 13447, + "banker": 13448, + "addiction": 13449, + "apex": 13450, + "lil": 13451, + "trout": 13452, + "##ously": 13453, + "conscience": 13454, + "##nova": 13455, + "rams": 13456, + "sands": 13457, + "genome": 13458, + "passionate": 13459, + "troubles": 13460, + "##lets": 13461, + "##set": 13462, + "amid": 13463, + "##ibility": 13464, + "##ret": 13465, + "higgins": 13466, + "exceed": 13467, + "vikings": 13468, + "##vie": 13469, + "payne": 13470, + "##zan": 13471, + "muscular": 13472, + "##ste": 13473, + "defendant": 13474, + "sucking": 13475, + "##wal": 13476, + "ibrahim": 13477, + "fuselage": 13478, + "claudia": 13479, + "vfl": 13480, + "europeans": 13481, + "snails": 13482, + "interval": 13483, + "##garh": 13484, + "preparatory": 13485, + "statewide": 13486, + "tasked": 13487, + "lacrosse": 13488, + "viktor": 13489, + "##lation": 13490, + "angola": 13491, + "##hra": 13492, + "flint": 13493, + "implications": 13494, + "employs": 13495, + "teens": 13496, + "patrons": 13497, + "stall": 13498, + "weekends": 13499, + "barriers": 13500, + "scrambled": 13501, + "nucleus": 13502, + "tehran": 13503, + "jenna": 13504, + "parsons": 13505, + "lifelong": 13506, + "robots": 13507, + "displacement": 13508, + "5000": 13509, + "##bles": 13510, + "precipitation": 13511, + "##gt": 13512, + "knuckles": 13513, + "clutched": 13514, + "1802": 13515, + "marrying": 13516, + "ecology": 13517, + "marx": 13518, + "accusations": 13519, + "declare": 13520, + "scars": 13521, + "kolkata": 13522, + "mat": 13523, + "meadows": 13524, + "bermuda": 13525, + "skeleton": 13526, + "finalists": 13527, + "vintage": 13528, + "crawl": 13529, + "coordinate": 13530, + "affects": 13531, + "subjected": 13532, + "orchestral": 13533, + "mistaken": 13534, + "##tc": 13535, + "mirrors": 13536, + "dipped": 13537, + "relied": 13538, + "260": 13539, + "arches": 13540, + "candle": 13541, + "##nick": 13542, + "incorporating": 13543, + "wildly": 13544, + "fond": 13545, + "basilica": 13546, + "owl": 13547, + "fringe": 13548, + "rituals": 13549, + "whispering": 13550, + "stirred": 13551, + "feud": 13552, + "tertiary": 13553, + "slick": 13554, + "goat": 13555, + "honorable": 13556, + "whereby": 13557, + "skip": 13558, + "ricardo": 13559, + "stripes": 13560, + "parachute": 13561, + "adjoining": 13562, + "submerged": 13563, + "synthesizer": 13564, + "##gren": 13565, + "intend": 13566, + "positively": 13567, + "ninety": 13568, + "phi": 13569, + "beaver": 13570, + "partition": 13571, + "fellows": 13572, + "alexis": 13573, + "prohibition": 13574, + "carlisle": 13575, + "bizarre": 13576, + "fraternity": 13577, + "##bre": 13578, + "doubts": 13579, + "icy": 13580, + "cbc": 13581, + "aquatic": 13582, + "sneak": 13583, + "sonny": 13584, + "combines": 13585, + "airports": 13586, + "crude": 13587, + "supervised": 13588, + "spatial": 13589, + "merge": 13590, + "alfonso": 13591, + "##bic": 13592, + "corrupt": 13593, + "scan": 13594, + "undergo": 13595, + "##ams": 13596, + "disabilities": 13597, + "colombian": 13598, + "comparing": 13599, + "dolphins": 13600, + "perkins": 13601, + "##lish": 13602, + "reprinted": 13603, + "unanimous": 13604, + "bounced": 13605, + "hairs": 13606, + "underworld": 13607, + "midwest": 13608, + "semester": 13609, + "bucket": 13610, + "paperback": 13611, + "miniseries": 13612, + "coventry": 13613, + "demise": 13614, + "##leigh": 13615, + "demonstrations": 13616, + "sensor": 13617, + "rotating": 13618, + "yan": 13619, + "##hler": 13620, + "arrange": 13621, + "soils": 13622, + "##idge": 13623, + "hyderabad": 13624, + "labs": 13625, + "##dr": 13626, + "brakes": 13627, + "grandchildren": 13628, + "##nde": 13629, + "negotiated": 13630, + "rover": 13631, + "ferrari": 13632, + "continuation": 13633, + "directorate": 13634, + "augusta": 13635, + "stevenson": 13636, + "counterpart": 13637, + "gore": 13638, + "##rda": 13639, + "nursery": 13640, + "rican": 13641, + "ave": 13642, + "collectively": 13643, + "broadly": 13644, + "pastoral": 13645, + "repertoire": 13646, + "asserted": 13647, + "discovering": 13648, + "nordic": 13649, + "styled": 13650, + "fiba": 13651, + "cunningham": 13652, + "harley": 13653, + "middlesex": 13654, + "survives": 13655, + "tumor": 13656, + "tempo": 13657, + "zack": 13658, + "aiming": 13659, + "lok": 13660, + "urgent": 13661, + "##rade": 13662, + "##nto": 13663, + "devils": 13664, + "##ement": 13665, + "contractor": 13666, + "turin": 13667, + "##wl": 13668, + "##ool": 13669, + "bliss": 13670, + "repaired": 13671, + "simmons": 13672, + "moan": 13673, + "astronomical": 13674, + "cr": 13675, + "negotiate": 13676, + "lyric": 13677, + "1890s": 13678, + "lara": 13679, + "bred": 13680, + "clad": 13681, + "angus": 13682, + "pbs": 13683, + "##ience": 13684, + "engineered": 13685, + "posed": 13686, + "##lk": 13687, + "hernandez": 13688, + "possessions": 13689, + "elbows": 13690, + "psychiatric": 13691, + "strokes": 13692, + "confluence": 13693, + "electorate": 13694, + "lifts": 13695, + "campuses": 13696, + "lava": 13697, + "alps": 13698, + "##ep": 13699, + "##ution": 13700, + "##date": 13701, + "physicist": 13702, + "woody": 13703, + "##page": 13704, + "##ographic": 13705, + "##itis": 13706, + "juliet": 13707, + "reformation": 13708, + "sparhawk": 13709, + "320": 13710, + "complement": 13711, + "suppressed": 13712, + "jewel": 13713, + "##½": 13714, + "floated": 13715, + "##kas": 13716, + "continuity": 13717, + "sadly": 13718, + "##ische": 13719, + "inability": 13720, + "melting": 13721, + "scanning": 13722, + "paula": 13723, + "flour": 13724, + "judaism": 13725, + "safer": 13726, + "vague": 13727, + "##lm": 13728, + "solving": 13729, + "curb": 13730, + "##stown": 13731, + "financially": 13732, + "gable": 13733, + "bees": 13734, + "expired": 13735, + "miserable": 13736, + "cassidy": 13737, + "dominion": 13738, + "1789": 13739, + "cupped": 13740, + "145": 13741, + "robbery": 13742, + "facto": 13743, + "amos": 13744, + "warden": 13745, + "resume": 13746, + "tallest": 13747, + "marvin": 13748, + "ing": 13749, + "pounded": 13750, + "usd": 13751, + "declaring": 13752, + "gasoline": 13753, + "##aux": 13754, + "darkened": 13755, + "270": 13756, + "650": 13757, + "sophomore": 13758, + "##mere": 13759, + "erection": 13760, + "gossip": 13761, + "televised": 13762, + "risen": 13763, + "dial": 13764, + "##eu": 13765, + "pillars": 13766, + "##link": 13767, + "passages": 13768, + "profound": 13769, + "##tina": 13770, + "arabian": 13771, + "ashton": 13772, + "silicon": 13773, + "nail": 13774, + "##ead": 13775, + "##lated": 13776, + "##wer": 13777, + "##hardt": 13778, + "fleming": 13779, + "firearms": 13780, + "ducked": 13781, + "circuits": 13782, + "blows": 13783, + "waterloo": 13784, + "titans": 13785, + "##lina": 13786, + "atom": 13787, + "fireplace": 13788, + "cheshire": 13789, + "financed": 13790, + "activation": 13791, + "algorithms": 13792, + "##zzi": 13793, + "constituent": 13794, + "catcher": 13795, + "cherokee": 13796, + "partnerships": 13797, + "sexuality": 13798, + "platoon": 13799, + "tragic": 13800, + "vivian": 13801, + "guarded": 13802, + "whiskey": 13803, + "meditation": 13804, + "poetic": 13805, + "##late": 13806, + "##nga": 13807, + "##ake": 13808, + "porto": 13809, + "listeners": 13810, + "dominance": 13811, + "kendra": 13812, + "mona": 13813, + "chandler": 13814, + "factions": 13815, + "22nd": 13816, + "salisbury": 13817, + "attitudes": 13818, + "derivative": 13819, + "##ido": 13820, + "##haus": 13821, + "intake": 13822, + "paced": 13823, + "javier": 13824, + "illustrator": 13825, + "barrels": 13826, + "bias": 13827, + "cockpit": 13828, + "burnett": 13829, + "dreamed": 13830, + "ensuing": 13831, + "##anda": 13832, + "receptors": 13833, + "someday": 13834, + "hawkins": 13835, + "mattered": 13836, + "##lal": 13837, + "slavic": 13838, + "1799": 13839, + "jesuit": 13840, + "cameroon": 13841, + "wasted": 13842, + "tai": 13843, + "wax": 13844, + "lowering": 13845, + "victorious": 13846, + "freaking": 13847, + "outright": 13848, + "hancock": 13849, + "librarian": 13850, + "sensing": 13851, + "bald": 13852, + "calcium": 13853, + "myers": 13854, + "tablet": 13855, + "announcing": 13856, + "barack": 13857, + "shipyard": 13858, + "pharmaceutical": 13859, + "##uan": 13860, + "greenwich": 13861, + "flush": 13862, + "medley": 13863, + "patches": 13864, + "wolfgang": 13865, + "pt": 13866, + "speeches": 13867, + "acquiring": 13868, + "exams": 13869, + "nikolai": 13870, + "##gg": 13871, + "hayden": 13872, + "kannada": 13873, + "##type": 13874, + "reilly": 13875, + "##pt": 13876, + "waitress": 13877, + "abdomen": 13878, + "devastated": 13879, + "capped": 13880, + "pseudonym": 13881, + "pharmacy": 13882, + "fulfill": 13883, + "paraguay": 13884, + "1796": 13885, + "clicked": 13886, + "##trom": 13887, + "archipelago": 13888, + "syndicated": 13889, + "##hman": 13890, + "lumber": 13891, + "orgasm": 13892, + "rejection": 13893, + "clifford": 13894, + "lorraine": 13895, + "advent": 13896, + "mafia": 13897, + "rodney": 13898, + "brock": 13899, + "##ght": 13900, + "##used": 13901, + "##elia": 13902, + "cassette": 13903, + "chamberlain": 13904, + "despair": 13905, + "mongolia": 13906, + "sensors": 13907, + "developmental": 13908, + "upstream": 13909, + "##eg": 13910, + "##alis": 13911, + "spanning": 13912, + "165": 13913, + "trombone": 13914, + "basque": 13915, + "seeded": 13916, + "interred": 13917, + "renewable": 13918, + "rhys": 13919, + "leapt": 13920, + "revision": 13921, + "molecule": 13922, + "##ages": 13923, + "chord": 13924, + "vicious": 13925, + "nord": 13926, + "shivered": 13927, + "23rd": 13928, + "arlington": 13929, + "debts": 13930, + "corpus": 13931, + "sunrise": 13932, + "bays": 13933, + "blackburn": 13934, + "centimetres": 13935, + "##uded": 13936, + "shuddered": 13937, + "gm": 13938, + "strangely": 13939, + "gripping": 13940, + "cartoons": 13941, + "isabelle": 13942, + "orbital": 13943, + "##ppa": 13944, + "seals": 13945, + "proving": 13946, + "##lton": 13947, + "refusal": 13948, + "strengthened": 13949, + "bust": 13950, + "assisting": 13951, + "baghdad": 13952, + "batsman": 13953, + "portrayal": 13954, + "mara": 13955, + "pushes": 13956, + "spears": 13957, + "og": 13958, + "##cock": 13959, + "reside": 13960, + "nathaniel": 13961, + "brennan": 13962, + "1776": 13963, + "confirmation": 13964, + "caucus": 13965, + "##worthy": 13966, + "markings": 13967, + "yemen": 13968, + "nobles": 13969, + "ku": 13970, + "lazy": 13971, + "viewer": 13972, + "catalan": 13973, + "encompasses": 13974, + "sawyer": 13975, + "##fall": 13976, + "sparked": 13977, + "substances": 13978, + "patents": 13979, + "braves": 13980, + "arranger": 13981, + "evacuation": 13982, + "sergio": 13983, + "persuade": 13984, + "dover": 13985, + "tolerance": 13986, + "penguin": 13987, + "cum": 13988, + "jockey": 13989, + "insufficient": 13990, + "townships": 13991, + "occupying": 13992, + "declining": 13993, + "plural": 13994, + "processed": 13995, + "projection": 13996, + "puppet": 13997, + "flanders": 13998, + "introduces": 13999, + "liability": 14000, + "##yon": 14001, + "gymnastics": 14002, + "antwerp": 14003, + "taipei": 14004, + "hobart": 14005, + "candles": 14006, + "jeep": 14007, + "wes": 14008, + "observers": 14009, + "126": 14010, + "chaplain": 14011, + "bundle": 14012, + "glorious": 14013, + "##hine": 14014, + "hazel": 14015, + "flung": 14016, + "sol": 14017, + "excavations": 14018, + "dumped": 14019, + "stares": 14020, + "sh": 14021, + "bangalore": 14022, + "triangular": 14023, + "icelandic": 14024, + "intervals": 14025, + "expressing": 14026, + "turbine": 14027, + "##vers": 14028, + "songwriting": 14029, + "crafts": 14030, + "##igo": 14031, + "jasmine": 14032, + "ditch": 14033, + "rite": 14034, + "##ways": 14035, + "entertaining": 14036, + "comply": 14037, + "sorrow": 14038, + "wrestlers": 14039, + "basel": 14040, + "emirates": 14041, + "marian": 14042, + "rivera": 14043, + "helpful": 14044, + "##some": 14045, + "caution": 14046, + "downward": 14047, + "networking": 14048, + "##atory": 14049, + "##tered": 14050, + "darted": 14051, + "genocide": 14052, + "emergence": 14053, + "replies": 14054, + "specializing": 14055, + "spokesman": 14056, + "convenient": 14057, + "unlocked": 14058, + "fading": 14059, + "augustine": 14060, + "concentrations": 14061, + "resemblance": 14062, + "elijah": 14063, + "investigator": 14064, + "andhra": 14065, + "##uda": 14066, + "promotes": 14067, + "bean": 14068, + "##rrell": 14069, + "fleeing": 14070, + "wan": 14071, + "simone": 14072, + "announcer": 14073, + "##ame": 14074, + "##bby": 14075, + "lydia": 14076, + "weaver": 14077, + "132": 14078, + "residency": 14079, + "modification": 14080, + "##fest": 14081, + "stretches": 14082, + "##ast": 14083, + "alternatively": 14084, + "nat": 14085, + "lowe": 14086, + "lacks": 14087, + "##ented": 14088, + "pam": 14089, + "tile": 14090, + "concealed": 14091, + "inferior": 14092, + "abdullah": 14093, + "residences": 14094, + "tissues": 14095, + "vengeance": 14096, + "##ided": 14097, + "moisture": 14098, + "peculiar": 14099, + "groove": 14100, + "zip": 14101, + "bologna": 14102, + "jennings": 14103, + "ninja": 14104, + "oversaw": 14105, + "zombies": 14106, + "pumping": 14107, + "batch": 14108, + "livingston": 14109, + "emerald": 14110, + "installations": 14111, + "1797": 14112, + "peel": 14113, + "nitrogen": 14114, + "rama": 14115, + "##fying": 14116, + "##star": 14117, + "schooling": 14118, + "strands": 14119, + "responding": 14120, + "werner": 14121, + "##ost": 14122, + "lime": 14123, + "casa": 14124, + "accurately": 14125, + "targeting": 14126, + "##rod": 14127, + "underway": 14128, + "##uru": 14129, + "hemisphere": 14130, + "lester": 14131, + "##yard": 14132, + "occupies": 14133, + "2d": 14134, + "griffith": 14135, + "angrily": 14136, + "reorganized": 14137, + "##owing": 14138, + "courtney": 14139, + "deposited": 14140, + "##dd": 14141, + "##30": 14142, + "estadio": 14143, + "##ifies": 14144, + "dunn": 14145, + "exiled": 14146, + "##ying": 14147, + "checks": 14148, + "##combe": 14149, + "##о": 14150, + "##fly": 14151, + "successes": 14152, + "unexpectedly": 14153, + "blu": 14154, + "assessed": 14155, + "##flower": 14156, + "##ه": 14157, + "observing": 14158, + "sacked": 14159, + "spiders": 14160, + "kn": 14161, + "##tail": 14162, + "mu": 14163, + "nodes": 14164, + "prosperity": 14165, + "audrey": 14166, + "divisional": 14167, + "155": 14168, + "broncos": 14169, + "tangled": 14170, + "adjust": 14171, + "feeds": 14172, + "erosion": 14173, + "paolo": 14174, + "surf": 14175, + "directory": 14176, + "snatched": 14177, + "humid": 14178, + "admiralty": 14179, + "screwed": 14180, + "gt": 14181, + "reddish": 14182, + "##nese": 14183, + "modules": 14184, + "trench": 14185, + "lamps": 14186, + "bind": 14187, + "leah": 14188, + "bucks": 14189, + "competes": 14190, + "##nz": 14191, + "##form": 14192, + "transcription": 14193, + "##uc": 14194, + "isles": 14195, + "violently": 14196, + "clutching": 14197, + "pga": 14198, + "cyclist": 14199, + "inflation": 14200, + "flats": 14201, + "ragged": 14202, + "unnecessary": 14203, + "##hian": 14204, + "stubborn": 14205, + "coordinated": 14206, + "harriet": 14207, + "baba": 14208, + "disqualified": 14209, + "330": 14210, + "insect": 14211, + "wolfe": 14212, + "##fies": 14213, + "reinforcements": 14214, + "rocked": 14215, + "duel": 14216, + "winked": 14217, + "embraced": 14218, + "bricks": 14219, + "##raj": 14220, + "hiatus": 14221, + "defeats": 14222, + "pending": 14223, + "brightly": 14224, + "jealousy": 14225, + "##xton": 14226, + "##hm": 14227, + "##uki": 14228, + "lena": 14229, + "gdp": 14230, + "colorful": 14231, + "##dley": 14232, + "stein": 14233, + "kidney": 14234, + "##shu": 14235, + "underwear": 14236, + "wanderers": 14237, + "##haw": 14238, + "##icus": 14239, + "guardians": 14240, + "m³": 14241, + "roared": 14242, + "habits": 14243, + "##wise": 14244, + "permits": 14245, + "gp": 14246, + "uranium": 14247, + "punished": 14248, + "disguise": 14249, + "bundesliga": 14250, + "elise": 14251, + "dundee": 14252, + "erotic": 14253, + "partisan": 14254, + "pi": 14255, + "collectors": 14256, + "float": 14257, + "individually": 14258, + "rendering": 14259, + "behavioral": 14260, + "bucharest": 14261, + "ser": 14262, + "hare": 14263, + "valerie": 14264, + "corporal": 14265, + "nutrition": 14266, + "proportional": 14267, + "##isa": 14268, + "immense": 14269, + "##kis": 14270, + "pavement": 14271, + "##zie": 14272, + "##eld": 14273, + "sutherland": 14274, + "crouched": 14275, + "1775": 14276, + "##lp": 14277, + "suzuki": 14278, + "trades": 14279, + "endurance": 14280, + "operas": 14281, + "crosby": 14282, + "prayed": 14283, + "priory": 14284, + "rory": 14285, + "socially": 14286, + "##urn": 14287, + "gujarat": 14288, + "##pu": 14289, + "walton": 14290, + "cube": 14291, + "pasha": 14292, + "privilege": 14293, + "lennon": 14294, + "floods": 14295, + "thorne": 14296, + "waterfall": 14297, + "nipple": 14298, + "scouting": 14299, + "approve": 14300, + "##lov": 14301, + "minorities": 14302, + "voter": 14303, + "dwight": 14304, + "extensions": 14305, + "assure": 14306, + "ballroom": 14307, + "slap": 14308, + "dripping": 14309, + "privileges": 14310, + "rejoined": 14311, + "confessed": 14312, + "demonstrating": 14313, + "patriotic": 14314, + "yell": 14315, + "investor": 14316, + "##uth": 14317, + "pagan": 14318, + "slumped": 14319, + "squares": 14320, + "##cle": 14321, + "##kins": 14322, + "confront": 14323, + "bert": 14324, + "embarrassment": 14325, + "##aid": 14326, + "aston": 14327, + "urging": 14328, + "sweater": 14329, + "starr": 14330, + "yuri": 14331, + "brains": 14332, + "williamson": 14333, + "commuter": 14334, + "mortar": 14335, + "structured": 14336, + "selfish": 14337, + "exports": 14338, + "##jon": 14339, + "cds": 14340, + "##him": 14341, + "unfinished": 14342, + "##rre": 14343, + "mortgage": 14344, + "destinations": 14345, + "##nagar": 14346, + "canoe": 14347, + "solitary": 14348, + "buchanan": 14349, + "delays": 14350, + "magistrate": 14351, + "fk": 14352, + "##pling": 14353, + "motivation": 14354, + "##lier": 14355, + "##vier": 14356, + "recruiting": 14357, + "assess": 14358, + "##mouth": 14359, + "malik": 14360, + "antique": 14361, + "1791": 14362, + "pius": 14363, + "rahman": 14364, + "reich": 14365, + "tub": 14366, + "zhou": 14367, + "smashed": 14368, + "airs": 14369, + "galway": 14370, + "xii": 14371, + "conditioning": 14372, + "honduras": 14373, + "discharged": 14374, + "dexter": 14375, + "##pf": 14376, + "lionel": 14377, + "129": 14378, + "debates": 14379, + "lemon": 14380, + "tiffany": 14381, + "volunteered": 14382, + "dom": 14383, + "dioxide": 14384, + "procession": 14385, + "devi": 14386, + "sic": 14387, + "tremendous": 14388, + "advertisements": 14389, + "colts": 14390, + "transferring": 14391, + "verdict": 14392, + "hanover": 14393, + "decommissioned": 14394, + "utter": 14395, + "relate": 14396, + "pac": 14397, + "racism": 14398, + "##top": 14399, + "beacon": 14400, + "limp": 14401, + "similarity": 14402, + "terra": 14403, + "occurrence": 14404, + "ant": 14405, + "##how": 14406, + "becky": 14407, + "capt": 14408, + "updates": 14409, + "armament": 14410, + "richie": 14411, + "pal": 14412, + "##graph": 14413, + "halloween": 14414, + "mayo": 14415, + "##ssen": 14416, + "##bone": 14417, + "cara": 14418, + "serena": 14419, + "fcc": 14420, + "dolls": 14421, + "obligations": 14422, + "##dling": 14423, + "violated": 14424, + "lafayette": 14425, + "jakarta": 14426, + "exploitation": 14427, + "##ime": 14428, + "infamous": 14429, + "iconic": 14430, + "##lah": 14431, + "##park": 14432, + "kitty": 14433, + "moody": 14434, + "reginald": 14435, + "dread": 14436, + "spill": 14437, + "crystals": 14438, + "olivier": 14439, + "modeled": 14440, + "bluff": 14441, + "equilibrium": 14442, + "separating": 14443, + "notices": 14444, + "ordnance": 14445, + "extinction": 14446, + "onset": 14447, + "cosmic": 14448, + "attachment": 14449, + "sammy": 14450, + "expose": 14451, + "privy": 14452, + "anchored": 14453, + "##bil": 14454, + "abbott": 14455, + "admits": 14456, + "bending": 14457, + "baritone": 14458, + "emmanuel": 14459, + "policeman": 14460, + "vaughan": 14461, + "winged": 14462, + "climax": 14463, + "dresses": 14464, + "denny": 14465, + "polytechnic": 14466, + "mohamed": 14467, + "burmese": 14468, + "authentic": 14469, + "nikki": 14470, + "genetics": 14471, + "grandparents": 14472, + "homestead": 14473, + "gaza": 14474, + "postponed": 14475, + "metacritic": 14476, + "una": 14477, + "##sby": 14478, + "##bat": 14479, + "unstable": 14480, + "dissertation": 14481, + "##rial": 14482, + "##cian": 14483, + "curls": 14484, + "obscure": 14485, + "uncovered": 14486, + "bronx": 14487, + "praying": 14488, + "disappearing": 14489, + "##hoe": 14490, + "prehistoric": 14491, + "coke": 14492, + "turret": 14493, + "mutations": 14494, + "nonprofit": 14495, + "pits": 14496, + "monaco": 14497, + "##ي": 14498, + "##usion": 14499, + "prominently": 14500, + "dispatched": 14501, + "podium": 14502, + "##mir": 14503, + "uci": 14504, + "##uation": 14505, + "133": 14506, + "fortifications": 14507, + "birthplace": 14508, + "kendall": 14509, + "##lby": 14510, + "##oll": 14511, + "preacher": 14512, + "rack": 14513, + "goodman": 14514, + "##rman": 14515, + "persistent": 14516, + "##ott": 14517, + "countless": 14518, + "jaime": 14519, + "recorder": 14520, + "lexington": 14521, + "persecution": 14522, + "jumps": 14523, + "renewal": 14524, + "wagons": 14525, + "##11": 14526, + "crushing": 14527, + "##holder": 14528, + "decorations": 14529, + "##lake": 14530, + "abundance": 14531, + "wrath": 14532, + "laundry": 14533, + "£1": 14534, + "garde": 14535, + "##rp": 14536, + "jeanne": 14537, + "beetles": 14538, + "peasant": 14539, + "##sl": 14540, + "splitting": 14541, + "caste": 14542, + "sergei": 14543, + "##rer": 14544, + "##ema": 14545, + "scripts": 14546, + "##ively": 14547, + "rub": 14548, + "satellites": 14549, + "##vor": 14550, + "inscribed": 14551, + "verlag": 14552, + "scrapped": 14553, + "gale": 14554, + "packages": 14555, + "chick": 14556, + "potato": 14557, + "slogan": 14558, + "kathleen": 14559, + "arabs": 14560, + "##culture": 14561, + "counterparts": 14562, + "reminiscent": 14563, + "choral": 14564, + "##tead": 14565, + "rand": 14566, + "retains": 14567, + "bushes": 14568, + "dane": 14569, + "accomplish": 14570, + "courtesy": 14571, + "closes": 14572, + "##oth": 14573, + "slaughter": 14574, + "hague": 14575, + "krakow": 14576, + "lawson": 14577, + "tailed": 14578, + "elias": 14579, + "ginger": 14580, + "##ttes": 14581, + "canopy": 14582, + "betrayal": 14583, + "rebuilding": 14584, + "turf": 14585, + "##hof": 14586, + "frowning": 14587, + "allegiance": 14588, + "brigades": 14589, + "kicks": 14590, + "rebuild": 14591, + "polls": 14592, + "alias": 14593, + "nationalism": 14594, + "td": 14595, + "rowan": 14596, + "audition": 14597, + "bowie": 14598, + "fortunately": 14599, + "recognizes": 14600, + "harp": 14601, + "dillon": 14602, + "horrified": 14603, + "##oro": 14604, + "renault": 14605, + "##tics": 14606, + "ropes": 14607, + "##α": 14608, + "presumed": 14609, + "rewarded": 14610, + "infrared": 14611, + "wiping": 14612, + "accelerated": 14613, + "illustration": 14614, + "##rid": 14615, + "presses": 14616, + "practitioners": 14617, + "badminton": 14618, + "##iard": 14619, + "detained": 14620, + "##tera": 14621, + "recognizing": 14622, + "relates": 14623, + "misery": 14624, + "##sies": 14625, + "##tly": 14626, + "reproduction": 14627, + "piercing": 14628, + "potatoes": 14629, + "thornton": 14630, + "esther": 14631, + "manners": 14632, + "hbo": 14633, + "##aan": 14634, + "ours": 14635, + "bullshit": 14636, + "ernie": 14637, + "perennial": 14638, + "sensitivity": 14639, + "illuminated": 14640, + "rupert": 14641, + "##jin": 14642, + "##iss": 14643, + "##ear": 14644, + "rfc": 14645, + "nassau": 14646, + "##dock": 14647, + "staggered": 14648, + "socialism": 14649, + "##haven": 14650, + "appointments": 14651, + "nonsense": 14652, + "prestige": 14653, + "sharma": 14654, + "haul": 14655, + "##tical": 14656, + "solidarity": 14657, + "gps": 14658, + "##ook": 14659, + "##rata": 14660, + "igor": 14661, + "pedestrian": 14662, + "##uit": 14663, + "baxter": 14664, + "tenants": 14665, + "wires": 14666, + "medication": 14667, + "unlimited": 14668, + "guiding": 14669, + "impacts": 14670, + "diabetes": 14671, + "##rama": 14672, + "sasha": 14673, + "pas": 14674, + "clive": 14675, + "extraction": 14676, + "131": 14677, + "continually": 14678, + "constraints": 14679, + "##bilities": 14680, + "sonata": 14681, + "hunted": 14682, + "sixteenth": 14683, + "chu": 14684, + "planting": 14685, + "quote": 14686, + "mayer": 14687, + "pretended": 14688, + "abs": 14689, + "spat": 14690, + "##hua": 14691, + "ceramic": 14692, + "##cci": 14693, + "curtains": 14694, + "pigs": 14695, + "pitching": 14696, + "##dad": 14697, + "latvian": 14698, + "sore": 14699, + "dayton": 14700, + "##sted": 14701, + "##qi": 14702, + "patrols": 14703, + "slice": 14704, + "playground": 14705, + "##nted": 14706, + "shone": 14707, + "stool": 14708, + "apparatus": 14709, + "inadequate": 14710, + "mates": 14711, + "treason": 14712, + "##ija": 14713, + "desires": 14714, + "##liga": 14715, + "##croft": 14716, + "somalia": 14717, + "laurent": 14718, + "mir": 14719, + "leonardo": 14720, + "oracle": 14721, + "grape": 14722, + "obliged": 14723, + "chevrolet": 14724, + "thirteenth": 14725, + "stunning": 14726, + "enthusiastic": 14727, + "##ede": 14728, + "accounted": 14729, + "concludes": 14730, + "currents": 14731, + "basil": 14732, + "##kovic": 14733, + "drought": 14734, + "##rica": 14735, + "mai": 14736, + "##aire": 14737, + "shove": 14738, + "posting": 14739, + "##shed": 14740, + "pilgrimage": 14741, + "humorous": 14742, + "packing": 14743, + "fry": 14744, + "pencil": 14745, + "wines": 14746, + "smells": 14747, + "144": 14748, + "marilyn": 14749, + "aching": 14750, + "newest": 14751, + "clung": 14752, + "bon": 14753, + "neighbours": 14754, + "sanctioned": 14755, + "##pie": 14756, + "mug": 14757, + "##stock": 14758, + "drowning": 14759, + "##mma": 14760, + "hydraulic": 14761, + "##vil": 14762, + "hiring": 14763, + "reminder": 14764, + "lilly": 14765, + "investigators": 14766, + "##ncies": 14767, + "sour": 14768, + "##eous": 14769, + "compulsory": 14770, + "packet": 14771, + "##rion": 14772, + "##graphic": 14773, + "##elle": 14774, + "cannes": 14775, + "##inate": 14776, + "depressed": 14777, + "##rit": 14778, + "heroic": 14779, + "importantly": 14780, + "theresa": 14781, + "##tled": 14782, + "conway": 14783, + "saturn": 14784, + "marginal": 14785, + "rae": 14786, + "##xia": 14787, + "corresponds": 14788, + "royce": 14789, + "pact": 14790, + "jasper": 14791, + "explosives": 14792, + "packaging": 14793, + "aluminium": 14794, + "##ttered": 14795, + "denotes": 14796, + "rhythmic": 14797, + "spans": 14798, + "assignments": 14799, + "hereditary": 14800, + "outlined": 14801, + "originating": 14802, + "sundays": 14803, + "lad": 14804, + "reissued": 14805, + "greeting": 14806, + "beatrice": 14807, + "##dic": 14808, + "pillar": 14809, + "marcos": 14810, + "plots": 14811, + "handbook": 14812, + "alcoholic": 14813, + "judiciary": 14814, + "avant": 14815, + "slides": 14816, + "extract": 14817, + "masculine": 14818, + "blur": 14819, + "##eum": 14820, + "##force": 14821, + "homage": 14822, + "trembled": 14823, + "owens": 14824, + "hymn": 14825, + "trey": 14826, + "omega": 14827, + "signaling": 14828, + "socks": 14829, + "accumulated": 14830, + "reacted": 14831, + "attic": 14832, + "theo": 14833, + "lining": 14834, + "angie": 14835, + "distraction": 14836, + "primera": 14837, + "talbot": 14838, + "##key": 14839, + "1200": 14840, + "ti": 14841, + "creativity": 14842, + "billed": 14843, + "##hey": 14844, + "deacon": 14845, + "eduardo": 14846, + "identifies": 14847, + "proposition": 14848, + "dizzy": 14849, + "gunner": 14850, + "hogan": 14851, + "##yam": 14852, + "##pping": 14853, + "##hol": 14854, + "ja": 14855, + "##chan": 14856, + "jensen": 14857, + "reconstructed": 14858, + "##berger": 14859, + "clearance": 14860, + "darius": 14861, + "##nier": 14862, + "abe": 14863, + "harlem": 14864, + "plea": 14865, + "dei": 14866, + "circled": 14867, + "emotionally": 14868, + "notation": 14869, + "fascist": 14870, + "neville": 14871, + "exceeded": 14872, + "upwards": 14873, + "viable": 14874, + "ducks": 14875, + "##fo": 14876, + "workforce": 14877, + "racer": 14878, + "limiting": 14879, + "shri": 14880, + "##lson": 14881, + "possesses": 14882, + "1600": 14883, + "kerr": 14884, + "moths": 14885, + "devastating": 14886, + "laden": 14887, + "disturbing": 14888, + "locking": 14889, + "##cture": 14890, + "gal": 14891, + "fearing": 14892, + "accreditation": 14893, + "flavor": 14894, + "aide": 14895, + "1870s": 14896, + "mountainous": 14897, + "##baum": 14898, + "melt": 14899, + "##ures": 14900, + "motel": 14901, + "texture": 14902, + "servers": 14903, + "soda": 14904, + "##mb": 14905, + "herd": 14906, + "##nium": 14907, + "erect": 14908, + "puzzled": 14909, + "hum": 14910, + "peggy": 14911, + "examinations": 14912, + "gould": 14913, + "testified": 14914, + "geoff": 14915, + "ren": 14916, + "devised": 14917, + "sacks": 14918, + "##law": 14919, + "denial": 14920, + "posters": 14921, + "grunted": 14922, + "cesar": 14923, + "tutor": 14924, + "ec": 14925, + "gerry": 14926, + "offerings": 14927, + "byrne": 14928, + "falcons": 14929, + "combinations": 14930, + "ct": 14931, + "incoming": 14932, + "pardon": 14933, + "rocking": 14934, + "26th": 14935, + "avengers": 14936, + "flared": 14937, + "mankind": 14938, + "seller": 14939, + "uttar": 14940, + "loch": 14941, + "nadia": 14942, + "stroking": 14943, + "exposing": 14944, + "##hd": 14945, + "fertile": 14946, + "ancestral": 14947, + "instituted": 14948, + "##has": 14949, + "noises": 14950, + "prophecy": 14951, + "taxation": 14952, + "eminent": 14953, + "vivid": 14954, + "pol": 14955, + "##bol": 14956, + "dart": 14957, + "indirect": 14958, + "multimedia": 14959, + "notebook": 14960, + "upside": 14961, + "displaying": 14962, + "adrenaline": 14963, + "referenced": 14964, + "geometric": 14965, + "##iving": 14966, + "progression": 14967, + "##ddy": 14968, + "blunt": 14969, + "announce": 14970, + "##far": 14971, + "implementing": 14972, + "##lav": 14973, + "aggression": 14974, + "liaison": 14975, + "cooler": 14976, + "cares": 14977, + "headache": 14978, + "plantations": 14979, + "gorge": 14980, + "dots": 14981, + "impulse": 14982, + "thickness": 14983, + "ashamed": 14984, + "averaging": 14985, + "kathy": 14986, + "obligation": 14987, + "precursor": 14988, + "137": 14989, + "fowler": 14990, + "symmetry": 14991, + "thee": 14992, + "225": 14993, + "hears": 14994, + "##rai": 14995, + "undergoing": 14996, + "ads": 14997, + "butcher": 14998, + "bowler": 14999, + "##lip": 15000, + "cigarettes": 15001, + "subscription": 15002, + "goodness": 15003, + "##ically": 15004, + "browne": 15005, + "##hos": 15006, + "##tech": 15007, + "kyoto": 15008, + "donor": 15009, + "##erty": 15010, + "damaging": 15011, + "friction": 15012, + "drifting": 15013, + "expeditions": 15014, + "hardened": 15015, + "prostitution": 15016, + "152": 15017, + "fauna": 15018, + "blankets": 15019, + "claw": 15020, + "tossing": 15021, + "snarled": 15022, + "butterflies": 15023, + "recruits": 15024, + "investigative": 15025, + "coated": 15026, + "healed": 15027, + "138": 15028, + "communal": 15029, + "hai": 15030, + "xiii": 15031, + "academics": 15032, + "boone": 15033, + "psychologist": 15034, + "restless": 15035, + "lahore": 15036, + "stephens": 15037, + "mba": 15038, + "brendan": 15039, + "foreigners": 15040, + "printer": 15041, + "##pc": 15042, + "ached": 15043, + "explode": 15044, + "27th": 15045, + "deed": 15046, + "scratched": 15047, + "dared": 15048, + "##pole": 15049, + "cardiac": 15050, + "1780": 15051, + "okinawa": 15052, + "proto": 15053, + "commando": 15054, + "compelled": 15055, + "oddly": 15056, + "electrons": 15057, + "##base": 15058, + "replica": 15059, + "thanksgiving": 15060, + "##rist": 15061, + "sheila": 15062, + "deliberate": 15063, + "stafford": 15064, + "tidal": 15065, + "representations": 15066, + "hercules": 15067, + "ou": 15068, + "##path": 15069, + "##iated": 15070, + "kidnapping": 15071, + "lenses": 15072, + "##tling": 15073, + "deficit": 15074, + "samoa": 15075, + "mouths": 15076, + "consuming": 15077, + "computational": 15078, + "maze": 15079, + "granting": 15080, + "smirk": 15081, + "razor": 15082, + "fixture": 15083, + "ideals": 15084, + "inviting": 15085, + "aiden": 15086, + "nominal": 15087, + "##vs": 15088, + "issuing": 15089, + "julio": 15090, + "pitt": 15091, + "ramsey": 15092, + "docks": 15093, + "##oss": 15094, + "exhaust": 15095, + "##owed": 15096, + "bavarian": 15097, + "draped": 15098, + "anterior": 15099, + "mating": 15100, + "ethiopian": 15101, + "explores": 15102, + "noticing": 15103, + "##nton": 15104, + "discarded": 15105, + "convenience": 15106, + "hoffman": 15107, + "endowment": 15108, + "beasts": 15109, + "cartridge": 15110, + "mormon": 15111, + "paternal": 15112, + "probe": 15113, + "sleeves": 15114, + "interfere": 15115, + "lump": 15116, + "deadline": 15117, + "##rail": 15118, + "jenks": 15119, + "bulldogs": 15120, + "scrap": 15121, + "alternating": 15122, + "justified": 15123, + "reproductive": 15124, + "nam": 15125, + "seize": 15126, + "descending": 15127, + "secretariat": 15128, + "kirby": 15129, + "coupe": 15130, + "grouped": 15131, + "smash": 15132, + "panther": 15133, + "sedan": 15134, + "tapping": 15135, + "##18": 15136, + "lola": 15137, + "cheer": 15138, + "germanic": 15139, + "unfortunate": 15140, + "##eter": 15141, + "unrelated": 15142, + "##fan": 15143, + "subordinate": 15144, + "##sdale": 15145, + "suzanne": 15146, + "advertisement": 15147, + "##ility": 15148, + "horsepower": 15149, + "##lda": 15150, + "cautiously": 15151, + "discourse": 15152, + "luigi": 15153, + "##mans": 15154, + "##fields": 15155, + "noun": 15156, + "prevalent": 15157, + "mao": 15158, + "schneider": 15159, + "everett": 15160, + "surround": 15161, + "governorate": 15162, + "kira": 15163, + "##avia": 15164, + "westward": 15165, + "##take": 15166, + "misty": 15167, + "rails": 15168, + "sustainability": 15169, + "134": 15170, + "unused": 15171, + "##rating": 15172, + "packs": 15173, + "toast": 15174, + "unwilling": 15175, + "regulate": 15176, + "thy": 15177, + "suffrage": 15178, + "nile": 15179, + "awe": 15180, + "assam": 15181, + "definitions": 15182, + "travelers": 15183, + "affordable": 15184, + "##rb": 15185, + "conferred": 15186, + "sells": 15187, + "undefeated": 15188, + "beneficial": 15189, + "torso": 15190, + "basal": 15191, + "repeating": 15192, + "remixes": 15193, + "##pass": 15194, + "bahrain": 15195, + "cables": 15196, + "fang": 15197, + "##itated": 15198, + "excavated": 15199, + "numbering": 15200, + "statutory": 15201, + "##rey": 15202, + "deluxe": 15203, + "##lian": 15204, + "forested": 15205, + "ramirez": 15206, + "derbyshire": 15207, + "zeus": 15208, + "slamming": 15209, + "transfers": 15210, + "astronomer": 15211, + "banana": 15212, + "lottery": 15213, + "berg": 15214, + "histories": 15215, + "bamboo": 15216, + "##uchi": 15217, + "resurrection": 15218, + "posterior": 15219, + "bowls": 15220, + "vaguely": 15221, + "##thi": 15222, + "thou": 15223, + "preserving": 15224, + "tensed": 15225, + "offence": 15226, + "##inas": 15227, + "meyrick": 15228, + "callum": 15229, + "ridden": 15230, + "watt": 15231, + "langdon": 15232, + "tying": 15233, + "lowland": 15234, + "snorted": 15235, + "daring": 15236, + "truman": 15237, + "##hale": 15238, + "##girl": 15239, + "aura": 15240, + "overly": 15241, + "filing": 15242, + "weighing": 15243, + "goa": 15244, + "infections": 15245, + "philanthropist": 15246, + "saunders": 15247, + "eponymous": 15248, + "##owski": 15249, + "latitude": 15250, + "perspectives": 15251, + "reviewing": 15252, + "mets": 15253, + "commandant": 15254, + "radial": 15255, + "##kha": 15256, + "flashlight": 15257, + "reliability": 15258, + "koch": 15259, + "vowels": 15260, + "amazed": 15261, + "ada": 15262, + "elaine": 15263, + "supper": 15264, + "##rth": 15265, + "##encies": 15266, + "predator": 15267, + "debated": 15268, + "soviets": 15269, + "cola": 15270, + "##boards": 15271, + "##nah": 15272, + "compartment": 15273, + "crooked": 15274, + "arbitrary": 15275, + "fourteenth": 15276, + "##ctive": 15277, + "havana": 15278, + "majors": 15279, + "steelers": 15280, + "clips": 15281, + "profitable": 15282, + "ambush": 15283, + "exited": 15284, + "packers": 15285, + "##tile": 15286, + "nude": 15287, + "cracks": 15288, + "fungi": 15289, + "##е": 15290, + "limb": 15291, + "trousers": 15292, + "josie": 15293, + "shelby": 15294, + "tens": 15295, + "frederic": 15296, + "##ος": 15297, + "definite": 15298, + "smoothly": 15299, + "constellation": 15300, + "insult": 15301, + "baton": 15302, + "discs": 15303, + "lingering": 15304, + "##nco": 15305, + "conclusions": 15306, + "lent": 15307, + "staging": 15308, + "becker": 15309, + "grandpa": 15310, + "shaky": 15311, + "##tron": 15312, + "einstein": 15313, + "obstacles": 15314, + "sk": 15315, + "adverse": 15316, + "elle": 15317, + "economically": 15318, + "##moto": 15319, + "mccartney": 15320, + "thor": 15321, + "dismissal": 15322, + "motions": 15323, + "readings": 15324, + "nostrils": 15325, + "treatise": 15326, + "##pace": 15327, + "squeezing": 15328, + "evidently": 15329, + "prolonged": 15330, + "1783": 15331, + "venezuelan": 15332, + "je": 15333, + "marguerite": 15334, + "beirut": 15335, + "takeover": 15336, + "shareholders": 15337, + "##vent": 15338, + "denise": 15339, + "digit": 15340, + "airplay": 15341, + "norse": 15342, + "##bbling": 15343, + "imaginary": 15344, + "pills": 15345, + "hubert": 15346, + "blaze": 15347, + "vacated": 15348, + "eliminating": 15349, + "##ello": 15350, + "vine": 15351, + "mansfield": 15352, + "##tty": 15353, + "retrospective": 15354, + "barrow": 15355, + "borne": 15356, + "clutch": 15357, + "bail": 15358, + "forensic": 15359, + "weaving": 15360, + "##nett": 15361, + "##witz": 15362, + "desktop": 15363, + "citadel": 15364, + "promotions": 15365, + "worrying": 15366, + "dorset": 15367, + "ieee": 15368, + "subdivided": 15369, + "##iating": 15370, + "manned": 15371, + "expeditionary": 15372, + "pickup": 15373, + "synod": 15374, + "chuckle": 15375, + "185": 15376, + "barney": 15377, + "##rz": 15378, + "##ffin": 15379, + "functionality": 15380, + "karachi": 15381, + "litigation": 15382, + "meanings": 15383, + "uc": 15384, + "lick": 15385, + "turbo": 15386, + "anders": 15387, + "##ffed": 15388, + "execute": 15389, + "curl": 15390, + "oppose": 15391, + "ankles": 15392, + "typhoon": 15393, + "##د": 15394, + "##ache": 15395, + "##asia": 15396, + "linguistics": 15397, + "compassion": 15398, + "pressures": 15399, + "grazing": 15400, + "perfection": 15401, + "##iting": 15402, + "immunity": 15403, + "monopoly": 15404, + "muddy": 15405, + "backgrounds": 15406, + "136": 15407, + "namibia": 15408, + "francesca": 15409, + "monitors": 15410, + "attracting": 15411, + "stunt": 15412, + "tuition": 15413, + "##ии": 15414, + "vegetable": 15415, + "##mates": 15416, + "##quent": 15417, + "mgm": 15418, + "jen": 15419, + "complexes": 15420, + "forts": 15421, + "##ond": 15422, + "cellar": 15423, + "bites": 15424, + "seventeenth": 15425, + "royals": 15426, + "flemish": 15427, + "failures": 15428, + "mast": 15429, + "charities": 15430, + "##cular": 15431, + "peruvian": 15432, + "capitals": 15433, + "macmillan": 15434, + "ipswich": 15435, + "outward": 15436, + "frigate": 15437, + "postgraduate": 15438, + "folds": 15439, + "employing": 15440, + "##ouse": 15441, + "concurrently": 15442, + "fiery": 15443, + "##tai": 15444, + "contingent": 15445, + "nightmares": 15446, + "monumental": 15447, + "nicaragua": 15448, + "##kowski": 15449, + "lizard": 15450, + "mal": 15451, + "fielding": 15452, + "gig": 15453, + "reject": 15454, + "##pad": 15455, + "harding": 15456, + "##ipe": 15457, + "coastline": 15458, + "##cin": 15459, + "##nos": 15460, + "beethoven": 15461, + "humphrey": 15462, + "innovations": 15463, + "##tam": 15464, + "##nge": 15465, + "norris": 15466, + "doris": 15467, + "solicitor": 15468, + "huang": 15469, + "obey": 15470, + "141": 15471, + "##lc": 15472, + "niagara": 15473, + "##tton": 15474, + "shelves": 15475, + "aug": 15476, + "bourbon": 15477, + "curry": 15478, + "nightclub": 15479, + "specifications": 15480, + "hilton": 15481, + "##ndo": 15482, + "centennial": 15483, + "dispersed": 15484, + "worm": 15485, + "neglected": 15486, + "briggs": 15487, + "sm": 15488, + "font": 15489, + "kuala": 15490, + "uneasy": 15491, + "plc": 15492, + "##nstein": 15493, + "##bound": 15494, + "##aking": 15495, + "##burgh": 15496, + "awaiting": 15497, + "pronunciation": 15498, + "##bbed": 15499, + "##quest": 15500, + "eh": 15501, + "optimal": 15502, + "zhu": 15503, + "raped": 15504, + "greens": 15505, + "presided": 15506, + "brenda": 15507, + "worries": 15508, + "##life": 15509, + "venetian": 15510, + "marxist": 15511, + "turnout": 15512, + "##lius": 15513, + "refined": 15514, + "braced": 15515, + "sins": 15516, + "grasped": 15517, + "sunderland": 15518, + "nickel": 15519, + "speculated": 15520, + "lowell": 15521, + "cyrillic": 15522, + "communism": 15523, + "fundraising": 15524, + "resembling": 15525, + "colonists": 15526, + "mutant": 15527, + "freddie": 15528, + "usc": 15529, + "##mos": 15530, + "gratitude": 15531, + "##run": 15532, + "mural": 15533, + "##lous": 15534, + "chemist": 15535, + "wi": 15536, + "reminds": 15537, + "28th": 15538, + "steals": 15539, + "tess": 15540, + "pietro": 15541, + "##ingen": 15542, + "promoter": 15543, + "ri": 15544, + "microphone": 15545, + "honoured": 15546, + "rai": 15547, + "sant": 15548, + "##qui": 15549, + "feather": 15550, + "##nson": 15551, + "burlington": 15552, + "kurdish": 15553, + "terrorists": 15554, + "deborah": 15555, + "sickness": 15556, + "##wed": 15557, + "##eet": 15558, + "hazard": 15559, + "irritated": 15560, + "desperation": 15561, + "veil": 15562, + "clarity": 15563, + "##rik": 15564, + "jewels": 15565, + "xv": 15566, + "##gged": 15567, + "##ows": 15568, + "##cup": 15569, + "berkshire": 15570, + "unfair": 15571, + "mysteries": 15572, + "orchid": 15573, + "winced": 15574, + "exhaustion": 15575, + "renovations": 15576, + "stranded": 15577, + "obe": 15578, + "infinity": 15579, + "##nies": 15580, + "adapt": 15581, + "redevelopment": 15582, + "thanked": 15583, + "registry": 15584, + "olga": 15585, + "domingo": 15586, + "noir": 15587, + "tudor": 15588, + "ole": 15589, + "##atus": 15590, + "commenting": 15591, + "behaviors": 15592, + "##ais": 15593, + "crisp": 15594, + "pauline": 15595, + "probable": 15596, + "stirling": 15597, + "wigan": 15598, + "##bian": 15599, + "paralympics": 15600, + "panting": 15601, + "surpassed": 15602, + "##rew": 15603, + "luca": 15604, + "barred": 15605, + "pony": 15606, + "famed": 15607, + "##sters": 15608, + "cassandra": 15609, + "waiter": 15610, + "carolyn": 15611, + "exported": 15612, + "##orted": 15613, + "andres": 15614, + "destructive": 15615, + "deeds": 15616, + "jonah": 15617, + "castles": 15618, + "vacancy": 15619, + "suv": 15620, + "##glass": 15621, + "1788": 15622, + "orchard": 15623, + "yep": 15624, + "famine": 15625, + "belarusian": 15626, + "sprang": 15627, + "##forth": 15628, + "skinny": 15629, + "##mis": 15630, + "administrators": 15631, + "rotterdam": 15632, + "zambia": 15633, + "zhao": 15634, + "boiler": 15635, + "discoveries": 15636, + "##ride": 15637, + "##physics": 15638, + "lucius": 15639, + "disappointing": 15640, + "outreach": 15641, + "spoon": 15642, + "##frame": 15643, + "qualifications": 15644, + "unanimously": 15645, + "enjoys": 15646, + "regency": 15647, + "##iidae": 15648, + "stade": 15649, + "realism": 15650, + "veterinary": 15651, + "rodgers": 15652, + "dump": 15653, + "alain": 15654, + "chestnut": 15655, + "castile": 15656, + "censorship": 15657, + "rumble": 15658, + "gibbs": 15659, + "##itor": 15660, + "communion": 15661, + "reggae": 15662, + "inactivated": 15663, + "logs": 15664, + "loads": 15665, + "##houses": 15666, + "homosexual": 15667, + "##iano": 15668, + "ale": 15669, + "informs": 15670, + "##cas": 15671, + "phrases": 15672, + "plaster": 15673, + "linebacker": 15674, + "ambrose": 15675, + "kaiser": 15676, + "fascinated": 15677, + "850": 15678, + "limerick": 15679, + "recruitment": 15680, + "forge": 15681, + "mastered": 15682, + "##nding": 15683, + "leinster": 15684, + "rooted": 15685, + "threaten": 15686, + "##strom": 15687, + "borneo": 15688, + "##hes": 15689, + "suggestions": 15690, + "scholarships": 15691, + "propeller": 15692, + "documentaries": 15693, + "patronage": 15694, + "coats": 15695, + "constructing": 15696, + "invest": 15697, + "neurons": 15698, + "comet": 15699, + "entirety": 15700, + "shouts": 15701, + "identities": 15702, + "annoying": 15703, + "unchanged": 15704, + "wary": 15705, + "##antly": 15706, + "##ogy": 15707, + "neat": 15708, + "oversight": 15709, + "##kos": 15710, + "phillies": 15711, + "replay": 15712, + "constance": 15713, + "##kka": 15714, + "incarnation": 15715, + "humble": 15716, + "skies": 15717, + "minus": 15718, + "##acy": 15719, + "smithsonian": 15720, + "##chel": 15721, + "guerrilla": 15722, + "jar": 15723, + "cadets": 15724, + "##plate": 15725, + "surplus": 15726, + "audit": 15727, + "##aru": 15728, + "cracking": 15729, + "joanna": 15730, + "louisa": 15731, + "pacing": 15732, + "##lights": 15733, + "intentionally": 15734, + "##iri": 15735, + "diner": 15736, + "nwa": 15737, + "imprint": 15738, + "australians": 15739, + "tong": 15740, + "unprecedented": 15741, + "bunker": 15742, + "naive": 15743, + "specialists": 15744, + "ark": 15745, + "nichols": 15746, + "railing": 15747, + "leaked": 15748, + "pedal": 15749, + "##uka": 15750, + "shrub": 15751, + "longing": 15752, + "roofs": 15753, + "v8": 15754, + "captains": 15755, + "neural": 15756, + "tuned": 15757, + "##ntal": 15758, + "##jet": 15759, + "emission": 15760, + "medina": 15761, + "frantic": 15762, + "codex": 15763, + "definitive": 15764, + "sid": 15765, + "abolition": 15766, + "intensified": 15767, + "stocks": 15768, + "enrique": 15769, + "sustain": 15770, + "genoa": 15771, + "oxide": 15772, + "##written": 15773, + "clues": 15774, + "cha": 15775, + "##gers": 15776, + "tributaries": 15777, + "fragment": 15778, + "venom": 15779, + "##rity": 15780, + "##ente": 15781, + "##sca": 15782, + "muffled": 15783, + "vain": 15784, + "sire": 15785, + "laos": 15786, + "##ingly": 15787, + "##hana": 15788, + "hastily": 15789, + "snapping": 15790, + "surfaced": 15791, + "sentiment": 15792, + "motive": 15793, + "##oft": 15794, + "contests": 15795, + "approximate": 15796, + "mesa": 15797, + "luckily": 15798, + "dinosaur": 15799, + "exchanges": 15800, + "propelled": 15801, + "accord": 15802, + "bourne": 15803, + "relieve": 15804, + "tow": 15805, + "masks": 15806, + "offended": 15807, + "##ues": 15808, + "cynthia": 15809, + "##mmer": 15810, + "rains": 15811, + "bartender": 15812, + "zinc": 15813, + "reviewers": 15814, + "lois": 15815, + "##sai": 15816, + "legged": 15817, + "arrogant": 15818, + "rafe": 15819, + "rosie": 15820, + "comprise": 15821, + "handicap": 15822, + "blockade": 15823, + "inlet": 15824, + "lagoon": 15825, + "copied": 15826, + "drilling": 15827, + "shelley": 15828, + "petals": 15829, + "##inian": 15830, + "mandarin": 15831, + "obsolete": 15832, + "##inated": 15833, + "onward": 15834, + "arguably": 15835, + "productivity": 15836, + "cindy": 15837, + "praising": 15838, + "seldom": 15839, + "busch": 15840, + "discusses": 15841, + "raleigh": 15842, + "shortage": 15843, + "ranged": 15844, + "stanton": 15845, + "encouragement": 15846, + "firstly": 15847, + "conceded": 15848, + "overs": 15849, + "temporal": 15850, + "##uke": 15851, + "cbe": 15852, + "##bos": 15853, + "woo": 15854, + "certainty": 15855, + "pumps": 15856, + "##pton": 15857, + "stalked": 15858, + "##uli": 15859, + "lizzie": 15860, + "periodic": 15861, + "thieves": 15862, + "weaker": 15863, + "##night": 15864, + "gases": 15865, + "shoving": 15866, + "chooses": 15867, + "wc": 15868, + "##chemical": 15869, + "prompting": 15870, + "weights": 15871, + "##kill": 15872, + "robust": 15873, + "flanked": 15874, + "sticky": 15875, + "hu": 15876, + "tuberculosis": 15877, + "##eb": 15878, + "##eal": 15879, + "christchurch": 15880, + "resembled": 15881, + "wallet": 15882, + "reese": 15883, + "inappropriate": 15884, + "pictured": 15885, + "distract": 15886, + "fixing": 15887, + "fiddle": 15888, + "giggled": 15889, + "burger": 15890, + "heirs": 15891, + "hairy": 15892, + "mechanic": 15893, + "torque": 15894, + "apache": 15895, + "obsessed": 15896, + "chiefly": 15897, + "cheng": 15898, + "logging": 15899, + "##tag": 15900, + "extracted": 15901, + "meaningful": 15902, + "numb": 15903, + "##vsky": 15904, + "gloucestershire": 15905, + "reminding": 15906, + "##bay": 15907, + "unite": 15908, + "##lit": 15909, + "breeds": 15910, + "diminished": 15911, + "clown": 15912, + "glove": 15913, + "1860s": 15914, + "##ن": 15915, + "##ug": 15916, + "archibald": 15917, + "focal": 15918, + "freelance": 15919, + "sliced": 15920, + "depiction": 15921, + "##yk": 15922, + "organism": 15923, + "switches": 15924, + "sights": 15925, + "stray": 15926, + "crawling": 15927, + "##ril": 15928, + "lever": 15929, + "leningrad": 15930, + "interpretations": 15931, + "loops": 15932, + "anytime": 15933, + "reel": 15934, + "alicia": 15935, + "delighted": 15936, + "##ech": 15937, + "inhaled": 15938, + "xiv": 15939, + "suitcase": 15940, + "bernie": 15941, + "vega": 15942, + "licenses": 15943, + "northampton": 15944, + "exclusion": 15945, + "induction": 15946, + "monasteries": 15947, + "racecourse": 15948, + "homosexuality": 15949, + "##right": 15950, + "##sfield": 15951, + "##rky": 15952, + "dimitri": 15953, + "michele": 15954, + "alternatives": 15955, + "ions": 15956, + "commentators": 15957, + "genuinely": 15958, + "objected": 15959, + "pork": 15960, + "hospitality": 15961, + "fencing": 15962, + "stephan": 15963, + "warships": 15964, + "peripheral": 15965, + "wit": 15966, + "drunken": 15967, + "wrinkled": 15968, + "quentin": 15969, + "spends": 15970, + "departing": 15971, + "chung": 15972, + "numerical": 15973, + "spokesperson": 15974, + "##zone": 15975, + "johannesburg": 15976, + "caliber": 15977, + "killers": 15978, + "##udge": 15979, + "assumes": 15980, + "neatly": 15981, + "demographic": 15982, + "abigail": 15983, + "bloc": 15984, + "##vel": 15985, + "mounting": 15986, + "##lain": 15987, + "bentley": 15988, + "slightest": 15989, + "xu": 15990, + "recipients": 15991, + "##jk": 15992, + "merlin": 15993, + "##writer": 15994, + "seniors": 15995, + "prisons": 15996, + "blinking": 15997, + "hindwings": 15998, + "flickered": 15999, + "kappa": 16000, + "##hel": 16001, + "80s": 16002, + "strengthening": 16003, + "appealing": 16004, + "brewing": 16005, + "gypsy": 16006, + "mali": 16007, + "lashes": 16008, + "hulk": 16009, + "unpleasant": 16010, + "harassment": 16011, + "bio": 16012, + "treaties": 16013, + "predict": 16014, + "instrumentation": 16015, + "pulp": 16016, + "troupe": 16017, + "boiling": 16018, + "mantle": 16019, + "##ffe": 16020, + "ins": 16021, + "##vn": 16022, + "dividing": 16023, + "handles": 16024, + "verbs": 16025, + "##onal": 16026, + "coconut": 16027, + "senegal": 16028, + "340": 16029, + "thorough": 16030, + "gum": 16031, + "momentarily": 16032, + "##sto": 16033, + "cocaine": 16034, + "panicked": 16035, + "destined": 16036, + "##turing": 16037, + "teatro": 16038, + "denying": 16039, + "weary": 16040, + "captained": 16041, + "mans": 16042, + "##hawks": 16043, + "##code": 16044, + "wakefield": 16045, + "bollywood": 16046, + "thankfully": 16047, + "##16": 16048, + "cyril": 16049, + "##wu": 16050, + "amendments": 16051, + "##bahn": 16052, + "consultation": 16053, + "stud": 16054, + "reflections": 16055, + "kindness": 16056, + "1787": 16057, + "internally": 16058, + "##ovo": 16059, + "tex": 16060, + "mosaic": 16061, + "distribute": 16062, + "paddy": 16063, + "seeming": 16064, + "143": 16065, + "##hic": 16066, + "piers": 16067, + "##15": 16068, + "##mura": 16069, + "##verse": 16070, + "popularly": 16071, + "winger": 16072, + "kang": 16073, + "sentinel": 16074, + "mccoy": 16075, + "##anza": 16076, + "covenant": 16077, + "##bag": 16078, + "verge": 16079, + "fireworks": 16080, + "suppress": 16081, + "thrilled": 16082, + "dominate": 16083, + "##jar": 16084, + "swansea": 16085, + "##60": 16086, + "142": 16087, + "reconciliation": 16088, + "##ndi": 16089, + "stiffened": 16090, + "cue": 16091, + "dorian": 16092, + "##uf": 16093, + "damascus": 16094, + "amor": 16095, + "ida": 16096, + "foremost": 16097, + "##aga": 16098, + "porsche": 16099, + "unseen": 16100, + "dir": 16101, + "##had": 16102, + "##azi": 16103, + "stony": 16104, + "lexi": 16105, + "melodies": 16106, + "##nko": 16107, + "angular": 16108, + "integer": 16109, + "podcast": 16110, + "ants": 16111, + "inherent": 16112, + "jaws": 16113, + "justify": 16114, + "persona": 16115, + "##olved": 16116, + "josephine": 16117, + "##nr": 16118, + "##ressed": 16119, + "customary": 16120, + "flashes": 16121, + "gala": 16122, + "cyrus": 16123, + "glaring": 16124, + "backyard": 16125, + "ariel": 16126, + "physiology": 16127, + "greenland": 16128, + "html": 16129, + "stir": 16130, + "avon": 16131, + "atletico": 16132, + "finch": 16133, + "methodology": 16134, + "ked": 16135, + "##lent": 16136, + "mas": 16137, + "catholicism": 16138, + "townsend": 16139, + "branding": 16140, + "quincy": 16141, + "fits": 16142, + "containers": 16143, + "1777": 16144, + "ashore": 16145, + "aragon": 16146, + "##19": 16147, + "forearm": 16148, + "poisoning": 16149, + "##sd": 16150, + "adopting": 16151, + "conquer": 16152, + "grinding": 16153, + "amnesty": 16154, + "keller": 16155, + "finances": 16156, + "evaluate": 16157, + "forged": 16158, + "lankan": 16159, + "instincts": 16160, + "##uto": 16161, + "guam": 16162, + "bosnian": 16163, + "photographed": 16164, + "workplace": 16165, + "desirable": 16166, + "protector": 16167, + "##dog": 16168, + "allocation": 16169, + "intently": 16170, + "encourages": 16171, + "willy": 16172, + "##sten": 16173, + "bodyguard": 16174, + "electro": 16175, + "brighter": 16176, + "##ν": 16177, + "bihar": 16178, + "##chev": 16179, + "lasts": 16180, + "opener": 16181, + "amphibious": 16182, + "sal": 16183, + "verde": 16184, + "arte": 16185, + "##cope": 16186, + "captivity": 16187, + "vocabulary": 16188, + "yields": 16189, + "##tted": 16190, + "agreeing": 16191, + "desmond": 16192, + "pioneered": 16193, + "##chus": 16194, + "strap": 16195, + "campaigned": 16196, + "railroads": 16197, + "##ович": 16198, + "emblem": 16199, + "##dre": 16200, + "stormed": 16201, + "501": 16202, + "##ulous": 16203, + "marijuana": 16204, + "northumberland": 16205, + "##gn": 16206, + "##nath": 16207, + "bowen": 16208, + "landmarks": 16209, + "beaumont": 16210, + "##qua": 16211, + "danube": 16212, + "##bler": 16213, + "attorneys": 16214, + "th": 16215, + "ge": 16216, + "flyers": 16217, + "critique": 16218, + "villains": 16219, + "cass": 16220, + "mutation": 16221, + "acc": 16222, + "##0s": 16223, + "colombo": 16224, + "mckay": 16225, + "motif": 16226, + "sampling": 16227, + "concluding": 16228, + "syndicate": 16229, + "##rell": 16230, + "neon": 16231, + "stables": 16232, + "ds": 16233, + "warnings": 16234, + "clint": 16235, + "mourning": 16236, + "wilkinson": 16237, + "##tated": 16238, + "merrill": 16239, + "leopard": 16240, + "evenings": 16241, + "exhaled": 16242, + "emil": 16243, + "sonia": 16244, + "ezra": 16245, + "discrete": 16246, + "stove": 16247, + "farrell": 16248, + "fifteenth": 16249, + "prescribed": 16250, + "superhero": 16251, + "##rier": 16252, + "worms": 16253, + "helm": 16254, + "wren": 16255, + "##duction": 16256, + "##hc": 16257, + "expo": 16258, + "##rator": 16259, + "hq": 16260, + "unfamiliar": 16261, + "antony": 16262, + "prevents": 16263, + "acceleration": 16264, + "fiercely": 16265, + "mari": 16266, + "painfully": 16267, + "calculations": 16268, + "cheaper": 16269, + "ign": 16270, + "clifton": 16271, + "irvine": 16272, + "davenport": 16273, + "mozambique": 16274, + "##np": 16275, + "pierced": 16276, + "##evich": 16277, + "wonders": 16278, + "##wig": 16279, + "##cate": 16280, + "##iling": 16281, + "crusade": 16282, + "ware": 16283, + "##uel": 16284, + "enzymes": 16285, + "reasonably": 16286, + "mls": 16287, + "##coe": 16288, + "mater": 16289, + "ambition": 16290, + "bunny": 16291, + "eliot": 16292, + "kernel": 16293, + "##fin": 16294, + "asphalt": 16295, + "headmaster": 16296, + "torah": 16297, + "aden": 16298, + "lush": 16299, + "pins": 16300, + "waived": 16301, + "##care": 16302, + "##yas": 16303, + "joao": 16304, + "substrate": 16305, + "enforce": 16306, + "##grad": 16307, + "##ules": 16308, + "alvarez": 16309, + "selections": 16310, + "epidemic": 16311, + "tempted": 16312, + "##bit": 16313, + "bremen": 16314, + "translates": 16315, + "ensured": 16316, + "waterfront": 16317, + "29th": 16318, + "forrest": 16319, + "manny": 16320, + "malone": 16321, + "kramer": 16322, + "reigning": 16323, + "cookies": 16324, + "simpler": 16325, + "absorption": 16326, + "205": 16327, + "engraved": 16328, + "##ffy": 16329, + "evaluated": 16330, + "1778": 16331, + "haze": 16332, + "146": 16333, + "comforting": 16334, + "crossover": 16335, + "##abe": 16336, + "thorn": 16337, + "##rift": 16338, + "##imo": 16339, + "##pop": 16340, + "suppression": 16341, + "fatigue": 16342, + "cutter": 16343, + "##tr": 16344, + "201": 16345, + "wurttemberg": 16346, + "##orf": 16347, + "enforced": 16348, + "hovering": 16349, + "proprietary": 16350, + "gb": 16351, + "samurai": 16352, + "syllable": 16353, + "ascent": 16354, + "lacey": 16355, + "tick": 16356, + "lars": 16357, + "tractor": 16358, + "merchandise": 16359, + "rep": 16360, + "bouncing": 16361, + "defendants": 16362, + "##yre": 16363, + "huntington": 16364, + "##ground": 16365, + "##oko": 16366, + "standardized": 16367, + "##hor": 16368, + "##hima": 16369, + "assassinated": 16370, + "nu": 16371, + "predecessors": 16372, + "rainy": 16373, + "liar": 16374, + "assurance": 16375, + "lyrical": 16376, + "##uga": 16377, + "secondly": 16378, + "flattened": 16379, + "ios": 16380, + "parameter": 16381, + "undercover": 16382, + "##mity": 16383, + "bordeaux": 16384, + "punish": 16385, + "ridges": 16386, + "markers": 16387, + "exodus": 16388, + "inactive": 16389, + "hesitate": 16390, + "debbie": 16391, + "nyc": 16392, + "pledge": 16393, + "savoy": 16394, + "nagar": 16395, + "offset": 16396, + "organist": 16397, + "##tium": 16398, + "hesse": 16399, + "marin": 16400, + "converting": 16401, + "##iver": 16402, + "diagram": 16403, + "propulsion": 16404, + "pu": 16405, + "validity": 16406, + "reverted": 16407, + "supportive": 16408, + "##dc": 16409, + "ministries": 16410, + "clans": 16411, + "responds": 16412, + "proclamation": 16413, + "##inae": 16414, + "##ø": 16415, + "##rea": 16416, + "ein": 16417, + "pleading": 16418, + "patriot": 16419, + "sf": 16420, + "birch": 16421, + "islanders": 16422, + "strauss": 16423, + "hates": 16424, + "##dh": 16425, + "brandenburg": 16426, + "concession": 16427, + "rd": 16428, + "##ob": 16429, + "1900s": 16430, + "killings": 16431, + "textbook": 16432, + "antiquity": 16433, + "cinematography": 16434, + "wharf": 16435, + "embarrassing": 16436, + "setup": 16437, + "creed": 16438, + "farmland": 16439, + "inequality": 16440, + "centred": 16441, + "signatures": 16442, + "fallon": 16443, + "370": 16444, + "##ingham": 16445, + "##uts": 16446, + "ceylon": 16447, + "gazing": 16448, + "directive": 16449, + "laurie": 16450, + "##tern": 16451, + "globally": 16452, + "##uated": 16453, + "##dent": 16454, + "allah": 16455, + "excavation": 16456, + "threads": 16457, + "##cross": 16458, + "148": 16459, + "frantically": 16460, + "icc": 16461, + "utilize": 16462, + "determines": 16463, + "respiratory": 16464, + "thoughtful": 16465, + "receptions": 16466, + "##dicate": 16467, + "merging": 16468, + "chandra": 16469, + "seine": 16470, + "147": 16471, + "builders": 16472, + "builds": 16473, + "diagnostic": 16474, + "dev": 16475, + "visibility": 16476, + "goddamn": 16477, + "analyses": 16478, + "dhaka": 16479, + "cho": 16480, + "proves": 16481, + "chancel": 16482, + "concurrent": 16483, + "curiously": 16484, + "canadians": 16485, + "pumped": 16486, + "restoring": 16487, + "1850s": 16488, + "turtles": 16489, + "jaguar": 16490, + "sinister": 16491, + "spinal": 16492, + "traction": 16493, + "declan": 16494, + "vows": 16495, + "1784": 16496, + "glowed": 16497, + "capitalism": 16498, + "swirling": 16499, + "install": 16500, + "universidad": 16501, + "##lder": 16502, + "##oat": 16503, + "soloist": 16504, + "##genic": 16505, + "##oor": 16506, + "coincidence": 16507, + "beginnings": 16508, + "nissan": 16509, + "dip": 16510, + "resorts": 16511, + "caucasus": 16512, + "combustion": 16513, + "infectious": 16514, + "##eno": 16515, + "pigeon": 16516, + "serpent": 16517, + "##itating": 16518, + "conclude": 16519, + "masked": 16520, + "salad": 16521, + "jew": 16522, + "##gr": 16523, + "surreal": 16524, + "toni": 16525, + "##wc": 16526, + "harmonica": 16527, + "151": 16528, + "##gins": 16529, + "##etic": 16530, + "##coat": 16531, + "fishermen": 16532, + "intending": 16533, + "bravery": 16534, + "##wave": 16535, + "klaus": 16536, + "titan": 16537, + "wembley": 16538, + "taiwanese": 16539, + "ransom": 16540, + "40th": 16541, + "incorrect": 16542, + "hussein": 16543, + "eyelids": 16544, + "jp": 16545, + "cooke": 16546, + "dramas": 16547, + "utilities": 16548, + "##etta": 16549, + "##print": 16550, + "eisenhower": 16551, + "principally": 16552, + "granada": 16553, + "lana": 16554, + "##rak": 16555, + "openings": 16556, + "concord": 16557, + "##bl": 16558, + "bethany": 16559, + "connie": 16560, + "morality": 16561, + "sega": 16562, + "##mons": 16563, + "##nard": 16564, + "earnings": 16565, + "##kara": 16566, + "##cine": 16567, + "wii": 16568, + "communes": 16569, + "##rel": 16570, + "coma": 16571, + "composing": 16572, + "softened": 16573, + "severed": 16574, + "grapes": 16575, + "##17": 16576, + "nguyen": 16577, + "analyzed": 16578, + "warlord": 16579, + "hubbard": 16580, + "heavenly": 16581, + "behave": 16582, + "slovenian": 16583, + "##hit": 16584, + "##ony": 16585, + "hailed": 16586, + "filmmakers": 16587, + "trance": 16588, + "caldwell": 16589, + "skye": 16590, + "unrest": 16591, + "coward": 16592, + "likelihood": 16593, + "##aging": 16594, + "bern": 16595, + "sci": 16596, + "taliban": 16597, + "honolulu": 16598, + "propose": 16599, + "##wang": 16600, + "1700": 16601, + "browser": 16602, + "imagining": 16603, + "cobra": 16604, + "contributes": 16605, + "dukes": 16606, + "instinctively": 16607, + "conan": 16608, + "violinist": 16609, + "##ores": 16610, + "accessories": 16611, + "gradual": 16612, + "##amp": 16613, + "quotes": 16614, + "sioux": 16615, + "##dating": 16616, + "undertake": 16617, + "intercepted": 16618, + "sparkling": 16619, + "compressed": 16620, + "139": 16621, + "fungus": 16622, + "tombs": 16623, + "haley": 16624, + "imposing": 16625, + "rests": 16626, + "degradation": 16627, + "lincolnshire": 16628, + "retailers": 16629, + "wetlands": 16630, + "tulsa": 16631, + "distributor": 16632, + "dungeon": 16633, + "nun": 16634, + "greenhouse": 16635, + "convey": 16636, + "atlantis": 16637, + "aft": 16638, + "exits": 16639, + "oman": 16640, + "dresser": 16641, + "lyons": 16642, + "##sti": 16643, + "joking": 16644, + "eddy": 16645, + "judgement": 16646, + "omitted": 16647, + "digits": 16648, + "##cts": 16649, + "##game": 16650, + "juniors": 16651, + "##rae": 16652, + "cents": 16653, + "stricken": 16654, + "une": 16655, + "##ngo": 16656, + "wizards": 16657, + "weir": 16658, + "breton": 16659, + "nan": 16660, + "technician": 16661, + "fibers": 16662, + "liking": 16663, + "royalty": 16664, + "##cca": 16665, + "154": 16666, + "persia": 16667, + "terribly": 16668, + "magician": 16669, + "##rable": 16670, + "##unt": 16671, + "vance": 16672, + "cafeteria": 16673, + "booker": 16674, + "camille": 16675, + "warmer": 16676, + "##static": 16677, + "consume": 16678, + "cavern": 16679, + "gaps": 16680, + "compass": 16681, + "contemporaries": 16682, + "foyer": 16683, + "soothing": 16684, + "graveyard": 16685, + "maj": 16686, + "plunged": 16687, + "blush": 16688, + "##wear": 16689, + "cascade": 16690, + "demonstrates": 16691, + "ordinance": 16692, + "##nov": 16693, + "boyle": 16694, + "##lana": 16695, + "rockefeller": 16696, + "shaken": 16697, + "banjo": 16698, + "izzy": 16699, + "##ense": 16700, + "breathless": 16701, + "vines": 16702, + "##32": 16703, + "##eman": 16704, + "alterations": 16705, + "chromosome": 16706, + "dwellings": 16707, + "feudal": 16708, + "mole": 16709, + "153": 16710, + "catalonia": 16711, + "relics": 16712, + "tenant": 16713, + "mandated": 16714, + "##fm": 16715, + "fridge": 16716, + "hats": 16717, + "honesty": 16718, + "patented": 16719, + "raul": 16720, + "heap": 16721, + "cruisers": 16722, + "accusing": 16723, + "enlightenment": 16724, + "infants": 16725, + "wherein": 16726, + "chatham": 16727, + "contractors": 16728, + "zen": 16729, + "affinity": 16730, + "hc": 16731, + "osborne": 16732, + "piston": 16733, + "156": 16734, + "traps": 16735, + "maturity": 16736, + "##rana": 16737, + "lagos": 16738, + "##zal": 16739, + "peering": 16740, + "##nay": 16741, + "attendant": 16742, + "dealers": 16743, + "protocols": 16744, + "subset": 16745, + "prospects": 16746, + "biographical": 16747, + "##cre": 16748, + "artery": 16749, + "##zers": 16750, + "insignia": 16751, + "nuns": 16752, + "endured": 16753, + "##eration": 16754, + "recommend": 16755, + "schwartz": 16756, + "serbs": 16757, + "berger": 16758, + "cromwell": 16759, + "crossroads": 16760, + "##ctor": 16761, + "enduring": 16762, + "clasped": 16763, + "grounded": 16764, + "##bine": 16765, + "marseille": 16766, + "twitched": 16767, + "abel": 16768, + "choke": 16769, + "https": 16770, + "catalyst": 16771, + "moldova": 16772, + "italians": 16773, + "##tist": 16774, + "disastrous": 16775, + "wee": 16776, + "##oured": 16777, + "##nti": 16778, + "wwf": 16779, + "nope": 16780, + "##piration": 16781, + "##asa": 16782, + "expresses": 16783, + "thumbs": 16784, + "167": 16785, + "##nza": 16786, + "coca": 16787, + "1781": 16788, + "cheating": 16789, + "##ption": 16790, + "skipped": 16791, + "sensory": 16792, + "heidelberg": 16793, + "spies": 16794, + "satan": 16795, + "dangers": 16796, + "semifinal": 16797, + "202": 16798, + "bohemia": 16799, + "whitish": 16800, + "confusing": 16801, + "shipbuilding": 16802, + "relies": 16803, + "surgeons": 16804, + "landings": 16805, + "ravi": 16806, + "baku": 16807, + "moor": 16808, + "suffix": 16809, + "alejandro": 16810, + "##yana": 16811, + "litre": 16812, + "upheld": 16813, + "##unk": 16814, + "rajasthan": 16815, + "##rek": 16816, + "coaster": 16817, + "insists": 16818, + "posture": 16819, + "scenarios": 16820, + "etienne": 16821, + "favoured": 16822, + "appoint": 16823, + "transgender": 16824, + "elephants": 16825, + "poked": 16826, + "greenwood": 16827, + "defences": 16828, + "fulfilled": 16829, + "militant": 16830, + "somali": 16831, + "1758": 16832, + "chalk": 16833, + "potent": 16834, + "##ucci": 16835, + "migrants": 16836, + "wink": 16837, + "assistants": 16838, + "nos": 16839, + "restriction": 16840, + "activism": 16841, + "niger": 16842, + "##ario": 16843, + "colon": 16844, + "shaun": 16845, + "##sat": 16846, + "daphne": 16847, + "##erated": 16848, + "swam": 16849, + "congregations": 16850, + "reprise": 16851, + "considerations": 16852, + "magnet": 16853, + "playable": 16854, + "xvi": 16855, + "##р": 16856, + "overthrow": 16857, + "tobias": 16858, + "knob": 16859, + "chavez": 16860, + "coding": 16861, + "##mers": 16862, + "propped": 16863, + "katrina": 16864, + "orient": 16865, + "newcomer": 16866, + "##suke": 16867, + "temperate": 16868, + "##pool": 16869, + "farmhouse": 16870, + "interrogation": 16871, + "##vd": 16872, + "committing": 16873, + "##vert": 16874, + "forthcoming": 16875, + "strawberry": 16876, + "joaquin": 16877, + "macau": 16878, + "ponds": 16879, + "shocking": 16880, + "siberia": 16881, + "##cellular": 16882, + "chant": 16883, + "contributors": 16884, + "##nant": 16885, + "##ologists": 16886, + "sped": 16887, + "absorb": 16888, + "hail": 16889, + "1782": 16890, + "spared": 16891, + "##hore": 16892, + "barbados": 16893, + "karate": 16894, + "opus": 16895, + "originates": 16896, + "saul": 16897, + "##xie": 16898, + "evergreen": 16899, + "leaped": 16900, + "##rock": 16901, + "correlation": 16902, + "exaggerated": 16903, + "weekday": 16904, + "unification": 16905, + "bump": 16906, + "tracing": 16907, + "brig": 16908, + "afb": 16909, + "pathways": 16910, + "utilizing": 16911, + "##ners": 16912, + "mod": 16913, + "mb": 16914, + "disturbance": 16915, + "kneeling": 16916, + "##stad": 16917, + "##guchi": 16918, + "100th": 16919, + "pune": 16920, + "##thy": 16921, + "decreasing": 16922, + "168": 16923, + "manipulation": 16924, + "miriam": 16925, + "academia": 16926, + "ecosystem": 16927, + "occupational": 16928, + "rbi": 16929, + "##lem": 16930, + "rift": 16931, + "##14": 16932, + "rotary": 16933, + "stacked": 16934, + "incorporation": 16935, + "awakening": 16936, + "generators": 16937, + "guerrero": 16938, + "racist": 16939, + "##omy": 16940, + "cyber": 16941, + "derivatives": 16942, + "culminated": 16943, + "allie": 16944, + "annals": 16945, + "panzer": 16946, + "sainte": 16947, + "wikipedia": 16948, + "pops": 16949, + "zu": 16950, + "austro": 16951, + "##vate": 16952, + "algerian": 16953, + "politely": 16954, + "nicholson": 16955, + "mornings": 16956, + "educate": 16957, + "tastes": 16958, + "thrill": 16959, + "dartmouth": 16960, + "##gating": 16961, + "db": 16962, + "##jee": 16963, + "regan": 16964, + "differing": 16965, + "concentrating": 16966, + "choreography": 16967, + "divinity": 16968, + "##media": 16969, + "pledged": 16970, + "alexandre": 16971, + "routing": 16972, + "gregor": 16973, + "madeline": 16974, + "##idal": 16975, + "apocalypse": 16976, + "##hora": 16977, + "gunfire": 16978, + "culminating": 16979, + "elves": 16980, + "fined": 16981, + "liang": 16982, + "lam": 16983, + "programmed": 16984, + "tar": 16985, + "guessing": 16986, + "transparency": 16987, + "gabrielle": 16988, + "##gna": 16989, + "cancellation": 16990, + "flexibility": 16991, + "##lining": 16992, + "accession": 16993, + "shea": 16994, + "stronghold": 16995, + "nets": 16996, + "specializes": 16997, + "##rgan": 16998, + "abused": 16999, + "hasan": 17000, + "sgt": 17001, + "ling": 17002, + "exceeding": 17003, + "##₄": 17004, + "admiration": 17005, + "supermarket": 17006, + "##ark": 17007, + "photographers": 17008, + "specialised": 17009, + "tilt": 17010, + "resonance": 17011, + "hmm": 17012, + "perfume": 17013, + "380": 17014, + "sami": 17015, + "threatens": 17016, + "garland": 17017, + "botany": 17018, + "guarding": 17019, + "boiled": 17020, + "greet": 17021, + "puppy": 17022, + "russo": 17023, + "supplier": 17024, + "wilmington": 17025, + "vibrant": 17026, + "vijay": 17027, + "##bius": 17028, + "paralympic": 17029, + "grumbled": 17030, + "paige": 17031, + "faa": 17032, + "licking": 17033, + "margins": 17034, + "hurricanes": 17035, + "##gong": 17036, + "fest": 17037, + "grenade": 17038, + "ripping": 17039, + "##uz": 17040, + "counseling": 17041, + "weigh": 17042, + "##sian": 17043, + "needles": 17044, + "wiltshire": 17045, + "edison": 17046, + "costly": 17047, + "##not": 17048, + "fulton": 17049, + "tramway": 17050, + "redesigned": 17051, + "staffordshire": 17052, + "cache": 17053, + "gasping": 17054, + "watkins": 17055, + "sleepy": 17056, + "candidacy": 17057, + "##group": 17058, + "monkeys": 17059, + "timeline": 17060, + "throbbing": 17061, + "##bid": 17062, + "##sos": 17063, + "berth": 17064, + "uzbekistan": 17065, + "vanderbilt": 17066, + "bothering": 17067, + "overturned": 17068, + "ballots": 17069, + "gem": 17070, + "##iger": 17071, + "sunglasses": 17072, + "subscribers": 17073, + "hooker": 17074, + "compelling": 17075, + "ang": 17076, + "exceptionally": 17077, + "saloon": 17078, + "stab": 17079, + "##rdi": 17080, + "carla": 17081, + "terrifying": 17082, + "rom": 17083, + "##vision": 17084, + "coil": 17085, + "##oids": 17086, + "satisfying": 17087, + "vendors": 17088, + "31st": 17089, + "mackay": 17090, + "deities": 17091, + "overlooked": 17092, + "ambient": 17093, + "bahamas": 17094, + "felipe": 17095, + "olympia": 17096, + "whirled": 17097, + "botanist": 17098, + "advertised": 17099, + "tugging": 17100, + "##dden": 17101, + "disciples": 17102, + "morales": 17103, + "unionist": 17104, + "rites": 17105, + "foley": 17106, + "morse": 17107, + "motives": 17108, + "creepy": 17109, + "##₀": 17110, + "soo": 17111, + "##sz": 17112, + "bargain": 17113, + "highness": 17114, + "frightening": 17115, + "turnpike": 17116, + "tory": 17117, + "reorganization": 17118, + "##cer": 17119, + "depict": 17120, + "biographer": 17121, + "##walk": 17122, + "unopposed": 17123, + "manifesto": 17124, + "##gles": 17125, + "institut": 17126, + "emile": 17127, + "accidental": 17128, + "kapoor": 17129, + "##dam": 17130, + "kilkenny": 17131, + "cortex": 17132, + "lively": 17133, + "##13": 17134, + "romanesque": 17135, + "jain": 17136, + "shan": 17137, + "cannons": 17138, + "##ood": 17139, + "##ske": 17140, + "petrol": 17141, + "echoing": 17142, + "amalgamated": 17143, + "disappears": 17144, + "cautious": 17145, + "proposes": 17146, + "sanctions": 17147, + "trenton": 17148, + "##ر": 17149, + "flotilla": 17150, + "aus": 17151, + "contempt": 17152, + "tor": 17153, + "canary": 17154, + "cote": 17155, + "theirs": 17156, + "##hun": 17157, + "conceptual": 17158, + "deleted": 17159, + "fascinating": 17160, + "paso": 17161, + "blazing": 17162, + "elf": 17163, + "honourable": 17164, + "hutchinson": 17165, + "##eiro": 17166, + "##outh": 17167, + "##zin": 17168, + "surveyor": 17169, + "tee": 17170, + "amidst": 17171, + "wooded": 17172, + "reissue": 17173, + "intro": 17174, + "##ono": 17175, + "cobb": 17176, + "shelters": 17177, + "newsletter": 17178, + "hanson": 17179, + "brace": 17180, + "encoding": 17181, + "confiscated": 17182, + "dem": 17183, + "caravan": 17184, + "marino": 17185, + "scroll": 17186, + "melodic": 17187, + "cows": 17188, + "imam": 17189, + "##adi": 17190, + "##aneous": 17191, + "northward": 17192, + "searches": 17193, + "biodiversity": 17194, + "cora": 17195, + "310": 17196, + "roaring": 17197, + "##bers": 17198, + "connell": 17199, + "theologian": 17200, + "halo": 17201, + "compose": 17202, + "pathetic": 17203, + "unmarried": 17204, + "dynamo": 17205, + "##oot": 17206, + "az": 17207, + "calculation": 17208, + "toulouse": 17209, + "deserves": 17210, + "humour": 17211, + "nr": 17212, + "forgiveness": 17213, + "tam": 17214, + "undergone": 17215, + "martyr": 17216, + "pamela": 17217, + "myths": 17218, + "whore": 17219, + "counselor": 17220, + "hicks": 17221, + "290": 17222, + "heavens": 17223, + "battleship": 17224, + "electromagnetic": 17225, + "##bbs": 17226, + "stellar": 17227, + "establishments": 17228, + "presley": 17229, + "hopped": 17230, + "##chin": 17231, + "temptation": 17232, + "90s": 17233, + "wills": 17234, + "nas": 17235, + "##yuan": 17236, + "nhs": 17237, + "##nya": 17238, + "seminars": 17239, + "##yev": 17240, + "adaptations": 17241, + "gong": 17242, + "asher": 17243, + "lex": 17244, + "indicator": 17245, + "sikh": 17246, + "tobago": 17247, + "cites": 17248, + "goin": 17249, + "##yte": 17250, + "satirical": 17251, + "##gies": 17252, + "characterised": 17253, + "correspond": 17254, + "bubbles": 17255, + "lure": 17256, + "participates": 17257, + "##vid": 17258, + "eruption": 17259, + "skate": 17260, + "therapeutic": 17261, + "1785": 17262, + "canals": 17263, + "wholesale": 17264, + "defaulted": 17265, + "sac": 17266, + "460": 17267, + "petit": 17268, + "##zzled": 17269, + "virgil": 17270, + "leak": 17271, + "ravens": 17272, + "256": 17273, + "portraying": 17274, + "##yx": 17275, + "ghetto": 17276, + "creators": 17277, + "dams": 17278, + "portray": 17279, + "vicente": 17280, + "##rington": 17281, + "fae": 17282, + "namesake": 17283, + "bounty": 17284, + "##arium": 17285, + "joachim": 17286, + "##ota": 17287, + "##iser": 17288, + "aforementioned": 17289, + "axle": 17290, + "snout": 17291, + "depended": 17292, + "dismantled": 17293, + "reuben": 17294, + "480": 17295, + "##ibly": 17296, + "gallagher": 17297, + "##lau": 17298, + "##pd": 17299, + "earnest": 17300, + "##ieu": 17301, + "##iary": 17302, + "inflicted": 17303, + "objections": 17304, + "##llar": 17305, + "asa": 17306, + "gritted": 17307, + "##athy": 17308, + "jericho": 17309, + "##sea": 17310, + "##was": 17311, + "flick": 17312, + "underside": 17313, + "ceramics": 17314, + "undead": 17315, + "substituted": 17316, + "195": 17317, + "eastward": 17318, + "undoubtedly": 17319, + "wheeled": 17320, + "chimney": 17321, + "##iche": 17322, + "guinness": 17323, + "cb": 17324, + "##ager": 17325, + "siding": 17326, + "##bell": 17327, + "traitor": 17328, + "baptiste": 17329, + "disguised": 17330, + "inauguration": 17331, + "149": 17332, + "tipperary": 17333, + "choreographer": 17334, + "perched": 17335, + "warmed": 17336, + "stationary": 17337, + "eco": 17338, + "##ike": 17339, + "##ntes": 17340, + "bacterial": 17341, + "##aurus": 17342, + "flores": 17343, + "phosphate": 17344, + "##core": 17345, + "attacker": 17346, + "invaders": 17347, + "alvin": 17348, + "intersects": 17349, + "a1": 17350, + "indirectly": 17351, + "immigrated": 17352, + "businessmen": 17353, + "cornelius": 17354, + "valves": 17355, + "narrated": 17356, + "pill": 17357, + "sober": 17358, + "ul": 17359, + "nationale": 17360, + "monastic": 17361, + "applicants": 17362, + "scenery": 17363, + "##jack": 17364, + "161": 17365, + "motifs": 17366, + "constitutes": 17367, + "cpu": 17368, + "##osh": 17369, + "jurisdictions": 17370, + "sd": 17371, + "tuning": 17372, + "irritation": 17373, + "woven": 17374, + "##uddin": 17375, + "fertility": 17376, + "gao": 17377, + "##erie": 17378, + "antagonist": 17379, + "impatient": 17380, + "glacial": 17381, + "hides": 17382, + "boarded": 17383, + "denominations": 17384, + "interception": 17385, + "##jas": 17386, + "cookie": 17387, + "nicola": 17388, + "##tee": 17389, + "algebraic": 17390, + "marquess": 17391, + "bahn": 17392, + "parole": 17393, + "buyers": 17394, + "bait": 17395, + "turbines": 17396, + "paperwork": 17397, + "bestowed": 17398, + "natasha": 17399, + "renee": 17400, + "oceans": 17401, + "purchases": 17402, + "157": 17403, + "vaccine": 17404, + "215": 17405, + "##tock": 17406, + "fixtures": 17407, + "playhouse": 17408, + "integrate": 17409, + "jai": 17410, + "oswald": 17411, + "intellectuals": 17412, + "##cky": 17413, + "booked": 17414, + "nests": 17415, + "mortimer": 17416, + "##isi": 17417, + "obsession": 17418, + "sept": 17419, + "##gler": 17420, + "##sum": 17421, + "440": 17422, + "scrutiny": 17423, + "simultaneous": 17424, + "squinted": 17425, + "##shin": 17426, + "collects": 17427, + "oven": 17428, + "shankar": 17429, + "penned": 17430, + "remarkably": 17431, + "##я": 17432, + "slips": 17433, + "luggage": 17434, + "spectral": 17435, + "1786": 17436, + "collaborations": 17437, + "louie": 17438, + "consolidation": 17439, + "##ailed": 17440, + "##ivating": 17441, + "420": 17442, + "hoover": 17443, + "blackpool": 17444, + "harness": 17445, + "ignition": 17446, + "vest": 17447, + "tails": 17448, + "belmont": 17449, + "mongol": 17450, + "skinner": 17451, + "##nae": 17452, + "visually": 17453, + "mage": 17454, + "derry": 17455, + "##tism": 17456, + "##unce": 17457, + "stevie": 17458, + "transitional": 17459, + "##rdy": 17460, + "redskins": 17461, + "drying": 17462, + "prep": 17463, + "prospective": 17464, + "##21": 17465, + "annoyance": 17466, + "oversee": 17467, + "##loaded": 17468, + "fills": 17469, + "##books": 17470, + "##iki": 17471, + "announces": 17472, + "fda": 17473, + "scowled": 17474, + "respects": 17475, + "prasad": 17476, + "mystic": 17477, + "tucson": 17478, + "##vale": 17479, + "revue": 17480, + "springer": 17481, + "bankrupt": 17482, + "1772": 17483, + "aristotle": 17484, + "salvatore": 17485, + "habsburg": 17486, + "##geny": 17487, + "dal": 17488, + "natal": 17489, + "nut": 17490, + "pod": 17491, + "chewing": 17492, + "darts": 17493, + "moroccan": 17494, + "walkover": 17495, + "rosario": 17496, + "lenin": 17497, + "punjabi": 17498, + "##ße": 17499, + "grossed": 17500, + "scattering": 17501, + "wired": 17502, + "invasive": 17503, + "hui": 17504, + "polynomial": 17505, + "corridors": 17506, + "wakes": 17507, + "gina": 17508, + "portrays": 17509, + "##cratic": 17510, + "arid": 17511, + "retreating": 17512, + "erich": 17513, + "irwin": 17514, + "sniper": 17515, + "##dha": 17516, + "linen": 17517, + "lindsey": 17518, + "maneuver": 17519, + "butch": 17520, + "shutting": 17521, + "socio": 17522, + "bounce": 17523, + "commemorative": 17524, + "postseason": 17525, + "jeremiah": 17526, + "pines": 17527, + "275": 17528, + "mystical": 17529, + "beads": 17530, + "bp": 17531, + "abbas": 17532, + "furnace": 17533, + "bidding": 17534, + "consulted": 17535, + "assaulted": 17536, + "empirical": 17537, + "rubble": 17538, + "enclosure": 17539, + "sob": 17540, + "weakly": 17541, + "cancel": 17542, + "polly": 17543, + "yielded": 17544, + "##emann": 17545, + "curly": 17546, + "prediction": 17547, + "battered": 17548, + "70s": 17549, + "vhs": 17550, + "jacqueline": 17551, + "render": 17552, + "sails": 17553, + "barked": 17554, + "detailing": 17555, + "grayson": 17556, + "riga": 17557, + "sloane": 17558, + "raging": 17559, + "##yah": 17560, + "herbs": 17561, + "bravo": 17562, + "##athlon": 17563, + "alloy": 17564, + "giggle": 17565, + "imminent": 17566, + "suffers": 17567, + "assumptions": 17568, + "waltz": 17569, + "##itate": 17570, + "accomplishments": 17571, + "##ited": 17572, + "bathing": 17573, + "remixed": 17574, + "deception": 17575, + "prefix": 17576, + "##emia": 17577, + "deepest": 17578, + "##tier": 17579, + "##eis": 17580, + "balkan": 17581, + "frogs": 17582, + "##rong": 17583, + "slab": 17584, + "##pate": 17585, + "philosophers": 17586, + "peterborough": 17587, + "grains": 17588, + "imports": 17589, + "dickinson": 17590, + "rwanda": 17591, + "##atics": 17592, + "1774": 17593, + "dirk": 17594, + "lan": 17595, + "tablets": 17596, + "##rove": 17597, + "clone": 17598, + "##rice": 17599, + "caretaker": 17600, + "hostilities": 17601, + "mclean": 17602, + "##gre": 17603, + "regimental": 17604, + "treasures": 17605, + "norms": 17606, + "impose": 17607, + "tsar": 17608, + "tango": 17609, + "diplomacy": 17610, + "variously": 17611, + "complain": 17612, + "192": 17613, + "recognise": 17614, + "arrests": 17615, + "1779": 17616, + "celestial": 17617, + "pulitzer": 17618, + "##dus": 17619, + "bing": 17620, + "libretto": 17621, + "##moor": 17622, + "adele": 17623, + "splash": 17624, + "##rite": 17625, + "expectation": 17626, + "lds": 17627, + "confronts": 17628, + "##izer": 17629, + "spontaneous": 17630, + "harmful": 17631, + "wedge": 17632, + "entrepreneurs": 17633, + "buyer": 17634, + "##ope": 17635, + "bilingual": 17636, + "translate": 17637, + "rugged": 17638, + "conner": 17639, + "circulated": 17640, + "uae": 17641, + "eaton": 17642, + "##gra": 17643, + "##zzle": 17644, + "lingered": 17645, + "lockheed": 17646, + "vishnu": 17647, + "reelection": 17648, + "alonso": 17649, + "##oom": 17650, + "joints": 17651, + "yankee": 17652, + "headline": 17653, + "cooperate": 17654, + "heinz": 17655, + "laureate": 17656, + "invading": 17657, + "##sford": 17658, + "echoes": 17659, + "scandinavian": 17660, + "##dham": 17661, + "hugging": 17662, + "vitamin": 17663, + "salute": 17664, + "micah": 17665, + "hind": 17666, + "trader": 17667, + "##sper": 17668, + "radioactive": 17669, + "##ndra": 17670, + "militants": 17671, + "poisoned": 17672, + "ratified": 17673, + "remark": 17674, + "campeonato": 17675, + "deprived": 17676, + "wander": 17677, + "prop": 17678, + "##dong": 17679, + "outlook": 17680, + "##tani": 17681, + "##rix": 17682, + "##eye": 17683, + "chiang": 17684, + "darcy": 17685, + "##oping": 17686, + "mandolin": 17687, + "spice": 17688, + "statesman": 17689, + "babylon": 17690, + "182": 17691, + "walled": 17692, + "forgetting": 17693, + "afro": 17694, + "##cap": 17695, + "158": 17696, + "giorgio": 17697, + "buffer": 17698, + "##polis": 17699, + "planetary": 17700, + "##gis": 17701, + "overlap": 17702, + "terminals": 17703, + "kinda": 17704, + "centenary": 17705, + "##bir": 17706, + "arising": 17707, + "manipulate": 17708, + "elm": 17709, + "ke": 17710, + "1770": 17711, + "ak": 17712, + "##tad": 17713, + "chrysler": 17714, + "mapped": 17715, + "moose": 17716, + "pomeranian": 17717, + "quad": 17718, + "macarthur": 17719, + "assemblies": 17720, + "shoreline": 17721, + "recalls": 17722, + "stratford": 17723, + "##rted": 17724, + "noticeable": 17725, + "##evic": 17726, + "imp": 17727, + "##rita": 17728, + "##sque": 17729, + "accustomed": 17730, + "supplying": 17731, + "tents": 17732, + "disgusted": 17733, + "vogue": 17734, + "sipped": 17735, + "filters": 17736, + "khz": 17737, + "reno": 17738, + "selecting": 17739, + "luftwaffe": 17740, + "mcmahon": 17741, + "tyne": 17742, + "masterpiece": 17743, + "carriages": 17744, + "collided": 17745, + "dunes": 17746, + "exercised": 17747, + "flare": 17748, + "remembers": 17749, + "muzzle": 17750, + "##mobile": 17751, + "heck": 17752, + "##rson": 17753, + "burgess": 17754, + "lunged": 17755, + "middleton": 17756, + "boycott": 17757, + "bilateral": 17758, + "##sity": 17759, + "hazardous": 17760, + "lumpur": 17761, + "multiplayer": 17762, + "spotlight": 17763, + "jackets": 17764, + "goldman": 17765, + "liege": 17766, + "porcelain": 17767, + "rag": 17768, + "waterford": 17769, + "benz": 17770, + "attracts": 17771, + "hopeful": 17772, + "battling": 17773, + "ottomans": 17774, + "kensington": 17775, + "baked": 17776, + "hymns": 17777, + "cheyenne": 17778, + "lattice": 17779, + "levine": 17780, + "borrow": 17781, + "polymer": 17782, + "clashes": 17783, + "michaels": 17784, + "monitored": 17785, + "commitments": 17786, + "denounced": 17787, + "##25": 17788, + "##von": 17789, + "cavity": 17790, + "##oney": 17791, + "hobby": 17792, + "akin": 17793, + "##holders": 17794, + "futures": 17795, + "intricate": 17796, + "cornish": 17797, + "patty": 17798, + "##oned": 17799, + "illegally": 17800, + "dolphin": 17801, + "##lag": 17802, + "barlow": 17803, + "yellowish": 17804, + "maddie": 17805, + "apologized": 17806, + "luton": 17807, + "plagued": 17808, + "##puram": 17809, + "nana": 17810, + "##rds": 17811, + "sway": 17812, + "fanny": 17813, + "łodz": 17814, + "##rino": 17815, + "psi": 17816, + "suspicions": 17817, + "hanged": 17818, + "##eding": 17819, + "initiate": 17820, + "charlton": 17821, + "##por": 17822, + "nak": 17823, + "competent": 17824, + "235": 17825, + "analytical": 17826, + "annex": 17827, + "wardrobe": 17828, + "reservations": 17829, + "##rma": 17830, + "sect": 17831, + "162": 17832, + "fairfax": 17833, + "hedge": 17834, + "piled": 17835, + "buckingham": 17836, + "uneven": 17837, + "bauer": 17838, + "simplicity": 17839, + "snyder": 17840, + "interpret": 17841, + "accountability": 17842, + "donors": 17843, + "moderately": 17844, + "byrd": 17845, + "continents": 17846, + "##cite": 17847, + "##max": 17848, + "disciple": 17849, + "hr": 17850, + "jamaican": 17851, + "ping": 17852, + "nominees": 17853, + "##uss": 17854, + "mongolian": 17855, + "diver": 17856, + "attackers": 17857, + "eagerly": 17858, + "ideological": 17859, + "pillows": 17860, + "miracles": 17861, + "apartheid": 17862, + "revolver": 17863, + "sulfur": 17864, + "clinics": 17865, + "moran": 17866, + "163": 17867, + "##enko": 17868, + "ile": 17869, + "katy": 17870, + "rhetoric": 17871, + "##icated": 17872, + "chronology": 17873, + "recycling": 17874, + "##hrer": 17875, + "elongated": 17876, + "mughal": 17877, + "pascal": 17878, + "profiles": 17879, + "vibration": 17880, + "databases": 17881, + "domination": 17882, + "##fare": 17883, + "##rant": 17884, + "matthias": 17885, + "digest": 17886, + "rehearsal": 17887, + "polling": 17888, + "weiss": 17889, + "initiation": 17890, + "reeves": 17891, + "clinging": 17892, + "flourished": 17893, + "impress": 17894, + "ngo": 17895, + "##hoff": 17896, + "##ume": 17897, + "buckley": 17898, + "symposium": 17899, + "rhythms": 17900, + "weed": 17901, + "emphasize": 17902, + "transforming": 17903, + "##taking": 17904, + "##gence": 17905, + "##yman": 17906, + "accountant": 17907, + "analyze": 17908, + "flicker": 17909, + "foil": 17910, + "priesthood": 17911, + "voluntarily": 17912, + "decreases": 17913, + "##80": 17914, + "##hya": 17915, + "slater": 17916, + "sv": 17917, + "charting": 17918, + "mcgill": 17919, + "##lde": 17920, + "moreno": 17921, + "##iu": 17922, + "besieged": 17923, + "zur": 17924, + "robes": 17925, + "##phic": 17926, + "admitting": 17927, + "api": 17928, + "deported": 17929, + "turmoil": 17930, + "peyton": 17931, + "earthquakes": 17932, + "##ares": 17933, + "nationalists": 17934, + "beau": 17935, + "clair": 17936, + "brethren": 17937, + "interrupt": 17938, + "welch": 17939, + "curated": 17940, + "galerie": 17941, + "requesting": 17942, + "164": 17943, + "##ested": 17944, + "impending": 17945, + "steward": 17946, + "viper": 17947, + "##vina": 17948, + "complaining": 17949, + "beautifully": 17950, + "brandy": 17951, + "foam": 17952, + "nl": 17953, + "1660": 17954, + "##cake": 17955, + "alessandro": 17956, + "punches": 17957, + "laced": 17958, + "explanations": 17959, + "##lim": 17960, + "attribute": 17961, + "clit": 17962, + "reggie": 17963, + "discomfort": 17964, + "##cards": 17965, + "smoothed": 17966, + "whales": 17967, + "##cene": 17968, + "adler": 17969, + "countered": 17970, + "duffy": 17971, + "disciplinary": 17972, + "widening": 17973, + "recipe": 17974, + "reliance": 17975, + "conducts": 17976, + "goats": 17977, + "gradient": 17978, + "preaching": 17979, + "##shaw": 17980, + "matilda": 17981, + "quasi": 17982, + "striped": 17983, + "meridian": 17984, + "cannabis": 17985, + "cordoba": 17986, + "certificates": 17987, + "##agh": 17988, + "##tering": 17989, + "graffiti": 17990, + "hangs": 17991, + "pilgrims": 17992, + "repeats": 17993, + "##ych": 17994, + "revive": 17995, + "urine": 17996, + "etat": 17997, + "##hawk": 17998, + "fueled": 17999, + "belts": 18000, + "fuzzy": 18001, + "susceptible": 18002, + "##hang": 18003, + "mauritius": 18004, + "salle": 18005, + "sincere": 18006, + "beers": 18007, + "hooks": 18008, + "##cki": 18009, + "arbitration": 18010, + "entrusted": 18011, + "advise": 18012, + "sniffed": 18013, + "seminar": 18014, + "junk": 18015, + "donnell": 18016, + "processors": 18017, + "principality": 18018, + "strapped": 18019, + "celia": 18020, + "mendoza": 18021, + "everton": 18022, + "fortunes": 18023, + "prejudice": 18024, + "starving": 18025, + "reassigned": 18026, + "steamer": 18027, + "##lund": 18028, + "tuck": 18029, + "evenly": 18030, + "foreman": 18031, + "##ffen": 18032, + "dans": 18033, + "375": 18034, + "envisioned": 18035, + "slit": 18036, + "##xy": 18037, + "baseman": 18038, + "liberia": 18039, + "rosemary": 18040, + "##weed": 18041, + "electrified": 18042, + "periodically": 18043, + "potassium": 18044, + "stride": 18045, + "contexts": 18046, + "sperm": 18047, + "slade": 18048, + "mariners": 18049, + "influx": 18050, + "bianca": 18051, + "subcommittee": 18052, + "##rane": 18053, + "spilling": 18054, + "icao": 18055, + "estuary": 18056, + "##nock": 18057, + "delivers": 18058, + "iphone": 18059, + "##ulata": 18060, + "isa": 18061, + "mira": 18062, + "bohemian": 18063, + "dessert": 18064, + "##sbury": 18065, + "welcoming": 18066, + "proudly": 18067, + "slowing": 18068, + "##chs": 18069, + "musee": 18070, + "ascension": 18071, + "russ": 18072, + "##vian": 18073, + "waits": 18074, + "##psy": 18075, + "africans": 18076, + "exploit": 18077, + "##morphic": 18078, + "gov": 18079, + "eccentric": 18080, + "crab": 18081, + "peck": 18082, + "##ull": 18083, + "entrances": 18084, + "formidable": 18085, + "marketplace": 18086, + "groom": 18087, + "bolted": 18088, + "metabolism": 18089, + "patton": 18090, + "robbins": 18091, + "courier": 18092, + "payload": 18093, + "endure": 18094, + "##ifier": 18095, + "andes": 18096, + "refrigerator": 18097, + "##pr": 18098, + "ornate": 18099, + "##uca": 18100, + "ruthless": 18101, + "illegitimate": 18102, + "masonry": 18103, + "strasbourg": 18104, + "bikes": 18105, + "adobe": 18106, + "##³": 18107, + "apples": 18108, + "quintet": 18109, + "willingly": 18110, + "niche": 18111, + "bakery": 18112, + "corpses": 18113, + "energetic": 18114, + "##cliffe": 18115, + "##sser": 18116, + "##ards": 18117, + "177": 18118, + "centimeters": 18119, + "centro": 18120, + "fuscous": 18121, + "cretaceous": 18122, + "rancho": 18123, + "##yde": 18124, + "andrei": 18125, + "telecom": 18126, + "tottenham": 18127, + "oasis": 18128, + "ordination": 18129, + "vulnerability": 18130, + "presiding": 18131, + "corey": 18132, + "cp": 18133, + "penguins": 18134, + "sims": 18135, + "##pis": 18136, + "malawi": 18137, + "piss": 18138, + "##48": 18139, + "correction": 18140, + "##cked": 18141, + "##ffle": 18142, + "##ryn": 18143, + "countdown": 18144, + "detectives": 18145, + "psychiatrist": 18146, + "psychedelic": 18147, + "dinosaurs": 18148, + "blouse": 18149, + "##get": 18150, + "choi": 18151, + "vowed": 18152, + "##oz": 18153, + "randomly": 18154, + "##pol": 18155, + "49ers": 18156, + "scrub": 18157, + "blanche": 18158, + "bruins": 18159, + "dusseldorf": 18160, + "##using": 18161, + "unwanted": 18162, + "##ums": 18163, + "212": 18164, + "dominique": 18165, + "elevations": 18166, + "headlights": 18167, + "om": 18168, + "laguna": 18169, + "##oga": 18170, + "1750": 18171, + "famously": 18172, + "ignorance": 18173, + "shrewsbury": 18174, + "##aine": 18175, + "ajax": 18176, + "breuning": 18177, + "che": 18178, + "confederacy": 18179, + "greco": 18180, + "overhaul": 18181, + "##screen": 18182, + "paz": 18183, + "skirts": 18184, + "disagreement": 18185, + "cruelty": 18186, + "jagged": 18187, + "phoebe": 18188, + "shifter": 18189, + "hovered": 18190, + "viruses": 18191, + "##wes": 18192, + "mandy": 18193, + "##lined": 18194, + "##gc": 18195, + "landlord": 18196, + "squirrel": 18197, + "dashed": 18198, + "##ι": 18199, + "ornamental": 18200, + "gag": 18201, + "wally": 18202, + "grange": 18203, + "literal": 18204, + "spurs": 18205, + "undisclosed": 18206, + "proceeding": 18207, + "yin": 18208, + "##text": 18209, + "billie": 18210, + "orphan": 18211, + "spanned": 18212, + "humidity": 18213, + "indy": 18214, + "weighted": 18215, + "presentations": 18216, + "explosions": 18217, + "lucian": 18218, + "##tary": 18219, + "vaughn": 18220, + "hindus": 18221, + "##anga": 18222, + "##hell": 18223, + "psycho": 18224, + "171": 18225, + "daytona": 18226, + "protects": 18227, + "efficiently": 18228, + "rematch": 18229, + "sly": 18230, + "tandem": 18231, + "##oya": 18232, + "rebranded": 18233, + "impaired": 18234, + "hee": 18235, + "metropolis": 18236, + "peach": 18237, + "godfrey": 18238, + "diaspora": 18239, + "ethnicity": 18240, + "prosperous": 18241, + "gleaming": 18242, + "dar": 18243, + "grossing": 18244, + "playback": 18245, + "##rden": 18246, + "stripe": 18247, + "pistols": 18248, + "##tain": 18249, + "births": 18250, + "labelled": 18251, + "##cating": 18252, + "172": 18253, + "rudy": 18254, + "alba": 18255, + "##onne": 18256, + "aquarium": 18257, + "hostility": 18258, + "##gb": 18259, + "##tase": 18260, + "shudder": 18261, + "sumatra": 18262, + "hardest": 18263, + "lakers": 18264, + "consonant": 18265, + "creeping": 18266, + "demos": 18267, + "homicide": 18268, + "capsule": 18269, + "zeke": 18270, + "liberties": 18271, + "expulsion": 18272, + "pueblo": 18273, + "##comb": 18274, + "trait": 18275, + "transporting": 18276, + "##ddin": 18277, + "##neck": 18278, + "##yna": 18279, + "depart": 18280, + "gregg": 18281, + "mold": 18282, + "ledge": 18283, + "hangar": 18284, + "oldham": 18285, + "playboy": 18286, + "termination": 18287, + "analysts": 18288, + "gmbh": 18289, + "romero": 18290, + "##itic": 18291, + "insist": 18292, + "cradle": 18293, + "filthy": 18294, + "brightness": 18295, + "slash": 18296, + "shootout": 18297, + "deposed": 18298, + "bordering": 18299, + "##truct": 18300, + "isis": 18301, + "microwave": 18302, + "tumbled": 18303, + "sheltered": 18304, + "cathy": 18305, + "werewolves": 18306, + "messy": 18307, + "andersen": 18308, + "convex": 18309, + "clapped": 18310, + "clinched": 18311, + "satire": 18312, + "wasting": 18313, + "edo": 18314, + "vc": 18315, + "rufus": 18316, + "##jak": 18317, + "mont": 18318, + "##etti": 18319, + "poznan": 18320, + "##keeping": 18321, + "restructuring": 18322, + "transverse": 18323, + "##rland": 18324, + "azerbaijani": 18325, + "slovene": 18326, + "gestures": 18327, + "roommate": 18328, + "choking": 18329, + "shear": 18330, + "##quist": 18331, + "vanguard": 18332, + "oblivious": 18333, + "##hiro": 18334, + "disagreed": 18335, + "baptism": 18336, + "##lich": 18337, + "coliseum": 18338, + "##aceae": 18339, + "salvage": 18340, + "societe": 18341, + "cory": 18342, + "locke": 18343, + "relocation": 18344, + "relying": 18345, + "versailles": 18346, + "ahl": 18347, + "swelling": 18348, + "##elo": 18349, + "cheerful": 18350, + "##word": 18351, + "##edes": 18352, + "gin": 18353, + "sarajevo": 18354, + "obstacle": 18355, + "diverted": 18356, + "##nac": 18357, + "messed": 18358, + "thoroughbred": 18359, + "fluttered": 18360, + "utrecht": 18361, + "chewed": 18362, + "acquaintance": 18363, + "assassins": 18364, + "dispatch": 18365, + "mirza": 18366, + "##wart": 18367, + "nike": 18368, + "salzburg": 18369, + "swell": 18370, + "yen": 18371, + "##gee": 18372, + "idle": 18373, + "ligue": 18374, + "samson": 18375, + "##nds": 18376, + "##igh": 18377, + "playful": 18378, + "spawned": 18379, + "##cise": 18380, + "tease": 18381, + "##case": 18382, + "burgundy": 18383, + "##bot": 18384, + "stirring": 18385, + "skeptical": 18386, + "interceptions": 18387, + "marathi": 18388, + "##dies": 18389, + "bedrooms": 18390, + "aroused": 18391, + "pinch": 18392, + "##lik": 18393, + "preferences": 18394, + "tattoos": 18395, + "buster": 18396, + "digitally": 18397, + "projecting": 18398, + "rust": 18399, + "##ital": 18400, + "kitten": 18401, + "priorities": 18402, + "addison": 18403, + "pseudo": 18404, + "##guard": 18405, + "dusk": 18406, + "icons": 18407, + "sermon": 18408, + "##psis": 18409, + "##iba": 18410, + "bt": 18411, + "##lift": 18412, + "##xt": 18413, + "ju": 18414, + "truce": 18415, + "rink": 18416, + "##dah": 18417, + "##wy": 18418, + "defects": 18419, + "psychiatry": 18420, + "offences": 18421, + "calculate": 18422, + "glucose": 18423, + "##iful": 18424, + "##rized": 18425, + "##unda": 18426, + "francaise": 18427, + "##hari": 18428, + "richest": 18429, + "warwickshire": 18430, + "carly": 18431, + "1763": 18432, + "purity": 18433, + "redemption": 18434, + "lending": 18435, + "##cious": 18436, + "muse": 18437, + "bruises": 18438, + "cerebral": 18439, + "aero": 18440, + "carving": 18441, + "##name": 18442, + "preface": 18443, + "terminology": 18444, + "invade": 18445, + "monty": 18446, + "##int": 18447, + "anarchist": 18448, + "blurred": 18449, + "##iled": 18450, + "rossi": 18451, + "treats": 18452, + "guts": 18453, + "shu": 18454, + "foothills": 18455, + "ballads": 18456, + "undertaking": 18457, + "premise": 18458, + "cecilia": 18459, + "affiliates": 18460, + "blasted": 18461, + "conditional": 18462, + "wilder": 18463, + "minors": 18464, + "drone": 18465, + "rudolph": 18466, + "buffy": 18467, + "swallowing": 18468, + "horton": 18469, + "attested": 18470, + "##hop": 18471, + "rutherford": 18472, + "howell": 18473, + "primetime": 18474, + "livery": 18475, + "penal": 18476, + "##bis": 18477, + "minimize": 18478, + "hydro": 18479, + "wrecked": 18480, + "wrought": 18481, + "palazzo": 18482, + "##gling": 18483, + "cans": 18484, + "vernacular": 18485, + "friedman": 18486, + "nobleman": 18487, + "shale": 18488, + "walnut": 18489, + "danielle": 18490, + "##ection": 18491, + "##tley": 18492, + "sears": 18493, + "##kumar": 18494, + "chords": 18495, + "lend": 18496, + "flipping": 18497, + "streamed": 18498, + "por": 18499, + "dracula": 18500, + "gallons": 18501, + "sacrifices": 18502, + "gamble": 18503, + "orphanage": 18504, + "##iman": 18505, + "mckenzie": 18506, + "##gible": 18507, + "boxers": 18508, + "daly": 18509, + "##balls": 18510, + "##ان": 18511, + "208": 18512, + "##ific": 18513, + "##rative": 18514, + "##iq": 18515, + "exploited": 18516, + "slated": 18517, + "##uity": 18518, + "circling": 18519, + "hillary": 18520, + "pinched": 18521, + "goldberg": 18522, + "provost": 18523, + "campaigning": 18524, + "lim": 18525, + "piles": 18526, + "ironically": 18527, + "jong": 18528, + "mohan": 18529, + "successors": 18530, + "usaf": 18531, + "##tem": 18532, + "##ught": 18533, + "autobiographical": 18534, + "haute": 18535, + "preserves": 18536, + "##ending": 18537, + "acquitted": 18538, + "comparisons": 18539, + "203": 18540, + "hydroelectric": 18541, + "gangs": 18542, + "cypriot": 18543, + "torpedoes": 18544, + "rushes": 18545, + "chrome": 18546, + "derive": 18547, + "bumps": 18548, + "instability": 18549, + "fiat": 18550, + "pets": 18551, + "##mbe": 18552, + "silas": 18553, + "dye": 18554, + "reckless": 18555, + "settler": 18556, + "##itation": 18557, + "info": 18558, + "heats": 18559, + "##writing": 18560, + "176": 18561, + "canonical": 18562, + "maltese": 18563, + "fins": 18564, + "mushroom": 18565, + "stacy": 18566, + "aspen": 18567, + "avid": 18568, + "##kur": 18569, + "##loading": 18570, + "vickers": 18571, + "gaston": 18572, + "hillside": 18573, + "statutes": 18574, + "wilde": 18575, + "gail": 18576, + "kung": 18577, + "sabine": 18578, + "comfortably": 18579, + "motorcycles": 18580, + "##rgo": 18581, + "169": 18582, + "pneumonia": 18583, + "fetch": 18584, + "##sonic": 18585, + "axel": 18586, + "faintly": 18587, + "parallels": 18588, + "##oop": 18589, + "mclaren": 18590, + "spouse": 18591, + "compton": 18592, + "interdisciplinary": 18593, + "miner": 18594, + "##eni": 18595, + "181": 18596, + "clamped": 18597, + "##chal": 18598, + "##llah": 18599, + "separates": 18600, + "versa": 18601, + "##mler": 18602, + "scarborough": 18603, + "labrador": 18604, + "##lity": 18605, + "##osing": 18606, + "rutgers": 18607, + "hurdles": 18608, + "como": 18609, + "166": 18610, + "burt": 18611, + "divers": 18612, + "##100": 18613, + "wichita": 18614, + "cade": 18615, + "coincided": 18616, + "##erson": 18617, + "bruised": 18618, + "mla": 18619, + "##pper": 18620, + "vineyard": 18621, + "##ili": 18622, + "##brush": 18623, + "notch": 18624, + "mentioning": 18625, + "jase": 18626, + "hearted": 18627, + "kits": 18628, + "doe": 18629, + "##acle": 18630, + "pomerania": 18631, + "##ady": 18632, + "ronan": 18633, + "seizure": 18634, + "pavel": 18635, + "problematic": 18636, + "##zaki": 18637, + "domenico": 18638, + "##ulin": 18639, + "catering": 18640, + "penelope": 18641, + "dependence": 18642, + "parental": 18643, + "emilio": 18644, + "ministerial": 18645, + "atkinson": 18646, + "##bolic": 18647, + "clarkson": 18648, + "chargers": 18649, + "colby": 18650, + "grill": 18651, + "peeked": 18652, + "arises": 18653, + "summon": 18654, + "##aged": 18655, + "fools": 18656, + "##grapher": 18657, + "faculties": 18658, + "qaeda": 18659, + "##vial": 18660, + "garner": 18661, + "refurbished": 18662, + "##hwa": 18663, + "geelong": 18664, + "disasters": 18665, + "nudged": 18666, + "bs": 18667, + "shareholder": 18668, + "lori": 18669, + "algae": 18670, + "reinstated": 18671, + "rot": 18672, + "##ades": 18673, + "##nous": 18674, + "invites": 18675, + "stainless": 18676, + "183": 18677, + "inclusive": 18678, + "##itude": 18679, + "diocesan": 18680, + "til": 18681, + "##icz": 18682, + "denomination": 18683, + "##xa": 18684, + "benton": 18685, + "floral": 18686, + "registers": 18687, + "##ider": 18688, + "##erman": 18689, + "##kell": 18690, + "absurd": 18691, + "brunei": 18692, + "guangzhou": 18693, + "hitter": 18694, + "retaliation": 18695, + "##uled": 18696, + "##eve": 18697, + "blanc": 18698, + "nh": 18699, + "consistency": 18700, + "contamination": 18701, + "##eres": 18702, + "##rner": 18703, + "dire": 18704, + "palermo": 18705, + "broadcasters": 18706, + "diaries": 18707, + "inspire": 18708, + "vols": 18709, + "brewer": 18710, + "tightening": 18711, + "ky": 18712, + "mixtape": 18713, + "hormone": 18714, + "##tok": 18715, + "stokes": 18716, + "##color": 18717, + "##dly": 18718, + "##ssi": 18719, + "pg": 18720, + "##ometer": 18721, + "##lington": 18722, + "sanitation": 18723, + "##tility": 18724, + "intercontinental": 18725, + "apps": 18726, + "##adt": 18727, + "¹⁄₂": 18728, + "cylinders": 18729, + "economies": 18730, + "favourable": 18731, + "unison": 18732, + "croix": 18733, + "gertrude": 18734, + "odyssey": 18735, + "vanity": 18736, + "dangling": 18737, + "##logists": 18738, + "upgrades": 18739, + "dice": 18740, + "middleweight": 18741, + "practitioner": 18742, + "##ight": 18743, + "206": 18744, + "henrik": 18745, + "parlor": 18746, + "orion": 18747, + "angered": 18748, + "lac": 18749, + "python": 18750, + "blurted": 18751, + "##rri": 18752, + "sensual": 18753, + "intends": 18754, + "swings": 18755, + "angled": 18756, + "##phs": 18757, + "husky": 18758, + "attain": 18759, + "peerage": 18760, + "precinct": 18761, + "textiles": 18762, + "cheltenham": 18763, + "shuffled": 18764, + "dai": 18765, + "confess": 18766, + "tasting": 18767, + "bhutan": 18768, + "##riation": 18769, + "tyrone": 18770, + "segregation": 18771, + "abrupt": 18772, + "ruiz": 18773, + "##rish": 18774, + "smirked": 18775, + "blackwell": 18776, + "confidential": 18777, + "browning": 18778, + "amounted": 18779, + "##put": 18780, + "vase": 18781, + "scarce": 18782, + "fabulous": 18783, + "raided": 18784, + "staple": 18785, + "guyana": 18786, + "unemployed": 18787, + "glider": 18788, + "shay": 18789, + "##tow": 18790, + "carmine": 18791, + "troll": 18792, + "intervene": 18793, + "squash": 18794, + "superstar": 18795, + "##uce": 18796, + "cylindrical": 18797, + "len": 18798, + "roadway": 18799, + "researched": 18800, + "handy": 18801, + "##rium": 18802, + "##jana": 18803, + "meta": 18804, + "lao": 18805, + "declares": 18806, + "##rring": 18807, + "##tadt": 18808, + "##elin": 18809, + "##kova": 18810, + "willem": 18811, + "shrubs": 18812, + "napoleonic": 18813, + "realms": 18814, + "skater": 18815, + "qi": 18816, + "volkswagen": 18817, + "##ł": 18818, + "tad": 18819, + "hara": 18820, + "archaeologist": 18821, + "awkwardly": 18822, + "eerie": 18823, + "##kind": 18824, + "wiley": 18825, + "##heimer": 18826, + "##24": 18827, + "titus": 18828, + "organizers": 18829, + "cfl": 18830, + "crusaders": 18831, + "lama": 18832, + "usb": 18833, + "vent": 18834, + "enraged": 18835, + "thankful": 18836, + "occupants": 18837, + "maximilian": 18838, + "##gaard": 18839, + "possessing": 18840, + "textbooks": 18841, + "##oran": 18842, + "collaborator": 18843, + "quaker": 18844, + "##ulo": 18845, + "avalanche": 18846, + "mono": 18847, + "silky": 18848, + "straits": 18849, + "isaiah": 18850, + "mustang": 18851, + "surged": 18852, + "resolutions": 18853, + "potomac": 18854, + "descend": 18855, + "cl": 18856, + "kilograms": 18857, + "plato": 18858, + "strains": 18859, + "saturdays": 18860, + "##olin": 18861, + "bernstein": 18862, + "##ype": 18863, + "holstein": 18864, + "ponytail": 18865, + "##watch": 18866, + "belize": 18867, + "conversely": 18868, + "heroine": 18869, + "perpetual": 18870, + "##ylus": 18871, + "charcoal": 18872, + "piedmont": 18873, + "glee": 18874, + "negotiating": 18875, + "backdrop": 18876, + "prologue": 18877, + "##jah": 18878, + "##mmy": 18879, + "pasadena": 18880, + "climbs": 18881, + "ramos": 18882, + "sunni": 18883, + "##holm": 18884, + "##tner": 18885, + "##tri": 18886, + "anand": 18887, + "deficiency": 18888, + "hertfordshire": 18889, + "stout": 18890, + "##avi": 18891, + "aperture": 18892, + "orioles": 18893, + "##irs": 18894, + "doncaster": 18895, + "intrigued": 18896, + "bombed": 18897, + "coating": 18898, + "otis": 18899, + "##mat": 18900, + "cocktail": 18901, + "##jit": 18902, + "##eto": 18903, + "amir": 18904, + "arousal": 18905, + "sar": 18906, + "##proof": 18907, + "##act": 18908, + "##ories": 18909, + "dixie": 18910, + "pots": 18911, + "##bow": 18912, + "whereabouts": 18913, + "159": 18914, + "##fted": 18915, + "drains": 18916, + "bullying": 18917, + "cottages": 18918, + "scripture": 18919, + "coherent": 18920, + "fore": 18921, + "poe": 18922, + "appetite": 18923, + "##uration": 18924, + "sampled": 18925, + "##ators": 18926, + "##dp": 18927, + "derrick": 18928, + "rotor": 18929, + "jays": 18930, + "peacock": 18931, + "installment": 18932, + "##rro": 18933, + "advisors": 18934, + "##coming": 18935, + "rodeo": 18936, + "scotch": 18937, + "##mot": 18938, + "##db": 18939, + "##fen": 18940, + "##vant": 18941, + "ensued": 18942, + "rodrigo": 18943, + "dictatorship": 18944, + "martyrs": 18945, + "twenties": 18946, + "##н": 18947, + "towed": 18948, + "incidence": 18949, + "marta": 18950, + "rainforest": 18951, + "sai": 18952, + "scaled": 18953, + "##cles": 18954, + "oceanic": 18955, + "qualifiers": 18956, + "symphonic": 18957, + "mcbride": 18958, + "dislike": 18959, + "generalized": 18960, + "aubrey": 18961, + "colonization": 18962, + "##iation": 18963, + "##lion": 18964, + "##ssing": 18965, + "disliked": 18966, + "lublin": 18967, + "salesman": 18968, + "##ulates": 18969, + "spherical": 18970, + "whatsoever": 18971, + "sweating": 18972, + "avalon": 18973, + "contention": 18974, + "punt": 18975, + "severity": 18976, + "alderman": 18977, + "atari": 18978, + "##dina": 18979, + "##grant": 18980, + "##rop": 18981, + "scarf": 18982, + "seville": 18983, + "vertices": 18984, + "annexation": 18985, + "fairfield": 18986, + "fascination": 18987, + "inspiring": 18988, + "launches": 18989, + "palatinate": 18990, + "regretted": 18991, + "##rca": 18992, + "feral": 18993, + "##iom": 18994, + "elk": 18995, + "nap": 18996, + "olsen": 18997, + "reddy": 18998, + "yong": 18999, + "##leader": 19000, + "##iae": 19001, + "garment": 19002, + "transports": 19003, + "feng": 19004, + "gracie": 19005, + "outrage": 19006, + "viceroy": 19007, + "insides": 19008, + "##esis": 19009, + "breakup": 19010, + "grady": 19011, + "organizer": 19012, + "softer": 19013, + "grimaced": 19014, + "222": 19015, + "murals": 19016, + "galicia": 19017, + "arranging": 19018, + "vectors": 19019, + "##rsten": 19020, + "bas": 19021, + "##sb": 19022, + "##cens": 19023, + "sloan": 19024, + "##eka": 19025, + "bitten": 19026, + "ara": 19027, + "fender": 19028, + "nausea": 19029, + "bumped": 19030, + "kris": 19031, + "banquet": 19032, + "comrades": 19033, + "detector": 19034, + "persisted": 19035, + "##llan": 19036, + "adjustment": 19037, + "endowed": 19038, + "cinemas": 19039, + "##shot": 19040, + "sellers": 19041, + "##uman": 19042, + "peek": 19043, + "epa": 19044, + "kindly": 19045, + "neglect": 19046, + "simpsons": 19047, + "talon": 19048, + "mausoleum": 19049, + "runaway": 19050, + "hangul": 19051, + "lookout": 19052, + "##cic": 19053, + "rewards": 19054, + "coughed": 19055, + "acquainted": 19056, + "chloride": 19057, + "##ald": 19058, + "quicker": 19059, + "accordion": 19060, + "neolithic": 19061, + "##qa": 19062, + "artemis": 19063, + "coefficient": 19064, + "lenny": 19065, + "pandora": 19066, + "tx": 19067, + "##xed": 19068, + "ecstasy": 19069, + "litter": 19070, + "segunda": 19071, + "chairperson": 19072, + "gemma": 19073, + "hiss": 19074, + "rumor": 19075, + "vow": 19076, + "nasal": 19077, + "antioch": 19078, + "compensate": 19079, + "patiently": 19080, + "transformers": 19081, + "##eded": 19082, + "judo": 19083, + "morrow": 19084, + "penis": 19085, + "posthumous": 19086, + "philips": 19087, + "bandits": 19088, + "husbands": 19089, + "denote": 19090, + "flaming": 19091, + "##any": 19092, + "##phones": 19093, + "langley": 19094, + "yorker": 19095, + "1760": 19096, + "walters": 19097, + "##uo": 19098, + "##kle": 19099, + "gubernatorial": 19100, + "fatty": 19101, + "samsung": 19102, + "leroy": 19103, + "outlaw": 19104, + "##nine": 19105, + "unpublished": 19106, + "poole": 19107, + "jakob": 19108, + "##ᵢ": 19109, + "##ₙ": 19110, + "crete": 19111, + "distorted": 19112, + "superiority": 19113, + "##dhi": 19114, + "intercept": 19115, + "crust": 19116, + "mig": 19117, + "claus": 19118, + "crashes": 19119, + "positioning": 19120, + "188": 19121, + "stallion": 19122, + "301": 19123, + "frontal": 19124, + "armistice": 19125, + "##estinal": 19126, + "elton": 19127, + "aj": 19128, + "encompassing": 19129, + "camel": 19130, + "commemorated": 19131, + "malaria": 19132, + "woodward": 19133, + "calf": 19134, + "cigar": 19135, + "penetrate": 19136, + "##oso": 19137, + "willard": 19138, + "##rno": 19139, + "##uche": 19140, + "illustrate": 19141, + "amusing": 19142, + "convergence": 19143, + "noteworthy": 19144, + "##lma": 19145, + "##rva": 19146, + "journeys": 19147, + "realise": 19148, + "manfred": 19149, + "##sable": 19150, + "410": 19151, + "##vocation": 19152, + "hearings": 19153, + "fiance": 19154, + "##posed": 19155, + "educators": 19156, + "provoked": 19157, + "adjusting": 19158, + "##cturing": 19159, + "modular": 19160, + "stockton": 19161, + "paterson": 19162, + "vlad": 19163, + "rejects": 19164, + "electors": 19165, + "selena": 19166, + "maureen": 19167, + "##tres": 19168, + "uber": 19169, + "##rce": 19170, + "swirled": 19171, + "##num": 19172, + "proportions": 19173, + "nanny": 19174, + "pawn": 19175, + "naturalist": 19176, + "parma": 19177, + "apostles": 19178, + "awoke": 19179, + "ethel": 19180, + "wen": 19181, + "##bey": 19182, + "monsoon": 19183, + "overview": 19184, + "##inating": 19185, + "mccain": 19186, + "rendition": 19187, + "risky": 19188, + "adorned": 19189, + "##ih": 19190, + "equestrian": 19191, + "germain": 19192, + "nj": 19193, + "conspicuous": 19194, + "confirming": 19195, + "##yoshi": 19196, + "shivering": 19197, + "##imeter": 19198, + "milestone": 19199, + "rumours": 19200, + "flinched": 19201, + "bounds": 19202, + "smacked": 19203, + "token": 19204, + "##bei": 19205, + "lectured": 19206, + "automobiles": 19207, + "##shore": 19208, + "impacted": 19209, + "##iable": 19210, + "nouns": 19211, + "nero": 19212, + "##leaf": 19213, + "ismail": 19214, + "prostitute": 19215, + "trams": 19216, + "##lace": 19217, + "bridget": 19218, + "sud": 19219, + "stimulus": 19220, + "impressions": 19221, + "reins": 19222, + "revolves": 19223, + "##oud": 19224, + "##gned": 19225, + "giro": 19226, + "honeymoon": 19227, + "##swell": 19228, + "criterion": 19229, + "##sms": 19230, + "##uil": 19231, + "libyan": 19232, + "prefers": 19233, + "##osition": 19234, + "211": 19235, + "preview": 19236, + "sucks": 19237, + "accusation": 19238, + "bursts": 19239, + "metaphor": 19240, + "diffusion": 19241, + "tolerate": 19242, + "faye": 19243, + "betting": 19244, + "cinematographer": 19245, + "liturgical": 19246, + "specials": 19247, + "bitterly": 19248, + "humboldt": 19249, + "##ckle": 19250, + "flux": 19251, + "rattled": 19252, + "##itzer": 19253, + "archaeologists": 19254, + "odor": 19255, + "authorised": 19256, + "marshes": 19257, + "discretion": 19258, + "##ов": 19259, + "alarmed": 19260, + "archaic": 19261, + "inverse": 19262, + "##leton": 19263, + "explorers": 19264, + "##pine": 19265, + "drummond": 19266, + "tsunami": 19267, + "woodlands": 19268, + "##minate": 19269, + "##tland": 19270, + "booklet": 19271, + "insanity": 19272, + "owning": 19273, + "insert": 19274, + "crafted": 19275, + "calculus": 19276, + "##tore": 19277, + "receivers": 19278, + "##bt": 19279, + "stung": 19280, + "##eca": 19281, + "##nched": 19282, + "prevailing": 19283, + "travellers": 19284, + "eyeing": 19285, + "lila": 19286, + "graphs": 19287, + "##borne": 19288, + "178": 19289, + "julien": 19290, + "##won": 19291, + "morale": 19292, + "adaptive": 19293, + "therapist": 19294, + "erica": 19295, + "cw": 19296, + "libertarian": 19297, + "bowman": 19298, + "pitches": 19299, + "vita": 19300, + "##ional": 19301, + "crook": 19302, + "##ads": 19303, + "##entation": 19304, + "caledonia": 19305, + "mutiny": 19306, + "##sible": 19307, + "1840s": 19308, + "automation": 19309, + "##ß": 19310, + "flock": 19311, + "##pia": 19312, + "ironic": 19313, + "pathology": 19314, + "##imus": 19315, + "remarried": 19316, + "##22": 19317, + "joker": 19318, + "withstand": 19319, + "energies": 19320, + "##att": 19321, + "shropshire": 19322, + "hostages": 19323, + "madeleine": 19324, + "tentatively": 19325, + "conflicting": 19326, + "mateo": 19327, + "recipes": 19328, + "euros": 19329, + "ol": 19330, + "mercenaries": 19331, + "nico": 19332, + "##ndon": 19333, + "albuquerque": 19334, + "augmented": 19335, + "mythical": 19336, + "bel": 19337, + "freud": 19338, + "##child": 19339, + "cough": 19340, + "##lica": 19341, + "365": 19342, + "freddy": 19343, + "lillian": 19344, + "genetically": 19345, + "nuremberg": 19346, + "calder": 19347, + "209": 19348, + "bonn": 19349, + "outdoors": 19350, + "paste": 19351, + "suns": 19352, + "urgency": 19353, + "vin": 19354, + "restraint": 19355, + "tyson": 19356, + "##cera": 19357, + "##selle": 19358, + "barrage": 19359, + "bethlehem": 19360, + "kahn": 19361, + "##par": 19362, + "mounts": 19363, + "nippon": 19364, + "barony": 19365, + "happier": 19366, + "ryu": 19367, + "makeshift": 19368, + "sheldon": 19369, + "blushed": 19370, + "castillo": 19371, + "barking": 19372, + "listener": 19373, + "taped": 19374, + "bethel": 19375, + "fluent": 19376, + "headlines": 19377, + "pornography": 19378, + "rum": 19379, + "disclosure": 19380, + "sighing": 19381, + "mace": 19382, + "doubling": 19383, + "gunther": 19384, + "manly": 19385, + "##plex": 19386, + "rt": 19387, + "interventions": 19388, + "physiological": 19389, + "forwards": 19390, + "emerges": 19391, + "##tooth": 19392, + "##gny": 19393, + "compliment": 19394, + "rib": 19395, + "recession": 19396, + "visibly": 19397, + "barge": 19398, + "faults": 19399, + "connector": 19400, + "exquisite": 19401, + "prefect": 19402, + "##rlin": 19403, + "patio": 19404, + "##cured": 19405, + "elevators": 19406, + "brandt": 19407, + "italics": 19408, + "pena": 19409, + "173": 19410, + "wasp": 19411, + "satin": 19412, + "ea": 19413, + "botswana": 19414, + "graceful": 19415, + "respectable": 19416, + "##jima": 19417, + "##rter": 19418, + "##oic": 19419, + "franciscan": 19420, + "generates": 19421, + "##dl": 19422, + "alfredo": 19423, + "disgusting": 19424, + "##olate": 19425, + "##iously": 19426, + "sherwood": 19427, + "warns": 19428, + "cod": 19429, + "promo": 19430, + "cheryl": 19431, + "sino": 19432, + "##ة": 19433, + "##escu": 19434, + "twitch": 19435, + "##zhi": 19436, + "brownish": 19437, + "thom": 19438, + "ortiz": 19439, + "##dron": 19440, + "densely": 19441, + "##beat": 19442, + "carmel": 19443, + "reinforce": 19444, + "##bana": 19445, + "187": 19446, + "anastasia": 19447, + "downhill": 19448, + "vertex": 19449, + "contaminated": 19450, + "remembrance": 19451, + "harmonic": 19452, + "homework": 19453, + "##sol": 19454, + "fiancee": 19455, + "gears": 19456, + "olds": 19457, + "angelica": 19458, + "loft": 19459, + "ramsay": 19460, + "quiz": 19461, + "colliery": 19462, + "sevens": 19463, + "##cape": 19464, + "autism": 19465, + "##hil": 19466, + "walkway": 19467, + "##boats": 19468, + "ruben": 19469, + "abnormal": 19470, + "ounce": 19471, + "khmer": 19472, + "##bbe": 19473, + "zachary": 19474, + "bedside": 19475, + "morphology": 19476, + "punching": 19477, + "##olar": 19478, + "sparrow": 19479, + "convinces": 19480, + "##35": 19481, + "hewitt": 19482, + "queer": 19483, + "remastered": 19484, + "rods": 19485, + "mabel": 19486, + "solemn": 19487, + "notified": 19488, + "lyricist": 19489, + "symmetric": 19490, + "##xide": 19491, + "174": 19492, + "encore": 19493, + "passports": 19494, + "wildcats": 19495, + "##uni": 19496, + "baja": 19497, + "##pac": 19498, + "mildly": 19499, + "##ease": 19500, + "bleed": 19501, + "commodity": 19502, + "mounds": 19503, + "glossy": 19504, + "orchestras": 19505, + "##omo": 19506, + "damian": 19507, + "prelude": 19508, + "ambitions": 19509, + "##vet": 19510, + "awhile": 19511, + "remotely": 19512, + "##aud": 19513, + "asserts": 19514, + "imply": 19515, + "##iques": 19516, + "distinctly": 19517, + "modelling": 19518, + "remedy": 19519, + "##dded": 19520, + "windshield": 19521, + "dani": 19522, + "xiao": 19523, + "##endra": 19524, + "audible": 19525, + "powerplant": 19526, + "1300": 19527, + "invalid": 19528, + "elemental": 19529, + "acquisitions": 19530, + "##hala": 19531, + "immaculate": 19532, + "libby": 19533, + "plata": 19534, + "smuggling": 19535, + "ventilation": 19536, + "denoted": 19537, + "minh": 19538, + "##morphism": 19539, + "430": 19540, + "differed": 19541, + "dion": 19542, + "kelley": 19543, + "lore": 19544, + "mocking": 19545, + "sabbath": 19546, + "spikes": 19547, + "hygiene": 19548, + "drown": 19549, + "runoff": 19550, + "stylized": 19551, + "tally": 19552, + "liberated": 19553, + "aux": 19554, + "interpreter": 19555, + "righteous": 19556, + "aba": 19557, + "siren": 19558, + "reaper": 19559, + "pearce": 19560, + "millie": 19561, + "##cier": 19562, + "##yra": 19563, + "gaius": 19564, + "##iso": 19565, + "captures": 19566, + "##ttering": 19567, + "dorm": 19568, + "claudio": 19569, + "##sic": 19570, + "benches": 19571, + "knighted": 19572, + "blackness": 19573, + "##ored": 19574, + "discount": 19575, + "fumble": 19576, + "oxidation": 19577, + "routed": 19578, + "##ς": 19579, + "novak": 19580, + "perpendicular": 19581, + "spoiled": 19582, + "fracture": 19583, + "splits": 19584, + "##urt": 19585, + "pads": 19586, + "topology": 19587, + "##cats": 19588, + "axes": 19589, + "fortunate": 19590, + "offenders": 19591, + "protestants": 19592, + "esteem": 19593, + "221": 19594, + "broadband": 19595, + "convened": 19596, + "frankly": 19597, + "hound": 19598, + "prototypes": 19599, + "isil": 19600, + "facilitated": 19601, + "keel": 19602, + "##sher": 19603, + "sahara": 19604, + "awaited": 19605, + "bubba": 19606, + "orb": 19607, + "prosecutors": 19608, + "186": 19609, + "hem": 19610, + "520": 19611, + "##xing": 19612, + "relaxing": 19613, + "remnant": 19614, + "romney": 19615, + "sorted": 19616, + "slalom": 19617, + "stefano": 19618, + "ulrich": 19619, + "##active": 19620, + "exemption": 19621, + "folder": 19622, + "pauses": 19623, + "foliage": 19624, + "hitchcock": 19625, + "epithet": 19626, + "204": 19627, + "criticisms": 19628, + "##aca": 19629, + "ballistic": 19630, + "brody": 19631, + "hinduism": 19632, + "chaotic": 19633, + "youths": 19634, + "equals": 19635, + "##pala": 19636, + "pts": 19637, + "thicker": 19638, + "analogous": 19639, + "capitalist": 19640, + "improvised": 19641, + "overseeing": 19642, + "sinatra": 19643, + "ascended": 19644, + "beverage": 19645, + "##tl": 19646, + "straightforward": 19647, + "##kon": 19648, + "curran": 19649, + "##west": 19650, + "bois": 19651, + "325": 19652, + "induce": 19653, + "surveying": 19654, + "emperors": 19655, + "sax": 19656, + "unpopular": 19657, + "##kk": 19658, + "cartoonist": 19659, + "fused": 19660, + "##mble": 19661, + "unto": 19662, + "##yuki": 19663, + "localities": 19664, + "##cko": 19665, + "##ln": 19666, + "darlington": 19667, + "slain": 19668, + "academie": 19669, + "lobbying": 19670, + "sediment": 19671, + "puzzles": 19672, + "##grass": 19673, + "defiance": 19674, + "dickens": 19675, + "manifest": 19676, + "tongues": 19677, + "alumnus": 19678, + "arbor": 19679, + "coincide": 19680, + "184": 19681, + "appalachian": 19682, + "mustafa": 19683, + "examiner": 19684, + "cabaret": 19685, + "traumatic": 19686, + "yves": 19687, + "bracelet": 19688, + "draining": 19689, + "heroin": 19690, + "magnum": 19691, + "baths": 19692, + "odessa": 19693, + "consonants": 19694, + "mitsubishi": 19695, + "##gua": 19696, + "kellan": 19697, + "vaudeville": 19698, + "##fr": 19699, + "joked": 19700, + "null": 19701, + "straps": 19702, + "probation": 19703, + "##ław": 19704, + "ceded": 19705, + "interfaces": 19706, + "##pas": 19707, + "##zawa": 19708, + "blinding": 19709, + "viet": 19710, + "224": 19711, + "rothschild": 19712, + "museo": 19713, + "640": 19714, + "huddersfield": 19715, + "##vr": 19716, + "tactic": 19717, + "##storm": 19718, + "brackets": 19719, + "dazed": 19720, + "incorrectly": 19721, + "##vu": 19722, + "reg": 19723, + "glazed": 19724, + "fearful": 19725, + "manifold": 19726, + "benefited": 19727, + "irony": 19728, + "##sun": 19729, + "stumbling": 19730, + "##rte": 19731, + "willingness": 19732, + "balkans": 19733, + "mei": 19734, + "wraps": 19735, + "##aba": 19736, + "injected": 19737, + "##lea": 19738, + "gu": 19739, + "syed": 19740, + "harmless": 19741, + "##hammer": 19742, + "bray": 19743, + "takeoff": 19744, + "poppy": 19745, + "timor": 19746, + "cardboard": 19747, + "astronaut": 19748, + "purdue": 19749, + "weeping": 19750, + "southbound": 19751, + "cursing": 19752, + "stalls": 19753, + "diagonal": 19754, + "##neer": 19755, + "lamar": 19756, + "bryce": 19757, + "comte": 19758, + "weekdays": 19759, + "harrington": 19760, + "##uba": 19761, + "negatively": 19762, + "##see": 19763, + "lays": 19764, + "grouping": 19765, + "##cken": 19766, + "##henko": 19767, + "affirmed": 19768, + "halle": 19769, + "modernist": 19770, + "##lai": 19771, + "hodges": 19772, + "smelling": 19773, + "aristocratic": 19774, + "baptized": 19775, + "dismiss": 19776, + "justification": 19777, + "oilers": 19778, + "##now": 19779, + "coupling": 19780, + "qin": 19781, + "snack": 19782, + "healer": 19783, + "##qing": 19784, + "gardener": 19785, + "layla": 19786, + "battled": 19787, + "formulated": 19788, + "stephenson": 19789, + "gravitational": 19790, + "##gill": 19791, + "##jun": 19792, + "1768": 19793, + "granny": 19794, + "coordinating": 19795, + "suites": 19796, + "##cd": 19797, + "##ioned": 19798, + "monarchs": 19799, + "##cote": 19800, + "##hips": 19801, + "sep": 19802, + "blended": 19803, + "apr": 19804, + "barrister": 19805, + "deposition": 19806, + "fia": 19807, + "mina": 19808, + "policemen": 19809, + "paranoid": 19810, + "##pressed": 19811, + "churchyard": 19812, + "covert": 19813, + "crumpled": 19814, + "creep": 19815, + "abandoning": 19816, + "tr": 19817, + "transmit": 19818, + "conceal": 19819, + "barr": 19820, + "understands": 19821, + "readiness": 19822, + "spire": 19823, + "##cology": 19824, + "##enia": 19825, + "##erry": 19826, + "610": 19827, + "startling": 19828, + "unlock": 19829, + "vida": 19830, + "bowled": 19831, + "slots": 19832, + "##nat": 19833, + "##islav": 19834, + "spaced": 19835, + "trusting": 19836, + "admire": 19837, + "rig": 19838, + "##ink": 19839, + "slack": 19840, + "##70": 19841, + "mv": 19842, + "207": 19843, + "casualty": 19844, + "##wei": 19845, + "classmates": 19846, + "##odes": 19847, + "##rar": 19848, + "##rked": 19849, + "amherst": 19850, + "furnished": 19851, + "evolve": 19852, + "foundry": 19853, + "menace": 19854, + "mead": 19855, + "##lein": 19856, + "flu": 19857, + "wesleyan": 19858, + "##kled": 19859, + "monterey": 19860, + "webber": 19861, + "##vos": 19862, + "wil": 19863, + "##mith": 19864, + "##на": 19865, + "bartholomew": 19866, + "justices": 19867, + "restrained": 19868, + "##cke": 19869, + "amenities": 19870, + "191": 19871, + "mediated": 19872, + "sewage": 19873, + "trenches": 19874, + "ml": 19875, + "mainz": 19876, + "##thus": 19877, + "1800s": 19878, + "##cula": 19879, + "##inski": 19880, + "caine": 19881, + "bonding": 19882, + "213": 19883, + "converts": 19884, + "spheres": 19885, + "superseded": 19886, + "marianne": 19887, + "crypt": 19888, + "sweaty": 19889, + "ensign": 19890, + "historia": 19891, + "##br": 19892, + "spruce": 19893, + "##post": 19894, + "##ask": 19895, + "forks": 19896, + "thoughtfully": 19897, + "yukon": 19898, + "pamphlet": 19899, + "ames": 19900, + "##uter": 19901, + "karma": 19902, + "##yya": 19903, + "bryn": 19904, + "negotiation": 19905, + "sighs": 19906, + "incapable": 19907, + "##mbre": 19908, + "##ntial": 19909, + "actresses": 19910, + "taft": 19911, + "##mill": 19912, + "luce": 19913, + "prevailed": 19914, + "##amine": 19915, + "1773": 19916, + "motionless": 19917, + "envoy": 19918, + "testify": 19919, + "investing": 19920, + "sculpted": 19921, + "instructors": 19922, + "provence": 19923, + "kali": 19924, + "cullen": 19925, + "horseback": 19926, + "##while": 19927, + "goodwin": 19928, + "##jos": 19929, + "gaa": 19930, + "norte": 19931, + "##ldon": 19932, + "modify": 19933, + "wavelength": 19934, + "abd": 19935, + "214": 19936, + "skinned": 19937, + "sprinter": 19938, + "forecast": 19939, + "scheduling": 19940, + "marries": 19941, + "squared": 19942, + "tentative": 19943, + "##chman": 19944, + "boer": 19945, + "##isch": 19946, + "bolts": 19947, + "swap": 19948, + "fisherman": 19949, + "assyrian": 19950, + "impatiently": 19951, + "guthrie": 19952, + "martins": 19953, + "murdoch": 19954, + "194": 19955, + "tanya": 19956, + "nicely": 19957, + "dolly": 19958, + "lacy": 19959, + "med": 19960, + "##45": 19961, + "syn": 19962, + "decks": 19963, + "fashionable": 19964, + "millionaire": 19965, + "##ust": 19966, + "surfing": 19967, + "##ml": 19968, + "##ision": 19969, + "heaved": 19970, + "tammy": 19971, + "consulate": 19972, + "attendees": 19973, + "routinely": 19974, + "197": 19975, + "fuse": 19976, + "saxophonist": 19977, + "backseat": 19978, + "malaya": 19979, + "##lord": 19980, + "scowl": 19981, + "tau": 19982, + "##ishly": 19983, + "193": 19984, + "sighted": 19985, + "steaming": 19986, + "##rks": 19987, + "303": 19988, + "911": 19989, + "##holes": 19990, + "##hong": 19991, + "ching": 19992, + "##wife": 19993, + "bless": 19994, + "conserved": 19995, + "jurassic": 19996, + "stacey": 19997, + "unix": 19998, + "zion": 19999, + "chunk": 20000, + "rigorous": 20001, + "blaine": 20002, + "198": 20003, + "peabody": 20004, + "slayer": 20005, + "dismay": 20006, + "brewers": 20007, + "nz": 20008, + "##jer": 20009, + "det": 20010, + "##glia": 20011, + "glover": 20012, + "postwar": 20013, + "int": 20014, + "penetration": 20015, + "sylvester": 20016, + "imitation": 20017, + "vertically": 20018, + "airlift": 20019, + "heiress": 20020, + "knoxville": 20021, + "viva": 20022, + "##uin": 20023, + "390": 20024, + "macon": 20025, + "##rim": 20026, + "##fighter": 20027, + "##gonal": 20028, + "janice": 20029, + "##orescence": 20030, + "##wari": 20031, + "marius": 20032, + "belongings": 20033, + "leicestershire": 20034, + "196": 20035, + "blanco": 20036, + "inverted": 20037, + "preseason": 20038, + "sanity": 20039, + "sobbing": 20040, + "##due": 20041, + "##elt": 20042, + "##dled": 20043, + "collingwood": 20044, + "regeneration": 20045, + "flickering": 20046, + "shortest": 20047, + "##mount": 20048, + "##osi": 20049, + "feminism": 20050, + "##lat": 20051, + "sherlock": 20052, + "cabinets": 20053, + "fumbled": 20054, + "northbound": 20055, + "precedent": 20056, + "snaps": 20057, + "##mme": 20058, + "researching": 20059, + "##akes": 20060, + "guillaume": 20061, + "insights": 20062, + "manipulated": 20063, + "vapor": 20064, + "neighbour": 20065, + "sap": 20066, + "gangster": 20067, + "frey": 20068, + "f1": 20069, + "stalking": 20070, + "scarcely": 20071, + "callie": 20072, + "barnett": 20073, + "tendencies": 20074, + "audi": 20075, + "doomed": 20076, + "assessing": 20077, + "slung": 20078, + "panchayat": 20079, + "ambiguous": 20080, + "bartlett": 20081, + "##etto": 20082, + "distributing": 20083, + "violating": 20084, + "wolverhampton": 20085, + "##hetic": 20086, + "swami": 20087, + "histoire": 20088, + "##urus": 20089, + "liable": 20090, + "pounder": 20091, + "groin": 20092, + "hussain": 20093, + "larsen": 20094, + "popping": 20095, + "surprises": 20096, + "##atter": 20097, + "vie": 20098, + "curt": 20099, + "##station": 20100, + "mute": 20101, + "relocate": 20102, + "musicals": 20103, + "authorization": 20104, + "richter": 20105, + "##sef": 20106, + "immortality": 20107, + "tna": 20108, + "bombings": 20109, + "##press": 20110, + "deteriorated": 20111, + "yiddish": 20112, + "##acious": 20113, + "robbed": 20114, + "colchester": 20115, + "cs": 20116, + "pmid": 20117, + "ao": 20118, + "verified": 20119, + "balancing": 20120, + "apostle": 20121, + "swayed": 20122, + "recognizable": 20123, + "oxfordshire": 20124, + "retention": 20125, + "nottinghamshire": 20126, + "contender": 20127, + "judd": 20128, + "invitational": 20129, + "shrimp": 20130, + "uhf": 20131, + "##icient": 20132, + "cleaner": 20133, + "longitudinal": 20134, + "tanker": 20135, + "##mur": 20136, + "acronym": 20137, + "broker": 20138, + "koppen": 20139, + "sundance": 20140, + "suppliers": 20141, + "##gil": 20142, + "4000": 20143, + "clipped": 20144, + "fuels": 20145, + "petite": 20146, + "##anne": 20147, + "landslide": 20148, + "helene": 20149, + "diversion": 20150, + "populous": 20151, + "landowners": 20152, + "auspices": 20153, + "melville": 20154, + "quantitative": 20155, + "##xes": 20156, + "ferries": 20157, + "nicky": 20158, + "##llus": 20159, + "doo": 20160, + "haunting": 20161, + "roche": 20162, + "carver": 20163, + "downed": 20164, + "unavailable": 20165, + "##pathy": 20166, + "approximation": 20167, + "hiroshima": 20168, + "##hue": 20169, + "garfield": 20170, + "valle": 20171, + "comparatively": 20172, + "keyboardist": 20173, + "traveler": 20174, + "##eit": 20175, + "congestion": 20176, + "calculating": 20177, + "subsidiaries": 20178, + "##bate": 20179, + "serb": 20180, + "modernization": 20181, + "fairies": 20182, + "deepened": 20183, + "ville": 20184, + "averages": 20185, + "##lore": 20186, + "inflammatory": 20187, + "tonga": 20188, + "##itch": 20189, + "co₂": 20190, + "squads": 20191, + "##hea": 20192, + "gigantic": 20193, + "serum": 20194, + "enjoyment": 20195, + "retailer": 20196, + "verona": 20197, + "35th": 20198, + "cis": 20199, + "##phobic": 20200, + "magna": 20201, + "technicians": 20202, + "##vati": 20203, + "arithmetic": 20204, + "##sport": 20205, + "levin": 20206, + "##dation": 20207, + "amtrak": 20208, + "chow": 20209, + "sienna": 20210, + "##eyer": 20211, + "backstage": 20212, + "entrepreneurship": 20213, + "##otic": 20214, + "learnt": 20215, + "tao": 20216, + "##udy": 20217, + "worcestershire": 20218, + "formulation": 20219, + "baggage": 20220, + "hesitant": 20221, + "bali": 20222, + "sabotage": 20223, + "##kari": 20224, + "barren": 20225, + "enhancing": 20226, + "murmur": 20227, + "pl": 20228, + "freshly": 20229, + "putnam": 20230, + "syntax": 20231, + "aces": 20232, + "medicines": 20233, + "resentment": 20234, + "bandwidth": 20235, + "##sier": 20236, + "grins": 20237, + "chili": 20238, + "guido": 20239, + "##sei": 20240, + "framing": 20241, + "implying": 20242, + "gareth": 20243, + "lissa": 20244, + "genevieve": 20245, + "pertaining": 20246, + "admissions": 20247, + "geo": 20248, + "thorpe": 20249, + "proliferation": 20250, + "sato": 20251, + "bela": 20252, + "analyzing": 20253, + "parting": 20254, + "##gor": 20255, + "awakened": 20256, + "##isman": 20257, + "huddled": 20258, + "secrecy": 20259, + "##kling": 20260, + "hush": 20261, + "gentry": 20262, + "540": 20263, + "dungeons": 20264, + "##ego": 20265, + "coasts": 20266, + "##utz": 20267, + "sacrificed": 20268, + "##chule": 20269, + "landowner": 20270, + "mutually": 20271, + "prevalence": 20272, + "programmer": 20273, + "adolescent": 20274, + "disrupted": 20275, + "seaside": 20276, + "gee": 20277, + "trusts": 20278, + "vamp": 20279, + "georgie": 20280, + "##nesian": 20281, + "##iol": 20282, + "schedules": 20283, + "sindh": 20284, + "##market": 20285, + "etched": 20286, + "hm": 20287, + "sparse": 20288, + "bey": 20289, + "beaux": 20290, + "scratching": 20291, + "gliding": 20292, + "unidentified": 20293, + "216": 20294, + "collaborating": 20295, + "gems": 20296, + "jesuits": 20297, + "oro": 20298, + "accumulation": 20299, + "shaping": 20300, + "mbe": 20301, + "anal": 20302, + "##xin": 20303, + "231": 20304, + "enthusiasts": 20305, + "newscast": 20306, + "##egan": 20307, + "janata": 20308, + "dewey": 20309, + "parkinson": 20310, + "179": 20311, + "ankara": 20312, + "biennial": 20313, + "towering": 20314, + "dd": 20315, + "inconsistent": 20316, + "950": 20317, + "##chet": 20318, + "thriving": 20319, + "terminate": 20320, + "cabins": 20321, + "furiously": 20322, + "eats": 20323, + "advocating": 20324, + "donkey": 20325, + "marley": 20326, + "muster": 20327, + "phyllis": 20328, + "leiden": 20329, + "##user": 20330, + "grassland": 20331, + "glittering": 20332, + "iucn": 20333, + "loneliness": 20334, + "217": 20335, + "memorandum": 20336, + "armenians": 20337, + "##ddle": 20338, + "popularized": 20339, + "rhodesia": 20340, + "60s": 20341, + "lame": 20342, + "##illon": 20343, + "sans": 20344, + "bikini": 20345, + "header": 20346, + "orbits": 20347, + "##xx": 20348, + "##finger": 20349, + "##ulator": 20350, + "sharif": 20351, + "spines": 20352, + "biotechnology": 20353, + "strolled": 20354, + "naughty": 20355, + "yates": 20356, + "##wire": 20357, + "fremantle": 20358, + "milo": 20359, + "##mour": 20360, + "abducted": 20361, + "removes": 20362, + "##atin": 20363, + "humming": 20364, + "wonderland": 20365, + "##chrome": 20366, + "##ester": 20367, + "hume": 20368, + "pivotal": 20369, + "##rates": 20370, + "armand": 20371, + "grams": 20372, + "believers": 20373, + "elector": 20374, + "rte": 20375, + "apron": 20376, + "bis": 20377, + "scraped": 20378, + "##yria": 20379, + "endorsement": 20380, + "initials": 20381, + "##llation": 20382, + "eps": 20383, + "dotted": 20384, + "hints": 20385, + "buzzing": 20386, + "emigration": 20387, + "nearer": 20388, + "##tom": 20389, + "indicators": 20390, + "##ulu": 20391, + "coarse": 20392, + "neutron": 20393, + "protectorate": 20394, + "##uze": 20395, + "directional": 20396, + "exploits": 20397, + "pains": 20398, + "loire": 20399, + "1830s": 20400, + "proponents": 20401, + "guggenheim": 20402, + "rabbits": 20403, + "ritchie": 20404, + "305": 20405, + "hectare": 20406, + "inputs": 20407, + "hutton": 20408, + "##raz": 20409, + "verify": 20410, + "##ako": 20411, + "boilers": 20412, + "longitude": 20413, + "##lev": 20414, + "skeletal": 20415, + "yer": 20416, + "emilia": 20417, + "citrus": 20418, + "compromised": 20419, + "##gau": 20420, + "pokemon": 20421, + "prescription": 20422, + "paragraph": 20423, + "eduard": 20424, + "cadillac": 20425, + "attire": 20426, + "categorized": 20427, + "kenyan": 20428, + "weddings": 20429, + "charley": 20430, + "##bourg": 20431, + "entertain": 20432, + "monmouth": 20433, + "##lles": 20434, + "nutrients": 20435, + "davey": 20436, + "mesh": 20437, + "incentive": 20438, + "practised": 20439, + "ecosystems": 20440, + "kemp": 20441, + "subdued": 20442, + "overheard": 20443, + "##rya": 20444, + "bodily": 20445, + "maxim": 20446, + "##nius": 20447, + "apprenticeship": 20448, + "ursula": 20449, + "##fight": 20450, + "lodged": 20451, + "rug": 20452, + "silesian": 20453, + "unconstitutional": 20454, + "patel": 20455, + "inspected": 20456, + "coyote": 20457, + "unbeaten": 20458, + "##hak": 20459, + "34th": 20460, + "disruption": 20461, + "convict": 20462, + "parcel": 20463, + "##cl": 20464, + "##nham": 20465, + "collier": 20466, + "implicated": 20467, + "mallory": 20468, + "##iac": 20469, + "##lab": 20470, + "susannah": 20471, + "winkler": 20472, + "##rber": 20473, + "shia": 20474, + "phelps": 20475, + "sediments": 20476, + "graphical": 20477, + "robotic": 20478, + "##sner": 20479, + "adulthood": 20480, + "mart": 20481, + "smoked": 20482, + "##isto": 20483, + "kathryn": 20484, + "clarified": 20485, + "##aran": 20486, + "divides": 20487, + "convictions": 20488, + "oppression": 20489, + "pausing": 20490, + "burying": 20491, + "##mt": 20492, + "federico": 20493, + "mathias": 20494, + "eileen": 20495, + "##tana": 20496, + "kite": 20497, + "hunched": 20498, + "##acies": 20499, + "189": 20500, + "##atz": 20501, + "disadvantage": 20502, + "liza": 20503, + "kinetic": 20504, + "greedy": 20505, + "paradox": 20506, + "yokohama": 20507, + "dowager": 20508, + "trunks": 20509, + "ventured": 20510, + "##gement": 20511, + "gupta": 20512, + "vilnius": 20513, + "olaf": 20514, + "##thest": 20515, + "crimean": 20516, + "hopper": 20517, + "##ej": 20518, + "progressively": 20519, + "arturo": 20520, + "mouthed": 20521, + "arrondissement": 20522, + "##fusion": 20523, + "rubin": 20524, + "simulcast": 20525, + "oceania": 20526, + "##orum": 20527, + "##stra": 20528, + "##rred": 20529, + "busiest": 20530, + "intensely": 20531, + "navigator": 20532, + "cary": 20533, + "##vine": 20534, + "##hini": 20535, + "##bies": 20536, + "fife": 20537, + "rowe": 20538, + "rowland": 20539, + "posing": 20540, + "insurgents": 20541, + "shafts": 20542, + "lawsuits": 20543, + "activate": 20544, + "conor": 20545, + "inward": 20546, + "culturally": 20547, + "garlic": 20548, + "265": 20549, + "##eering": 20550, + "eclectic": 20551, + "##hui": 20552, + "##kee": 20553, + "##nl": 20554, + "furrowed": 20555, + "vargas": 20556, + "meteorological": 20557, + "rendezvous": 20558, + "##aus": 20559, + "culinary": 20560, + "commencement": 20561, + "##dition": 20562, + "quota": 20563, + "##notes": 20564, + "mommy": 20565, + "salaries": 20566, + "overlapping": 20567, + "mule": 20568, + "##iology": 20569, + "##mology": 20570, + "sums": 20571, + "wentworth": 20572, + "##isk": 20573, + "##zione": 20574, + "mainline": 20575, + "subgroup": 20576, + "##illy": 20577, + "hack": 20578, + "plaintiff": 20579, + "verdi": 20580, + "bulb": 20581, + "differentiation": 20582, + "engagements": 20583, + "multinational": 20584, + "supplemented": 20585, + "bertrand": 20586, + "caller": 20587, + "regis": 20588, + "##naire": 20589, + "##sler": 20590, + "##arts": 20591, + "##imated": 20592, + "blossom": 20593, + "propagation": 20594, + "kilometer": 20595, + "viaduct": 20596, + "vineyards": 20597, + "##uate": 20598, + "beckett": 20599, + "optimization": 20600, + "golfer": 20601, + "songwriters": 20602, + "seminal": 20603, + "semitic": 20604, + "thud": 20605, + "volatile": 20606, + "evolving": 20607, + "ridley": 20608, + "##wley": 20609, + "trivial": 20610, + "distributions": 20611, + "scandinavia": 20612, + "jiang": 20613, + "##ject": 20614, + "wrestled": 20615, + "insistence": 20616, + "##dio": 20617, + "emphasizes": 20618, + "napkin": 20619, + "##ods": 20620, + "adjunct": 20621, + "rhyme": 20622, + "##ricted": 20623, + "##eti": 20624, + "hopeless": 20625, + "surrounds": 20626, + "tremble": 20627, + "32nd": 20628, + "smoky": 20629, + "##ntly": 20630, + "oils": 20631, + "medicinal": 20632, + "padded": 20633, + "steer": 20634, + "wilkes": 20635, + "219": 20636, + "255": 20637, + "concessions": 20638, + "hue": 20639, + "uniquely": 20640, + "blinded": 20641, + "landon": 20642, + "yahoo": 20643, + "##lane": 20644, + "hendrix": 20645, + "commemorating": 20646, + "dex": 20647, + "specify": 20648, + "chicks": 20649, + "##ggio": 20650, + "intercity": 20651, + "1400": 20652, + "morley": 20653, + "##torm": 20654, + "highlighting": 20655, + "##oting": 20656, + "pang": 20657, + "oblique": 20658, + "stalled": 20659, + "##liner": 20660, + "flirting": 20661, + "newborn": 20662, + "1769": 20663, + "bishopric": 20664, + "shaved": 20665, + "232": 20666, + "currie": 20667, + "##ush": 20668, + "dharma": 20669, + "spartan": 20670, + "##ooped": 20671, + "favorites": 20672, + "smug": 20673, + "novella": 20674, + "sirens": 20675, + "abusive": 20676, + "creations": 20677, + "espana": 20678, + "##lage": 20679, + "paradigm": 20680, + "semiconductor": 20681, + "sheen": 20682, + "##rdo": 20683, + "##yen": 20684, + "##zak": 20685, + "nrl": 20686, + "renew": 20687, + "##pose": 20688, + "##tur": 20689, + "adjutant": 20690, + "marches": 20691, + "norma": 20692, + "##enity": 20693, + "ineffective": 20694, + "weimar": 20695, + "grunt": 20696, + "##gat": 20697, + "lordship": 20698, + "plotting": 20699, + "expenditure": 20700, + "infringement": 20701, + "lbs": 20702, + "refrain": 20703, + "av": 20704, + "mimi": 20705, + "mistakenly": 20706, + "postmaster": 20707, + "1771": 20708, + "##bara": 20709, + "ras": 20710, + "motorsports": 20711, + "tito": 20712, + "199": 20713, + "subjective": 20714, + "##zza": 20715, + "bully": 20716, + "stew": 20717, + "##kaya": 20718, + "prescott": 20719, + "1a": 20720, + "##raphic": 20721, + "##zam": 20722, + "bids": 20723, + "styling": 20724, + "paranormal": 20725, + "reeve": 20726, + "sneaking": 20727, + "exploding": 20728, + "katz": 20729, + "akbar": 20730, + "migrant": 20731, + "syllables": 20732, + "indefinitely": 20733, + "##ogical": 20734, + "destroys": 20735, + "replaces": 20736, + "applause": 20737, + "##phine": 20738, + "pest": 20739, + "##fide": 20740, + "218": 20741, + "articulated": 20742, + "bertie": 20743, + "##thing": 20744, + "##cars": 20745, + "##ptic": 20746, + "courtroom": 20747, + "crowley": 20748, + "aesthetics": 20749, + "cummings": 20750, + "tehsil": 20751, + "hormones": 20752, + "titanic": 20753, + "dangerously": 20754, + "##ibe": 20755, + "stadion": 20756, + "jaenelle": 20757, + "auguste": 20758, + "ciudad": 20759, + "##chu": 20760, + "mysore": 20761, + "partisans": 20762, + "##sio": 20763, + "lucan": 20764, + "philipp": 20765, + "##aly": 20766, + "debating": 20767, + "henley": 20768, + "interiors": 20769, + "##rano": 20770, + "##tious": 20771, + "homecoming": 20772, + "beyonce": 20773, + "usher": 20774, + "henrietta": 20775, + "prepares": 20776, + "weeds": 20777, + "##oman": 20778, + "ely": 20779, + "plucked": 20780, + "##pire": 20781, + "##dable": 20782, + "luxurious": 20783, + "##aq": 20784, + "artifact": 20785, + "password": 20786, + "pasture": 20787, + "juno": 20788, + "maddy": 20789, + "minsk": 20790, + "##dder": 20791, + "##ologies": 20792, + "##rone": 20793, + "assessments": 20794, + "martian": 20795, + "royalist": 20796, + "1765": 20797, + "examines": 20798, + "##mani": 20799, + "##rge": 20800, + "nino": 20801, + "223": 20802, + "parry": 20803, + "scooped": 20804, + "relativity": 20805, + "##eli": 20806, + "##uting": 20807, + "##cao": 20808, + "congregational": 20809, + "noisy": 20810, + "traverse": 20811, + "##agawa": 20812, + "strikeouts": 20813, + "nickelodeon": 20814, + "obituary": 20815, + "transylvania": 20816, + "binds": 20817, + "depictions": 20818, + "polk": 20819, + "trolley": 20820, + "##yed": 20821, + "##lard": 20822, + "breeders": 20823, + "##under": 20824, + "dryly": 20825, + "hokkaido": 20826, + "1762": 20827, + "strengths": 20828, + "stacks": 20829, + "bonaparte": 20830, + "connectivity": 20831, + "neared": 20832, + "prostitutes": 20833, + "stamped": 20834, + "anaheim": 20835, + "gutierrez": 20836, + "sinai": 20837, + "##zzling": 20838, + "bram": 20839, + "fresno": 20840, + "madhya": 20841, + "##86": 20842, + "proton": 20843, + "##lena": 20844, + "##llum": 20845, + "##phon": 20846, + "reelected": 20847, + "wanda": 20848, + "##anus": 20849, + "##lb": 20850, + "ample": 20851, + "distinguishing": 20852, + "##yler": 20853, + "grasping": 20854, + "sermons": 20855, + "tomato": 20856, + "bland": 20857, + "stimulation": 20858, + "avenues": 20859, + "##eux": 20860, + "spreads": 20861, + "scarlett": 20862, + "fern": 20863, + "pentagon": 20864, + "assert": 20865, + "baird": 20866, + "chesapeake": 20867, + "ir": 20868, + "calmed": 20869, + "distortion": 20870, + "fatalities": 20871, + "##olis": 20872, + "correctional": 20873, + "pricing": 20874, + "##astic": 20875, + "##gina": 20876, + "prom": 20877, + "dammit": 20878, + "ying": 20879, + "collaborate": 20880, + "##chia": 20881, + "welterweight": 20882, + "33rd": 20883, + "pointer": 20884, + "substitution": 20885, + "bonded": 20886, + "umpire": 20887, + "communicating": 20888, + "multitude": 20889, + "paddle": 20890, + "##obe": 20891, + "federally": 20892, + "intimacy": 20893, + "##insky": 20894, + "betray": 20895, + "ssr": 20896, + "##lett": 20897, + "##lean": 20898, + "##lves": 20899, + "##therapy": 20900, + "airbus": 20901, + "##tery": 20902, + "functioned": 20903, + "ud": 20904, + "bearer": 20905, + "biomedical": 20906, + "netflix": 20907, + "##hire": 20908, + "##nca": 20909, + "condom": 20910, + "brink": 20911, + "ik": 20912, + "##nical": 20913, + "macy": 20914, + "##bet": 20915, + "flap": 20916, + "gma": 20917, + "experimented": 20918, + "jelly": 20919, + "lavender": 20920, + "##icles": 20921, + "##ulia": 20922, + "munro": 20923, + "##mian": 20924, + "##tial": 20925, + "rye": 20926, + "##rle": 20927, + "60th": 20928, + "gigs": 20929, + "hottest": 20930, + "rotated": 20931, + "predictions": 20932, + "fuji": 20933, + "bu": 20934, + "##erence": 20935, + "##omi": 20936, + "barangay": 20937, + "##fulness": 20938, + "##sas": 20939, + "clocks": 20940, + "##rwood": 20941, + "##liness": 20942, + "cereal": 20943, + "roe": 20944, + "wight": 20945, + "decker": 20946, + "uttered": 20947, + "babu": 20948, + "onion": 20949, + "xml": 20950, + "forcibly": 20951, + "##df": 20952, + "petra": 20953, + "sarcasm": 20954, + "hartley": 20955, + "peeled": 20956, + "storytelling": 20957, + "##42": 20958, + "##xley": 20959, + "##ysis": 20960, + "##ffa": 20961, + "fibre": 20962, + "kiel": 20963, + "auditor": 20964, + "fig": 20965, + "harald": 20966, + "greenville": 20967, + "##berries": 20968, + "geographically": 20969, + "nell": 20970, + "quartz": 20971, + "##athic": 20972, + "cemeteries": 20973, + "##lr": 20974, + "crossings": 20975, + "nah": 20976, + "holloway": 20977, + "reptiles": 20978, + "chun": 20979, + "sichuan": 20980, + "snowy": 20981, + "660": 20982, + "corrections": 20983, + "##ivo": 20984, + "zheng": 20985, + "ambassadors": 20986, + "blacksmith": 20987, + "fielded": 20988, + "fluids": 20989, + "hardcover": 20990, + "turnover": 20991, + "medications": 20992, + "melvin": 20993, + "academies": 20994, + "##erton": 20995, + "ro": 20996, + "roach": 20997, + "absorbing": 20998, + "spaniards": 20999, + "colton": 21000, + "##founded": 21001, + "outsider": 21002, + "espionage": 21003, + "kelsey": 21004, + "245": 21005, + "edible": 21006, + "##ulf": 21007, + "dora": 21008, + "establishes": 21009, + "##sham": 21010, + "##tries": 21011, + "contracting": 21012, + "##tania": 21013, + "cinematic": 21014, + "costello": 21015, + "nesting": 21016, + "##uron": 21017, + "connolly": 21018, + "duff": 21019, + "##nology": 21020, + "mma": 21021, + "##mata": 21022, + "fergus": 21023, + "sexes": 21024, + "gi": 21025, + "optics": 21026, + "spectator": 21027, + "woodstock": 21028, + "banning": 21029, + "##hee": 21030, + "##fle": 21031, + "differentiate": 21032, + "outfielder": 21033, + "refinery": 21034, + "226": 21035, + "312": 21036, + "gerhard": 21037, + "horde": 21038, + "lair": 21039, + "drastically": 21040, + "##udi": 21041, + "landfall": 21042, + "##cheng": 21043, + "motorsport": 21044, + "odi": 21045, + "##achi": 21046, + "predominant": 21047, + "quay": 21048, + "skins": 21049, + "##ental": 21050, + "edna": 21051, + "harshly": 21052, + "complementary": 21053, + "murdering": 21054, + "##aves": 21055, + "wreckage": 21056, + "##90": 21057, + "ono": 21058, + "outstretched": 21059, + "lennox": 21060, + "munitions": 21061, + "galen": 21062, + "reconcile": 21063, + "470": 21064, + "scalp": 21065, + "bicycles": 21066, + "gillespie": 21067, + "questionable": 21068, + "rosenberg": 21069, + "guillermo": 21070, + "hostel": 21071, + "jarvis": 21072, + "kabul": 21073, + "volvo": 21074, + "opium": 21075, + "yd": 21076, + "##twined": 21077, + "abuses": 21078, + "decca": 21079, + "outpost": 21080, + "##cino": 21081, + "sensible": 21082, + "neutrality": 21083, + "##64": 21084, + "ponce": 21085, + "anchorage": 21086, + "atkins": 21087, + "turrets": 21088, + "inadvertently": 21089, + "disagree": 21090, + "libre": 21091, + "vodka": 21092, + "reassuring": 21093, + "weighs": 21094, + "##yal": 21095, + "glide": 21096, + "jumper": 21097, + "ceilings": 21098, + "repertory": 21099, + "outs": 21100, + "stain": 21101, + "##bial": 21102, + "envy": 21103, + "##ucible": 21104, + "smashing": 21105, + "heightened": 21106, + "policing": 21107, + "hyun": 21108, + "mixes": 21109, + "lai": 21110, + "prima": 21111, + "##ples": 21112, + "celeste": 21113, + "##bina": 21114, + "lucrative": 21115, + "intervened": 21116, + "kc": 21117, + "manually": 21118, + "##rned": 21119, + "stature": 21120, + "staffed": 21121, + "bun": 21122, + "bastards": 21123, + "nairobi": 21124, + "priced": 21125, + "##auer": 21126, + "thatcher": 21127, + "##kia": 21128, + "tripped": 21129, + "comune": 21130, + "##ogan": 21131, + "##pled": 21132, + "brasil": 21133, + "incentives": 21134, + "emanuel": 21135, + "hereford": 21136, + "musica": 21137, + "##kim": 21138, + "benedictine": 21139, + "biennale": 21140, + "##lani": 21141, + "eureka": 21142, + "gardiner": 21143, + "rb": 21144, + "knocks": 21145, + "sha": 21146, + "##ael": 21147, + "##elled": 21148, + "##onate": 21149, + "efficacy": 21150, + "ventura": 21151, + "masonic": 21152, + "sanford": 21153, + "maize": 21154, + "leverage": 21155, + "##feit": 21156, + "capacities": 21157, + "santana": 21158, + "##aur": 21159, + "novelty": 21160, + "vanilla": 21161, + "##cter": 21162, + "##tour": 21163, + "benin": 21164, + "##oir": 21165, + "##rain": 21166, + "neptune": 21167, + "drafting": 21168, + "tallinn": 21169, + "##cable": 21170, + "humiliation": 21171, + "##boarding": 21172, + "schleswig": 21173, + "fabian": 21174, + "bernardo": 21175, + "liturgy": 21176, + "spectacle": 21177, + "sweeney": 21178, + "pont": 21179, + "routledge": 21180, + "##tment": 21181, + "cosmos": 21182, + "ut": 21183, + "hilt": 21184, + "sleek": 21185, + "universally": 21186, + "##eville": 21187, + "##gawa": 21188, + "typed": 21189, + "##dry": 21190, + "favors": 21191, + "allegheny": 21192, + "glaciers": 21193, + "##rly": 21194, + "recalling": 21195, + "aziz": 21196, + "##log": 21197, + "parasite": 21198, + "requiem": 21199, + "auf": 21200, + "##berto": 21201, + "##llin": 21202, + "illumination": 21203, + "##breaker": 21204, + "##issa": 21205, + "festivities": 21206, + "bows": 21207, + "govern": 21208, + "vibe": 21209, + "vp": 21210, + "333": 21211, + "sprawled": 21212, + "larson": 21213, + "pilgrim": 21214, + "bwf": 21215, + "leaping": 21216, + "##rts": 21217, + "##ssel": 21218, + "alexei": 21219, + "greyhound": 21220, + "hoarse": 21221, + "##dler": 21222, + "##oration": 21223, + "seneca": 21224, + "##cule": 21225, + "gaping": 21226, + "##ulously": 21227, + "##pura": 21228, + "cinnamon": 21229, + "##gens": 21230, + "##rricular": 21231, + "craven": 21232, + "fantasies": 21233, + "houghton": 21234, + "engined": 21235, + "reigned": 21236, + "dictator": 21237, + "supervising": 21238, + "##oris": 21239, + "bogota": 21240, + "commentaries": 21241, + "unnatural": 21242, + "fingernails": 21243, + "spirituality": 21244, + "tighten": 21245, + "##tm": 21246, + "canadiens": 21247, + "protesting": 21248, + "intentional": 21249, + "cheers": 21250, + "sparta": 21251, + "##ytic": 21252, + "##iere": 21253, + "##zine": 21254, + "widen": 21255, + "belgarath": 21256, + "controllers": 21257, + "dodd": 21258, + "iaaf": 21259, + "navarre": 21260, + "##ication": 21261, + "defect": 21262, + "squire": 21263, + "steiner": 21264, + "whisky": 21265, + "##mins": 21266, + "560": 21267, + "inevitably": 21268, + "tome": 21269, + "##gold": 21270, + "chew": 21271, + "##uid": 21272, + "##lid": 21273, + "elastic": 21274, + "##aby": 21275, + "streaked": 21276, + "alliances": 21277, + "jailed": 21278, + "regal": 21279, + "##ined": 21280, + "##phy": 21281, + "czechoslovak": 21282, + "narration": 21283, + "absently": 21284, + "##uld": 21285, + "bluegrass": 21286, + "guangdong": 21287, + "quran": 21288, + "criticizing": 21289, + "hose": 21290, + "hari": 21291, + "##liest": 21292, + "##owa": 21293, + "skier": 21294, + "streaks": 21295, + "deploy": 21296, + "##lom": 21297, + "raft": 21298, + "bose": 21299, + "dialed": 21300, + "huff": 21301, + "##eira": 21302, + "haifa": 21303, + "simplest": 21304, + "bursting": 21305, + "endings": 21306, + "ib": 21307, + "sultanate": 21308, + "##titled": 21309, + "franks": 21310, + "whitman": 21311, + "ensures": 21312, + "sven": 21313, + "##ggs": 21314, + "collaborators": 21315, + "forster": 21316, + "organising": 21317, + "ui": 21318, + "banished": 21319, + "napier": 21320, + "injustice": 21321, + "teller": 21322, + "layered": 21323, + "thump": 21324, + "##otti": 21325, + "roc": 21326, + "battleships": 21327, + "evidenced": 21328, + "fugitive": 21329, + "sadie": 21330, + "robotics": 21331, + "##roud": 21332, + "equatorial": 21333, + "geologist": 21334, + "##iza": 21335, + "yielding": 21336, + "##bron": 21337, + "##sr": 21338, + "internationale": 21339, + "mecca": 21340, + "##diment": 21341, + "sbs": 21342, + "skyline": 21343, + "toad": 21344, + "uploaded": 21345, + "reflective": 21346, + "undrafted": 21347, + "lal": 21348, + "leafs": 21349, + "bayern": 21350, + "##dai": 21351, + "lakshmi": 21352, + "shortlisted": 21353, + "##stick": 21354, + "##wicz": 21355, + "camouflage": 21356, + "donate": 21357, + "af": 21358, + "christi": 21359, + "lau": 21360, + "##acio": 21361, + "disclosed": 21362, + "nemesis": 21363, + "1761": 21364, + "assemble": 21365, + "straining": 21366, + "northamptonshire": 21367, + "tal": 21368, + "##asi": 21369, + "bernardino": 21370, + "premature": 21371, + "heidi": 21372, + "42nd": 21373, + "coefficients": 21374, + "galactic": 21375, + "reproduce": 21376, + "buzzed": 21377, + "sensations": 21378, + "zionist": 21379, + "monsieur": 21380, + "myrtle": 21381, + "##eme": 21382, + "archery": 21383, + "strangled": 21384, + "musically": 21385, + "viewpoint": 21386, + "antiquities": 21387, + "bei": 21388, + "trailers": 21389, + "seahawks": 21390, + "cured": 21391, + "pee": 21392, + "preferring": 21393, + "tasmanian": 21394, + "lange": 21395, + "sul": 21396, + "##mail": 21397, + "##working": 21398, + "colder": 21399, + "overland": 21400, + "lucivar": 21401, + "massey": 21402, + "gatherings": 21403, + "haitian": 21404, + "##smith": 21405, + "disapproval": 21406, + "flaws": 21407, + "##cco": 21408, + "##enbach": 21409, + "1766": 21410, + "npr": 21411, + "##icular": 21412, + "boroughs": 21413, + "creole": 21414, + "forums": 21415, + "techno": 21416, + "1755": 21417, + "dent": 21418, + "abdominal": 21419, + "streetcar": 21420, + "##eson": 21421, + "##stream": 21422, + "procurement": 21423, + "gemini": 21424, + "predictable": 21425, + "##tya": 21426, + "acheron": 21427, + "christoph": 21428, + "feeder": 21429, + "fronts": 21430, + "vendor": 21431, + "bernhard": 21432, + "jammu": 21433, + "tumors": 21434, + "slang": 21435, + "##uber": 21436, + "goaltender": 21437, + "twists": 21438, + "curving": 21439, + "manson": 21440, + "vuelta": 21441, + "mer": 21442, + "peanut": 21443, + "confessions": 21444, + "pouch": 21445, + "unpredictable": 21446, + "allowance": 21447, + "theodor": 21448, + "vascular": 21449, + "##factory": 21450, + "bala": 21451, + "authenticity": 21452, + "metabolic": 21453, + "coughing": 21454, + "nanjing": 21455, + "##cea": 21456, + "pembroke": 21457, + "##bard": 21458, + "splendid": 21459, + "36th": 21460, + "ff": 21461, + "hourly": 21462, + "##ahu": 21463, + "elmer": 21464, + "handel": 21465, + "##ivate": 21466, + "awarding": 21467, + "thrusting": 21468, + "dl": 21469, + "experimentation": 21470, + "##hesion": 21471, + "##46": 21472, + "caressed": 21473, + "entertained": 21474, + "steak": 21475, + "##rangle": 21476, + "biologist": 21477, + "orphans": 21478, + "baroness": 21479, + "oyster": 21480, + "stepfather": 21481, + "##dridge": 21482, + "mirage": 21483, + "reefs": 21484, + "speeding": 21485, + "##31": 21486, + "barons": 21487, + "1764": 21488, + "227": 21489, + "inhabit": 21490, + "preached": 21491, + "repealed": 21492, + "##tral": 21493, + "honoring": 21494, + "boogie": 21495, + "captives": 21496, + "administer": 21497, + "johanna": 21498, + "##imate": 21499, + "gel": 21500, + "suspiciously": 21501, + "1767": 21502, + "sobs": 21503, + "##dington": 21504, + "backbone": 21505, + "hayward": 21506, + "garry": 21507, + "##folding": 21508, + "##nesia": 21509, + "maxi": 21510, + "##oof": 21511, + "##ppe": 21512, + "ellison": 21513, + "galileo": 21514, + "##stand": 21515, + "crimea": 21516, + "frenzy": 21517, + "amour": 21518, + "bumper": 21519, + "matrices": 21520, + "natalia": 21521, + "baking": 21522, + "garth": 21523, + "palestinians": 21524, + "##grove": 21525, + "smack": 21526, + "conveyed": 21527, + "ensembles": 21528, + "gardening": 21529, + "##manship": 21530, + "##rup": 21531, + "##stituting": 21532, + "1640": 21533, + "harvesting": 21534, + "topography": 21535, + "jing": 21536, + "shifters": 21537, + "dormitory": 21538, + "##carriage": 21539, + "##lston": 21540, + "ist": 21541, + "skulls": 21542, + "##stadt": 21543, + "dolores": 21544, + "jewellery": 21545, + "sarawak": 21546, + "##wai": 21547, + "##zier": 21548, + "fences": 21549, + "christy": 21550, + "confinement": 21551, + "tumbling": 21552, + "credibility": 21553, + "fir": 21554, + "stench": 21555, + "##bria": 21556, + "##plication": 21557, + "##nged": 21558, + "##sam": 21559, + "virtues": 21560, + "##belt": 21561, + "marjorie": 21562, + "pba": 21563, + "##eem": 21564, + "##made": 21565, + "celebrates": 21566, + "schooner": 21567, + "agitated": 21568, + "barley": 21569, + "fulfilling": 21570, + "anthropologist": 21571, + "##pro": 21572, + "restrict": 21573, + "novi": 21574, + "regulating": 21575, + "##nent": 21576, + "padres": 21577, + "##rani": 21578, + "##hesive": 21579, + "loyola": 21580, + "tabitha": 21581, + "milky": 21582, + "olson": 21583, + "proprietor": 21584, + "crambidae": 21585, + "guarantees": 21586, + "intercollegiate": 21587, + "ljubljana": 21588, + "hilda": 21589, + "##sko": 21590, + "ignorant": 21591, + "hooded": 21592, + "##lts": 21593, + "sardinia": 21594, + "##lidae": 21595, + "##vation": 21596, + "frontman": 21597, + "privileged": 21598, + "witchcraft": 21599, + "##gp": 21600, + "jammed": 21601, + "laude": 21602, + "poking": 21603, + "##than": 21604, + "bracket": 21605, + "amazement": 21606, + "yunnan": 21607, + "##erus": 21608, + "maharaja": 21609, + "linnaeus": 21610, + "264": 21611, + "commissioning": 21612, + "milano": 21613, + "peacefully": 21614, + "##logies": 21615, + "akira": 21616, + "rani": 21617, + "regulator": 21618, + "##36": 21619, + "grasses": 21620, + "##rance": 21621, + "luzon": 21622, + "crows": 21623, + "compiler": 21624, + "gretchen": 21625, + "seaman": 21626, + "edouard": 21627, + "tab": 21628, + "buccaneers": 21629, + "ellington": 21630, + "hamlets": 21631, + "whig": 21632, + "socialists": 21633, + "##anto": 21634, + "directorial": 21635, + "easton": 21636, + "mythological": 21637, + "##kr": 21638, + "##vary": 21639, + "rhineland": 21640, + "semantic": 21641, + "taut": 21642, + "dune": 21643, + "inventions": 21644, + "succeeds": 21645, + "##iter": 21646, + "replication": 21647, + "branched": 21648, + "##pired": 21649, + "jul": 21650, + "prosecuted": 21651, + "kangaroo": 21652, + "penetrated": 21653, + "##avian": 21654, + "middlesbrough": 21655, + "doses": 21656, + "bleak": 21657, + "madam": 21658, + "predatory": 21659, + "relentless": 21660, + "##vili": 21661, + "reluctance": 21662, + "##vir": 21663, + "hailey": 21664, + "crore": 21665, + "silvery": 21666, + "1759": 21667, + "monstrous": 21668, + "swimmers": 21669, + "transmissions": 21670, + "hawthorn": 21671, + "informing": 21672, + "##eral": 21673, + "toilets": 21674, + "caracas": 21675, + "crouch": 21676, + "kb": 21677, + "##sett": 21678, + "295": 21679, + "cartel": 21680, + "hadley": 21681, + "##aling": 21682, + "alexia": 21683, + "yvonne": 21684, + "##biology": 21685, + "cinderella": 21686, + "eton": 21687, + "superb": 21688, + "blizzard": 21689, + "stabbing": 21690, + "industrialist": 21691, + "maximus": 21692, + "##gm": 21693, + "##orus": 21694, + "groves": 21695, + "maud": 21696, + "clade": 21697, + "oversized": 21698, + "comedic": 21699, + "##bella": 21700, + "rosen": 21701, + "nomadic": 21702, + "fulham": 21703, + "montane": 21704, + "beverages": 21705, + "galaxies": 21706, + "redundant": 21707, + "swarm": 21708, + "##rot": 21709, + "##folia": 21710, + "##llis": 21711, + "buckinghamshire": 21712, + "fen": 21713, + "bearings": 21714, + "bahadur": 21715, + "##rom": 21716, + "gilles": 21717, + "phased": 21718, + "dynamite": 21719, + "faber": 21720, + "benoit": 21721, + "vip": 21722, + "##ount": 21723, + "##wd": 21724, + "booking": 21725, + "fractured": 21726, + "tailored": 21727, + "anya": 21728, + "spices": 21729, + "westwood": 21730, + "cairns": 21731, + "auditions": 21732, + "inflammation": 21733, + "steamed": 21734, + "##rocity": 21735, + "##acion": 21736, + "##urne": 21737, + "skyla": 21738, + "thereof": 21739, + "watford": 21740, + "torment": 21741, + "archdeacon": 21742, + "transforms": 21743, + "lulu": 21744, + "demeanor": 21745, + "fucked": 21746, + "serge": 21747, + "##sor": 21748, + "mckenna": 21749, + "minas": 21750, + "entertainer": 21751, + "##icide": 21752, + "caress": 21753, + "originate": 21754, + "residue": 21755, + "##sty": 21756, + "1740": 21757, + "##ilised": 21758, + "##org": 21759, + "beech": 21760, + "##wana": 21761, + "subsidies": 21762, + "##ghton": 21763, + "emptied": 21764, + "gladstone": 21765, + "ru": 21766, + "firefighters": 21767, + "voodoo": 21768, + "##rcle": 21769, + "het": 21770, + "nightingale": 21771, + "tamara": 21772, + "edmond": 21773, + "ingredient": 21774, + "weaknesses": 21775, + "silhouette": 21776, + "285": 21777, + "compatibility": 21778, + "withdrawing": 21779, + "hampson": 21780, + "##mona": 21781, + "anguish": 21782, + "giggling": 21783, + "##mber": 21784, + "bookstore": 21785, + "##jiang": 21786, + "southernmost": 21787, + "tilting": 21788, + "##vance": 21789, + "bai": 21790, + "economical": 21791, + "rf": 21792, + "briefcase": 21793, + "dreadful": 21794, + "hinted": 21795, + "projections": 21796, + "shattering": 21797, + "totaling": 21798, + "##rogate": 21799, + "analogue": 21800, + "indicted": 21801, + "periodical": 21802, + "fullback": 21803, + "##dman": 21804, + "haynes": 21805, + "##tenberg": 21806, + "##ffs": 21807, + "##ishment": 21808, + "1745": 21809, + "thirst": 21810, + "stumble": 21811, + "penang": 21812, + "vigorous": 21813, + "##ddling": 21814, + "##kor": 21815, + "##lium": 21816, + "octave": 21817, + "##ove": 21818, + "##enstein": 21819, + "##inen": 21820, + "##ones": 21821, + "siberian": 21822, + "##uti": 21823, + "cbn": 21824, + "repeal": 21825, + "swaying": 21826, + "##vington": 21827, + "khalid": 21828, + "tanaka": 21829, + "unicorn": 21830, + "otago": 21831, + "plastered": 21832, + "lobe": 21833, + "riddle": 21834, + "##rella": 21835, + "perch": 21836, + "##ishing": 21837, + "croydon": 21838, + "filtered": 21839, + "graeme": 21840, + "tripoli": 21841, + "##ossa": 21842, + "crocodile": 21843, + "##chers": 21844, + "sufi": 21845, + "mined": 21846, + "##tung": 21847, + "inferno": 21848, + "lsu": 21849, + "##phi": 21850, + "swelled": 21851, + "utilizes": 21852, + "£2": 21853, + "cale": 21854, + "periodicals": 21855, + "styx": 21856, + "hike": 21857, + "informally": 21858, + "coop": 21859, + "lund": 21860, + "##tidae": 21861, + "ala": 21862, + "hen": 21863, + "qui": 21864, + "transformations": 21865, + "disposed": 21866, + "sheath": 21867, + "chickens": 21868, + "##cade": 21869, + "fitzroy": 21870, + "sas": 21871, + "silesia": 21872, + "unacceptable": 21873, + "odisha": 21874, + "1650": 21875, + "sabrina": 21876, + "pe": 21877, + "spokane": 21878, + "ratios": 21879, + "athena": 21880, + "massage": 21881, + "shen": 21882, + "dilemma": 21883, + "##drum": 21884, + "##riz": 21885, + "##hul": 21886, + "corona": 21887, + "doubtful": 21888, + "niall": 21889, + "##pha": 21890, + "##bino": 21891, + "fines": 21892, + "cite": 21893, + "acknowledging": 21894, + "bangor": 21895, + "ballard": 21896, + "bathurst": 21897, + "##resh": 21898, + "huron": 21899, + "mustered": 21900, + "alzheimer": 21901, + "garments": 21902, + "kinase": 21903, + "tyre": 21904, + "warship": 21905, + "##cp": 21906, + "flashback": 21907, + "pulmonary": 21908, + "braun": 21909, + "cheat": 21910, + "kamal": 21911, + "cyclists": 21912, + "constructions": 21913, + "grenades": 21914, + "ndp": 21915, + "traveller": 21916, + "excuses": 21917, + "stomped": 21918, + "signalling": 21919, + "trimmed": 21920, + "futsal": 21921, + "mosques": 21922, + "relevance": 21923, + "##wine": 21924, + "wta": 21925, + "##23": 21926, + "##vah": 21927, + "##lter": 21928, + "hoc": 21929, + "##riding": 21930, + "optimistic": 21931, + "##´s": 21932, + "deco": 21933, + "sim": 21934, + "interacting": 21935, + "rejecting": 21936, + "moniker": 21937, + "waterways": 21938, + "##ieri": 21939, + "##oku": 21940, + "mayors": 21941, + "gdansk": 21942, + "outnumbered": 21943, + "pearls": 21944, + "##ended": 21945, + "##hampton": 21946, + "fairs": 21947, + "totals": 21948, + "dominating": 21949, + "262": 21950, + "notions": 21951, + "stairway": 21952, + "compiling": 21953, + "pursed": 21954, + "commodities": 21955, + "grease": 21956, + "yeast": 21957, + "##jong": 21958, + "carthage": 21959, + "griffiths": 21960, + "residual": 21961, + "amc": 21962, + "contraction": 21963, + "laird": 21964, + "sapphire": 21965, + "##marine": 21966, + "##ivated": 21967, + "amalgamation": 21968, + "dissolve": 21969, + "inclination": 21970, + "lyle": 21971, + "packaged": 21972, + "altitudes": 21973, + "suez": 21974, + "canons": 21975, + "graded": 21976, + "lurched": 21977, + "narrowing": 21978, + "boasts": 21979, + "guise": 21980, + "wed": 21981, + "enrico": 21982, + "##ovsky": 21983, + "rower": 21984, + "scarred": 21985, + "bree": 21986, + "cub": 21987, + "iberian": 21988, + "protagonists": 21989, + "bargaining": 21990, + "proposing": 21991, + "trainers": 21992, + "voyages": 21993, + "vans": 21994, + "fishes": 21995, + "##aea": 21996, + "##ivist": 21997, + "##verance": 21998, + "encryption": 21999, + "artworks": 22000, + "kazan": 22001, + "sabre": 22002, + "cleopatra": 22003, + "hepburn": 22004, + "rotting": 22005, + "supremacy": 22006, + "mecklenburg": 22007, + "##brate": 22008, + "burrows": 22009, + "hazards": 22010, + "outgoing": 22011, + "flair": 22012, + "organizes": 22013, + "##ctions": 22014, + "scorpion": 22015, + "##usions": 22016, + "boo": 22017, + "234": 22018, + "chevalier": 22019, + "dunedin": 22020, + "slapping": 22021, + "##34": 22022, + "ineligible": 22023, + "pensions": 22024, + "##38": 22025, + "##omic": 22026, + "manufactures": 22027, + "emails": 22028, + "bismarck": 22029, + "238": 22030, + "weakening": 22031, + "blackish": 22032, + "ding": 22033, + "mcgee": 22034, + "quo": 22035, + "##rling": 22036, + "northernmost": 22037, + "xx": 22038, + "manpower": 22039, + "greed": 22040, + "sampson": 22041, + "clicking": 22042, + "##ange": 22043, + "##horpe": 22044, + "##inations": 22045, + "##roving": 22046, + "torre": 22047, + "##eptive": 22048, + "##moral": 22049, + "symbolism": 22050, + "38th": 22051, + "asshole": 22052, + "meritorious": 22053, + "outfits": 22054, + "splashed": 22055, + "biographies": 22056, + "sprung": 22057, + "astros": 22058, + "##tale": 22059, + "302": 22060, + "737": 22061, + "filly": 22062, + "raoul": 22063, + "nw": 22064, + "tokugawa": 22065, + "linden": 22066, + "clubhouse": 22067, + "##apa": 22068, + "tracts": 22069, + "romano": 22070, + "##pio": 22071, + "putin": 22072, + "tags": 22073, + "##note": 22074, + "chained": 22075, + "dickson": 22076, + "gunshot": 22077, + "moe": 22078, + "gunn": 22079, + "rashid": 22080, + "##tails": 22081, + "zipper": 22082, + "##bas": 22083, + "##nea": 22084, + "contrasted": 22085, + "##ply": 22086, + "##udes": 22087, + "plum": 22088, + "pharaoh": 22089, + "##pile": 22090, + "aw": 22091, + "comedies": 22092, + "ingrid": 22093, + "sandwiches": 22094, + "subdivisions": 22095, + "1100": 22096, + "mariana": 22097, + "nokia": 22098, + "kamen": 22099, + "hz": 22100, + "delaney": 22101, + "veto": 22102, + "herring": 22103, + "##words": 22104, + "possessive": 22105, + "outlines": 22106, + "##roup": 22107, + "siemens": 22108, + "stairwell": 22109, + "rc": 22110, + "gallantry": 22111, + "messiah": 22112, + "palais": 22113, + "yells": 22114, + "233": 22115, + "zeppelin": 22116, + "##dm": 22117, + "bolivar": 22118, + "##cede": 22119, + "smackdown": 22120, + "mckinley": 22121, + "##mora": 22122, + "##yt": 22123, + "muted": 22124, + "geologic": 22125, + "finely": 22126, + "unitary": 22127, + "avatar": 22128, + "hamas": 22129, + "maynard": 22130, + "rees": 22131, + "bog": 22132, + "contrasting": 22133, + "##rut": 22134, + "liv": 22135, + "chico": 22136, + "disposition": 22137, + "pixel": 22138, + "##erate": 22139, + "becca": 22140, + "dmitry": 22141, + "yeshiva": 22142, + "narratives": 22143, + "##lva": 22144, + "##ulton": 22145, + "mercenary": 22146, + "sharpe": 22147, + "tempered": 22148, + "navigate": 22149, + "stealth": 22150, + "amassed": 22151, + "keynes": 22152, + "##lini": 22153, + "untouched": 22154, + "##rrie": 22155, + "havoc": 22156, + "lithium": 22157, + "##fighting": 22158, + "abyss": 22159, + "graf": 22160, + "southward": 22161, + "wolverine": 22162, + "balloons": 22163, + "implements": 22164, + "ngos": 22165, + "transitions": 22166, + "##icum": 22167, + "ambushed": 22168, + "concacaf": 22169, + "dormant": 22170, + "economists": 22171, + "##dim": 22172, + "costing": 22173, + "csi": 22174, + "rana": 22175, + "universite": 22176, + "boulders": 22177, + "verity": 22178, + "##llon": 22179, + "collin": 22180, + "mellon": 22181, + "misses": 22182, + "cypress": 22183, + "fluorescent": 22184, + "lifeless": 22185, + "spence": 22186, + "##ulla": 22187, + "crewe": 22188, + "shepard": 22189, + "pak": 22190, + "revelations": 22191, + "##م": 22192, + "jolly": 22193, + "gibbons": 22194, + "paw": 22195, + "##dro": 22196, + "##quel": 22197, + "freeing": 22198, + "##test": 22199, + "shack": 22200, + "fries": 22201, + "palatine": 22202, + "##51": 22203, + "##hiko": 22204, + "accompaniment": 22205, + "cruising": 22206, + "recycled": 22207, + "##aver": 22208, + "erwin": 22209, + "sorting": 22210, + "synthesizers": 22211, + "dyke": 22212, + "realities": 22213, + "sg": 22214, + "strides": 22215, + "enslaved": 22216, + "wetland": 22217, + "##ghan": 22218, + "competence": 22219, + "gunpowder": 22220, + "grassy": 22221, + "maroon": 22222, + "reactors": 22223, + "objection": 22224, + "##oms": 22225, + "carlson": 22226, + "gearbox": 22227, + "macintosh": 22228, + "radios": 22229, + "shelton": 22230, + "##sho": 22231, + "clergyman": 22232, + "prakash": 22233, + "254": 22234, + "mongols": 22235, + "trophies": 22236, + "oricon": 22237, + "228": 22238, + "stimuli": 22239, + "twenty20": 22240, + "cantonese": 22241, + "cortes": 22242, + "mirrored": 22243, + "##saurus": 22244, + "bhp": 22245, + "cristina": 22246, + "melancholy": 22247, + "##lating": 22248, + "enjoyable": 22249, + "nuevo": 22250, + "##wny": 22251, + "downfall": 22252, + "schumacher": 22253, + "##ind": 22254, + "banging": 22255, + "lausanne": 22256, + "rumbled": 22257, + "paramilitary": 22258, + "reflex": 22259, + "ax": 22260, + "amplitude": 22261, + "migratory": 22262, + "##gall": 22263, + "##ups": 22264, + "midi": 22265, + "barnard": 22266, + "lastly": 22267, + "sherry": 22268, + "##hp": 22269, + "##nall": 22270, + "keystone": 22271, + "##kra": 22272, + "carleton": 22273, + "slippery": 22274, + "##53": 22275, + "coloring": 22276, + "foe": 22277, + "socket": 22278, + "otter": 22279, + "##rgos": 22280, + "mats": 22281, + "##tose": 22282, + "consultants": 22283, + "bafta": 22284, + "bison": 22285, + "topping": 22286, + "##km": 22287, + "490": 22288, + "primal": 22289, + "abandonment": 22290, + "transplant": 22291, + "atoll": 22292, + "hideous": 22293, + "mort": 22294, + "pained": 22295, + "reproduced": 22296, + "tae": 22297, + "howling": 22298, + "##turn": 22299, + "unlawful": 22300, + "billionaire": 22301, + "hotter": 22302, + "poised": 22303, + "lansing": 22304, + "##chang": 22305, + "dinamo": 22306, + "retro": 22307, + "messing": 22308, + "nfc": 22309, + "domesday": 22310, + "##mina": 22311, + "blitz": 22312, + "timed": 22313, + "##athing": 22314, + "##kley": 22315, + "ascending": 22316, + "gesturing": 22317, + "##izations": 22318, + "signaled": 22319, + "tis": 22320, + "chinatown": 22321, + "mermaid": 22322, + "savanna": 22323, + "jameson": 22324, + "##aint": 22325, + "catalina": 22326, + "##pet": 22327, + "##hers": 22328, + "cochrane": 22329, + "cy": 22330, + "chatting": 22331, + "##kus": 22332, + "alerted": 22333, + "computation": 22334, + "mused": 22335, + "noelle": 22336, + "majestic": 22337, + "mohawk": 22338, + "campo": 22339, + "octagonal": 22340, + "##sant": 22341, + "##hend": 22342, + "241": 22343, + "aspiring": 22344, + "##mart": 22345, + "comprehend": 22346, + "iona": 22347, + "paralyzed": 22348, + "shimmering": 22349, + "swindon": 22350, + "rhone": 22351, + "##eley": 22352, + "reputed": 22353, + "configurations": 22354, + "pitchfork": 22355, + "agitation": 22356, + "francais": 22357, + "gillian": 22358, + "lipstick": 22359, + "##ilo": 22360, + "outsiders": 22361, + "pontifical": 22362, + "resisting": 22363, + "bitterness": 22364, + "sewer": 22365, + "rockies": 22366, + "##edd": 22367, + "##ucher": 22368, + "misleading": 22369, + "1756": 22370, + "exiting": 22371, + "galloway": 22372, + "##nging": 22373, + "risked": 22374, + "##heart": 22375, + "246": 22376, + "commemoration": 22377, + "schultz": 22378, + "##rka": 22379, + "integrating": 22380, + "##rsa": 22381, + "poses": 22382, + "shrieked": 22383, + "##weiler": 22384, + "guineas": 22385, + "gladys": 22386, + "jerking": 22387, + "owls": 22388, + "goldsmith": 22389, + "nightly": 22390, + "penetrating": 22391, + "##unced": 22392, + "lia": 22393, + "##33": 22394, + "ignited": 22395, + "betsy": 22396, + "##aring": 22397, + "##thorpe": 22398, + "follower": 22399, + "vigorously": 22400, + "##rave": 22401, + "coded": 22402, + "kiran": 22403, + "knit": 22404, + "zoology": 22405, + "tbilisi": 22406, + "##28": 22407, + "##bered": 22408, + "repository": 22409, + "govt": 22410, + "deciduous": 22411, + "dino": 22412, + "growling": 22413, + "##bba": 22414, + "enhancement": 22415, + "unleashed": 22416, + "chanting": 22417, + "pussy": 22418, + "biochemistry": 22419, + "##eric": 22420, + "kettle": 22421, + "repression": 22422, + "toxicity": 22423, + "nrhp": 22424, + "##arth": 22425, + "##kko": 22426, + "##bush": 22427, + "ernesto": 22428, + "commended": 22429, + "outspoken": 22430, + "242": 22431, + "mca": 22432, + "parchment": 22433, + "sms": 22434, + "kristen": 22435, + "##aton": 22436, + "bisexual": 22437, + "raked": 22438, + "glamour": 22439, + "navajo": 22440, + "a2": 22441, + "conditioned": 22442, + "showcased": 22443, + "##hma": 22444, + "spacious": 22445, + "youthful": 22446, + "##esa": 22447, + "usl": 22448, + "appliances": 22449, + "junta": 22450, + "brest": 22451, + "layne": 22452, + "conglomerate": 22453, + "enchanted": 22454, + "chao": 22455, + "loosened": 22456, + "picasso": 22457, + "circulating": 22458, + "inspect": 22459, + "montevideo": 22460, + "##centric": 22461, + "##kti": 22462, + "piazza": 22463, + "spurred": 22464, + "##aith": 22465, + "bari": 22466, + "freedoms": 22467, + "poultry": 22468, + "stamford": 22469, + "lieu": 22470, + "##ect": 22471, + "indigo": 22472, + "sarcastic": 22473, + "bahia": 22474, + "stump": 22475, + "attach": 22476, + "dvds": 22477, + "frankenstein": 22478, + "lille": 22479, + "approx": 22480, + "scriptures": 22481, + "pollen": 22482, + "##script": 22483, + "nmi": 22484, + "overseen": 22485, + "##ivism": 22486, + "tides": 22487, + "proponent": 22488, + "newmarket": 22489, + "inherit": 22490, + "milling": 22491, + "##erland": 22492, + "centralized": 22493, + "##rou": 22494, + "distributors": 22495, + "credentials": 22496, + "drawers": 22497, + "abbreviation": 22498, + "##lco": 22499, + "##xon": 22500, + "downing": 22501, + "uncomfortably": 22502, + "ripe": 22503, + "##oes": 22504, + "erase": 22505, + "franchises": 22506, + "##ever": 22507, + "populace": 22508, + "##bery": 22509, + "##khar": 22510, + "decomposition": 22511, + "pleas": 22512, + "##tet": 22513, + "daryl": 22514, + "sabah": 22515, + "##stle": 22516, + "##wide": 22517, + "fearless": 22518, + "genie": 22519, + "lesions": 22520, + "annette": 22521, + "##ogist": 22522, + "oboe": 22523, + "appendix": 22524, + "nair": 22525, + "dripped": 22526, + "petitioned": 22527, + "maclean": 22528, + "mosquito": 22529, + "parrot": 22530, + "rpg": 22531, + "hampered": 22532, + "1648": 22533, + "operatic": 22534, + "reservoirs": 22535, + "##tham": 22536, + "irrelevant": 22537, + "jolt": 22538, + "summarized": 22539, + "##fp": 22540, + "medallion": 22541, + "##taff": 22542, + "##−": 22543, + "clawed": 22544, + "harlow": 22545, + "narrower": 22546, + "goddard": 22547, + "marcia": 22548, + "bodied": 22549, + "fremont": 22550, + "suarez": 22551, + "altering": 22552, + "tempest": 22553, + "mussolini": 22554, + "porn": 22555, + "##isms": 22556, + "sweetly": 22557, + "oversees": 22558, + "walkers": 22559, + "solitude": 22560, + "grimly": 22561, + "shrines": 22562, + "hk": 22563, + "ich": 22564, + "supervisors": 22565, + "hostess": 22566, + "dietrich": 22567, + "legitimacy": 22568, + "brushes": 22569, + "expressive": 22570, + "##yp": 22571, + "dissipated": 22572, + "##rse": 22573, + "localized": 22574, + "systemic": 22575, + "##nikov": 22576, + "gettysburg": 22577, + "##js": 22578, + "##uaries": 22579, + "dialogues": 22580, + "muttering": 22581, + "251": 22582, + "housekeeper": 22583, + "sicilian": 22584, + "discouraged": 22585, + "##frey": 22586, + "beamed": 22587, + "kaladin": 22588, + "halftime": 22589, + "kidnap": 22590, + "##amo": 22591, + "##llet": 22592, + "1754": 22593, + "synonymous": 22594, + "depleted": 22595, + "instituto": 22596, + "insulin": 22597, + "reprised": 22598, + "##opsis": 22599, + "clashed": 22600, + "##ctric": 22601, + "interrupting": 22602, + "radcliffe": 22603, + "insisting": 22604, + "medici": 22605, + "1715": 22606, + "ejected": 22607, + "playfully": 22608, + "turbulent": 22609, + "##47": 22610, + "starvation": 22611, + "##rini": 22612, + "shipment": 22613, + "rebellious": 22614, + "petersen": 22615, + "verification": 22616, + "merits": 22617, + "##rified": 22618, + "cakes": 22619, + "##charged": 22620, + "1757": 22621, + "milford": 22622, + "shortages": 22623, + "spying": 22624, + "fidelity": 22625, + "##aker": 22626, + "emitted": 22627, + "storylines": 22628, + "harvested": 22629, + "seismic": 22630, + "##iform": 22631, + "cheung": 22632, + "kilda": 22633, + "theoretically": 22634, + "barbie": 22635, + "lynx": 22636, + "##rgy": 22637, + "##tius": 22638, + "goblin": 22639, + "mata": 22640, + "poisonous": 22641, + "##nburg": 22642, + "reactive": 22643, + "residues": 22644, + "obedience": 22645, + "##евич": 22646, + "conjecture": 22647, + "##rac": 22648, + "401": 22649, + "hating": 22650, + "sixties": 22651, + "kicker": 22652, + "moaning": 22653, + "motown": 22654, + "##bha": 22655, + "emancipation": 22656, + "neoclassical": 22657, + "##hering": 22658, + "consoles": 22659, + "ebert": 22660, + "professorship": 22661, + "##tures": 22662, + "sustaining": 22663, + "assaults": 22664, + "obeyed": 22665, + "affluent": 22666, + "incurred": 22667, + "tornadoes": 22668, + "##eber": 22669, + "##zow": 22670, + "emphasizing": 22671, + "highlanders": 22672, + "cheated": 22673, + "helmets": 22674, + "##ctus": 22675, + "internship": 22676, + "terence": 22677, + "bony": 22678, + "executions": 22679, + "legislators": 22680, + "berries": 22681, + "peninsular": 22682, + "tinged": 22683, + "##aco": 22684, + "1689": 22685, + "amplifier": 22686, + "corvette": 22687, + "ribbons": 22688, + "lavish": 22689, + "pennant": 22690, + "##lander": 22691, + "worthless": 22692, + "##chfield": 22693, + "##forms": 22694, + "mariano": 22695, + "pyrenees": 22696, + "expenditures": 22697, + "##icides": 22698, + "chesterfield": 22699, + "mandir": 22700, + "tailor": 22701, + "39th": 22702, + "sergey": 22703, + "nestled": 22704, + "willed": 22705, + "aristocracy": 22706, + "devotees": 22707, + "goodnight": 22708, + "raaf": 22709, + "rumored": 22710, + "weaponry": 22711, + "remy": 22712, + "appropriations": 22713, + "harcourt": 22714, + "burr": 22715, + "riaa": 22716, + "##lence": 22717, + "limitation": 22718, + "unnoticed": 22719, + "guo": 22720, + "soaking": 22721, + "swamps": 22722, + "##tica": 22723, + "collapsing": 22724, + "tatiana": 22725, + "descriptive": 22726, + "brigham": 22727, + "psalm": 22728, + "##chment": 22729, + "maddox": 22730, + "##lization": 22731, + "patti": 22732, + "caliph": 22733, + "##aja": 22734, + "akron": 22735, + "injuring": 22736, + "serra": 22737, + "##ganj": 22738, + "basins": 22739, + "##sari": 22740, + "astonished": 22741, + "launcher": 22742, + "##church": 22743, + "hilary": 22744, + "wilkins": 22745, + "sewing": 22746, + "##sf": 22747, + "stinging": 22748, + "##fia": 22749, + "##ncia": 22750, + "underwood": 22751, + "startup": 22752, + "##ition": 22753, + "compilations": 22754, + "vibrations": 22755, + "embankment": 22756, + "jurist": 22757, + "##nity": 22758, + "bard": 22759, + "juventus": 22760, + "groundwater": 22761, + "kern": 22762, + "palaces": 22763, + "helium": 22764, + "boca": 22765, + "cramped": 22766, + "marissa": 22767, + "soto": 22768, + "##worm": 22769, + "jae": 22770, + "princely": 22771, + "##ggy": 22772, + "faso": 22773, + "bazaar": 22774, + "warmly": 22775, + "##voking": 22776, + "229": 22777, + "pairing": 22778, + "##lite": 22779, + "##grate": 22780, + "##nets": 22781, + "wien": 22782, + "freaked": 22783, + "ulysses": 22784, + "rebirth": 22785, + "##alia": 22786, + "##rent": 22787, + "mummy": 22788, + "guzman": 22789, + "jimenez": 22790, + "stilled": 22791, + "##nitz": 22792, + "trajectory": 22793, + "tha": 22794, + "woken": 22795, + "archival": 22796, + "professions": 22797, + "##pts": 22798, + "##pta": 22799, + "hilly": 22800, + "shadowy": 22801, + "shrink": 22802, + "##bolt": 22803, + "norwood": 22804, + "glued": 22805, + "migrate": 22806, + "stereotypes": 22807, + "devoid": 22808, + "##pheus": 22809, + "625": 22810, + "evacuate": 22811, + "horrors": 22812, + "infancy": 22813, + "gotham": 22814, + "knowles": 22815, + "optic": 22816, + "downloaded": 22817, + "sachs": 22818, + "kingsley": 22819, + "parramatta": 22820, + "darryl": 22821, + "mor": 22822, + "##onale": 22823, + "shady": 22824, + "commence": 22825, + "confesses": 22826, + "kan": 22827, + "##meter": 22828, + "##placed": 22829, + "marlborough": 22830, + "roundabout": 22831, + "regents": 22832, + "frigates": 22833, + "io": 22834, + "##imating": 22835, + "gothenburg": 22836, + "revoked": 22837, + "carvings": 22838, + "clockwise": 22839, + "convertible": 22840, + "intruder": 22841, + "##sche": 22842, + "banged": 22843, + "##ogo": 22844, + "vicky": 22845, + "bourgeois": 22846, + "##mony": 22847, + "dupont": 22848, + "footing": 22849, + "##gum": 22850, + "pd": 22851, + "##real": 22852, + "buckle": 22853, + "yun": 22854, + "penthouse": 22855, + "sane": 22856, + "720": 22857, + "serviced": 22858, + "stakeholders": 22859, + "neumann": 22860, + "bb": 22861, + "##eers": 22862, + "comb": 22863, + "##gam": 22864, + "catchment": 22865, + "pinning": 22866, + "rallies": 22867, + "typing": 22868, + "##elles": 22869, + "forefront": 22870, + "freiburg": 22871, + "sweetie": 22872, + "giacomo": 22873, + "widowed": 22874, + "goodwill": 22875, + "worshipped": 22876, + "aspirations": 22877, + "midday": 22878, + "##vat": 22879, + "fishery": 22880, + "##trick": 22881, + "bournemouth": 22882, + "turk": 22883, + "243": 22884, + "hearth": 22885, + "ethanol": 22886, + "guadalajara": 22887, + "murmurs": 22888, + "sl": 22889, + "##uge": 22890, + "afforded": 22891, + "scripted": 22892, + "##hta": 22893, + "wah": 22894, + "##jn": 22895, + "coroner": 22896, + "translucent": 22897, + "252": 22898, + "memorials": 22899, + "puck": 22900, + "progresses": 22901, + "clumsy": 22902, + "##race": 22903, + "315": 22904, + "candace": 22905, + "recounted": 22906, + "##27": 22907, + "##slin": 22908, + "##uve": 22909, + "filtering": 22910, + "##mac": 22911, + "howl": 22912, + "strata": 22913, + "heron": 22914, + "leveled": 22915, + "##ays": 22916, + "dubious": 22917, + "##oja": 22918, + "##т": 22919, + "##wheel": 22920, + "citations": 22921, + "exhibiting": 22922, + "##laya": 22923, + "##mics": 22924, + "##pods": 22925, + "turkic": 22926, + "##lberg": 22927, + "injunction": 22928, + "##ennial": 22929, + "##mit": 22930, + "antibodies": 22931, + "##44": 22932, + "organise": 22933, + "##rigues": 22934, + "cardiovascular": 22935, + "cushion": 22936, + "inverness": 22937, + "##zquez": 22938, + "dia": 22939, + "cocoa": 22940, + "sibling": 22941, + "##tman": 22942, + "##roid": 22943, + "expanse": 22944, + "feasible": 22945, + "tunisian": 22946, + "algiers": 22947, + "##relli": 22948, + "rus": 22949, + "bloomberg": 22950, + "dso": 22951, + "westphalia": 22952, + "bro": 22953, + "tacoma": 22954, + "281": 22955, + "downloads": 22956, + "##ours": 22957, + "konrad": 22958, + "duran": 22959, + "##hdi": 22960, + "continuum": 22961, + "jett": 22962, + "compares": 22963, + "legislator": 22964, + "secession": 22965, + "##nable": 22966, + "##gues": 22967, + "##zuka": 22968, + "translating": 22969, + "reacher": 22970, + "##gley": 22971, + "##ła": 22972, + "aleppo": 22973, + "##agi": 22974, + "tc": 22975, + "orchards": 22976, + "trapping": 22977, + "linguist": 22978, + "versatile": 22979, + "drumming": 22980, + "postage": 22981, + "calhoun": 22982, + "superiors": 22983, + "##mx": 22984, + "barefoot": 22985, + "leary": 22986, + "##cis": 22987, + "ignacio": 22988, + "alfa": 22989, + "kaplan": 22990, + "##rogen": 22991, + "bratislava": 22992, + "mori": 22993, + "##vot": 22994, + "disturb": 22995, + "haas": 22996, + "313": 22997, + "cartridges": 22998, + "gilmore": 22999, + "radiated": 23000, + "salford": 23001, + "tunic": 23002, + "hades": 23003, + "##ulsive": 23004, + "archeological": 23005, + "delilah": 23006, + "magistrates": 23007, + "auditioned": 23008, + "brewster": 23009, + "charters": 23010, + "empowerment": 23011, + "blogs": 23012, + "cappella": 23013, + "dynasties": 23014, + "iroquois": 23015, + "whipping": 23016, + "##krishna": 23017, + "raceway": 23018, + "truths": 23019, + "myra": 23020, + "weaken": 23021, + "judah": 23022, + "mcgregor": 23023, + "##horse": 23024, + "mic": 23025, + "refueling": 23026, + "37th": 23027, + "burnley": 23028, + "bosses": 23029, + "markus": 23030, + "premio": 23031, + "query": 23032, + "##gga": 23033, + "dunbar": 23034, + "##economic": 23035, + "darkest": 23036, + "lyndon": 23037, + "sealing": 23038, + "commendation": 23039, + "reappeared": 23040, + "##mun": 23041, + "addicted": 23042, + "ezio": 23043, + "slaughtered": 23044, + "satisfactory": 23045, + "shuffle": 23046, + "##eves": 23047, + "##thic": 23048, + "##uj": 23049, + "fortification": 23050, + "warrington": 23051, + "##otto": 23052, + "resurrected": 23053, + "fargo": 23054, + "mane": 23055, + "##utable": 23056, + "##lei": 23057, + "##space": 23058, + "foreword": 23059, + "ox": 23060, + "##aris": 23061, + "##vern": 23062, + "abrams": 23063, + "hua": 23064, + "##mento": 23065, + "sakura": 23066, + "##alo": 23067, + "uv": 23068, + "sentimental": 23069, + "##skaya": 23070, + "midfield": 23071, + "##eses": 23072, + "sturdy": 23073, + "scrolls": 23074, + "macleod": 23075, + "##kyu": 23076, + "entropy": 23077, + "##lance": 23078, + "mitochondrial": 23079, + "cicero": 23080, + "excelled": 23081, + "thinner": 23082, + "convoys": 23083, + "perceive": 23084, + "##oslav": 23085, + "##urable": 23086, + "systematically": 23087, + "grind": 23088, + "burkina": 23089, + "287": 23090, + "##tagram": 23091, + "ops": 23092, + "##aman": 23093, + "guantanamo": 23094, + "##cloth": 23095, + "##tite": 23096, + "forcefully": 23097, + "wavy": 23098, + "##jou": 23099, + "pointless": 23100, + "##linger": 23101, + "##tze": 23102, + "layton": 23103, + "portico": 23104, + "superficial": 23105, + "clerical": 23106, + "outlaws": 23107, + "##hism": 23108, + "burials": 23109, + "muir": 23110, + "##inn": 23111, + "creditors": 23112, + "hauling": 23113, + "rattle": 23114, + "##leg": 23115, + "calais": 23116, + "monde": 23117, + "archers": 23118, + "reclaimed": 23119, + "dwell": 23120, + "wexford": 23121, + "hellenic": 23122, + "falsely": 23123, + "remorse": 23124, + "##tek": 23125, + "dough": 23126, + "furnishings": 23127, + "##uttered": 23128, + "gabon": 23129, + "neurological": 23130, + "novice": 23131, + "##igraphy": 23132, + "contemplated": 23133, + "pulpit": 23134, + "nightstand": 23135, + "saratoga": 23136, + "##istan": 23137, + "documenting": 23138, + "pulsing": 23139, + "taluk": 23140, + "##firmed": 23141, + "busted": 23142, + "marital": 23143, + "##rien": 23144, + "disagreements": 23145, + "wasps": 23146, + "##yes": 23147, + "hodge": 23148, + "mcdonnell": 23149, + "mimic": 23150, + "fran": 23151, + "pendant": 23152, + "dhabi": 23153, + "musa": 23154, + "##nington": 23155, + "congratulations": 23156, + "argent": 23157, + "darrell": 23158, + "concussion": 23159, + "losers": 23160, + "regrets": 23161, + "thessaloniki": 23162, + "reversal": 23163, + "donaldson": 23164, + "hardwood": 23165, + "thence": 23166, + "achilles": 23167, + "ritter": 23168, + "##eran": 23169, + "demonic": 23170, + "jurgen": 23171, + "prophets": 23172, + "goethe": 23173, + "eki": 23174, + "classmate": 23175, + "buff": 23176, + "##cking": 23177, + "yank": 23178, + "irrational": 23179, + "##inging": 23180, + "perished": 23181, + "seductive": 23182, + "qur": 23183, + "sourced": 23184, + "##crat": 23185, + "##typic": 23186, + "mustard": 23187, + "ravine": 23188, + "barre": 23189, + "horizontally": 23190, + "characterization": 23191, + "phylogenetic": 23192, + "boise": 23193, + "##dit": 23194, + "##runner": 23195, + "##tower": 23196, + "brutally": 23197, + "intercourse": 23198, + "seduce": 23199, + "##bbing": 23200, + "fay": 23201, + "ferris": 23202, + "ogden": 23203, + "amar": 23204, + "nik": 23205, + "unarmed": 23206, + "##inator": 23207, + "evaluating": 23208, + "kyrgyzstan": 23209, + "sweetness": 23210, + "##lford": 23211, + "##oki": 23212, + "mccormick": 23213, + "meiji": 23214, + "notoriety": 23215, + "stimulate": 23216, + "disrupt": 23217, + "figuring": 23218, + "instructional": 23219, + "mcgrath": 23220, + "##zoo": 23221, + "groundbreaking": 23222, + "##lto": 23223, + "flinch": 23224, + "khorasan": 23225, + "agrarian": 23226, + "bengals": 23227, + "mixer": 23228, + "radiating": 23229, + "##sov": 23230, + "ingram": 23231, + "pitchers": 23232, + "nad": 23233, + "tariff": 23234, + "##cript": 23235, + "tata": 23236, + "##codes": 23237, + "##emi": 23238, + "##ungen": 23239, + "appellate": 23240, + "lehigh": 23241, + "##bled": 23242, + "##giri": 23243, + "brawl": 23244, + "duct": 23245, + "texans": 23246, + "##ciation": 23247, + "##ropolis": 23248, + "skipper": 23249, + "speculative": 23250, + "vomit": 23251, + "doctrines": 23252, + "stresses": 23253, + "253": 23254, + "davy": 23255, + "graders": 23256, + "whitehead": 23257, + "jozef": 23258, + "timely": 23259, + "cumulative": 23260, + "haryana": 23261, + "paints": 23262, + "appropriately": 23263, + "boon": 23264, + "cactus": 23265, + "##ales": 23266, + "##pid": 23267, + "dow": 23268, + "legions": 23269, + "##pit": 23270, + "perceptions": 23271, + "1730": 23272, + "picturesque": 23273, + "##yse": 23274, + "periphery": 23275, + "rune": 23276, + "wr": 23277, + "##aha": 23278, + "celtics": 23279, + "sentencing": 23280, + "whoa": 23281, + "##erin": 23282, + "confirms": 23283, + "variance": 23284, + "425": 23285, + "moines": 23286, + "mathews": 23287, + "spade": 23288, + "rave": 23289, + "m1": 23290, + "fronted": 23291, + "fx": 23292, + "blending": 23293, + "alleging": 23294, + "reared": 23295, + "##gl": 23296, + "237": 23297, + "##paper": 23298, + "grassroots": 23299, + "eroded": 23300, + "##free": 23301, + "##physical": 23302, + "directs": 23303, + "ordeal": 23304, + "##sław": 23305, + "accelerate": 23306, + "hacker": 23307, + "rooftop": 23308, + "##inia": 23309, + "lev": 23310, + "buys": 23311, + "cebu": 23312, + "devote": 23313, + "##lce": 23314, + "specialising": 23315, + "##ulsion": 23316, + "choreographed": 23317, + "repetition": 23318, + "warehouses": 23319, + "##ryl": 23320, + "paisley": 23321, + "tuscany": 23322, + "analogy": 23323, + "sorcerer": 23324, + "hash": 23325, + "huts": 23326, + "shards": 23327, + "descends": 23328, + "exclude": 23329, + "nix": 23330, + "chaplin": 23331, + "gaga": 23332, + "ito": 23333, + "vane": 23334, + "##drich": 23335, + "causeway": 23336, + "misconduct": 23337, + "limo": 23338, + "orchestrated": 23339, + "glands": 23340, + "jana": 23341, + "##kot": 23342, + "u2": 23343, + "##mple": 23344, + "##sons": 23345, + "branching": 23346, + "contrasts": 23347, + "scoop": 23348, + "longed": 23349, + "##virus": 23350, + "chattanooga": 23351, + "##75": 23352, + "syrup": 23353, + "cornerstone": 23354, + "##tized": 23355, + "##mind": 23356, + "##iaceae": 23357, + "careless": 23358, + "precedence": 23359, + "frescoes": 23360, + "##uet": 23361, + "chilled": 23362, + "consult": 23363, + "modelled": 23364, + "snatch": 23365, + "peat": 23366, + "##thermal": 23367, + "caucasian": 23368, + "humane": 23369, + "relaxation": 23370, + "spins": 23371, + "temperance": 23372, + "##lbert": 23373, + "occupations": 23374, + "lambda": 23375, + "hybrids": 23376, + "moons": 23377, + "mp3": 23378, + "##oese": 23379, + "247": 23380, + "rolf": 23381, + "societal": 23382, + "yerevan": 23383, + "ness": 23384, + "##ssler": 23385, + "befriended": 23386, + "mechanized": 23387, + "nominate": 23388, + "trough": 23389, + "boasted": 23390, + "cues": 23391, + "seater": 23392, + "##hom": 23393, + "bends": 23394, + "##tangle": 23395, + "conductors": 23396, + "emptiness": 23397, + "##lmer": 23398, + "eurasian": 23399, + "adriatic": 23400, + "tian": 23401, + "##cie": 23402, + "anxiously": 23403, + "lark": 23404, + "propellers": 23405, + "chichester": 23406, + "jock": 23407, + "ev": 23408, + "2a": 23409, + "##holding": 23410, + "credible": 23411, + "recounts": 23412, + "tori": 23413, + "loyalist": 23414, + "abduction": 23415, + "##hoot": 23416, + "##redo": 23417, + "nepali": 23418, + "##mite": 23419, + "ventral": 23420, + "tempting": 23421, + "##ango": 23422, + "##crats": 23423, + "steered": 23424, + "##wice": 23425, + "javelin": 23426, + "dipping": 23427, + "laborers": 23428, + "prentice": 23429, + "looming": 23430, + "titanium": 23431, + "##ː": 23432, + "badges": 23433, + "emir": 23434, + "tensor": 23435, + "##ntation": 23436, + "egyptians": 23437, + "rash": 23438, + "denies": 23439, + "hawthorne": 23440, + "lombard": 23441, + "showers": 23442, + "wehrmacht": 23443, + "dietary": 23444, + "trojan": 23445, + "##reus": 23446, + "welles": 23447, + "executing": 23448, + "horseshoe": 23449, + "lifeboat": 23450, + "##lak": 23451, + "elsa": 23452, + "infirmary": 23453, + "nearing": 23454, + "roberta": 23455, + "boyer": 23456, + "mutter": 23457, + "trillion": 23458, + "joanne": 23459, + "##fine": 23460, + "##oked": 23461, + "sinks": 23462, + "vortex": 23463, + "uruguayan": 23464, + "clasp": 23465, + "sirius": 23466, + "##block": 23467, + "accelerator": 23468, + "prohibit": 23469, + "sunken": 23470, + "byu": 23471, + "chronological": 23472, + "diplomats": 23473, + "ochreous": 23474, + "510": 23475, + "symmetrical": 23476, + "1644": 23477, + "maia": 23478, + "##tology": 23479, + "salts": 23480, + "reigns": 23481, + "atrocities": 23482, + "##ия": 23483, + "hess": 23484, + "bared": 23485, + "issn": 23486, + "##vyn": 23487, + "cater": 23488, + "saturated": 23489, + "##cycle": 23490, + "##isse": 23491, + "sable": 23492, + "voyager": 23493, + "dyer": 23494, + "yusuf": 23495, + "##inge": 23496, + "fountains": 23497, + "wolff": 23498, + "##39": 23499, + "##nni": 23500, + "engraving": 23501, + "rollins": 23502, + "atheist": 23503, + "ominous": 23504, + "##ault": 23505, + "herr": 23506, + "chariot": 23507, + "martina": 23508, + "strung": 23509, + "##fell": 23510, + "##farlane": 23511, + "horrific": 23512, + "sahib": 23513, + "gazes": 23514, + "saetan": 23515, + "erased": 23516, + "ptolemy": 23517, + "##olic": 23518, + "flushing": 23519, + "lauderdale": 23520, + "analytic": 23521, + "##ices": 23522, + "530": 23523, + "navarro": 23524, + "beak": 23525, + "gorilla": 23526, + "herrera": 23527, + "broom": 23528, + "guadalupe": 23529, + "raiding": 23530, + "sykes": 23531, + "311": 23532, + "bsc": 23533, + "deliveries": 23534, + "1720": 23535, + "invasions": 23536, + "carmichael": 23537, + "tajikistan": 23538, + "thematic": 23539, + "ecumenical": 23540, + "sentiments": 23541, + "onstage": 23542, + "##rians": 23543, + "##brand": 23544, + "##sume": 23545, + "catastrophic": 23546, + "flanks": 23547, + "molten": 23548, + "##arns": 23549, + "waller": 23550, + "aimee": 23551, + "terminating": 23552, + "##icing": 23553, + "alternately": 23554, + "##oche": 23555, + "nehru": 23556, + "printers": 23557, + "outraged": 23558, + "##eving": 23559, + "empires": 23560, + "template": 23561, + "banners": 23562, + "repetitive": 23563, + "za": 23564, + "##oise": 23565, + "vegetarian": 23566, + "##tell": 23567, + "guiana": 23568, + "opt": 23569, + "cavendish": 23570, + "lucknow": 23571, + "synthesized": 23572, + "##hani": 23573, + "##mada": 23574, + "finalized": 23575, + "##ctable": 23576, + "fictitious": 23577, + "mayoral": 23578, + "unreliable": 23579, + "##enham": 23580, + "embracing": 23581, + "peppers": 23582, + "rbis": 23583, + "##chio": 23584, + "##neo": 23585, + "inhibition": 23586, + "slashed": 23587, + "togo": 23588, + "orderly": 23589, + "embroidered": 23590, + "safari": 23591, + "salty": 23592, + "236": 23593, + "barron": 23594, + "benito": 23595, + "totaled": 23596, + "##dak": 23597, + "pubs": 23598, + "simulated": 23599, + "caden": 23600, + "devin": 23601, + "tolkien": 23602, + "momma": 23603, + "welding": 23604, + "sesame": 23605, + "##ept": 23606, + "gottingen": 23607, + "hardness": 23608, + "630": 23609, + "shaman": 23610, + "temeraire": 23611, + "620": 23612, + "adequately": 23613, + "pediatric": 23614, + "##kit": 23615, + "ck": 23616, + "assertion": 23617, + "radicals": 23618, + "composure": 23619, + "cadence": 23620, + "seafood": 23621, + "beaufort": 23622, + "lazarus": 23623, + "mani": 23624, + "warily": 23625, + "cunning": 23626, + "kurdistan": 23627, + "249": 23628, + "cantata": 23629, + "##kir": 23630, + "ares": 23631, + "##41": 23632, + "##clusive": 23633, + "nape": 23634, + "townland": 23635, + "geared": 23636, + "insulted": 23637, + "flutter": 23638, + "boating": 23639, + "violate": 23640, + "draper": 23641, + "dumping": 23642, + "malmo": 23643, + "##hh": 23644, + "##romatic": 23645, + "firearm": 23646, + "alta": 23647, + "bono": 23648, + "obscured": 23649, + "##clave": 23650, + "exceeds": 23651, + "panorama": 23652, + "unbelievable": 23653, + "##train": 23654, + "preschool": 23655, + "##essed": 23656, + "disconnected": 23657, + "installing": 23658, + "rescuing": 23659, + "secretaries": 23660, + "accessibility": 23661, + "##castle": 23662, + "##drive": 23663, + "##ifice": 23664, + "##film": 23665, + "bouts": 23666, + "slug": 23667, + "waterway": 23668, + "mindanao": 23669, + "##buro": 23670, + "##ratic": 23671, + "halves": 23672, + "##ل": 23673, + "calming": 23674, + "liter": 23675, + "maternity": 23676, + "adorable": 23677, + "bragg": 23678, + "electrification": 23679, + "mcc": 23680, + "##dote": 23681, + "roxy": 23682, + "schizophrenia": 23683, + "##body": 23684, + "munoz": 23685, + "kaye": 23686, + "whaling": 23687, + "239": 23688, + "mil": 23689, + "tingling": 23690, + "tolerant": 23691, + "##ago": 23692, + "unconventional": 23693, + "volcanoes": 23694, + "##finder": 23695, + "deportivo": 23696, + "##llie": 23697, + "robson": 23698, + "kaufman": 23699, + "neuroscience": 23700, + "wai": 23701, + "deportation": 23702, + "masovian": 23703, + "scraping": 23704, + "converse": 23705, + "##bh": 23706, + "hacking": 23707, + "bulge": 23708, + "##oun": 23709, + "administratively": 23710, + "yao": 23711, + "580": 23712, + "amp": 23713, + "mammoth": 23714, + "booster": 23715, + "claremont": 23716, + "hooper": 23717, + "nomenclature": 23718, + "pursuits": 23719, + "mclaughlin": 23720, + "melinda": 23721, + "##sul": 23722, + "catfish": 23723, + "barclay": 23724, + "substrates": 23725, + "taxa": 23726, + "zee": 23727, + "originals": 23728, + "kimberly": 23729, + "packets": 23730, + "padma": 23731, + "##ality": 23732, + "borrowing": 23733, + "ostensibly": 23734, + "solvent": 23735, + "##bri": 23736, + "##genesis": 23737, + "##mist": 23738, + "lukas": 23739, + "shreveport": 23740, + "veracruz": 23741, + "##ь": 23742, + "##lou": 23743, + "##wives": 23744, + "cheney": 23745, + "tt": 23746, + "anatolia": 23747, + "hobbs": 23748, + "##zyn": 23749, + "cyclic": 23750, + "radiant": 23751, + "alistair": 23752, + "greenish": 23753, + "siena": 23754, + "dat": 23755, + "independents": 23756, + "##bation": 23757, + "conform": 23758, + "pieter": 23759, + "hyper": 23760, + "applicant": 23761, + "bradshaw": 23762, + "spores": 23763, + "telangana": 23764, + "vinci": 23765, + "inexpensive": 23766, + "nuclei": 23767, + "322": 23768, + "jang": 23769, + "nme": 23770, + "soho": 23771, + "spd": 23772, + "##ign": 23773, + "cradled": 23774, + "receptionist": 23775, + "pow": 23776, + "##43": 23777, + "##rika": 23778, + "fascism": 23779, + "##ifer": 23780, + "experimenting": 23781, + "##ading": 23782, + "##iec": 23783, + "##region": 23784, + "345": 23785, + "jocelyn": 23786, + "maris": 23787, + "stair": 23788, + "nocturnal": 23789, + "toro": 23790, + "constabulary": 23791, + "elgin": 23792, + "##kker": 23793, + "msc": 23794, + "##giving": 23795, + "##schen": 23796, + "##rase": 23797, + "doherty": 23798, + "doping": 23799, + "sarcastically": 23800, + "batter": 23801, + "maneuvers": 23802, + "##cano": 23803, + "##apple": 23804, + "##gai": 23805, + "##git": 23806, + "intrinsic": 23807, + "##nst": 23808, + "##stor": 23809, + "1753": 23810, + "showtime": 23811, + "cafes": 23812, + "gasps": 23813, + "lviv": 23814, + "ushered": 23815, + "##thed": 23816, + "fours": 23817, + "restart": 23818, + "astonishment": 23819, + "transmitting": 23820, + "flyer": 23821, + "shrugs": 23822, + "##sau": 23823, + "intriguing": 23824, + "cones": 23825, + "dictated": 23826, + "mushrooms": 23827, + "medial": 23828, + "##kovsky": 23829, + "##elman": 23830, + "escorting": 23831, + "gaped": 23832, + "##26": 23833, + "godfather": 23834, + "##door": 23835, + "##sell": 23836, + "djs": 23837, + "recaptured": 23838, + "timetable": 23839, + "vila": 23840, + "1710": 23841, + "3a": 23842, + "aerodrome": 23843, + "mortals": 23844, + "scientology": 23845, + "##orne": 23846, + "angelina": 23847, + "mag": 23848, + "convection": 23849, + "unpaid": 23850, + "insertion": 23851, + "intermittent": 23852, + "lego": 23853, + "##nated": 23854, + "endeavor": 23855, + "kota": 23856, + "pereira": 23857, + "##lz": 23858, + "304": 23859, + "bwv": 23860, + "glamorgan": 23861, + "insults": 23862, + "agatha": 23863, + "fey": 23864, + "##cend": 23865, + "fleetwood": 23866, + "mahogany": 23867, + "protruding": 23868, + "steamship": 23869, + "zeta": 23870, + "##arty": 23871, + "mcguire": 23872, + "suspense": 23873, + "##sphere": 23874, + "advising": 23875, + "urges": 23876, + "##wala": 23877, + "hurriedly": 23878, + "meteor": 23879, + "gilded": 23880, + "inline": 23881, + "arroyo": 23882, + "stalker": 23883, + "##oge": 23884, + "excitedly": 23885, + "revered": 23886, + "##cure": 23887, + "earle": 23888, + "introductory": 23889, + "##break": 23890, + "##ilde": 23891, + "mutants": 23892, + "puff": 23893, + "pulses": 23894, + "reinforcement": 23895, + "##haling": 23896, + "curses": 23897, + "lizards": 23898, + "stalk": 23899, + "correlated": 23900, + "##fixed": 23901, + "fallout": 23902, + "macquarie": 23903, + "##unas": 23904, + "bearded": 23905, + "denton": 23906, + "heaving": 23907, + "802": 23908, + "##ocation": 23909, + "winery": 23910, + "assign": 23911, + "dortmund": 23912, + "##lkirk": 23913, + "everest": 23914, + "invariant": 23915, + "charismatic": 23916, + "susie": 23917, + "##elling": 23918, + "bled": 23919, + "lesley": 23920, + "telegram": 23921, + "sumner": 23922, + "bk": 23923, + "##ogen": 23924, + "##к": 23925, + "wilcox": 23926, + "needy": 23927, + "colbert": 23928, + "duval": 23929, + "##iferous": 23930, + "##mbled": 23931, + "allotted": 23932, + "attends": 23933, + "imperative": 23934, + "##hita": 23935, + "replacements": 23936, + "hawker": 23937, + "##inda": 23938, + "insurgency": 23939, + "##zee": 23940, + "##eke": 23941, + "casts": 23942, + "##yla": 23943, + "680": 23944, + "ives": 23945, + "transitioned": 23946, + "##pack": 23947, + "##powering": 23948, + "authoritative": 23949, + "baylor": 23950, + "flex": 23951, + "cringed": 23952, + "plaintiffs": 23953, + "woodrow": 23954, + "##skie": 23955, + "drastic": 23956, + "ape": 23957, + "aroma": 23958, + "unfolded": 23959, + "commotion": 23960, + "nt": 23961, + "preoccupied": 23962, + "theta": 23963, + "routines": 23964, + "lasers": 23965, + "privatization": 23966, + "wand": 23967, + "domino": 23968, + "ek": 23969, + "clenching": 23970, + "nsa": 23971, + "strategically": 23972, + "showered": 23973, + "bile": 23974, + "handkerchief": 23975, + "pere": 23976, + "storing": 23977, + "christophe": 23978, + "insulting": 23979, + "316": 23980, + "nakamura": 23981, + "romani": 23982, + "asiatic": 23983, + "magdalena": 23984, + "palma": 23985, + "cruises": 23986, + "stripping": 23987, + "405": 23988, + "konstantin": 23989, + "soaring": 23990, + "##berman": 23991, + "colloquially": 23992, + "forerunner": 23993, + "havilland": 23994, + "incarcerated": 23995, + "parasites": 23996, + "sincerity": 23997, + "##utus": 23998, + "disks": 23999, + "plank": 24000, + "saigon": 24001, + "##ining": 24002, + "corbin": 24003, + "homo": 24004, + "ornaments": 24005, + "powerhouse": 24006, + "##tlement": 24007, + "chong": 24008, + "fastened": 24009, + "feasibility": 24010, + "idf": 24011, + "morphological": 24012, + "usable": 24013, + "##nish": 24014, + "##zuki": 24015, + "aqueduct": 24016, + "jaguars": 24017, + "keepers": 24018, + "##flies": 24019, + "aleksandr": 24020, + "faust": 24021, + "assigns": 24022, + "ewing": 24023, + "bacterium": 24024, + "hurled": 24025, + "tricky": 24026, + "hungarians": 24027, + "integers": 24028, + "wallis": 24029, + "321": 24030, + "yamaha": 24031, + "##isha": 24032, + "hushed": 24033, + "oblivion": 24034, + "aviator": 24035, + "evangelist": 24036, + "friars": 24037, + "##eller": 24038, + "monograph": 24039, + "ode": 24040, + "##nary": 24041, + "airplanes": 24042, + "labourers": 24043, + "charms": 24044, + "##nee": 24045, + "1661": 24046, + "hagen": 24047, + "tnt": 24048, + "rudder": 24049, + "fiesta": 24050, + "transcript": 24051, + "dorothea": 24052, + "ska": 24053, + "inhibitor": 24054, + "maccabi": 24055, + "retorted": 24056, + "raining": 24057, + "encompassed": 24058, + "clauses": 24059, + "menacing": 24060, + "1642": 24061, + "lineman": 24062, + "##gist": 24063, + "vamps": 24064, + "##ape": 24065, + "##dick": 24066, + "gloom": 24067, + "##rera": 24068, + "dealings": 24069, + "easing": 24070, + "seekers": 24071, + "##nut": 24072, + "##pment": 24073, + "helens": 24074, + "unmanned": 24075, + "##anu": 24076, + "##isson": 24077, + "basics": 24078, + "##amy": 24079, + "##ckman": 24080, + "adjustments": 24081, + "1688": 24082, + "brutality": 24083, + "horne": 24084, + "##zell": 24085, + "sui": 24086, + "##55": 24087, + "##mable": 24088, + "aggregator": 24089, + "##thal": 24090, + "rhino": 24091, + "##drick": 24092, + "##vira": 24093, + "counters": 24094, + "zoom": 24095, + "##01": 24096, + "##rting": 24097, + "mn": 24098, + "montenegrin": 24099, + "packard": 24100, + "##unciation": 24101, + "##♭": 24102, + "##kki": 24103, + "reclaim": 24104, + "scholastic": 24105, + "thugs": 24106, + "pulsed": 24107, + "##icia": 24108, + "syriac": 24109, + "quan": 24110, + "saddam": 24111, + "banda": 24112, + "kobe": 24113, + "blaming": 24114, + "buddies": 24115, + "dissent": 24116, + "##lusion": 24117, + "##usia": 24118, + "corbett": 24119, + "jaya": 24120, + "delle": 24121, + "erratic": 24122, + "lexie": 24123, + "##hesis": 24124, + "435": 24125, + "amiga": 24126, + "hermes": 24127, + "##pressing": 24128, + "##leen": 24129, + "chapels": 24130, + "gospels": 24131, + "jamal": 24132, + "##uating": 24133, + "compute": 24134, + "revolving": 24135, + "warp": 24136, + "##sso": 24137, + "##thes": 24138, + "armory": 24139, + "##eras": 24140, + "##gol": 24141, + "antrim": 24142, + "loki": 24143, + "##kow": 24144, + "##asian": 24145, + "##good": 24146, + "##zano": 24147, + "braid": 24148, + "handwriting": 24149, + "subdistrict": 24150, + "funky": 24151, + "pantheon": 24152, + "##iculate": 24153, + "concurrency": 24154, + "estimation": 24155, + "improper": 24156, + "juliana": 24157, + "##his": 24158, + "newcomers": 24159, + "johnstone": 24160, + "staten": 24161, + "communicated": 24162, + "##oco": 24163, + "##alle": 24164, + "sausage": 24165, + "stormy": 24166, + "##stered": 24167, + "##tters": 24168, + "superfamily": 24169, + "##grade": 24170, + "acidic": 24171, + "collateral": 24172, + "tabloid": 24173, + "##oped": 24174, + "##rza": 24175, + "bladder": 24176, + "austen": 24177, + "##ellant": 24178, + "mcgraw": 24179, + "##hay": 24180, + "hannibal": 24181, + "mein": 24182, + "aquino": 24183, + "lucifer": 24184, + "wo": 24185, + "badger": 24186, + "boar": 24187, + "cher": 24188, + "christensen": 24189, + "greenberg": 24190, + "interruption": 24191, + "##kken": 24192, + "jem": 24193, + "244": 24194, + "mocked": 24195, + "bottoms": 24196, + "cambridgeshire": 24197, + "##lide": 24198, + "sprawling": 24199, + "##bbly": 24200, + "eastwood": 24201, + "ghent": 24202, + "synth": 24203, + "##buck": 24204, + "advisers": 24205, + "##bah": 24206, + "nominally": 24207, + "hapoel": 24208, + "qu": 24209, + "daggers": 24210, + "estranged": 24211, + "fabricated": 24212, + "towels": 24213, + "vinnie": 24214, + "wcw": 24215, + "misunderstanding": 24216, + "anglia": 24217, + "nothin": 24218, + "unmistakable": 24219, + "##dust": 24220, + "##lova": 24221, + "chilly": 24222, + "marquette": 24223, + "truss": 24224, + "##edge": 24225, + "##erine": 24226, + "reece": 24227, + "##lty": 24228, + "##chemist": 24229, + "##connected": 24230, + "272": 24231, + "308": 24232, + "41st": 24233, + "bash": 24234, + "raion": 24235, + "waterfalls": 24236, + "##ump": 24237, + "##main": 24238, + "labyrinth": 24239, + "queue": 24240, + "theorist": 24241, + "##istle": 24242, + "bharatiya": 24243, + "flexed": 24244, + "soundtracks": 24245, + "rooney": 24246, + "leftist": 24247, + "patrolling": 24248, + "wharton": 24249, + "plainly": 24250, + "alleviate": 24251, + "eastman": 24252, + "schuster": 24253, + "topographic": 24254, + "engages": 24255, + "immensely": 24256, + "unbearable": 24257, + "fairchild": 24258, + "1620": 24259, + "dona": 24260, + "lurking": 24261, + "parisian": 24262, + "oliveira": 24263, + "ia": 24264, + "indictment": 24265, + "hahn": 24266, + "bangladeshi": 24267, + "##aster": 24268, + "vivo": 24269, + "##uming": 24270, + "##ential": 24271, + "antonia": 24272, + "expects": 24273, + "indoors": 24274, + "kildare": 24275, + "harlan": 24276, + "##logue": 24277, + "##ogenic": 24278, + "##sities": 24279, + "forgiven": 24280, + "##wat": 24281, + "childish": 24282, + "tavi": 24283, + "##mide": 24284, + "##orra": 24285, + "plausible": 24286, + "grimm": 24287, + "successively": 24288, + "scooted": 24289, + "##bola": 24290, + "##dget": 24291, + "##rith": 24292, + "spartans": 24293, + "emery": 24294, + "flatly": 24295, + "azure": 24296, + "epilogue": 24297, + "##wark": 24298, + "flourish": 24299, + "##iny": 24300, + "##tracted": 24301, + "##overs": 24302, + "##oshi": 24303, + "bestseller": 24304, + "distressed": 24305, + "receipt": 24306, + "spitting": 24307, + "hermit": 24308, + "topological": 24309, + "##cot": 24310, + "drilled": 24311, + "subunit": 24312, + "francs": 24313, + "##layer": 24314, + "eel": 24315, + "##fk": 24316, + "##itas": 24317, + "octopus": 24318, + "footprint": 24319, + "petitions": 24320, + "ufo": 24321, + "##say": 24322, + "##foil": 24323, + "interfering": 24324, + "leaking": 24325, + "palo": 24326, + "##metry": 24327, + "thistle": 24328, + "valiant": 24329, + "##pic": 24330, + "narayan": 24331, + "mcpherson": 24332, + "##fast": 24333, + "gonzales": 24334, + "##ym": 24335, + "##enne": 24336, + "dustin": 24337, + "novgorod": 24338, + "solos": 24339, + "##zman": 24340, + "doin": 24341, + "##raph": 24342, + "##patient": 24343, + "##meyer": 24344, + "soluble": 24345, + "ashland": 24346, + "cuffs": 24347, + "carole": 24348, + "pendleton": 24349, + "whistling": 24350, + "vassal": 24351, + "##river": 24352, + "deviation": 24353, + "revisited": 24354, + "constituents": 24355, + "rallied": 24356, + "rotate": 24357, + "loomed": 24358, + "##eil": 24359, + "##nting": 24360, + "amateurs": 24361, + "augsburg": 24362, + "auschwitz": 24363, + "crowns": 24364, + "skeletons": 24365, + "##cona": 24366, + "bonnet": 24367, + "257": 24368, + "dummy": 24369, + "globalization": 24370, + "simeon": 24371, + "sleeper": 24372, + "mandal": 24373, + "differentiated": 24374, + "##crow": 24375, + "##mare": 24376, + "milne": 24377, + "bundled": 24378, + "exasperated": 24379, + "talmud": 24380, + "owes": 24381, + "segregated": 24382, + "##feng": 24383, + "##uary": 24384, + "dentist": 24385, + "piracy": 24386, + "props": 24387, + "##rang": 24388, + "devlin": 24389, + "##torium": 24390, + "malicious": 24391, + "paws": 24392, + "##laid": 24393, + "dependency": 24394, + "##ergy": 24395, + "##fers": 24396, + "##enna": 24397, + "258": 24398, + "pistons": 24399, + "rourke": 24400, + "jed": 24401, + "grammatical": 24402, + "tres": 24403, + "maha": 24404, + "wig": 24405, + "512": 24406, + "ghostly": 24407, + "jayne": 24408, + "##achal": 24409, + "##creen": 24410, + "##ilis": 24411, + "##lins": 24412, + "##rence": 24413, + "designate": 24414, + "##with": 24415, + "arrogance": 24416, + "cambodian": 24417, + "clones": 24418, + "showdown": 24419, + "throttle": 24420, + "twain": 24421, + "##ception": 24422, + "lobes": 24423, + "metz": 24424, + "nagoya": 24425, + "335": 24426, + "braking": 24427, + "##furt": 24428, + "385": 24429, + "roaming": 24430, + "##minster": 24431, + "amin": 24432, + "crippled": 24433, + "##37": 24434, + "##llary": 24435, + "indifferent": 24436, + "hoffmann": 24437, + "idols": 24438, + "intimidating": 24439, + "1751": 24440, + "261": 24441, + "influenza": 24442, + "memo": 24443, + "onions": 24444, + "1748": 24445, + "bandage": 24446, + "consciously": 24447, + "##landa": 24448, + "##rage": 24449, + "clandestine": 24450, + "observes": 24451, + "swiped": 24452, + "tangle": 24453, + "##ener": 24454, + "##jected": 24455, + "##trum": 24456, + "##bill": 24457, + "##lta": 24458, + "hugs": 24459, + "congresses": 24460, + "josiah": 24461, + "spirited": 24462, + "##dek": 24463, + "humanist": 24464, + "managerial": 24465, + "filmmaking": 24466, + "inmate": 24467, + "rhymes": 24468, + "debuting": 24469, + "grimsby": 24470, + "ur": 24471, + "##laze": 24472, + "duplicate": 24473, + "vigor": 24474, + "##tf": 24475, + "republished": 24476, + "bolshevik": 24477, + "refurbishment": 24478, + "antibiotics": 24479, + "martini": 24480, + "methane": 24481, + "newscasts": 24482, + "royale": 24483, + "horizons": 24484, + "levant": 24485, + "iain": 24486, + "visas": 24487, + "##ischen": 24488, + "paler": 24489, + "##around": 24490, + "manifestation": 24491, + "snuck": 24492, + "alf": 24493, + "chop": 24494, + "futile": 24495, + "pedestal": 24496, + "rehab": 24497, + "##kat": 24498, + "bmg": 24499, + "kerman": 24500, + "res": 24501, + "fairbanks": 24502, + "jarrett": 24503, + "abstraction": 24504, + "saharan": 24505, + "##zek": 24506, + "1746": 24507, + "procedural": 24508, + "clearer": 24509, + "kincaid": 24510, + "sash": 24511, + "luciano": 24512, + "##ffey": 24513, + "crunch": 24514, + "helmut": 24515, + "##vara": 24516, + "revolutionaries": 24517, + "##tute": 24518, + "creamy": 24519, + "leach": 24520, + "##mmon": 24521, + "1747": 24522, + "permitting": 24523, + "nes": 24524, + "plight": 24525, + "wendell": 24526, + "##lese": 24527, + "contra": 24528, + "ts": 24529, + "clancy": 24530, + "ipa": 24531, + "mach": 24532, + "staples": 24533, + "autopsy": 24534, + "disturbances": 24535, + "nueva": 24536, + "karin": 24537, + "pontiac": 24538, + "##uding": 24539, + "proxy": 24540, + "venerable": 24541, + "haunt": 24542, + "leto": 24543, + "bergman": 24544, + "expands": 24545, + "##helm": 24546, + "wal": 24547, + "##pipe": 24548, + "canning": 24549, + "celine": 24550, + "cords": 24551, + "obesity": 24552, + "##enary": 24553, + "intrusion": 24554, + "planner": 24555, + "##phate": 24556, + "reasoned": 24557, + "sequencing": 24558, + "307": 24559, + "harrow": 24560, + "##chon": 24561, + "##dora": 24562, + "marred": 24563, + "mcintyre": 24564, + "repay": 24565, + "tarzan": 24566, + "darting": 24567, + "248": 24568, + "harrisburg": 24569, + "margarita": 24570, + "repulsed": 24571, + "##hur": 24572, + "##lding": 24573, + "belinda": 24574, + "hamburger": 24575, + "novo": 24576, + "compliant": 24577, + "runways": 24578, + "bingham": 24579, + "registrar": 24580, + "skyscraper": 24581, + "ic": 24582, + "cuthbert": 24583, + "improvisation": 24584, + "livelihood": 24585, + "##corp": 24586, + "##elial": 24587, + "admiring": 24588, + "##dened": 24589, + "sporadic": 24590, + "believer": 24591, + "casablanca": 24592, + "popcorn": 24593, + "##29": 24594, + "asha": 24595, + "shovel": 24596, + "##bek": 24597, + "##dice": 24598, + "coiled": 24599, + "tangible": 24600, + "##dez": 24601, + "casper": 24602, + "elsie": 24603, + "resin": 24604, + "tenderness": 24605, + "rectory": 24606, + "##ivision": 24607, + "avail": 24608, + "sonar": 24609, + "##mori": 24610, + "boutique": 24611, + "##dier": 24612, + "guerre": 24613, + "bathed": 24614, + "upbringing": 24615, + "vaulted": 24616, + "sandals": 24617, + "blessings": 24618, + "##naut": 24619, + "##utnant": 24620, + "1680": 24621, + "306": 24622, + "foxes": 24623, + "pia": 24624, + "corrosion": 24625, + "hesitantly": 24626, + "confederates": 24627, + "crystalline": 24628, + "footprints": 24629, + "shapiro": 24630, + "tirana": 24631, + "valentin": 24632, + "drones": 24633, + "45th": 24634, + "microscope": 24635, + "shipments": 24636, + "texted": 24637, + "inquisition": 24638, + "wry": 24639, + "guernsey": 24640, + "unauthorized": 24641, + "resigning": 24642, + "760": 24643, + "ripple": 24644, + "schubert": 24645, + "stu": 24646, + "reassure": 24647, + "felony": 24648, + "##ardo": 24649, + "brittle": 24650, + "koreans": 24651, + "##havan": 24652, + "##ives": 24653, + "dun": 24654, + "implicit": 24655, + "tyres": 24656, + "##aldi": 24657, + "##lth": 24658, + "magnolia": 24659, + "##ehan": 24660, + "##puri": 24661, + "##poulos": 24662, + "aggressively": 24663, + "fei": 24664, + "gr": 24665, + "familiarity": 24666, + "##poo": 24667, + "indicative": 24668, + "##trust": 24669, + "fundamentally": 24670, + "jimmie": 24671, + "overrun": 24672, + "395": 24673, + "anchors": 24674, + "moans": 24675, + "##opus": 24676, + "britannia": 24677, + "armagh": 24678, + "##ggle": 24679, + "purposely": 24680, + "seizing": 24681, + "##vao": 24682, + "bewildered": 24683, + "mundane": 24684, + "avoidance": 24685, + "cosmopolitan": 24686, + "geometridae": 24687, + "quartermaster": 24688, + "caf": 24689, + "415": 24690, + "chatter": 24691, + "engulfed": 24692, + "gleam": 24693, + "purge": 24694, + "##icate": 24695, + "juliette": 24696, + "jurisprudence": 24697, + "guerra": 24698, + "revisions": 24699, + "##bn": 24700, + "casimir": 24701, + "brew": 24702, + "##jm": 24703, + "1749": 24704, + "clapton": 24705, + "cloudy": 24706, + "conde": 24707, + "hermitage": 24708, + "278": 24709, + "simulations": 24710, + "torches": 24711, + "vincenzo": 24712, + "matteo": 24713, + "##rill": 24714, + "hidalgo": 24715, + "booming": 24716, + "westbound": 24717, + "accomplishment": 24718, + "tentacles": 24719, + "unaffected": 24720, + "##sius": 24721, + "annabelle": 24722, + "flopped": 24723, + "sloping": 24724, + "##litz": 24725, + "dreamer": 24726, + "interceptor": 24727, + "vu": 24728, + "##loh": 24729, + "consecration": 24730, + "copying": 24731, + "messaging": 24732, + "breaker": 24733, + "climates": 24734, + "hospitalized": 24735, + "1752": 24736, + "torino": 24737, + "afternoons": 24738, + "winfield": 24739, + "witnessing": 24740, + "##teacher": 24741, + "breakers": 24742, + "choirs": 24743, + "sawmill": 24744, + "coldly": 24745, + "##ege": 24746, + "sipping": 24747, + "haste": 24748, + "uninhabited": 24749, + "conical": 24750, + "bibliography": 24751, + "pamphlets": 24752, + "severn": 24753, + "edict": 24754, + "##oca": 24755, + "deux": 24756, + "illnesses": 24757, + "grips": 24758, + "##pl": 24759, + "rehearsals": 24760, + "sis": 24761, + "thinkers": 24762, + "tame": 24763, + "##keepers": 24764, + "1690": 24765, + "acacia": 24766, + "reformer": 24767, + "##osed": 24768, + "##rys": 24769, + "shuffling": 24770, + "##iring": 24771, + "##shima": 24772, + "eastbound": 24773, + "ionic": 24774, + "rhea": 24775, + "flees": 24776, + "littered": 24777, + "##oum": 24778, + "rocker": 24779, + "vomiting": 24780, + "groaning": 24781, + "champ": 24782, + "overwhelmingly": 24783, + "civilizations": 24784, + "paces": 24785, + "sloop": 24786, + "adoptive": 24787, + "##tish": 24788, + "skaters": 24789, + "##vres": 24790, + "aiding": 24791, + "mango": 24792, + "##joy": 24793, + "nikola": 24794, + "shriek": 24795, + "##ignon": 24796, + "pharmaceuticals": 24797, + "##mg": 24798, + "tuna": 24799, + "calvert": 24800, + "gustavo": 24801, + "stocked": 24802, + "yearbook": 24803, + "##urai": 24804, + "##mana": 24805, + "computed": 24806, + "subsp": 24807, + "riff": 24808, + "hanoi": 24809, + "kelvin": 24810, + "hamid": 24811, + "moors": 24812, + "pastures": 24813, + "summons": 24814, + "jihad": 24815, + "nectar": 24816, + "##ctors": 24817, + "bayou": 24818, + "untitled": 24819, + "pleasing": 24820, + "vastly": 24821, + "republics": 24822, + "intellect": 24823, + "##η": 24824, + "##ulio": 24825, + "##tou": 24826, + "crumbling": 24827, + "stylistic": 24828, + "sb": 24829, + "##ی": 24830, + "consolation": 24831, + "frequented": 24832, + "h₂o": 24833, + "walden": 24834, + "widows": 24835, + "##iens": 24836, + "404": 24837, + "##ignment": 24838, + "chunks": 24839, + "improves": 24840, + "288": 24841, + "grit": 24842, + "recited": 24843, + "##dev": 24844, + "snarl": 24845, + "sociological": 24846, + "##arte": 24847, + "##gul": 24848, + "inquired": 24849, + "##held": 24850, + "bruise": 24851, + "clube": 24852, + "consultancy": 24853, + "homogeneous": 24854, + "hornets": 24855, + "multiplication": 24856, + "pasta": 24857, + "prick": 24858, + "savior": 24859, + "##grin": 24860, + "##kou": 24861, + "##phile": 24862, + "yoon": 24863, + "##gara": 24864, + "grimes": 24865, + "vanishing": 24866, + "cheering": 24867, + "reacting": 24868, + "bn": 24869, + "distillery": 24870, + "##quisite": 24871, + "##vity": 24872, + "coe": 24873, + "dockyard": 24874, + "massif": 24875, + "##jord": 24876, + "escorts": 24877, + "voss": 24878, + "##valent": 24879, + "byte": 24880, + "chopped": 24881, + "hawke": 24882, + "illusions": 24883, + "workings": 24884, + "floats": 24885, + "##koto": 24886, + "##vac": 24887, + "kv": 24888, + "annapolis": 24889, + "madden": 24890, + "##onus": 24891, + "alvaro": 24892, + "noctuidae": 24893, + "##cum": 24894, + "##scopic": 24895, + "avenge": 24896, + "steamboat": 24897, + "forte": 24898, + "illustrates": 24899, + "erika": 24900, + "##trip": 24901, + "570": 24902, + "dew": 24903, + "nationalities": 24904, + "bran": 24905, + "manifested": 24906, + "thirsty": 24907, + "diversified": 24908, + "muscled": 24909, + "reborn": 24910, + "##standing": 24911, + "arson": 24912, + "##lessness": 24913, + "##dran": 24914, + "##logram": 24915, + "##boys": 24916, + "##kushima": 24917, + "##vious": 24918, + "willoughby": 24919, + "##phobia": 24920, + "286": 24921, + "alsace": 24922, + "dashboard": 24923, + "yuki": 24924, + "##chai": 24925, + "granville": 24926, + "myspace": 24927, + "publicized": 24928, + "tricked": 24929, + "##gang": 24930, + "adjective": 24931, + "##ater": 24932, + "relic": 24933, + "reorganisation": 24934, + "enthusiastically": 24935, + "indications": 24936, + "saxe": 24937, + "##lassified": 24938, + "consolidate": 24939, + "iec": 24940, + "padua": 24941, + "helplessly": 24942, + "ramps": 24943, + "renaming": 24944, + "regulars": 24945, + "pedestrians": 24946, + "accents": 24947, + "convicts": 24948, + "inaccurate": 24949, + "lowers": 24950, + "mana": 24951, + "##pati": 24952, + "barrie": 24953, + "bjp": 24954, + "outta": 24955, + "someplace": 24956, + "berwick": 24957, + "flanking": 24958, + "invoked": 24959, + "marrow": 24960, + "sparsely": 24961, + "excerpts": 24962, + "clothed": 24963, + "rei": 24964, + "##ginal": 24965, + "wept": 24966, + "##straße": 24967, + "##vish": 24968, + "alexa": 24969, + "excel": 24970, + "##ptive": 24971, + "membranes": 24972, + "aquitaine": 24973, + "creeks": 24974, + "cutler": 24975, + "sheppard": 24976, + "implementations": 24977, + "ns": 24978, + "##dur": 24979, + "fragrance": 24980, + "budge": 24981, + "concordia": 24982, + "magnesium": 24983, + "marcelo": 24984, + "##antes": 24985, + "gladly": 24986, + "vibrating": 24987, + "##rral": 24988, + "##ggles": 24989, + "montrose": 24990, + "##omba": 24991, + "lew": 24992, + "seamus": 24993, + "1630": 24994, + "cocky": 24995, + "##ament": 24996, + "##uen": 24997, + "bjorn": 24998, + "##rrick": 24999, + "fielder": 25000, + "fluttering": 25001, + "##lase": 25002, + "methyl": 25003, + "kimberley": 25004, + "mcdowell": 25005, + "reductions": 25006, + "barbed": 25007, + "##jic": 25008, + "##tonic": 25009, + "aeronautical": 25010, + "condensed": 25011, + "distracting": 25012, + "##promising": 25013, + "huffed": 25014, + "##cala": 25015, + "##sle": 25016, + "claudius": 25017, + "invincible": 25018, + "missy": 25019, + "pious": 25020, + "balthazar": 25021, + "ci": 25022, + "##lang": 25023, + "butte": 25024, + "combo": 25025, + "orson": 25026, + "##dication": 25027, + "myriad": 25028, + "1707": 25029, + "silenced": 25030, + "##fed": 25031, + "##rh": 25032, + "coco": 25033, + "netball": 25034, + "yourselves": 25035, + "##oza": 25036, + "clarify": 25037, + "heller": 25038, + "peg": 25039, + "durban": 25040, + "etudes": 25041, + "offender": 25042, + "roast": 25043, + "blackmail": 25044, + "curvature": 25045, + "##woods": 25046, + "vile": 25047, + "309": 25048, + "illicit": 25049, + "suriname": 25050, + "##linson": 25051, + "overture": 25052, + "1685": 25053, + "bubbling": 25054, + "gymnast": 25055, + "tucking": 25056, + "##mming": 25057, + "##ouin": 25058, + "maldives": 25059, + "##bala": 25060, + "gurney": 25061, + "##dda": 25062, + "##eased": 25063, + "##oides": 25064, + "backside": 25065, + "pinto": 25066, + "jars": 25067, + "racehorse": 25068, + "tending": 25069, + "##rdial": 25070, + "baronetcy": 25071, + "wiener": 25072, + "duly": 25073, + "##rke": 25074, + "barbarian": 25075, + "cupping": 25076, + "flawed": 25077, + "##thesis": 25078, + "bertha": 25079, + "pleistocene": 25080, + "puddle": 25081, + "swearing": 25082, + "##nob": 25083, + "##tically": 25084, + "fleeting": 25085, + "prostate": 25086, + "amulet": 25087, + "educating": 25088, + "##mined": 25089, + "##iti": 25090, + "##tler": 25091, + "75th": 25092, + "jens": 25093, + "respondents": 25094, + "analytics": 25095, + "cavaliers": 25096, + "papacy": 25097, + "raju": 25098, + "##iente": 25099, + "##ulum": 25100, + "##tip": 25101, + "funnel": 25102, + "271": 25103, + "disneyland": 25104, + "##lley": 25105, + "sociologist": 25106, + "##iam": 25107, + "2500": 25108, + "faulkner": 25109, + "louvre": 25110, + "menon": 25111, + "##dson": 25112, + "276": 25113, + "##ower": 25114, + "afterlife": 25115, + "mannheim": 25116, + "peptide": 25117, + "referees": 25118, + "comedians": 25119, + "meaningless": 25120, + "##anger": 25121, + "##laise": 25122, + "fabrics": 25123, + "hurley": 25124, + "renal": 25125, + "sleeps": 25126, + "##bour": 25127, + "##icle": 25128, + "breakout": 25129, + "kristin": 25130, + "roadside": 25131, + "animator": 25132, + "clover": 25133, + "disdain": 25134, + "unsafe": 25135, + "redesign": 25136, + "##urity": 25137, + "firth": 25138, + "barnsley": 25139, + "portage": 25140, + "reset": 25141, + "narrows": 25142, + "268": 25143, + "commandos": 25144, + "expansive": 25145, + "speechless": 25146, + "tubular": 25147, + "##lux": 25148, + "essendon": 25149, + "eyelashes": 25150, + "smashwords": 25151, + "##yad": 25152, + "##bang": 25153, + "##claim": 25154, + "craved": 25155, + "sprinted": 25156, + "chet": 25157, + "somme": 25158, + "astor": 25159, + "wrocław": 25160, + "orton": 25161, + "266": 25162, + "bane": 25163, + "##erving": 25164, + "##uing": 25165, + "mischief": 25166, + "##amps": 25167, + "##sund": 25168, + "scaling": 25169, + "terre": 25170, + "##xious": 25171, + "impairment": 25172, + "offenses": 25173, + "undermine": 25174, + "moi": 25175, + "soy": 25176, + "contiguous": 25177, + "arcadia": 25178, + "inuit": 25179, + "seam": 25180, + "##tops": 25181, + "macbeth": 25182, + "rebelled": 25183, + "##icative": 25184, + "##iot": 25185, + "590": 25186, + "elaborated": 25187, + "frs": 25188, + "uniformed": 25189, + "##dberg": 25190, + "259": 25191, + "powerless": 25192, + "priscilla": 25193, + "stimulated": 25194, + "980": 25195, + "qc": 25196, + "arboretum": 25197, + "frustrating": 25198, + "trieste": 25199, + "bullock": 25200, + "##nified": 25201, + "enriched": 25202, + "glistening": 25203, + "intern": 25204, + "##adia": 25205, + "locus": 25206, + "nouvelle": 25207, + "ollie": 25208, + "ike": 25209, + "lash": 25210, + "starboard": 25211, + "ee": 25212, + "tapestry": 25213, + "headlined": 25214, + "hove": 25215, + "rigged": 25216, + "##vite": 25217, + "pollock": 25218, + "##yme": 25219, + "thrive": 25220, + "clustered": 25221, + "cas": 25222, + "roi": 25223, + "gleamed": 25224, + "olympiad": 25225, + "##lino": 25226, + "pressured": 25227, + "regimes": 25228, + "##hosis": 25229, + "##lick": 25230, + "ripley": 25231, + "##ophone": 25232, + "kickoff": 25233, + "gallon": 25234, + "rockwell": 25235, + "##arable": 25236, + "crusader": 25237, + "glue": 25238, + "revolutions": 25239, + "scrambling": 25240, + "1714": 25241, + "grover": 25242, + "##jure": 25243, + "englishman": 25244, + "aztec": 25245, + "263": 25246, + "contemplating": 25247, + "coven": 25248, + "ipad": 25249, + "preach": 25250, + "triumphant": 25251, + "tufts": 25252, + "##esian": 25253, + "rotational": 25254, + "##phus": 25255, + "328": 25256, + "falkland": 25257, + "##brates": 25258, + "strewn": 25259, + "clarissa": 25260, + "rejoin": 25261, + "environmentally": 25262, + "glint": 25263, + "banded": 25264, + "drenched": 25265, + "moat": 25266, + "albanians": 25267, + "johor": 25268, + "rr": 25269, + "maestro": 25270, + "malley": 25271, + "nouveau": 25272, + "shaded": 25273, + "taxonomy": 25274, + "v6": 25275, + "adhere": 25276, + "bunk": 25277, + "airfields": 25278, + "##ritan": 25279, + "1741": 25280, + "encompass": 25281, + "remington": 25282, + "tran": 25283, + "##erative": 25284, + "amelie": 25285, + "mazda": 25286, + "friar": 25287, + "morals": 25288, + "passions": 25289, + "##zai": 25290, + "breadth": 25291, + "vis": 25292, + "##hae": 25293, + "argus": 25294, + "burnham": 25295, + "caressing": 25296, + "insider": 25297, + "rudd": 25298, + "##imov": 25299, + "##mini": 25300, + "##rso": 25301, + "italianate": 25302, + "murderous": 25303, + "textual": 25304, + "wainwright": 25305, + "armada": 25306, + "bam": 25307, + "weave": 25308, + "timer": 25309, + "##taken": 25310, + "##nh": 25311, + "fra": 25312, + "##crest": 25313, + "ardent": 25314, + "salazar": 25315, + "taps": 25316, + "tunis": 25317, + "##ntino": 25318, + "allegro": 25319, + "gland": 25320, + "philanthropic": 25321, + "##chester": 25322, + "implication": 25323, + "##optera": 25324, + "esq": 25325, + "judas": 25326, + "noticeably": 25327, + "wynn": 25328, + "##dara": 25329, + "inched": 25330, + "indexed": 25331, + "crises": 25332, + "villiers": 25333, + "bandit": 25334, + "royalties": 25335, + "patterned": 25336, + "cupboard": 25337, + "interspersed": 25338, + "accessory": 25339, + "isla": 25340, + "kendrick": 25341, + "entourage": 25342, + "stitches": 25343, + "##esthesia": 25344, + "headwaters": 25345, + "##ior": 25346, + "interlude": 25347, + "distraught": 25348, + "draught": 25349, + "1727": 25350, + "##basket": 25351, + "biased": 25352, + "sy": 25353, + "transient": 25354, + "triad": 25355, + "subgenus": 25356, + "adapting": 25357, + "kidd": 25358, + "shortstop": 25359, + "##umatic": 25360, + "dimly": 25361, + "spiked": 25362, + "mcleod": 25363, + "reprint": 25364, + "nellie": 25365, + "pretoria": 25366, + "windmill": 25367, + "##cek": 25368, + "singled": 25369, + "##mps": 25370, + "273": 25371, + "reunite": 25372, + "##orous": 25373, + "747": 25374, + "bankers": 25375, + "outlying": 25376, + "##omp": 25377, + "##ports": 25378, + "##tream": 25379, + "apologies": 25380, + "cosmetics": 25381, + "patsy": 25382, + "##deh": 25383, + "##ocks": 25384, + "##yson": 25385, + "bender": 25386, + "nantes": 25387, + "serene": 25388, + "##nad": 25389, + "lucha": 25390, + "mmm": 25391, + "323": 25392, + "##cius": 25393, + "##gli": 25394, + "cmll": 25395, + "coinage": 25396, + "nestor": 25397, + "juarez": 25398, + "##rook": 25399, + "smeared": 25400, + "sprayed": 25401, + "twitching": 25402, + "sterile": 25403, + "irina": 25404, + "embodied": 25405, + "juveniles": 25406, + "enveloped": 25407, + "miscellaneous": 25408, + "cancers": 25409, + "dq": 25410, + "gulped": 25411, + "luisa": 25412, + "crested": 25413, + "swat": 25414, + "donegal": 25415, + "ref": 25416, + "##anov": 25417, + "##acker": 25418, + "hearst": 25419, + "mercantile": 25420, + "##lika": 25421, + "doorbell": 25422, + "ua": 25423, + "vicki": 25424, + "##alla": 25425, + "##som": 25426, + "bilbao": 25427, + "psychologists": 25428, + "stryker": 25429, + "sw": 25430, + "horsemen": 25431, + "turkmenistan": 25432, + "wits": 25433, + "##national": 25434, + "anson": 25435, + "mathew": 25436, + "screenings": 25437, + "##umb": 25438, + "rihanna": 25439, + "##agne": 25440, + "##nessy": 25441, + "aisles": 25442, + "##iani": 25443, + "##osphere": 25444, + "hines": 25445, + "kenton": 25446, + "saskatoon": 25447, + "tasha": 25448, + "truncated": 25449, + "##champ": 25450, + "##itan": 25451, + "mildred": 25452, + "advises": 25453, + "fredrik": 25454, + "interpreting": 25455, + "inhibitors": 25456, + "##athi": 25457, + "spectroscopy": 25458, + "##hab": 25459, + "##kong": 25460, + "karim": 25461, + "panda": 25462, + "##oia": 25463, + "##nail": 25464, + "##vc": 25465, + "conqueror": 25466, + "kgb": 25467, + "leukemia": 25468, + "##dity": 25469, + "arrivals": 25470, + "cheered": 25471, + "pisa": 25472, + "phosphorus": 25473, + "shielded": 25474, + "##riated": 25475, + "mammal": 25476, + "unitarian": 25477, + "urgently": 25478, + "chopin": 25479, + "sanitary": 25480, + "##mission": 25481, + "spicy": 25482, + "drugged": 25483, + "hinges": 25484, + "##tort": 25485, + "tipping": 25486, + "trier": 25487, + "impoverished": 25488, + "westchester": 25489, + "##caster": 25490, + "267": 25491, + "epoch": 25492, + "nonstop": 25493, + "##gman": 25494, + "##khov": 25495, + "aromatic": 25496, + "centrally": 25497, + "cerro": 25498, + "##tively": 25499, + "##vio": 25500, + "billions": 25501, + "modulation": 25502, + "sedimentary": 25503, + "283": 25504, + "facilitating": 25505, + "outrageous": 25506, + "goldstein": 25507, + "##eak": 25508, + "##kt": 25509, + "ld": 25510, + "maitland": 25511, + "penultimate": 25512, + "pollard": 25513, + "##dance": 25514, + "fleets": 25515, + "spaceship": 25516, + "vertebrae": 25517, + "##nig": 25518, + "alcoholism": 25519, + "als": 25520, + "recital": 25521, + "##bham": 25522, + "##ference": 25523, + "##omics": 25524, + "m2": 25525, + "##bm": 25526, + "trois": 25527, + "##tropical": 25528, + "##в": 25529, + "commemorates": 25530, + "##meric": 25531, + "marge": 25532, + "##raction": 25533, + "1643": 25534, + "670": 25535, + "cosmetic": 25536, + "ravaged": 25537, + "##ige": 25538, + "catastrophe": 25539, + "eng": 25540, + "##shida": 25541, + "albrecht": 25542, + "arterial": 25543, + "bellamy": 25544, + "decor": 25545, + "harmon": 25546, + "##rde": 25547, + "bulbs": 25548, + "synchronized": 25549, + "vito": 25550, + "easiest": 25551, + "shetland": 25552, + "shielding": 25553, + "wnba": 25554, + "##glers": 25555, + "##ssar": 25556, + "##riam": 25557, + "brianna": 25558, + "cumbria": 25559, + "##aceous": 25560, + "##rard": 25561, + "cores": 25562, + "thayer": 25563, + "##nsk": 25564, + "brood": 25565, + "hilltop": 25566, + "luminous": 25567, + "carts": 25568, + "keynote": 25569, + "larkin": 25570, + "logos": 25571, + "##cta": 25572, + "##ا": 25573, + "##mund": 25574, + "##quay": 25575, + "lilith": 25576, + "tinted": 25577, + "277": 25578, + "wrestle": 25579, + "mobilization": 25580, + "##uses": 25581, + "sequential": 25582, + "siam": 25583, + "bloomfield": 25584, + "takahashi": 25585, + "274": 25586, + "##ieving": 25587, + "presenters": 25588, + "ringo": 25589, + "blazed": 25590, + "witty": 25591, + "##oven": 25592, + "##ignant": 25593, + "devastation": 25594, + "haydn": 25595, + "harmed": 25596, + "newt": 25597, + "therese": 25598, + "##peed": 25599, + "gershwin": 25600, + "molina": 25601, + "rabbis": 25602, + "sudanese": 25603, + "001": 25604, + "innate": 25605, + "restarted": 25606, + "##sack": 25607, + "##fus": 25608, + "slices": 25609, + "wb": 25610, + "##shah": 25611, + "enroll": 25612, + "hypothetical": 25613, + "hysterical": 25614, + "1743": 25615, + "fabio": 25616, + "indefinite": 25617, + "warped": 25618, + "##hg": 25619, + "exchanging": 25620, + "525": 25621, + "unsuitable": 25622, + "##sboro": 25623, + "gallo": 25624, + "1603": 25625, + "bret": 25626, + "cobalt": 25627, + "homemade": 25628, + "##hunter": 25629, + "mx": 25630, + "operatives": 25631, + "##dhar": 25632, + "terraces": 25633, + "durable": 25634, + "latch": 25635, + "pens": 25636, + "whorls": 25637, + "##ctuated": 25638, + "##eaux": 25639, + "billing": 25640, + "ligament": 25641, + "succumbed": 25642, + "##gly": 25643, + "regulators": 25644, + "spawn": 25645, + "##brick": 25646, + "##stead": 25647, + "filmfare": 25648, + "rochelle": 25649, + "##nzo": 25650, + "1725": 25651, + "circumstance": 25652, + "saber": 25653, + "supplements": 25654, + "##nsky": 25655, + "##tson": 25656, + "crowe": 25657, + "wellesley": 25658, + "carrot": 25659, + "##9th": 25660, + "##movable": 25661, + "primate": 25662, + "drury": 25663, + "sincerely": 25664, + "topical": 25665, + "##mad": 25666, + "##rao": 25667, + "callahan": 25668, + "kyiv": 25669, + "smarter": 25670, + "tits": 25671, + "undo": 25672, + "##yeh": 25673, + "announcements": 25674, + "anthologies": 25675, + "barrio": 25676, + "nebula": 25677, + "##islaus": 25678, + "##shaft": 25679, + "##tyn": 25680, + "bodyguards": 25681, + "2021": 25682, + "assassinate": 25683, + "barns": 25684, + "emmett": 25685, + "scully": 25686, + "##mah": 25687, + "##yd": 25688, + "##eland": 25689, + "##tino": 25690, + "##itarian": 25691, + "demoted": 25692, + "gorman": 25693, + "lashed": 25694, + "prized": 25695, + "adventist": 25696, + "writ": 25697, + "##gui": 25698, + "alla": 25699, + "invertebrates": 25700, + "##ausen": 25701, + "1641": 25702, + "amman": 25703, + "1742": 25704, + "align": 25705, + "healy": 25706, + "redistribution": 25707, + "##gf": 25708, + "##rize": 25709, + "insulation": 25710, + "##drop": 25711, + "adherents": 25712, + "hezbollah": 25713, + "vitro": 25714, + "ferns": 25715, + "yanking": 25716, + "269": 25717, + "php": 25718, + "registering": 25719, + "uppsala": 25720, + "cheerleading": 25721, + "confines": 25722, + "mischievous": 25723, + "tully": 25724, + "##ross": 25725, + "49th": 25726, + "docked": 25727, + "roam": 25728, + "stipulated": 25729, + "pumpkin": 25730, + "##bry": 25731, + "prompt": 25732, + "##ezer": 25733, + "blindly": 25734, + "shuddering": 25735, + "craftsmen": 25736, + "frail": 25737, + "scented": 25738, + "katharine": 25739, + "scramble": 25740, + "shaggy": 25741, + "sponge": 25742, + "helix": 25743, + "zaragoza": 25744, + "279": 25745, + "##52": 25746, + "43rd": 25747, + "backlash": 25748, + "fontaine": 25749, + "seizures": 25750, + "posse": 25751, + "cowan": 25752, + "nonfiction": 25753, + "telenovela": 25754, + "wwii": 25755, + "hammered": 25756, + "undone": 25757, + "##gpur": 25758, + "encircled": 25759, + "irs": 25760, + "##ivation": 25761, + "artefacts": 25762, + "oneself": 25763, + "searing": 25764, + "smallpox": 25765, + "##belle": 25766, + "##osaurus": 25767, + "shandong": 25768, + "breached": 25769, + "upland": 25770, + "blushing": 25771, + "rankin": 25772, + "infinitely": 25773, + "psyche": 25774, + "tolerated": 25775, + "docking": 25776, + "evicted": 25777, + "##col": 25778, + "unmarked": 25779, + "##lving": 25780, + "gnome": 25781, + "lettering": 25782, + "litres": 25783, + "musique": 25784, + "##oint": 25785, + "benevolent": 25786, + "##jal": 25787, + "blackened": 25788, + "##anna": 25789, + "mccall": 25790, + "racers": 25791, + "tingle": 25792, + "##ocene": 25793, + "##orestation": 25794, + "introductions": 25795, + "radically": 25796, + "292": 25797, + "##hiff": 25798, + "##باد": 25799, + "1610": 25800, + "1739": 25801, + "munchen": 25802, + "plead": 25803, + "##nka": 25804, + "condo": 25805, + "scissors": 25806, + "##sight": 25807, + "##tens": 25808, + "apprehension": 25809, + "##cey": 25810, + "##yin": 25811, + "hallmark": 25812, + "watering": 25813, + "formulas": 25814, + "sequels": 25815, + "##llas": 25816, + "aggravated": 25817, + "bae": 25818, + "commencing": 25819, + "##building": 25820, + "enfield": 25821, + "prohibits": 25822, + "marne": 25823, + "vedic": 25824, + "civilized": 25825, + "euclidean": 25826, + "jagger": 25827, + "beforehand": 25828, + "blasts": 25829, + "dumont": 25830, + "##arney": 25831, + "##nem": 25832, + "740": 25833, + "conversions": 25834, + "hierarchical": 25835, + "rios": 25836, + "simulator": 25837, + "##dya": 25838, + "##lellan": 25839, + "hedges": 25840, + "oleg": 25841, + "thrusts": 25842, + "shadowed": 25843, + "darby": 25844, + "maximize": 25845, + "1744": 25846, + "gregorian": 25847, + "##nded": 25848, + "##routed": 25849, + "sham": 25850, + "unspecified": 25851, + "##hog": 25852, + "emory": 25853, + "factual": 25854, + "##smo": 25855, + "##tp": 25856, + "fooled": 25857, + "##rger": 25858, + "ortega": 25859, + "wellness": 25860, + "marlon": 25861, + "##oton": 25862, + "##urance": 25863, + "casket": 25864, + "keating": 25865, + "ley": 25866, + "enclave": 25867, + "##ayan": 25868, + "char": 25869, + "influencing": 25870, + "jia": 25871, + "##chenko": 25872, + "412": 25873, + "ammonia": 25874, + "erebidae": 25875, + "incompatible": 25876, + "violins": 25877, + "cornered": 25878, + "##arat": 25879, + "grooves": 25880, + "astronauts": 25881, + "columbian": 25882, + "rampant": 25883, + "fabrication": 25884, + "kyushu": 25885, + "mahmud": 25886, + "vanish": 25887, + "##dern": 25888, + "mesopotamia": 25889, + "##lete": 25890, + "ict": 25891, + "##rgen": 25892, + "caspian": 25893, + "kenji": 25894, + "pitted": 25895, + "##vered": 25896, + "999": 25897, + "grimace": 25898, + "roanoke": 25899, + "tchaikovsky": 25900, + "twinned": 25901, + "##analysis": 25902, + "##awan": 25903, + "xinjiang": 25904, + "arias": 25905, + "clemson": 25906, + "kazakh": 25907, + "sizable": 25908, + "1662": 25909, + "##khand": 25910, + "##vard": 25911, + "plunge": 25912, + "tatum": 25913, + "vittorio": 25914, + "##nden": 25915, + "cholera": 25916, + "##dana": 25917, + "##oper": 25918, + "bracing": 25919, + "indifference": 25920, + "projectile": 25921, + "superliga": 25922, + "##chee": 25923, + "realises": 25924, + "upgrading": 25925, + "299": 25926, + "porte": 25927, + "retribution": 25928, + "##vies": 25929, + "nk": 25930, + "stil": 25931, + "##resses": 25932, + "ama": 25933, + "bureaucracy": 25934, + "blackberry": 25935, + "bosch": 25936, + "testosterone": 25937, + "collapses": 25938, + "greer": 25939, + "##pathic": 25940, + "ioc": 25941, + "fifties": 25942, + "malls": 25943, + "##erved": 25944, + "bao": 25945, + "baskets": 25946, + "adolescents": 25947, + "siegfried": 25948, + "##osity": 25949, + "##tosis": 25950, + "mantra": 25951, + "detecting": 25952, + "existent": 25953, + "fledgling": 25954, + "##cchi": 25955, + "dissatisfied": 25956, + "gan": 25957, + "telecommunication": 25958, + "mingled": 25959, + "sobbed": 25960, + "6000": 25961, + "controversies": 25962, + "outdated": 25963, + "taxis": 25964, + "##raus": 25965, + "fright": 25966, + "slams": 25967, + "##lham": 25968, + "##fect": 25969, + "##tten": 25970, + "detectors": 25971, + "fetal": 25972, + "tanned": 25973, + "##uw": 25974, + "fray": 25975, + "goth": 25976, + "olympian": 25977, + "skipping": 25978, + "mandates": 25979, + "scratches": 25980, + "sheng": 25981, + "unspoken": 25982, + "hyundai": 25983, + "tracey": 25984, + "hotspur": 25985, + "restrictive": 25986, + "##buch": 25987, + "americana": 25988, + "mundo": 25989, + "##bari": 25990, + "burroughs": 25991, + "diva": 25992, + "vulcan": 25993, + "##6th": 25994, + "distinctions": 25995, + "thumping": 25996, + "##ngen": 25997, + "mikey": 25998, + "sheds": 25999, + "fide": 26000, + "rescues": 26001, + "springsteen": 26002, + "vested": 26003, + "valuation": 26004, + "##ece": 26005, + "##ely": 26006, + "pinnacle": 26007, + "rake": 26008, + "sylvie": 26009, + "##edo": 26010, + "almond": 26011, + "quivering": 26012, + "##irus": 26013, + "alteration": 26014, + "faltered": 26015, + "##wad": 26016, + "51st": 26017, + "hydra": 26018, + "ticked": 26019, + "##kato": 26020, + "recommends": 26021, + "##dicated": 26022, + "antigua": 26023, + "arjun": 26024, + "stagecoach": 26025, + "wilfred": 26026, + "trickle": 26027, + "pronouns": 26028, + "##pon": 26029, + "aryan": 26030, + "nighttime": 26031, + "##anian": 26032, + "gall": 26033, + "pea": 26034, + "stitch": 26035, + "##hei": 26036, + "leung": 26037, + "milos": 26038, + "##dini": 26039, + "eritrea": 26040, + "nexus": 26041, + "starved": 26042, + "snowfall": 26043, + "kant": 26044, + "parasitic": 26045, + "cot": 26046, + "discus": 26047, + "hana": 26048, + "strikers": 26049, + "appleton": 26050, + "kitchens": 26051, + "##erina": 26052, + "##partisan": 26053, + "##itha": 26054, + "##vius": 26055, + "disclose": 26056, + "metis": 26057, + "##channel": 26058, + "1701": 26059, + "tesla": 26060, + "##vera": 26061, + "fitch": 26062, + "1735": 26063, + "blooded": 26064, + "##tila": 26065, + "decimal": 26066, + "##tang": 26067, + "##bai": 26068, + "cyclones": 26069, + "eun": 26070, + "bottled": 26071, + "peas": 26072, + "pensacola": 26073, + "basha": 26074, + "bolivian": 26075, + "crabs": 26076, + "boil": 26077, + "lanterns": 26078, + "partridge": 26079, + "roofed": 26080, + "1645": 26081, + "necks": 26082, + "##phila": 26083, + "opined": 26084, + "patting": 26085, + "##kla": 26086, + "##lland": 26087, + "chuckles": 26088, + "volta": 26089, + "whereupon": 26090, + "##nche": 26091, + "devout": 26092, + "euroleague": 26093, + "suicidal": 26094, + "##dee": 26095, + "inherently": 26096, + "involuntary": 26097, + "knitting": 26098, + "nasser": 26099, + "##hide": 26100, + "puppets": 26101, + "colourful": 26102, + "courageous": 26103, + "southend": 26104, + "stills": 26105, + "miraculous": 26106, + "hodgson": 26107, + "richer": 26108, + "rochdale": 26109, + "ethernet": 26110, + "greta": 26111, + "uniting": 26112, + "prism": 26113, + "umm": 26114, + "##haya": 26115, + "##itical": 26116, + "##utation": 26117, + "deterioration": 26118, + "pointe": 26119, + "prowess": 26120, + "##ropriation": 26121, + "lids": 26122, + "scranton": 26123, + "billings": 26124, + "subcontinent": 26125, + "##koff": 26126, + "##scope": 26127, + "brute": 26128, + "kellogg": 26129, + "psalms": 26130, + "degraded": 26131, + "##vez": 26132, + "stanisław": 26133, + "##ructured": 26134, + "ferreira": 26135, + "pun": 26136, + "astonishing": 26137, + "gunnar": 26138, + "##yat": 26139, + "arya": 26140, + "prc": 26141, + "gottfried": 26142, + "##tight": 26143, + "excursion": 26144, + "##ographer": 26145, + "dina": 26146, + "##quil": 26147, + "##nare": 26148, + "huffington": 26149, + "illustrious": 26150, + "wilbur": 26151, + "gundam": 26152, + "verandah": 26153, + "##zard": 26154, + "naacp": 26155, + "##odle": 26156, + "constructive": 26157, + "fjord": 26158, + "kade": 26159, + "##naud": 26160, + "generosity": 26161, + "thrilling": 26162, + "baseline": 26163, + "cayman": 26164, + "frankish": 26165, + "plastics": 26166, + "accommodations": 26167, + "zoological": 26168, + "##fting": 26169, + "cedric": 26170, + "qb": 26171, + "motorized": 26172, + "##dome": 26173, + "##otted": 26174, + "squealed": 26175, + "tackled": 26176, + "canucks": 26177, + "budgets": 26178, + "situ": 26179, + "asthma": 26180, + "dail": 26181, + "gabled": 26182, + "grasslands": 26183, + "whimpered": 26184, + "writhing": 26185, + "judgments": 26186, + "##65": 26187, + "minnie": 26188, + "pv": 26189, + "##carbon": 26190, + "bananas": 26191, + "grille": 26192, + "domes": 26193, + "monique": 26194, + "odin": 26195, + "maguire": 26196, + "markham": 26197, + "tierney": 26198, + "##estra": 26199, + "##chua": 26200, + "libel": 26201, + "poke": 26202, + "speedy": 26203, + "atrium": 26204, + "laval": 26205, + "notwithstanding": 26206, + "##edly": 26207, + "fai": 26208, + "kala": 26209, + "##sur": 26210, + "robb": 26211, + "##sma": 26212, + "listings": 26213, + "luz": 26214, + "supplementary": 26215, + "tianjin": 26216, + "##acing": 26217, + "enzo": 26218, + "jd": 26219, + "ric": 26220, + "scanner": 26221, + "croats": 26222, + "transcribed": 26223, + "##49": 26224, + "arden": 26225, + "cv": 26226, + "##hair": 26227, + "##raphy": 26228, + "##lver": 26229, + "##uy": 26230, + "357": 26231, + "seventies": 26232, + "staggering": 26233, + "alam": 26234, + "horticultural": 26235, + "hs": 26236, + "regression": 26237, + "timbers": 26238, + "blasting": 26239, + "##ounded": 26240, + "montagu": 26241, + "manipulating": 26242, + "##cit": 26243, + "catalytic": 26244, + "1550": 26245, + "troopers": 26246, + "##meo": 26247, + "condemnation": 26248, + "fitzpatrick": 26249, + "##oire": 26250, + "##roved": 26251, + "inexperienced": 26252, + "1670": 26253, + "castes": 26254, + "##lative": 26255, + "outing": 26256, + "314": 26257, + "dubois": 26258, + "flicking": 26259, + "quarrel": 26260, + "ste": 26261, + "learners": 26262, + "1625": 26263, + "iq": 26264, + "whistled": 26265, + "##class": 26266, + "282": 26267, + "classify": 26268, + "tariffs": 26269, + "temperament": 26270, + "355": 26271, + "folly": 26272, + "liszt": 26273, + "##yles": 26274, + "immersed": 26275, + "jordanian": 26276, + "ceasefire": 26277, + "apparel": 26278, + "extras": 26279, + "maru": 26280, + "fished": 26281, + "##bio": 26282, + "harta": 26283, + "stockport": 26284, + "assortment": 26285, + "craftsman": 26286, + "paralysis": 26287, + "transmitters": 26288, + "##cola": 26289, + "blindness": 26290, + "##wk": 26291, + "fatally": 26292, + "proficiency": 26293, + "solemnly": 26294, + "##orno": 26295, + "repairing": 26296, + "amore": 26297, + "groceries": 26298, + "ultraviolet": 26299, + "##chase": 26300, + "schoolhouse": 26301, + "##tua": 26302, + "resurgence": 26303, + "nailed": 26304, + "##otype": 26305, + "##×": 26306, + "ruse": 26307, + "saliva": 26308, + "diagrams": 26309, + "##tructing": 26310, + "albans": 26311, + "rann": 26312, + "thirties": 26313, + "1b": 26314, + "antennas": 26315, + "hilarious": 26316, + "cougars": 26317, + "paddington": 26318, + "stats": 26319, + "##eger": 26320, + "breakaway": 26321, + "ipod": 26322, + "reza": 26323, + "authorship": 26324, + "prohibiting": 26325, + "scoffed": 26326, + "##etz": 26327, + "##ttle": 26328, + "conscription": 26329, + "defected": 26330, + "trondheim": 26331, + "##fires": 26332, + "ivanov": 26333, + "keenan": 26334, + "##adan": 26335, + "##ciful": 26336, + "##fb": 26337, + "##slow": 26338, + "locating": 26339, + "##ials": 26340, + "##tford": 26341, + "cadiz": 26342, + "basalt": 26343, + "blankly": 26344, + "interned": 26345, + "rags": 26346, + "rattling": 26347, + "##tick": 26348, + "carpathian": 26349, + "reassured": 26350, + "sync": 26351, + "bum": 26352, + "guildford": 26353, + "iss": 26354, + "staunch": 26355, + "##onga": 26356, + "astronomers": 26357, + "sera": 26358, + "sofie": 26359, + "emergencies": 26360, + "susquehanna": 26361, + "##heard": 26362, + "duc": 26363, + "mastery": 26364, + "vh1": 26365, + "williamsburg": 26366, + "bayer": 26367, + "buckled": 26368, + "craving": 26369, + "##khan": 26370, + "##rdes": 26371, + "bloomington": 26372, + "##write": 26373, + "alton": 26374, + "barbecue": 26375, + "##bians": 26376, + "justine": 26377, + "##hri": 26378, + "##ndt": 26379, + "delightful": 26380, + "smartphone": 26381, + "newtown": 26382, + "photon": 26383, + "retrieval": 26384, + "peugeot": 26385, + "hissing": 26386, + "##monium": 26387, + "##orough": 26388, + "flavors": 26389, + "lighted": 26390, + "relaunched": 26391, + "tainted": 26392, + "##games": 26393, + "##lysis": 26394, + "anarchy": 26395, + "microscopic": 26396, + "hopping": 26397, + "adept": 26398, + "evade": 26399, + "evie": 26400, + "##beau": 26401, + "inhibit": 26402, + "sinn": 26403, + "adjustable": 26404, + "hurst": 26405, + "intuition": 26406, + "wilton": 26407, + "cisco": 26408, + "44th": 26409, + "lawful": 26410, + "lowlands": 26411, + "stockings": 26412, + "thierry": 26413, + "##dalen": 26414, + "##hila": 26415, + "##nai": 26416, + "fates": 26417, + "prank": 26418, + "tb": 26419, + "maison": 26420, + "lobbied": 26421, + "provocative": 26422, + "1724": 26423, + "4a": 26424, + "utopia": 26425, + "##qual": 26426, + "carbonate": 26427, + "gujarati": 26428, + "purcell": 26429, + "##rford": 26430, + "curtiss": 26431, + "##mei": 26432, + "overgrown": 26433, + "arenas": 26434, + "mediation": 26435, + "swallows": 26436, + "##rnik": 26437, + "respectful": 26438, + "turnbull": 26439, + "##hedron": 26440, + "##hope": 26441, + "alyssa": 26442, + "ozone": 26443, + "##ʻi": 26444, + "ami": 26445, + "gestapo": 26446, + "johansson": 26447, + "snooker": 26448, + "canteen": 26449, + "cuff": 26450, + "declines": 26451, + "empathy": 26452, + "stigma": 26453, + "##ags": 26454, + "##iner": 26455, + "##raine": 26456, + "taxpayers": 26457, + "gui": 26458, + "volga": 26459, + "##wright": 26460, + "##copic": 26461, + "lifespan": 26462, + "overcame": 26463, + "tattooed": 26464, + "enactment": 26465, + "giggles": 26466, + "##ador": 26467, + "##camp": 26468, + "barrington": 26469, + "bribe": 26470, + "obligatory": 26471, + "orbiting": 26472, + "peng": 26473, + "##enas": 26474, + "elusive": 26475, + "sucker": 26476, + "##vating": 26477, + "cong": 26478, + "hardship": 26479, + "empowered": 26480, + "anticipating": 26481, + "estrada": 26482, + "cryptic": 26483, + "greasy": 26484, + "detainees": 26485, + "planck": 26486, + "sudbury": 26487, + "plaid": 26488, + "dod": 26489, + "marriott": 26490, + "kayla": 26491, + "##ears": 26492, + "##vb": 26493, + "##zd": 26494, + "mortally": 26495, + "##hein": 26496, + "cognition": 26497, + "radha": 26498, + "319": 26499, + "liechtenstein": 26500, + "meade": 26501, + "richly": 26502, + "argyle": 26503, + "harpsichord": 26504, + "liberalism": 26505, + "trumpets": 26506, + "lauded": 26507, + "tyrant": 26508, + "salsa": 26509, + "tiled": 26510, + "lear": 26511, + "promoters": 26512, + "reused": 26513, + "slicing": 26514, + "trident": 26515, + "##chuk": 26516, + "##gami": 26517, + "##lka": 26518, + "cantor": 26519, + "checkpoint": 26520, + "##points": 26521, + "gaul": 26522, + "leger": 26523, + "mammalian": 26524, + "##tov": 26525, + "##aar": 26526, + "##schaft": 26527, + "doha": 26528, + "frenchman": 26529, + "nirvana": 26530, + "##vino": 26531, + "delgado": 26532, + "headlining": 26533, + "##eron": 26534, + "##iography": 26535, + "jug": 26536, + "tko": 26537, + "1649": 26538, + "naga": 26539, + "intersections": 26540, + "##jia": 26541, + "benfica": 26542, + "nawab": 26543, + "##suka": 26544, + "ashford": 26545, + "gulp": 26546, + "##deck": 26547, + "##vill": 26548, + "##rug": 26549, + "brentford": 26550, + "frazier": 26551, + "pleasures": 26552, + "dunne": 26553, + "potsdam": 26554, + "shenzhen": 26555, + "dentistry": 26556, + "##tec": 26557, + "flanagan": 26558, + "##dorff": 26559, + "##hear": 26560, + "chorale": 26561, + "dinah": 26562, + "prem": 26563, + "quezon": 26564, + "##rogated": 26565, + "relinquished": 26566, + "sutra": 26567, + "terri": 26568, + "##pani": 26569, + "flaps": 26570, + "##rissa": 26571, + "poly": 26572, + "##rnet": 26573, + "homme": 26574, + "aback": 26575, + "##eki": 26576, + "linger": 26577, + "womb": 26578, + "##kson": 26579, + "##lewood": 26580, + "doorstep": 26581, + "orthodoxy": 26582, + "threaded": 26583, + "westfield": 26584, + "##rval": 26585, + "dioceses": 26586, + "fridays": 26587, + "subsided": 26588, + "##gata": 26589, + "loyalists": 26590, + "##biotic": 26591, + "##ettes": 26592, + "letterman": 26593, + "lunatic": 26594, + "prelate": 26595, + "tenderly": 26596, + "invariably": 26597, + "souza": 26598, + "thug": 26599, + "winslow": 26600, + "##otide": 26601, + "furlongs": 26602, + "gogh": 26603, + "jeopardy": 26604, + "##runa": 26605, + "pegasus": 26606, + "##umble": 26607, + "humiliated": 26608, + "standalone": 26609, + "tagged": 26610, + "##roller": 26611, + "freshmen": 26612, + "klan": 26613, + "##bright": 26614, + "attaining": 26615, + "initiating": 26616, + "transatlantic": 26617, + "logged": 26618, + "viz": 26619, + "##uance": 26620, + "1723": 26621, + "combatants": 26622, + "intervening": 26623, + "stephane": 26624, + "chieftain": 26625, + "despised": 26626, + "grazed": 26627, + "317": 26628, + "cdc": 26629, + "galveston": 26630, + "godzilla": 26631, + "macro": 26632, + "simulate": 26633, + "##planes": 26634, + "parades": 26635, + "##esses": 26636, + "960": 26637, + "##ductive": 26638, + "##unes": 26639, + "equator": 26640, + "overdose": 26641, + "##cans": 26642, + "##hosh": 26643, + "##lifting": 26644, + "joshi": 26645, + "epstein": 26646, + "sonora": 26647, + "treacherous": 26648, + "aquatics": 26649, + "manchu": 26650, + "responsive": 26651, + "##sation": 26652, + "supervisory": 26653, + "##christ": 26654, + "##llins": 26655, + "##ibar": 26656, + "##balance": 26657, + "##uso": 26658, + "kimball": 26659, + "karlsruhe": 26660, + "mab": 26661, + "##emy": 26662, + "ignores": 26663, + "phonetic": 26664, + "reuters": 26665, + "spaghetti": 26666, + "820": 26667, + "almighty": 26668, + "danzig": 26669, + "rumbling": 26670, + "tombstone": 26671, + "designations": 26672, + "lured": 26673, + "outset": 26674, + "##felt": 26675, + "supermarkets": 26676, + "##wt": 26677, + "grupo": 26678, + "kei": 26679, + "kraft": 26680, + "susanna": 26681, + "##blood": 26682, + "comprehension": 26683, + "genealogy": 26684, + "##aghan": 26685, + "##verted": 26686, + "redding": 26687, + "##ythe": 26688, + "1722": 26689, + "bowing": 26690, + "##pore": 26691, + "##roi": 26692, + "lest": 26693, + "sharpened": 26694, + "fulbright": 26695, + "valkyrie": 26696, + "sikhs": 26697, + "##unds": 26698, + "swans": 26699, + "bouquet": 26700, + "merritt": 26701, + "##tage": 26702, + "##venting": 26703, + "commuted": 26704, + "redhead": 26705, + "clerks": 26706, + "leasing": 26707, + "cesare": 26708, + "dea": 26709, + "hazy": 26710, + "##vances": 26711, + "fledged": 26712, + "greenfield": 26713, + "servicemen": 26714, + "##gical": 26715, + "armando": 26716, + "blackout": 26717, + "dt": 26718, + "sagged": 26719, + "downloadable": 26720, + "intra": 26721, + "potion": 26722, + "pods": 26723, + "##4th": 26724, + "##mism": 26725, + "xp": 26726, + "attendants": 26727, + "gambia": 26728, + "stale": 26729, + "##ntine": 26730, + "plump": 26731, + "asteroids": 26732, + "rediscovered": 26733, + "buds": 26734, + "flea": 26735, + "hive": 26736, + "##neas": 26737, + "1737": 26738, + "classifications": 26739, + "debuts": 26740, + "##eles": 26741, + "olympus": 26742, + "scala": 26743, + "##eurs": 26744, + "##gno": 26745, + "##mute": 26746, + "hummed": 26747, + "sigismund": 26748, + "visuals": 26749, + "wiggled": 26750, + "await": 26751, + "pilasters": 26752, + "clench": 26753, + "sulfate": 26754, + "##ances": 26755, + "bellevue": 26756, + "enigma": 26757, + "trainee": 26758, + "snort": 26759, + "##sw": 26760, + "clouded": 26761, + "denim": 26762, + "##rank": 26763, + "##rder": 26764, + "churning": 26765, + "hartman": 26766, + "lodges": 26767, + "riches": 26768, + "sima": 26769, + "##missible": 26770, + "accountable": 26771, + "socrates": 26772, + "regulates": 26773, + "mueller": 26774, + "##cr": 26775, + "1702": 26776, + "avoids": 26777, + "solids": 26778, + "himalayas": 26779, + "nutrient": 26780, + "pup": 26781, + "##jevic": 26782, + "squat": 26783, + "fades": 26784, + "nec": 26785, + "##lates": 26786, + "##pina": 26787, + "##rona": 26788, + "##ου": 26789, + "privateer": 26790, + "tequila": 26791, + "##gative": 26792, + "##mpton": 26793, + "apt": 26794, + "hornet": 26795, + "immortals": 26796, + "##dou": 26797, + "asturias": 26798, + "cleansing": 26799, + "dario": 26800, + "##rries": 26801, + "##anta": 26802, + "etymology": 26803, + "servicing": 26804, + "zhejiang": 26805, + "##venor": 26806, + "##nx": 26807, + "horned": 26808, + "erasmus": 26809, + "rayon": 26810, + "relocating": 26811, + "£10": 26812, + "##bags": 26813, + "escalated": 26814, + "promenade": 26815, + "stubble": 26816, + "2010s": 26817, + "artisans": 26818, + "axial": 26819, + "liquids": 26820, + "mora": 26821, + "sho": 26822, + "yoo": 26823, + "##tsky": 26824, + "bundles": 26825, + "oldies": 26826, + "##nally": 26827, + "notification": 26828, + "bastion": 26829, + "##ths": 26830, + "sparkle": 26831, + "##lved": 26832, + "1728": 26833, + "leash": 26834, + "pathogen": 26835, + "highs": 26836, + "##hmi": 26837, + "immature": 26838, + "880": 26839, + "gonzaga": 26840, + "ignatius": 26841, + "mansions": 26842, + "monterrey": 26843, + "sweets": 26844, + "bryson": 26845, + "##loe": 26846, + "polled": 26847, + "regatta": 26848, + "brightest": 26849, + "pei": 26850, + "rosy": 26851, + "squid": 26852, + "hatfield": 26853, + "payroll": 26854, + "addict": 26855, + "meath": 26856, + "cornerback": 26857, + "heaviest": 26858, + "lodging": 26859, + "##mage": 26860, + "capcom": 26861, + "rippled": 26862, + "##sily": 26863, + "barnet": 26864, + "mayhem": 26865, + "ymca": 26866, + "snuggled": 26867, + "rousseau": 26868, + "##cute": 26869, + "blanchard": 26870, + "284": 26871, + "fragmented": 26872, + "leighton": 26873, + "chromosomes": 26874, + "risking": 26875, + "##md": 26876, + "##strel": 26877, + "##utter": 26878, + "corinne": 26879, + "coyotes": 26880, + "cynical": 26881, + "hiroshi": 26882, + "yeomanry": 26883, + "##ractive": 26884, + "ebook": 26885, + "grading": 26886, + "mandela": 26887, + "plume": 26888, + "agustin": 26889, + "magdalene": 26890, + "##rkin": 26891, + "bea": 26892, + "femme": 26893, + "trafford": 26894, + "##coll": 26895, + "##lun": 26896, + "##tance": 26897, + "52nd": 26898, + "fourier": 26899, + "upton": 26900, + "##mental": 26901, + "camilla": 26902, + "gust": 26903, + "iihf": 26904, + "islamabad": 26905, + "longevity": 26906, + "##kala": 26907, + "feldman": 26908, + "netting": 26909, + "##rization": 26910, + "endeavour": 26911, + "foraging": 26912, + "mfa": 26913, + "orr": 26914, + "##open": 26915, + "greyish": 26916, + "contradiction": 26917, + "graz": 26918, + "##ruff": 26919, + "handicapped": 26920, + "marlene": 26921, + "tweed": 26922, + "oaxaca": 26923, + "spp": 26924, + "campos": 26925, + "miocene": 26926, + "pri": 26927, + "configured": 26928, + "cooks": 26929, + "pluto": 26930, + "cozy": 26931, + "pornographic": 26932, + "##entes": 26933, + "70th": 26934, + "fairness": 26935, + "glided": 26936, + "jonny": 26937, + "lynne": 26938, + "rounding": 26939, + "sired": 26940, + "##emon": 26941, + "##nist": 26942, + "remade": 26943, + "uncover": 26944, + "##mack": 26945, + "complied": 26946, + "lei": 26947, + "newsweek": 26948, + "##jured": 26949, + "##parts": 26950, + "##enting": 26951, + "##pg": 26952, + "293": 26953, + "finer": 26954, + "guerrillas": 26955, + "athenian": 26956, + "deng": 26957, + "disused": 26958, + "stepmother": 26959, + "accuse": 26960, + "gingerly": 26961, + "seduction": 26962, + "521": 26963, + "confronting": 26964, + "##walker": 26965, + "##going": 26966, + "gora": 26967, + "nostalgia": 26968, + "sabres": 26969, + "virginity": 26970, + "wrenched": 26971, + "##minated": 26972, + "syndication": 26973, + "wielding": 26974, + "eyre": 26975, + "##56": 26976, + "##gnon": 26977, + "##igny": 26978, + "behaved": 26979, + "taxpayer": 26980, + "sweeps": 26981, + "##growth": 26982, + "childless": 26983, + "gallant": 26984, + "##ywood": 26985, + "amplified": 26986, + "geraldine": 26987, + "scrape": 26988, + "##ffi": 26989, + "babylonian": 26990, + "fresco": 26991, + "##rdan": 26992, + "##kney": 26993, + "##position": 26994, + "1718": 26995, + "restricting": 26996, + "tack": 26997, + "fukuoka": 26998, + "osborn": 26999, + "selector": 27000, + "partnering": 27001, + "##dlow": 27002, + "318": 27003, + "gnu": 27004, + "kia": 27005, + "tak": 27006, + "whitley": 27007, + "gables": 27008, + "##54": 27009, + "##mania": 27010, + "mri": 27011, + "softness": 27012, + "immersion": 27013, + "##bots": 27014, + "##evsky": 27015, + "1713": 27016, + "chilling": 27017, + "insignificant": 27018, + "pcs": 27019, + "##uis": 27020, + "elites": 27021, + "lina": 27022, + "purported": 27023, + "supplemental": 27024, + "teaming": 27025, + "##americana": 27026, + "##dding": 27027, + "##inton": 27028, + "proficient": 27029, + "rouen": 27030, + "##nage": 27031, + "##rret": 27032, + "niccolo": 27033, + "selects": 27034, + "##bread": 27035, + "fluffy": 27036, + "1621": 27037, + "gruff": 27038, + "knotted": 27039, + "mukherjee": 27040, + "polgara": 27041, + "thrash": 27042, + "nicholls": 27043, + "secluded": 27044, + "smoothing": 27045, + "thru": 27046, + "corsica": 27047, + "loaf": 27048, + "whitaker": 27049, + "inquiries": 27050, + "##rrier": 27051, + "##kam": 27052, + "indochina": 27053, + "289": 27054, + "marlins": 27055, + "myles": 27056, + "peking": 27057, + "##tea": 27058, + "extracts": 27059, + "pastry": 27060, + "superhuman": 27061, + "connacht": 27062, + "vogel": 27063, + "##ditional": 27064, + "##het": 27065, + "##udged": 27066, + "##lash": 27067, + "gloss": 27068, + "quarries": 27069, + "refit": 27070, + "teaser": 27071, + "##alic": 27072, + "##gaon": 27073, + "20s": 27074, + "materialized": 27075, + "sling": 27076, + "camped": 27077, + "pickering": 27078, + "tung": 27079, + "tracker": 27080, + "pursuant": 27081, + "##cide": 27082, + "cranes": 27083, + "soc": 27084, + "##cini": 27085, + "##typical": 27086, + "##viere": 27087, + "anhalt": 27088, + "overboard": 27089, + "workout": 27090, + "chores": 27091, + "fares": 27092, + "orphaned": 27093, + "stains": 27094, + "##logie": 27095, + "fenton": 27096, + "surpassing": 27097, + "joyah": 27098, + "triggers": 27099, + "##itte": 27100, + "grandmaster": 27101, + "##lass": 27102, + "##lists": 27103, + "clapping": 27104, + "fraudulent": 27105, + "ledger": 27106, + "nagasaki": 27107, + "##cor": 27108, + "##nosis": 27109, + "##tsa": 27110, + "eucalyptus": 27111, + "tun": 27112, + "##icio": 27113, + "##rney": 27114, + "##tara": 27115, + "dax": 27116, + "heroism": 27117, + "ina": 27118, + "wrexham": 27119, + "onboard": 27120, + "unsigned": 27121, + "##dates": 27122, + "moshe": 27123, + "galley": 27124, + "winnie": 27125, + "droplets": 27126, + "exiles": 27127, + "praises": 27128, + "watered": 27129, + "noodles": 27130, + "##aia": 27131, + "fein": 27132, + "adi": 27133, + "leland": 27134, + "multicultural": 27135, + "stink": 27136, + "bingo": 27137, + "comets": 27138, + "erskine": 27139, + "modernized": 27140, + "canned": 27141, + "constraint": 27142, + "domestically": 27143, + "chemotherapy": 27144, + "featherweight": 27145, + "stifled": 27146, + "##mum": 27147, + "darkly": 27148, + "irresistible": 27149, + "refreshing": 27150, + "hasty": 27151, + "isolate": 27152, + "##oys": 27153, + "kitchener": 27154, + "planners": 27155, + "##wehr": 27156, + "cages": 27157, + "yarn": 27158, + "implant": 27159, + "toulon": 27160, + "elects": 27161, + "childbirth": 27162, + "yue": 27163, + "##lind": 27164, + "##lone": 27165, + "cn": 27166, + "rightful": 27167, + "sportsman": 27168, + "junctions": 27169, + "remodeled": 27170, + "specifies": 27171, + "##rgh": 27172, + "291": 27173, + "##oons": 27174, + "complimented": 27175, + "##urgent": 27176, + "lister": 27177, + "ot": 27178, + "##logic": 27179, + "bequeathed": 27180, + "cheekbones": 27181, + "fontana": 27182, + "gabby": 27183, + "##dial": 27184, + "amadeus": 27185, + "corrugated": 27186, + "maverick": 27187, + "resented": 27188, + "triangles": 27189, + "##hered": 27190, + "##usly": 27191, + "nazareth": 27192, + "tyrol": 27193, + "1675": 27194, + "assent": 27195, + "poorer": 27196, + "sectional": 27197, + "aegean": 27198, + "##cous": 27199, + "296": 27200, + "nylon": 27201, + "ghanaian": 27202, + "##egorical": 27203, + "##weig": 27204, + "cushions": 27205, + "forbid": 27206, + "fusiliers": 27207, + "obstruction": 27208, + "somerville": 27209, + "##scia": 27210, + "dime": 27211, + "earrings": 27212, + "elliptical": 27213, + "leyte": 27214, + "oder": 27215, + "polymers": 27216, + "timmy": 27217, + "atm": 27218, + "midtown": 27219, + "piloted": 27220, + "settles": 27221, + "continual": 27222, + "externally": 27223, + "mayfield": 27224, + "##uh": 27225, + "enrichment": 27226, + "henson": 27227, + "keane": 27228, + "persians": 27229, + "1733": 27230, + "benji": 27231, + "braden": 27232, + "pep": 27233, + "324": 27234, + "##efe": 27235, + "contenders": 27236, + "pepsi": 27237, + "valet": 27238, + "##isches": 27239, + "298": 27240, + "##asse": 27241, + "##earing": 27242, + "goofy": 27243, + "stroll": 27244, + "##amen": 27245, + "authoritarian": 27246, + "occurrences": 27247, + "adversary": 27248, + "ahmedabad": 27249, + "tangent": 27250, + "toppled": 27251, + "dorchester": 27252, + "1672": 27253, + "modernism": 27254, + "marxism": 27255, + "islamist": 27256, + "charlemagne": 27257, + "exponential": 27258, + "racks": 27259, + "unicode": 27260, + "brunette": 27261, + "mbc": 27262, + "pic": 27263, + "skirmish": 27264, + "##bund": 27265, + "##lad": 27266, + "##powered": 27267, + "##yst": 27268, + "hoisted": 27269, + "messina": 27270, + "shatter": 27271, + "##ctum": 27272, + "jedi": 27273, + "vantage": 27274, + "##music": 27275, + "##neil": 27276, + "clemens": 27277, + "mahmoud": 27278, + "corrupted": 27279, + "authentication": 27280, + "lowry": 27281, + "nils": 27282, + "##washed": 27283, + "omnibus": 27284, + "wounding": 27285, + "jillian": 27286, + "##itors": 27287, + "##opped": 27288, + "serialized": 27289, + "narcotics": 27290, + "handheld": 27291, + "##arm": 27292, + "##plicity": 27293, + "intersecting": 27294, + "stimulating": 27295, + "##onis": 27296, + "crate": 27297, + "fellowships": 27298, + "hemingway": 27299, + "casinos": 27300, + "climatic": 27301, + "fordham": 27302, + "copeland": 27303, + "drip": 27304, + "beatty": 27305, + "leaflets": 27306, + "robber": 27307, + "brothel": 27308, + "madeira": 27309, + "##hedral": 27310, + "sphinx": 27311, + "ultrasound": 27312, + "##vana": 27313, + "valor": 27314, + "forbade": 27315, + "leonid": 27316, + "villas": 27317, + "##aldo": 27318, + "duane": 27319, + "marquez": 27320, + "##cytes": 27321, + "disadvantaged": 27322, + "forearms": 27323, + "kawasaki": 27324, + "reacts": 27325, + "consular": 27326, + "lax": 27327, + "uncles": 27328, + "uphold": 27329, + "##hopper": 27330, + "concepcion": 27331, + "dorsey": 27332, + "lass": 27333, + "##izan": 27334, + "arching": 27335, + "passageway": 27336, + "1708": 27337, + "researches": 27338, + "tia": 27339, + "internationals": 27340, + "##graphs": 27341, + "##opers": 27342, + "distinguishes": 27343, + "javanese": 27344, + "divert": 27345, + "##uven": 27346, + "plotted": 27347, + "##listic": 27348, + "##rwin": 27349, + "##erik": 27350, + "##tify": 27351, + "affirmative": 27352, + "signifies": 27353, + "validation": 27354, + "##bson": 27355, + "kari": 27356, + "felicity": 27357, + "georgina": 27358, + "zulu": 27359, + "##eros": 27360, + "##rained": 27361, + "##rath": 27362, + "overcoming": 27363, + "##dot": 27364, + "argyll": 27365, + "##rbin": 27366, + "1734": 27367, + "chiba": 27368, + "ratification": 27369, + "windy": 27370, + "earls": 27371, + "parapet": 27372, + "##marks": 27373, + "hunan": 27374, + "pristine": 27375, + "astrid": 27376, + "punta": 27377, + "##gart": 27378, + "brodie": 27379, + "##kota": 27380, + "##oder": 27381, + "malaga": 27382, + "minerva": 27383, + "rouse": 27384, + "##phonic": 27385, + "bellowed": 27386, + "pagoda": 27387, + "portals": 27388, + "reclamation": 27389, + "##gur": 27390, + "##odies": 27391, + "##⁄₄": 27392, + "parentheses": 27393, + "quoting": 27394, + "allergic": 27395, + "palette": 27396, + "showcases": 27397, + "benefactor": 27398, + "heartland": 27399, + "nonlinear": 27400, + "##tness": 27401, + "bladed": 27402, + "cheerfully": 27403, + "scans": 27404, + "##ety": 27405, + "##hone": 27406, + "1666": 27407, + "girlfriends": 27408, + "pedersen": 27409, + "hiram": 27410, + "sous": 27411, + "##liche": 27412, + "##nator": 27413, + "1683": 27414, + "##nery": 27415, + "##orio": 27416, + "##umen": 27417, + "bobo": 27418, + "primaries": 27419, + "smiley": 27420, + "##cb": 27421, + "unearthed": 27422, + "uniformly": 27423, + "fis": 27424, + "metadata": 27425, + "1635": 27426, + "ind": 27427, + "##oted": 27428, + "recoil": 27429, + "##titles": 27430, + "##tura": 27431, + "##ια": 27432, + "406": 27433, + "hilbert": 27434, + "jamestown": 27435, + "mcmillan": 27436, + "tulane": 27437, + "seychelles": 27438, + "##frid": 27439, + "antics": 27440, + "coli": 27441, + "fated": 27442, + "stucco": 27443, + "##grants": 27444, + "1654": 27445, + "bulky": 27446, + "accolades": 27447, + "arrays": 27448, + "caledonian": 27449, + "carnage": 27450, + "optimism": 27451, + "puebla": 27452, + "##tative": 27453, + "##cave": 27454, + "enforcing": 27455, + "rotherham": 27456, + "seo": 27457, + "dunlop": 27458, + "aeronautics": 27459, + "chimed": 27460, + "incline": 27461, + "zoning": 27462, + "archduke": 27463, + "hellenistic": 27464, + "##oses": 27465, + "##sions": 27466, + "candi": 27467, + "thong": 27468, + "##ople": 27469, + "magnate": 27470, + "rustic": 27471, + "##rsk": 27472, + "projective": 27473, + "slant": 27474, + "##offs": 27475, + "danes": 27476, + "hollis": 27477, + "vocalists": 27478, + "##ammed": 27479, + "congenital": 27480, + "contend": 27481, + "gesellschaft": 27482, + "##ocating": 27483, + "##pressive": 27484, + "douglass": 27485, + "quieter": 27486, + "##cm": 27487, + "##kshi": 27488, + "howled": 27489, + "salim": 27490, + "spontaneously": 27491, + "townsville": 27492, + "buena": 27493, + "southport": 27494, + "##bold": 27495, + "kato": 27496, + "1638": 27497, + "faerie": 27498, + "stiffly": 27499, + "##vus": 27500, + "##rled": 27501, + "297": 27502, + "flawless": 27503, + "realising": 27504, + "taboo": 27505, + "##7th": 27506, + "bytes": 27507, + "straightening": 27508, + "356": 27509, + "jena": 27510, + "##hid": 27511, + "##rmin": 27512, + "cartwright": 27513, + "berber": 27514, + "bertram": 27515, + "soloists": 27516, + "411": 27517, + "noses": 27518, + "417": 27519, + "coping": 27520, + "fission": 27521, + "hardin": 27522, + "inca": 27523, + "##cen": 27524, + "1717": 27525, + "mobilized": 27526, + "vhf": 27527, + "##raf": 27528, + "biscuits": 27529, + "curate": 27530, + "##85": 27531, + "##anial": 27532, + "331": 27533, + "gaunt": 27534, + "neighbourhoods": 27535, + "1540": 27536, + "##abas": 27537, + "blanca": 27538, + "bypassed": 27539, + "sockets": 27540, + "behold": 27541, + "coincidentally": 27542, + "##bane": 27543, + "nara": 27544, + "shave": 27545, + "splinter": 27546, + "terrific": 27547, + "##arion": 27548, + "##erian": 27549, + "commonplace": 27550, + "juris": 27551, + "redwood": 27552, + "waistband": 27553, + "boxed": 27554, + "caitlin": 27555, + "fingerprints": 27556, + "jennie": 27557, + "naturalized": 27558, + "##ired": 27559, + "balfour": 27560, + "craters": 27561, + "jody": 27562, + "bungalow": 27563, + "hugely": 27564, + "quilt": 27565, + "glitter": 27566, + "pigeons": 27567, + "undertaker": 27568, + "bulging": 27569, + "constrained": 27570, + "goo": 27571, + "##sil": 27572, + "##akh": 27573, + "assimilation": 27574, + "reworked": 27575, + "##person": 27576, + "persuasion": 27577, + "##pants": 27578, + "felicia": 27579, + "##cliff": 27580, + "##ulent": 27581, + "1732": 27582, + "explodes": 27583, + "##dun": 27584, + "##inium": 27585, + "##zic": 27586, + "lyman": 27587, + "vulture": 27588, + "hog": 27589, + "overlook": 27590, + "begs": 27591, + "northwards": 27592, + "ow": 27593, + "spoil": 27594, + "##urer": 27595, + "fatima": 27596, + "favorably": 27597, + "accumulate": 27598, + "sargent": 27599, + "sorority": 27600, + "corresponded": 27601, + "dispersal": 27602, + "kochi": 27603, + "toned": 27604, + "##imi": 27605, + "##lita": 27606, + "internacional": 27607, + "newfound": 27608, + "##agger": 27609, + "##lynn": 27610, + "##rigue": 27611, + "booths": 27612, + "peanuts": 27613, + "##eborg": 27614, + "medicare": 27615, + "muriel": 27616, + "nur": 27617, + "##uram": 27618, + "crates": 27619, + "millennia": 27620, + "pajamas": 27621, + "worsened": 27622, + "##breakers": 27623, + "jimi": 27624, + "vanuatu": 27625, + "yawned": 27626, + "##udeau": 27627, + "carousel": 27628, + "##hony": 27629, + "hurdle": 27630, + "##ccus": 27631, + "##mounted": 27632, + "##pod": 27633, + "rv": 27634, + "##eche": 27635, + "airship": 27636, + "ambiguity": 27637, + "compulsion": 27638, + "recapture": 27639, + "##claiming": 27640, + "arthritis": 27641, + "##osomal": 27642, + "1667": 27643, + "asserting": 27644, + "ngc": 27645, + "sniffing": 27646, + "dade": 27647, + "discontent": 27648, + "glendale": 27649, + "ported": 27650, + "##amina": 27651, + "defamation": 27652, + "rammed": 27653, + "##scent": 27654, + "fling": 27655, + "livingstone": 27656, + "##fleet": 27657, + "875": 27658, + "##ppy": 27659, + "apocalyptic": 27660, + "comrade": 27661, + "lcd": 27662, + "##lowe": 27663, + "cessna": 27664, + "eine": 27665, + "persecuted": 27666, + "subsistence": 27667, + "demi": 27668, + "hoop": 27669, + "reliefs": 27670, + "710": 27671, + "coptic": 27672, + "progressing": 27673, + "stemmed": 27674, + "perpetrators": 27675, + "1665": 27676, + "priestess": 27677, + "##nio": 27678, + "dobson": 27679, + "ebony": 27680, + "rooster": 27681, + "itf": 27682, + "tortricidae": 27683, + "##bbon": 27684, + "##jian": 27685, + "cleanup": 27686, + "##jean": 27687, + "##øy": 27688, + "1721": 27689, + "eighties": 27690, + "taxonomic": 27691, + "holiness": 27692, + "##hearted": 27693, + "##spar": 27694, + "antilles": 27695, + "showcasing": 27696, + "stabilized": 27697, + "##nb": 27698, + "gia": 27699, + "mascara": 27700, + "michelangelo": 27701, + "dawned": 27702, + "##uria": 27703, + "##vinsky": 27704, + "extinguished": 27705, + "fitz": 27706, + "grotesque": 27707, + "£100": 27708, + "##fera": 27709, + "##loid": 27710, + "##mous": 27711, + "barges": 27712, + "neue": 27713, + "throbbed": 27714, + "cipher": 27715, + "johnnie": 27716, + "##a1": 27717, + "##mpt": 27718, + "outburst": 27719, + "##swick": 27720, + "spearheaded": 27721, + "administrations": 27722, + "c1": 27723, + "heartbreak": 27724, + "pixels": 27725, + "pleasantly": 27726, + "##enay": 27727, + "lombardy": 27728, + "plush": 27729, + "##nsed": 27730, + "bobbie": 27731, + "##hly": 27732, + "reapers": 27733, + "tremor": 27734, + "xiang": 27735, + "minogue": 27736, + "substantive": 27737, + "hitch": 27738, + "barak": 27739, + "##wyl": 27740, + "kwan": 27741, + "##encia": 27742, + "910": 27743, + "obscene": 27744, + "elegance": 27745, + "indus": 27746, + "surfer": 27747, + "bribery": 27748, + "conserve": 27749, + "##hyllum": 27750, + "##masters": 27751, + "horatio": 27752, + "##fat": 27753, + "apes": 27754, + "rebound": 27755, + "psychotic": 27756, + "##pour": 27757, + "iteration": 27758, + "##mium": 27759, + "##vani": 27760, + "botanic": 27761, + "horribly": 27762, + "antiques": 27763, + "dispose": 27764, + "paxton": 27765, + "##hli": 27766, + "##wg": 27767, + "timeless": 27768, + "1704": 27769, + "disregard": 27770, + "engraver": 27771, + "hounds": 27772, + "##bau": 27773, + "##version": 27774, + "looted": 27775, + "uno": 27776, + "facilitates": 27777, + "groans": 27778, + "masjid": 27779, + "rutland": 27780, + "antibody": 27781, + "disqualification": 27782, + "decatur": 27783, + "footballers": 27784, + "quake": 27785, + "slacks": 27786, + "48th": 27787, + "rein": 27788, + "scribe": 27789, + "stabilize": 27790, + "commits": 27791, + "exemplary": 27792, + "tho": 27793, + "##hort": 27794, + "##chison": 27795, + "pantry": 27796, + "traversed": 27797, + "##hiti": 27798, + "disrepair": 27799, + "identifiable": 27800, + "vibrated": 27801, + "baccalaureate": 27802, + "##nnis": 27803, + "csa": 27804, + "interviewing": 27805, + "##iensis": 27806, + "##raße": 27807, + "greaves": 27808, + "wealthiest": 27809, + "343": 27810, + "classed": 27811, + "jogged": 27812, + "£5": 27813, + "##58": 27814, + "##atal": 27815, + "illuminating": 27816, + "knicks": 27817, + "respecting": 27818, + "##uno": 27819, + "scrubbed": 27820, + "##iji": 27821, + "##dles": 27822, + "kruger": 27823, + "moods": 27824, + "growls": 27825, + "raider": 27826, + "silvia": 27827, + "chefs": 27828, + "kam": 27829, + "vr": 27830, + "cree": 27831, + "percival": 27832, + "##terol": 27833, + "gunter": 27834, + "counterattack": 27835, + "defiant": 27836, + "henan": 27837, + "ze": 27838, + "##rasia": 27839, + "##riety": 27840, + "equivalence": 27841, + "submissions": 27842, + "##fra": 27843, + "##thor": 27844, + "bautista": 27845, + "mechanically": 27846, + "##heater": 27847, + "cornice": 27848, + "herbal": 27849, + "templar": 27850, + "##mering": 27851, + "outputs": 27852, + "ruining": 27853, + "ligand": 27854, + "renumbered": 27855, + "extravagant": 27856, + "mika": 27857, + "blockbuster": 27858, + "eta": 27859, + "insurrection": 27860, + "##ilia": 27861, + "darkening": 27862, + "ferocious": 27863, + "pianos": 27864, + "strife": 27865, + "kinship": 27866, + "##aer": 27867, + "melee": 27868, + "##anor": 27869, + "##iste": 27870, + "##may": 27871, + "##oue": 27872, + "decidedly": 27873, + "weep": 27874, + "##jad": 27875, + "##missive": 27876, + "##ppel": 27877, + "354": 27878, + "puget": 27879, + "unease": 27880, + "##gnant": 27881, + "1629": 27882, + "hammering": 27883, + "kassel": 27884, + "ob": 27885, + "wessex": 27886, + "##lga": 27887, + "bromwich": 27888, + "egan": 27889, + "paranoia": 27890, + "utilization": 27891, + "##atable": 27892, + "##idad": 27893, + "contradictory": 27894, + "provoke": 27895, + "##ols": 27896, + "##ouring": 27897, + "##tangled": 27898, + "knesset": 27899, + "##very": 27900, + "##lette": 27901, + "plumbing": 27902, + "##sden": 27903, + "##¹": 27904, + "greensboro": 27905, + "occult": 27906, + "sniff": 27907, + "338": 27908, + "zev": 27909, + "beaming": 27910, + "gamer": 27911, + "haggard": 27912, + "mahal": 27913, + "##olt": 27914, + "##pins": 27915, + "mendes": 27916, + "utmost": 27917, + "briefing": 27918, + "gunnery": 27919, + "##gut": 27920, + "##pher": 27921, + "##zh": 27922, + "##rok": 27923, + "1679": 27924, + "khalifa": 27925, + "sonya": 27926, + "##boot": 27927, + "principals": 27928, + "urbana": 27929, + "wiring": 27930, + "##liffe": 27931, + "##minating": 27932, + "##rrado": 27933, + "dahl": 27934, + "nyu": 27935, + "skepticism": 27936, + "np": 27937, + "townspeople": 27938, + "ithaca": 27939, + "lobster": 27940, + "somethin": 27941, + "##fur": 27942, + "##arina": 27943, + "##−1": 27944, + "freighter": 27945, + "zimmerman": 27946, + "biceps": 27947, + "contractual": 27948, + "##herton": 27949, + "amend": 27950, + "hurrying": 27951, + "subconscious": 27952, + "##anal": 27953, + "336": 27954, + "meng": 27955, + "clermont": 27956, + "spawning": 27957, + "##eia": 27958, + "##lub": 27959, + "dignitaries": 27960, + "impetus": 27961, + "snacks": 27962, + "spotting": 27963, + "twigs": 27964, + "##bilis": 27965, + "##cz": 27966, + "##ouk": 27967, + "libertadores": 27968, + "nic": 27969, + "skylar": 27970, + "##aina": 27971, + "##firm": 27972, + "gustave": 27973, + "asean": 27974, + "##anum": 27975, + "dieter": 27976, + "legislatures": 27977, + "flirt": 27978, + "bromley": 27979, + "trolls": 27980, + "umar": 27981, + "##bbies": 27982, + "##tyle": 27983, + "blah": 27984, + "parc": 27985, + "bridgeport": 27986, + "crank": 27987, + "negligence": 27988, + "##nction": 27989, + "46th": 27990, + "constantin": 27991, + "molded": 27992, + "bandages": 27993, + "seriousness": 27994, + "00pm": 27995, + "siegel": 27996, + "carpets": 27997, + "compartments": 27998, + "upbeat": 27999, + "statehood": 28000, + "##dner": 28001, + "##edging": 28002, + "marko": 28003, + "730": 28004, + "platt": 28005, + "##hane": 28006, + "paving": 28007, + "##iy": 28008, + "1738": 28009, + "abbess": 28010, + "impatience": 28011, + "limousine": 28012, + "nbl": 28013, + "##talk": 28014, + "441": 28015, + "lucille": 28016, + "mojo": 28017, + "nightfall": 28018, + "robbers": 28019, + "##nais": 28020, + "karel": 28021, + "brisk": 28022, + "calves": 28023, + "replicate": 28024, + "ascribed": 28025, + "telescopes": 28026, + "##olf": 28027, + "intimidated": 28028, + "##reen": 28029, + "ballast": 28030, + "specialization": 28031, + "##sit": 28032, + "aerodynamic": 28033, + "caliphate": 28034, + "rainer": 28035, + "visionary": 28036, + "##arded": 28037, + "epsilon": 28038, + "##aday": 28039, + "##onte": 28040, + "aggregation": 28041, + "auditory": 28042, + "boosted": 28043, + "reunification": 28044, + "kathmandu": 28045, + "loco": 28046, + "robyn": 28047, + "402": 28048, + "acknowledges": 28049, + "appointing": 28050, + "humanoid": 28051, + "newell": 28052, + "redeveloped": 28053, + "restraints": 28054, + "##tained": 28055, + "barbarians": 28056, + "chopper": 28057, + "1609": 28058, + "italiana": 28059, + "##lez": 28060, + "##lho": 28061, + "investigates": 28062, + "wrestlemania": 28063, + "##anies": 28064, + "##bib": 28065, + "690": 28066, + "##falls": 28067, + "creaked": 28068, + "dragoons": 28069, + "gravely": 28070, + "minions": 28071, + "stupidity": 28072, + "volley": 28073, + "##harat": 28074, + "##week": 28075, + "musik": 28076, + "##eries": 28077, + "##uously": 28078, + "fungal": 28079, + "massimo": 28080, + "semantics": 28081, + "malvern": 28082, + "##ahl": 28083, + "##pee": 28084, + "discourage": 28085, + "embryo": 28086, + "imperialism": 28087, + "1910s": 28088, + "profoundly": 28089, + "##ddled": 28090, + "jiangsu": 28091, + "sparkled": 28092, + "stat": 28093, + "##holz": 28094, + "sweatshirt": 28095, + "tobin": 28096, + "##iction": 28097, + "sneered": 28098, + "##cheon": 28099, + "##oit": 28100, + "brit": 28101, + "causal": 28102, + "smyth": 28103, + "##neuve": 28104, + "diffuse": 28105, + "perrin": 28106, + "silvio": 28107, + "##ipes": 28108, + "##recht": 28109, + "detonated": 28110, + "iqbal": 28111, + "selma": 28112, + "##nism": 28113, + "##zumi": 28114, + "roasted": 28115, + "##riders": 28116, + "tay": 28117, + "##ados": 28118, + "##mament": 28119, + "##mut": 28120, + "##rud": 28121, + "840": 28122, + "completes": 28123, + "nipples": 28124, + "cfa": 28125, + "flavour": 28126, + "hirsch": 28127, + "##laus": 28128, + "calderon": 28129, + "sneakers": 28130, + "moravian": 28131, + "##ksha": 28132, + "1622": 28133, + "rq": 28134, + "294": 28135, + "##imeters": 28136, + "bodo": 28137, + "##isance": 28138, + "##pre": 28139, + "##ronia": 28140, + "anatomical": 28141, + "excerpt": 28142, + "##lke": 28143, + "dh": 28144, + "kunst": 28145, + "##tablished": 28146, + "##scoe": 28147, + "biomass": 28148, + "panted": 28149, + "unharmed": 28150, + "gael": 28151, + "housemates": 28152, + "montpellier": 28153, + "##59": 28154, + "coa": 28155, + "rodents": 28156, + "tonic": 28157, + "hickory": 28158, + "singleton": 28159, + "##taro": 28160, + "451": 28161, + "1719": 28162, + "aldo": 28163, + "breaststroke": 28164, + "dempsey": 28165, + "och": 28166, + "rocco": 28167, + "##cuit": 28168, + "merton": 28169, + "dissemination": 28170, + "midsummer": 28171, + "serials": 28172, + "##idi": 28173, + "haji": 28174, + "polynomials": 28175, + "##rdon": 28176, + "gs": 28177, + "enoch": 28178, + "prematurely": 28179, + "shutter": 28180, + "taunton": 28181, + "£3": 28182, + "##grating": 28183, + "##inates": 28184, + "archangel": 28185, + "harassed": 28186, + "##asco": 28187, + "326": 28188, + "archway": 28189, + "dazzling": 28190, + "##ecin": 28191, + "1736": 28192, + "sumo": 28193, + "wat": 28194, + "##kovich": 28195, + "1086": 28196, + "honneur": 28197, + "##ently": 28198, + "##nostic": 28199, + "##ttal": 28200, + "##idon": 28201, + "1605": 28202, + "403": 28203, + "1716": 28204, + "blogger": 28205, + "rents": 28206, + "##gnan": 28207, + "hires": 28208, + "##ikh": 28209, + "##dant": 28210, + "howie": 28211, + "##rons": 28212, + "handler": 28213, + "retracted": 28214, + "shocks": 28215, + "1632": 28216, + "arun": 28217, + "duluth": 28218, + "kepler": 28219, + "trumpeter": 28220, + "##lary": 28221, + "peeking": 28222, + "seasoned": 28223, + "trooper": 28224, + "##mara": 28225, + "laszlo": 28226, + "##iciencies": 28227, + "##rti": 28228, + "heterosexual": 28229, + "##inatory": 28230, + "##ssion": 28231, + "indira": 28232, + "jogging": 28233, + "##inga": 28234, + "##lism": 28235, + "beit": 28236, + "dissatisfaction": 28237, + "malice": 28238, + "##ately": 28239, + "nedra": 28240, + "peeling": 28241, + "##rgeon": 28242, + "47th": 28243, + "stadiums": 28244, + "475": 28245, + "vertigo": 28246, + "##ains": 28247, + "iced": 28248, + "restroom": 28249, + "##plify": 28250, + "##tub": 28251, + "illustrating": 28252, + "pear": 28253, + "##chner": 28254, + "##sibility": 28255, + "inorganic": 28256, + "rappers": 28257, + "receipts": 28258, + "watery": 28259, + "##kura": 28260, + "lucinda": 28261, + "##oulos": 28262, + "reintroduced": 28263, + "##8th": 28264, + "##tched": 28265, + "gracefully": 28266, + "saxons": 28267, + "nutritional": 28268, + "wastewater": 28269, + "rained": 28270, + "favourites": 28271, + "bedrock": 28272, + "fisted": 28273, + "hallways": 28274, + "likeness": 28275, + "upscale": 28276, + "##lateral": 28277, + "1580": 28278, + "blinds": 28279, + "prequel": 28280, + "##pps": 28281, + "##tama": 28282, + "deter": 28283, + "humiliating": 28284, + "restraining": 28285, + "tn": 28286, + "vents": 28287, + "1659": 28288, + "laundering": 28289, + "recess": 28290, + "rosary": 28291, + "tractors": 28292, + "coulter": 28293, + "federer": 28294, + "##ifiers": 28295, + "##plin": 28296, + "persistence": 28297, + "##quitable": 28298, + "geschichte": 28299, + "pendulum": 28300, + "quakers": 28301, + "##beam": 28302, + "bassett": 28303, + "pictorial": 28304, + "buffet": 28305, + "koln": 28306, + "##sitor": 28307, + "drills": 28308, + "reciprocal": 28309, + "shooters": 28310, + "##57": 28311, + "##cton": 28312, + "##tees": 28313, + "converge": 28314, + "pip": 28315, + "dmitri": 28316, + "donnelly": 28317, + "yamamoto": 28318, + "aqua": 28319, + "azores": 28320, + "demographics": 28321, + "hypnotic": 28322, + "spitfire": 28323, + "suspend": 28324, + "wryly": 28325, + "roderick": 28326, + "##rran": 28327, + "sebastien": 28328, + "##asurable": 28329, + "mavericks": 28330, + "##fles": 28331, + "##200": 28332, + "himalayan": 28333, + "prodigy": 28334, + "##iance": 28335, + "transvaal": 28336, + "demonstrators": 28337, + "handcuffs": 28338, + "dodged": 28339, + "mcnamara": 28340, + "sublime": 28341, + "1726": 28342, + "crazed": 28343, + "##efined": 28344, + "##till": 28345, + "ivo": 28346, + "pondered": 28347, + "reconciled": 28348, + "shrill": 28349, + "sava": 28350, + "##duk": 28351, + "bal": 28352, + "cad": 28353, + "heresy": 28354, + "jaipur": 28355, + "goran": 28356, + "##nished": 28357, + "341": 28358, + "lux": 28359, + "shelly": 28360, + "whitehall": 28361, + "##hre": 28362, + "israelis": 28363, + "peacekeeping": 28364, + "##wled": 28365, + "1703": 28366, + "demetrius": 28367, + "ousted": 28368, + "##arians": 28369, + "##zos": 28370, + "beale": 28371, + "anwar": 28372, + "backstroke": 28373, + "raged": 28374, + "shrinking": 28375, + "cremated": 28376, + "##yck": 28377, + "benign": 28378, + "towing": 28379, + "wadi": 28380, + "darmstadt": 28381, + "landfill": 28382, + "parana": 28383, + "soothe": 28384, + "colleen": 28385, + "sidewalks": 28386, + "mayfair": 28387, + "tumble": 28388, + "hepatitis": 28389, + "ferrer": 28390, + "superstructure": 28391, + "##gingly": 28392, + "##urse": 28393, + "##wee": 28394, + "anthropological": 28395, + "translators": 28396, + "##mies": 28397, + "closeness": 28398, + "hooves": 28399, + "##pw": 28400, + "mondays": 28401, + "##roll": 28402, + "##vita": 28403, + "landscaping": 28404, + "##urized": 28405, + "purification": 28406, + "sock": 28407, + "thorns": 28408, + "thwarted": 28409, + "jalan": 28410, + "tiberius": 28411, + "##taka": 28412, + "saline": 28413, + "##rito": 28414, + "confidently": 28415, + "khyber": 28416, + "sculptors": 28417, + "##ij": 28418, + "brahms": 28419, + "hammersmith": 28420, + "inspectors": 28421, + "battista": 28422, + "fivb": 28423, + "fragmentation": 28424, + "hackney": 28425, + "##uls": 28426, + "arresting": 28427, + "exercising": 28428, + "antoinette": 28429, + "bedfordshire": 28430, + "##zily": 28431, + "dyed": 28432, + "##hema": 28433, + "1656": 28434, + "racetrack": 28435, + "variability": 28436, + "##tique": 28437, + "1655": 28438, + "austrians": 28439, + "deteriorating": 28440, + "madman": 28441, + "theorists": 28442, + "aix": 28443, + "lehman": 28444, + "weathered": 28445, + "1731": 28446, + "decreed": 28447, + "eruptions": 28448, + "1729": 28449, + "flaw": 28450, + "quinlan": 28451, + "sorbonne": 28452, + "flutes": 28453, + "nunez": 28454, + "1711": 28455, + "adored": 28456, + "downwards": 28457, + "fable": 28458, + "rasped": 28459, + "1712": 28460, + "moritz": 28461, + "mouthful": 28462, + "renegade": 28463, + "shivers": 28464, + "stunts": 28465, + "dysfunction": 28466, + "restrain": 28467, + "translit": 28468, + "327": 28469, + "pancakes": 28470, + "##avio": 28471, + "##cision": 28472, + "##tray": 28473, + "351": 28474, + "vial": 28475, + "##lden": 28476, + "bain": 28477, + "##maid": 28478, + "##oxide": 28479, + "chihuahua": 28480, + "malacca": 28481, + "vimes": 28482, + "##rba": 28483, + "##rnier": 28484, + "1664": 28485, + "donnie": 28486, + "plaques": 28487, + "##ually": 28488, + "337": 28489, + "bangs": 28490, + "floppy": 28491, + "huntsville": 28492, + "loretta": 28493, + "nikolay": 28494, + "##otte": 28495, + "eater": 28496, + "handgun": 28497, + "ubiquitous": 28498, + "##hett": 28499, + "eras": 28500, + "zodiac": 28501, + "1634": 28502, + "##omorphic": 28503, + "1820s": 28504, + "##zog": 28505, + "cochran": 28506, + "##bula": 28507, + "##lithic": 28508, + "warring": 28509, + "##rada": 28510, + "dalai": 28511, + "excused": 28512, + "blazers": 28513, + "mcconnell": 28514, + "reeling": 28515, + "bot": 28516, + "este": 28517, + "##abi": 28518, + "geese": 28519, + "hoax": 28520, + "taxon": 28521, + "##bla": 28522, + "guitarists": 28523, + "##icon": 28524, + "condemning": 28525, + "hunts": 28526, + "inversion": 28527, + "moffat": 28528, + "taekwondo": 28529, + "##lvis": 28530, + "1624": 28531, + "stammered": 28532, + "##rest": 28533, + "##rzy": 28534, + "sousa": 28535, + "fundraiser": 28536, + "marylebone": 28537, + "navigable": 28538, + "uptown": 28539, + "cabbage": 28540, + "daniela": 28541, + "salman": 28542, + "shitty": 28543, + "whimper": 28544, + "##kian": 28545, + "##utive": 28546, + "programmers": 28547, + "protections": 28548, + "rm": 28549, + "##rmi": 28550, + "##rued": 28551, + "forceful": 28552, + "##enes": 28553, + "fuss": 28554, + "##tao": 28555, + "##wash": 28556, + "brat": 28557, + "oppressive": 28558, + "reykjavik": 28559, + "spartak": 28560, + "ticking": 28561, + "##inkles": 28562, + "##kiewicz": 28563, + "adolph": 28564, + "horst": 28565, + "maui": 28566, + "protege": 28567, + "straighten": 28568, + "cpc": 28569, + "landau": 28570, + "concourse": 28571, + "clements": 28572, + "resultant": 28573, + "##ando": 28574, + "imaginative": 28575, + "joo": 28576, + "reactivated": 28577, + "##rem": 28578, + "##ffled": 28579, + "##uising": 28580, + "consultative": 28581, + "##guide": 28582, + "flop": 28583, + "kaitlyn": 28584, + "mergers": 28585, + "parenting": 28586, + "somber": 28587, + "##vron": 28588, + "supervise": 28589, + "vidhan": 28590, + "##imum": 28591, + "courtship": 28592, + "exemplified": 28593, + "harmonies": 28594, + "medallist": 28595, + "refining": 28596, + "##rrow": 28597, + "##ка": 28598, + "amara": 28599, + "##hum": 28600, + "780": 28601, + "goalscorer": 28602, + "sited": 28603, + "overshadowed": 28604, + "rohan": 28605, + "displeasure": 28606, + "secretive": 28607, + "multiplied": 28608, + "osman": 28609, + "##orth": 28610, + "engravings": 28611, + "padre": 28612, + "##kali": 28613, + "##veda": 28614, + "miniatures": 28615, + "mis": 28616, + "##yala": 28617, + "clap": 28618, + "pali": 28619, + "rook": 28620, + "##cana": 28621, + "1692": 28622, + "57th": 28623, + "antennae": 28624, + "astro": 28625, + "oskar": 28626, + "1628": 28627, + "bulldog": 28628, + "crotch": 28629, + "hackett": 28630, + "yucatan": 28631, + "##sure": 28632, + "amplifiers": 28633, + "brno": 28634, + "ferrara": 28635, + "migrating": 28636, + "##gree": 28637, + "thanking": 28638, + "turing": 28639, + "##eza": 28640, + "mccann": 28641, + "ting": 28642, + "andersson": 28643, + "onslaught": 28644, + "gaines": 28645, + "ganga": 28646, + "incense": 28647, + "standardization": 28648, + "##mation": 28649, + "sentai": 28650, + "scuba": 28651, + "stuffing": 28652, + "turquoise": 28653, + "waivers": 28654, + "alloys": 28655, + "##vitt": 28656, + "regaining": 28657, + "vaults": 28658, + "##clops": 28659, + "##gizing": 28660, + "digger": 28661, + "furry": 28662, + "memorabilia": 28663, + "probing": 28664, + "##iad": 28665, + "payton": 28666, + "rec": 28667, + "deutschland": 28668, + "filippo": 28669, + "opaque": 28670, + "seamen": 28671, + "zenith": 28672, + "afrikaans": 28673, + "##filtration": 28674, + "disciplined": 28675, + "inspirational": 28676, + "##merie": 28677, + "banco": 28678, + "confuse": 28679, + "grafton": 28680, + "tod": 28681, + "##dgets": 28682, + "championed": 28683, + "simi": 28684, + "anomaly": 28685, + "biplane": 28686, + "##ceptive": 28687, + "electrode": 28688, + "##para": 28689, + "1697": 28690, + "cleavage": 28691, + "crossbow": 28692, + "swirl": 28693, + "informant": 28694, + "##lars": 28695, + "##osta": 28696, + "afi": 28697, + "bonfire": 28698, + "spec": 28699, + "##oux": 28700, + "lakeside": 28701, + "slump": 28702, + "##culus": 28703, + "##lais": 28704, + "##qvist": 28705, + "##rrigan": 28706, + "1016": 28707, + "facades": 28708, + "borg": 28709, + "inwardly": 28710, + "cervical": 28711, + "xl": 28712, + "pointedly": 28713, + "050": 28714, + "stabilization": 28715, + "##odon": 28716, + "chests": 28717, + "1699": 28718, + "hacked": 28719, + "ctv": 28720, + "orthogonal": 28721, + "suzy": 28722, + "##lastic": 28723, + "gaulle": 28724, + "jacobite": 28725, + "rearview": 28726, + "##cam": 28727, + "##erted": 28728, + "ashby": 28729, + "##drik": 28730, + "##igate": 28731, + "##mise": 28732, + "##zbek": 28733, + "affectionately": 28734, + "canine": 28735, + "disperse": 28736, + "latham": 28737, + "##istles": 28738, + "##ivar": 28739, + "spielberg": 28740, + "##orin": 28741, + "##idium": 28742, + "ezekiel": 28743, + "cid": 28744, + "##sg": 28745, + "durga": 28746, + "middletown": 28747, + "##cina": 28748, + "customized": 28749, + "frontiers": 28750, + "harden": 28751, + "##etano": 28752, + "##zzy": 28753, + "1604": 28754, + "bolsheviks": 28755, + "##66": 28756, + "coloration": 28757, + "yoko": 28758, + "##bedo": 28759, + "briefs": 28760, + "slabs": 28761, + "debra": 28762, + "liquidation": 28763, + "plumage": 28764, + "##oin": 28765, + "blossoms": 28766, + "dementia": 28767, + "subsidy": 28768, + "1611": 28769, + "proctor": 28770, + "relational": 28771, + "jerseys": 28772, + "parochial": 28773, + "ter": 28774, + "##ici": 28775, + "esa": 28776, + "peshawar": 28777, + "cavalier": 28778, + "loren": 28779, + "cpi": 28780, + "idiots": 28781, + "shamrock": 28782, + "1646": 28783, + "dutton": 28784, + "malabar": 28785, + "mustache": 28786, + "##endez": 28787, + "##ocytes": 28788, + "referencing": 28789, + "terminates": 28790, + "marche": 28791, + "yarmouth": 28792, + "##sop": 28793, + "acton": 28794, + "mated": 28795, + "seton": 28796, + "subtly": 28797, + "baptised": 28798, + "beige": 28799, + "extremes": 28800, + "jolted": 28801, + "kristina": 28802, + "telecast": 28803, + "##actic": 28804, + "safeguard": 28805, + "waldo": 28806, + "##baldi": 28807, + "##bular": 28808, + "endeavors": 28809, + "sloppy": 28810, + "subterranean": 28811, + "##ensburg": 28812, + "##itung": 28813, + "delicately": 28814, + "pigment": 28815, + "tq": 28816, + "##scu": 28817, + "1626": 28818, + "##ound": 28819, + "collisions": 28820, + "coveted": 28821, + "herds": 28822, + "##personal": 28823, + "##meister": 28824, + "##nberger": 28825, + "chopra": 28826, + "##ricting": 28827, + "abnormalities": 28828, + "defective": 28829, + "galician": 28830, + "lucie": 28831, + "##dilly": 28832, + "alligator": 28833, + "likened": 28834, + "##genase": 28835, + "burundi": 28836, + "clears": 28837, + "complexion": 28838, + "derelict": 28839, + "deafening": 28840, + "diablo": 28841, + "fingered": 28842, + "champaign": 28843, + "dogg": 28844, + "enlist": 28845, + "isotope": 28846, + "labeling": 28847, + "mrna": 28848, + "##erre": 28849, + "brilliance": 28850, + "marvelous": 28851, + "##ayo": 28852, + "1652": 28853, + "crawley": 28854, + "ether": 28855, + "footed": 28856, + "dwellers": 28857, + "deserts": 28858, + "hamish": 28859, + "rubs": 28860, + "warlock": 28861, + "skimmed": 28862, + "##lizer": 28863, + "870": 28864, + "buick": 28865, + "embark": 28866, + "heraldic": 28867, + "irregularities": 28868, + "##ajan": 28869, + "kiara": 28870, + "##kulam": 28871, + "##ieg": 28872, + "antigen": 28873, + "kowalski": 28874, + "##lge": 28875, + "oakley": 28876, + "visitation": 28877, + "##mbit": 28878, + "vt": 28879, + "##suit": 28880, + "1570": 28881, + "murderers": 28882, + "##miento": 28883, + "##rites": 28884, + "chimneys": 28885, + "##sling": 28886, + "condemn": 28887, + "custer": 28888, + "exchequer": 28889, + "havre": 28890, + "##ghi": 28891, + "fluctuations": 28892, + "##rations": 28893, + "dfb": 28894, + "hendricks": 28895, + "vaccines": 28896, + "##tarian": 28897, + "nietzsche": 28898, + "biking": 28899, + "juicy": 28900, + "##duced": 28901, + "brooding": 28902, + "scrolling": 28903, + "selangor": 28904, + "##ragan": 28905, + "352": 28906, + "annum": 28907, + "boomed": 28908, + "seminole": 28909, + "sugarcane": 28910, + "##dna": 28911, + "departmental": 28912, + "dismissing": 28913, + "innsbruck": 28914, + "arteries": 28915, + "ashok": 28916, + "batavia": 28917, + "daze": 28918, + "kun": 28919, + "overtook": 28920, + "##rga": 28921, + "##tlan": 28922, + "beheaded": 28923, + "gaddafi": 28924, + "holm": 28925, + "electronically": 28926, + "faulty": 28927, + "galilee": 28928, + "fractures": 28929, + "kobayashi": 28930, + "##lized": 28931, + "gunmen": 28932, + "magma": 28933, + "aramaic": 28934, + "mala": 28935, + "eastenders": 28936, + "inference": 28937, + "messengers": 28938, + "bf": 28939, + "##qu": 28940, + "407": 28941, + "bathrooms": 28942, + "##vere": 28943, + "1658": 28944, + "flashbacks": 28945, + "ideally": 28946, + "misunderstood": 28947, + "##jali": 28948, + "##weather": 28949, + "mendez": 28950, + "##grounds": 28951, + "505": 28952, + "uncanny": 28953, + "##iii": 28954, + "1709": 28955, + "friendships": 28956, + "##nbc": 28957, + "sacrament": 28958, + "accommodated": 28959, + "reiterated": 28960, + "logistical": 28961, + "pebbles": 28962, + "thumped": 28963, + "##escence": 28964, + "administering": 28965, + "decrees": 28966, + "drafts": 28967, + "##flight": 28968, + "##cased": 28969, + "##tula": 28970, + "futuristic": 28971, + "picket": 28972, + "intimidation": 28973, + "winthrop": 28974, + "##fahan": 28975, + "interfered": 28976, + "339": 28977, + "afar": 28978, + "francoise": 28979, + "morally": 28980, + "uta": 28981, + "cochin": 28982, + "croft": 28983, + "dwarfs": 28984, + "##bruck": 28985, + "##dents": 28986, + "##nami": 28987, + "biker": 28988, + "##hner": 28989, + "##meral": 28990, + "nano": 28991, + "##isen": 28992, + "##ometric": 28993, + "##pres": 28994, + "##ан": 28995, + "brightened": 28996, + "meek": 28997, + "parcels": 28998, + "securely": 28999, + "gunners": 29000, + "##jhl": 29001, + "##zko": 29002, + "agile": 29003, + "hysteria": 29004, + "##lten": 29005, + "##rcus": 29006, + "bukit": 29007, + "champs": 29008, + "chevy": 29009, + "cuckoo": 29010, + "leith": 29011, + "sadler": 29012, + "theologians": 29013, + "welded": 29014, + "##section": 29015, + "1663": 29016, + "jj": 29017, + "plurality": 29018, + "xander": 29019, + "##rooms": 29020, + "##formed": 29021, + "shredded": 29022, + "temps": 29023, + "intimately": 29024, + "pau": 29025, + "tormented": 29026, + "##lok": 29027, + "##stellar": 29028, + "1618": 29029, + "charred": 29030, + "ems": 29031, + "essen": 29032, + "##mmel": 29033, + "alarms": 29034, + "spraying": 29035, + "ascot": 29036, + "blooms": 29037, + "twinkle": 29038, + "##abia": 29039, + "##apes": 29040, + "internment": 29041, + "obsidian": 29042, + "##chaft": 29043, + "snoop": 29044, + "##dav": 29045, + "##ooping": 29046, + "malibu": 29047, + "##tension": 29048, + "quiver": 29049, + "##itia": 29050, + "hays": 29051, + "mcintosh": 29052, + "travers": 29053, + "walsall": 29054, + "##ffie": 29055, + "1623": 29056, + "beverley": 29057, + "schwarz": 29058, + "plunging": 29059, + "structurally": 29060, + "m3": 29061, + "rosenthal": 29062, + "vikram": 29063, + "##tsk": 29064, + "770": 29065, + "ghz": 29066, + "##onda": 29067, + "##tiv": 29068, + "chalmers": 29069, + "groningen": 29070, + "pew": 29071, + "reckon": 29072, + "unicef": 29073, + "##rvis": 29074, + "55th": 29075, + "##gni": 29076, + "1651": 29077, + "sulawesi": 29078, + "avila": 29079, + "cai": 29080, + "metaphysical": 29081, + "screwing": 29082, + "turbulence": 29083, + "##mberg": 29084, + "augusto": 29085, + "samba": 29086, + "56th": 29087, + "baffled": 29088, + "momentary": 29089, + "toxin": 29090, + "##urian": 29091, + "##wani": 29092, + "aachen": 29093, + "condoms": 29094, + "dali": 29095, + "steppe": 29096, + "##3d": 29097, + "##app": 29098, + "##oed": 29099, + "##year": 29100, + "adolescence": 29101, + "dauphin": 29102, + "electrically": 29103, + "inaccessible": 29104, + "microscopy": 29105, + "nikita": 29106, + "##ega": 29107, + "atv": 29108, + "##cel": 29109, + "##enter": 29110, + "##oles": 29111, + "##oteric": 29112, + "##ы": 29113, + "accountants": 29114, + "punishments": 29115, + "wrongly": 29116, + "bribes": 29117, + "adventurous": 29118, + "clinch": 29119, + "flinders": 29120, + "southland": 29121, + "##hem": 29122, + "##kata": 29123, + "gough": 29124, + "##ciency": 29125, + "lads": 29126, + "soared": 29127, + "##ה": 29128, + "undergoes": 29129, + "deformation": 29130, + "outlawed": 29131, + "rubbish": 29132, + "##arus": 29133, + "##mussen": 29134, + "##nidae": 29135, + "##rzburg": 29136, + "arcs": 29137, + "##ingdon": 29138, + "##tituted": 29139, + "1695": 29140, + "wheelbase": 29141, + "wheeling": 29142, + "bombardier": 29143, + "campground": 29144, + "zebra": 29145, + "##lices": 29146, + "##oj": 29147, + "##bain": 29148, + "lullaby": 29149, + "##ecure": 29150, + "donetsk": 29151, + "wylie": 29152, + "grenada": 29153, + "##arding": 29154, + "##ης": 29155, + "squinting": 29156, + "eireann": 29157, + "opposes": 29158, + "##andra": 29159, + "maximal": 29160, + "runes": 29161, + "##broken": 29162, + "##cuting": 29163, + "##iface": 29164, + "##ror": 29165, + "##rosis": 29166, + "additive": 29167, + "britney": 29168, + "adultery": 29169, + "triggering": 29170, + "##drome": 29171, + "detrimental": 29172, + "aarhus": 29173, + "containment": 29174, + "jc": 29175, + "swapped": 29176, + "vichy": 29177, + "##ioms": 29178, + "madly": 29179, + "##oric": 29180, + "##rag": 29181, + "brant": 29182, + "##ckey": 29183, + "##trix": 29184, + "1560": 29185, + "1612": 29186, + "broughton": 29187, + "rustling": 29188, + "##stems": 29189, + "##uder": 29190, + "asbestos": 29191, + "mentoring": 29192, + "##nivorous": 29193, + "finley": 29194, + "leaps": 29195, + "##isan": 29196, + "apical": 29197, + "pry": 29198, + "slits": 29199, + "substitutes": 29200, + "##dict": 29201, + "intuitive": 29202, + "fantasia": 29203, + "insistent": 29204, + "unreasonable": 29205, + "##igen": 29206, + "##vna": 29207, + "domed": 29208, + "hannover": 29209, + "margot": 29210, + "ponder": 29211, + "##zziness": 29212, + "impromptu": 29213, + "jian": 29214, + "lc": 29215, + "rampage": 29216, + "stemming": 29217, + "##eft": 29218, + "andrey": 29219, + "gerais": 29220, + "whichever": 29221, + "amnesia": 29222, + "appropriated": 29223, + "anzac": 29224, + "clicks": 29225, + "modifying": 29226, + "ultimatum": 29227, + "cambrian": 29228, + "maids": 29229, + "verve": 29230, + "yellowstone": 29231, + "##mbs": 29232, + "conservatoire": 29233, + "##scribe": 29234, + "adherence": 29235, + "dinners": 29236, + "spectra": 29237, + "imperfect": 29238, + "mysteriously": 29239, + "sidekick": 29240, + "tatar": 29241, + "tuba": 29242, + "##aks": 29243, + "##ifolia": 29244, + "distrust": 29245, + "##athan": 29246, + "##zle": 29247, + "c2": 29248, + "ronin": 29249, + "zac": 29250, + "##pse": 29251, + "celaena": 29252, + "instrumentalist": 29253, + "scents": 29254, + "skopje": 29255, + "##mbling": 29256, + "comical": 29257, + "compensated": 29258, + "vidal": 29259, + "condor": 29260, + "intersect": 29261, + "jingle": 29262, + "wavelengths": 29263, + "##urrent": 29264, + "mcqueen": 29265, + "##izzly": 29266, + "carp": 29267, + "weasel": 29268, + "422": 29269, + "kanye": 29270, + "militias": 29271, + "postdoctoral": 29272, + "eugen": 29273, + "gunslinger": 29274, + "##ɛ": 29275, + "faux": 29276, + "hospice": 29277, + "##for": 29278, + "appalled": 29279, + "derivation": 29280, + "dwarves": 29281, + "##elis": 29282, + "dilapidated": 29283, + "##folk": 29284, + "astoria": 29285, + "philology": 29286, + "##lwyn": 29287, + "##otho": 29288, + "##saka": 29289, + "inducing": 29290, + "philanthropy": 29291, + "##bf": 29292, + "##itative": 29293, + "geek": 29294, + "markedly": 29295, + "sql": 29296, + "##yce": 29297, + "bessie": 29298, + "indices": 29299, + "rn": 29300, + "##flict": 29301, + "495": 29302, + "frowns": 29303, + "resolving": 29304, + "weightlifting": 29305, + "tugs": 29306, + "cleric": 29307, + "contentious": 29308, + "1653": 29309, + "mania": 29310, + "rms": 29311, + "##miya": 29312, + "##reate": 29313, + "##ruck": 29314, + "##tucket": 29315, + "bien": 29316, + "eels": 29317, + "marek": 29318, + "##ayton": 29319, + "##cence": 29320, + "discreet": 29321, + "unofficially": 29322, + "##ife": 29323, + "leaks": 29324, + "##bber": 29325, + "1705": 29326, + "332": 29327, + "dung": 29328, + "compressor": 29329, + "hillsborough": 29330, + "pandit": 29331, + "shillings": 29332, + "distal": 29333, + "##skin": 29334, + "381": 29335, + "##tat": 29336, + "##you": 29337, + "nosed": 29338, + "##nir": 29339, + "mangrove": 29340, + "undeveloped": 29341, + "##idia": 29342, + "textures": 29343, + "##inho": 29344, + "##500": 29345, + "##rise": 29346, + "ae": 29347, + "irritating": 29348, + "nay": 29349, + "amazingly": 29350, + "bancroft": 29351, + "apologetic": 29352, + "compassionate": 29353, + "kata": 29354, + "symphonies": 29355, + "##lovic": 29356, + "airspace": 29357, + "##lch": 29358, + "930": 29359, + "gifford": 29360, + "precautions": 29361, + "fulfillment": 29362, + "sevilla": 29363, + "vulgar": 29364, + "martinique": 29365, + "##urities": 29366, + "looting": 29367, + "piccolo": 29368, + "tidy": 29369, + "##dermott": 29370, + "quadrant": 29371, + "armchair": 29372, + "incomes": 29373, + "mathematicians": 29374, + "stampede": 29375, + "nilsson": 29376, + "##inking": 29377, + "##scan": 29378, + "foo": 29379, + "quarterfinal": 29380, + "##ostal": 29381, + "shang": 29382, + "shouldered": 29383, + "squirrels": 29384, + "##owe": 29385, + "344": 29386, + "vinegar": 29387, + "##bner": 29388, + "##rchy": 29389, + "##systems": 29390, + "delaying": 29391, + "##trics": 29392, + "ars": 29393, + "dwyer": 29394, + "rhapsody": 29395, + "sponsoring": 29396, + "##gration": 29397, + "bipolar": 29398, + "cinder": 29399, + "starters": 29400, + "##olio": 29401, + "##urst": 29402, + "421": 29403, + "signage": 29404, + "##nty": 29405, + "aground": 29406, + "figurative": 29407, + "mons": 29408, + "acquaintances": 29409, + "duets": 29410, + "erroneously": 29411, + "soyuz": 29412, + "elliptic": 29413, + "recreated": 29414, + "##cultural": 29415, + "##quette": 29416, + "##ssed": 29417, + "##tma": 29418, + "##zcz": 29419, + "moderator": 29420, + "scares": 29421, + "##itaire": 29422, + "##stones": 29423, + "##udence": 29424, + "juniper": 29425, + "sighting": 29426, + "##just": 29427, + "##nsen": 29428, + "britten": 29429, + "calabria": 29430, + "ry": 29431, + "bop": 29432, + "cramer": 29433, + "forsyth": 29434, + "stillness": 29435, + "##л": 29436, + "airmen": 29437, + "gathers": 29438, + "unfit": 29439, + "##umber": 29440, + "##upt": 29441, + "taunting": 29442, + "##rip": 29443, + "seeker": 29444, + "streamlined": 29445, + "##bution": 29446, + "holster": 29447, + "schumann": 29448, + "tread": 29449, + "vox": 29450, + "##gano": 29451, + "##onzo": 29452, + "strive": 29453, + "dil": 29454, + "reforming": 29455, + "covent": 29456, + "newbury": 29457, + "predicting": 29458, + "##orro": 29459, + "decorate": 29460, + "tre": 29461, + "##puted": 29462, + "andover": 29463, + "ie": 29464, + "asahi": 29465, + "dept": 29466, + "dunkirk": 29467, + "gills": 29468, + "##tori": 29469, + "buren": 29470, + "huskies": 29471, + "##stis": 29472, + "##stov": 29473, + "abstracts": 29474, + "bets": 29475, + "loosen": 29476, + "##opa": 29477, + "1682": 29478, + "yearning": 29479, + "##glio": 29480, + "##sir": 29481, + "berman": 29482, + "effortlessly": 29483, + "enamel": 29484, + "napoli": 29485, + "persist": 29486, + "##peration": 29487, + "##uez": 29488, + "attache": 29489, + "elisa": 29490, + "b1": 29491, + "invitations": 29492, + "##kic": 29493, + "accelerating": 29494, + "reindeer": 29495, + "boardwalk": 29496, + "clutches": 29497, + "nelly": 29498, + "polka": 29499, + "starbucks": 29500, + "##kei": 29501, + "adamant": 29502, + "huey": 29503, + "lough": 29504, + "unbroken": 29505, + "adventurer": 29506, + "embroidery": 29507, + "inspecting": 29508, + "stanza": 29509, + "##ducted": 29510, + "naia": 29511, + "taluka": 29512, + "##pone": 29513, + "##roids": 29514, + "chases": 29515, + "deprivation": 29516, + "florian": 29517, + "##jing": 29518, + "##ppet": 29519, + "earthly": 29520, + "##lib": 29521, + "##ssee": 29522, + "colossal": 29523, + "foreigner": 29524, + "vet": 29525, + "freaks": 29526, + "patrice": 29527, + "rosewood": 29528, + "triassic": 29529, + "upstate": 29530, + "##pkins": 29531, + "dominates": 29532, + "ata": 29533, + "chants": 29534, + "ks": 29535, + "vo": 29536, + "##400": 29537, + "##bley": 29538, + "##raya": 29539, + "##rmed": 29540, + "555": 29541, + "agra": 29542, + "infiltrate": 29543, + "##ailing": 29544, + "##ilation": 29545, + "##tzer": 29546, + "##uppe": 29547, + "##werk": 29548, + "binoculars": 29549, + "enthusiast": 29550, + "fujian": 29551, + "squeak": 29552, + "##avs": 29553, + "abolitionist": 29554, + "almeida": 29555, + "boredom": 29556, + "hampstead": 29557, + "marsden": 29558, + "rations": 29559, + "##ands": 29560, + "inflated": 29561, + "334": 29562, + "bonuses": 29563, + "rosalie": 29564, + "patna": 29565, + "##rco": 29566, + "329": 29567, + "detachments": 29568, + "penitentiary": 29569, + "54th": 29570, + "flourishing": 29571, + "woolf": 29572, + "##dion": 29573, + "##etched": 29574, + "papyrus": 29575, + "##lster": 29576, + "##nsor": 29577, + "##toy": 29578, + "bobbed": 29579, + "dismounted": 29580, + "endelle": 29581, + "inhuman": 29582, + "motorola": 29583, + "tbs": 29584, + "wince": 29585, + "wreath": 29586, + "##ticus": 29587, + "hideout": 29588, + "inspections": 29589, + "sanjay": 29590, + "disgrace": 29591, + "infused": 29592, + "pudding": 29593, + "stalks": 29594, + "##urbed": 29595, + "arsenic": 29596, + "leases": 29597, + "##hyl": 29598, + "##rrard": 29599, + "collarbone": 29600, + "##waite": 29601, + "##wil": 29602, + "dowry": 29603, + "##bant": 29604, + "##edance": 29605, + "genealogical": 29606, + "nitrate": 29607, + "salamanca": 29608, + "scandals": 29609, + "thyroid": 29610, + "necessitated": 29611, + "##!": 29612, + "##\"": 29613, + "###": 29614, + "##$": 29615, + "##%": 29616, + "##&": 29617, + "##'": 29618, + "##(": 29619, + "##)": 29620, + "##*": 29621, + "##+": 29622, + "##,": 29623, + "##-": 29624, + "##.": 29625, + "##/": 29626, + "##:": 29627, + "##;": 29628, + "##<": 29629, + "##=": 29630, + "##>": 29631, + "##?": 29632, + "##@": 29633, + "##[": 29634, + "##\\": 29635, + "##]": 29636, + "##^": 29637, + "##_": 29638, + "##`": 29639, + "##{": 29640, + "##|": 29641, + "##}": 29642, + "##~": 29643, + "##¡": 29644, + "##¢": 29645, + "##£": 29646, + "##¤": 29647, + "##¥": 29648, + "##¦": 29649, + "##§": 29650, + "##¨": 29651, + "##©": 29652, + "##ª": 29653, + "##«": 29654, + "##¬": 29655, + "##®": 29656, + "##±": 29657, + "##´": 29658, + "##µ": 29659, + "##¶": 29660, + "##·": 29661, + "##º": 29662, + "##»": 29663, + "##¼": 29664, + "##¾": 29665, + "##¿": 29666, + "##æ": 29667, + "##ð": 29668, + "##÷": 29669, + "##þ": 29670, + "##đ": 29671, + "##ħ": 29672, + "##ŋ": 29673, + "##œ": 29674, + "##ƒ": 29675, + "##ɐ": 29676, + "##ɑ": 29677, + "##ɒ": 29678, + "##ɔ": 29679, + "##ɕ": 29680, + "##ə": 29681, + "##ɡ": 29682, + "##ɣ": 29683, + "##ɨ": 29684, + "##ɪ": 29685, + "##ɫ": 29686, + "##ɬ": 29687, + "##ɯ": 29688, + "##ɲ": 29689, + "##ɴ": 29690, + "##ɹ": 29691, + "##ɾ": 29692, + "##ʀ": 29693, + "##ʁ": 29694, + "##ʂ": 29695, + "##ʃ": 29696, + "##ʉ": 29697, + "##ʊ": 29698, + "##ʋ": 29699, + "##ʌ": 29700, + "##ʎ": 29701, + "##ʐ": 29702, + "##ʑ": 29703, + "##ʒ": 29704, + "##ʔ": 29705, + "##ʰ": 29706, + "##ʲ": 29707, + "##ʳ": 29708, + "##ʷ": 29709, + "##ʸ": 29710, + "##ʻ": 29711, + "##ʼ": 29712, + "##ʾ": 29713, + "##ʿ": 29714, + "##ˈ": 29715, + "##ˡ": 29716, + "##ˢ": 29717, + "##ˣ": 29718, + "##ˤ": 29719, + "##β": 29720, + "##γ": 29721, + "##δ": 29722, + "##ε": 29723, + "##ζ": 29724, + "##θ": 29725, + "##κ": 29726, + "##λ": 29727, + "##μ": 29728, + "##ξ": 29729, + "##ο": 29730, + "##π": 29731, + "##ρ": 29732, + "##σ": 29733, + "##τ": 29734, + "##υ": 29735, + "##φ": 29736, + "##χ": 29737, + "##ψ": 29738, + "##ω": 29739, + "##б": 29740, + "##г": 29741, + "##д": 29742, + "##ж": 29743, + "##з": 29744, + "##м": 29745, + "##п": 29746, + "##с": 29747, + "##у": 29748, + "##ф": 29749, + "##х": 29750, + "##ц": 29751, + "##ч": 29752, + "##ш": 29753, + "##щ": 29754, + "##ъ": 29755, + "##э": 29756, + "##ю": 29757, + "##ђ": 29758, + "##є": 29759, + "##і": 29760, + "##ј": 29761, + "##љ": 29762, + "##њ": 29763, + "##ћ": 29764, + "##ӏ": 29765, + "##ա": 29766, + "##բ": 29767, + "##գ": 29768, + "##դ": 29769, + "##ե": 29770, + "##թ": 29771, + "##ի": 29772, + "##լ": 29773, + "##կ": 29774, + "##հ": 29775, + "##մ": 29776, + "##յ": 29777, + "##ն": 29778, + "##ո": 29779, + "##պ": 29780, + "##ս": 29781, + "##վ": 29782, + "##տ": 29783, + "##ր": 29784, + "##ւ": 29785, + "##ք": 29786, + "##־": 29787, + "##א": 29788, + "##ב": 29789, + "##ג": 29790, + "##ד": 29791, + "##ו": 29792, + "##ז": 29793, + "##ח": 29794, + "##ט": 29795, + "##י": 29796, + "##ך": 29797, + "##כ": 29798, + "##ל": 29799, + "##ם": 29800, + "##מ": 29801, + "##ן": 29802, + "##נ": 29803, + "##ס": 29804, + "##ע": 29805, + "##ף": 29806, + "##פ": 29807, + "##ץ": 29808, + "##צ": 29809, + "##ק": 29810, + "##ר": 29811, + "##ש": 29812, + "##ת": 29813, + "##،": 29814, + "##ء": 29815, + "##ب": 29816, + "##ت": 29817, + "##ث": 29818, + "##ج": 29819, + "##ح": 29820, + "##خ": 29821, + "##ذ": 29822, + "##ز": 29823, + "##س": 29824, + "##ش": 29825, + "##ص": 29826, + "##ض": 29827, + "##ط": 29828, + "##ظ": 29829, + "##ع": 29830, + "##غ": 29831, + "##ـ": 29832, + "##ف": 29833, + "##ق": 29834, + "##ك": 29835, + "##و": 29836, + "##ى": 29837, + "##ٹ": 29838, + "##پ": 29839, + "##چ": 29840, + "##ک": 29841, + "##گ": 29842, + "##ں": 29843, + "##ھ": 29844, + "##ہ": 29845, + "##ے": 29846, + "##अ": 29847, + "##आ": 29848, + "##उ": 29849, + "##ए": 29850, + "##क": 29851, + "##ख": 29852, + "##ग": 29853, + "##च": 29854, + "##ज": 29855, + "##ट": 29856, + "##ड": 29857, + "##ण": 29858, + "##त": 29859, + "##थ": 29860, + "##द": 29861, + "##ध": 29862, + "##न": 29863, + "##प": 29864, + "##ब": 29865, + "##भ": 29866, + "##म": 29867, + "##य": 29868, + "##र": 29869, + "##ल": 29870, + "##व": 29871, + "##श": 29872, + "##ष": 29873, + "##स": 29874, + "##ह": 29875, + "##ा": 29876, + "##ि": 29877, + "##ी": 29878, + "##ो": 29879, + "##।": 29880, + "##॥": 29881, + "##ং": 29882, + "##অ": 29883, + "##আ": 29884, + "##ই": 29885, + "##উ": 29886, + "##এ": 29887, + "##ও": 29888, + "##ক": 29889, + "##খ": 29890, + "##গ": 29891, + "##চ": 29892, + "##ছ": 29893, + "##জ": 29894, + "##ট": 29895, + "##ড": 29896, + "##ণ": 29897, + "##ত": 29898, + "##থ": 29899, + "##দ": 29900, + "##ধ": 29901, + "##ন": 29902, + "##প": 29903, + "##ব": 29904, + "##ভ": 29905, + "##ম": 29906, + "##য": 29907, + "##র": 29908, + "##ল": 29909, + "##শ": 29910, + "##ষ": 29911, + "##স": 29912, + "##হ": 29913, + "##া": 29914, + "##ি": 29915, + "##ী": 29916, + "##ে": 29917, + "##க": 29918, + "##ச": 29919, + "##ட": 29920, + "##த": 29921, + "##ந": 29922, + "##ன": 29923, + "##ப": 29924, + "##ம": 29925, + "##ய": 29926, + "##ர": 29927, + "##ல": 29928, + "##ள": 29929, + "##வ": 29930, + "##ா": 29931, + "##ி": 29932, + "##ு": 29933, + "##ே": 29934, + "##ை": 29935, + "##ನ": 29936, + "##ರ": 29937, + "##ಾ": 29938, + "##ක": 29939, + "##ය": 29940, + "##ර": 29941, + "##ල": 29942, + "##ව": 29943, + "##ා": 29944, + "##ก": 29945, + "##ง": 29946, + "##ต": 29947, + "##ท": 29948, + "##น": 29949, + "##พ": 29950, + "##ม": 29951, + "##ย": 29952, + "##ร": 29953, + "##ล": 29954, + "##ว": 29955, + "##ส": 29956, + "##อ": 29957, + "##า": 29958, + "##เ": 29959, + "##་": 29960, + "##།": 29961, + "##ག": 29962, + "##ང": 29963, + "##ད": 29964, + "##ན": 29965, + "##པ": 29966, + "##བ": 29967, + "##མ": 29968, + "##འ": 29969, + "##ར": 29970, + "##ལ": 29971, + "##ས": 29972, + "##မ": 29973, + "##ა": 29974, + "##ბ": 29975, + "##გ": 29976, + "##დ": 29977, + "##ე": 29978, + "##ვ": 29979, + "##თ": 29980, + "##ი": 29981, + "##კ": 29982, + "##ლ": 29983, + "##მ": 29984, + "##ნ": 29985, + "##ო": 29986, + "##რ": 29987, + "##ს": 29988, + "##ტ": 29989, + "##უ": 29990, + "##ᄀ": 29991, + "##ᄂ": 29992, + "##ᄃ": 29993, + "##ᄅ": 29994, + "##ᄆ": 29995, + "##ᄇ": 29996, + "##ᄉ": 29997, + "##ᄊ": 29998, + "##ᄋ": 29999, + "##ᄌ": 30000, + "##ᄎ": 30001, + "##ᄏ": 30002, + "##ᄐ": 30003, + "##ᄑ": 30004, + "##ᄒ": 30005, + "##ᅡ": 30006, + "##ᅢ": 30007, + "##ᅥ": 30008, + "##ᅦ": 30009, + "##ᅧ": 30010, + "##ᅩ": 30011, + "##ᅪ": 30012, + "##ᅭ": 30013, + "##ᅮ": 30014, + "##ᅯ": 30015, + "##ᅲ": 30016, + "##ᅳ": 30017, + "##ᅴ": 30018, + "##ᅵ": 30019, + "##ᆨ": 30020, + "##ᆫ": 30021, + "##ᆯ": 30022, + "##ᆷ": 30023, + "##ᆸ": 30024, + "##ᆼ": 30025, + "##ᴬ": 30026, + "##ᴮ": 30027, + "##ᴰ": 30028, + "##ᴵ": 30029, + "##ᴺ": 30030, + "##ᵀ": 30031, + "##ᵃ": 30032, + "##ᵇ": 30033, + "##ᵈ": 30034, + "##ᵉ": 30035, + "##ᵍ": 30036, + "##ᵏ": 30037, + "##ᵐ": 30038, + "##ᵒ": 30039, + "##ᵖ": 30040, + "##ᵗ": 30041, + "##ᵘ": 30042, + "##ᵣ": 30043, + "##ᵤ": 30044, + "##ᵥ": 30045, + "##ᶜ": 30046, + "##ᶠ": 30047, + "##‐": 30048, + "##‑": 30049, + "##‒": 30050, + "##–": 30051, + "##—": 30052, + "##―": 30053, + "##‖": 30054, + "##‘": 30055, + "##’": 30056, + "##‚": 30057, + "##“": 30058, + "##”": 30059, + "##„": 30060, + "##†": 30061, + "##‡": 30062, + "##•": 30063, + "##…": 30064, + "##‰": 30065, + "##′": 30066, + "##″": 30067, + "##›": 30068, + "##‿": 30069, + "##⁄": 30070, + "##⁰": 30071, + "##ⁱ": 30072, + "##⁴": 30073, + "##⁵": 30074, + "##⁶": 30075, + "##⁷": 30076, + "##⁸": 30077, + "##⁹": 30078, + "##⁻": 30079, + "##ⁿ": 30080, + "##₅": 30081, + "##₆": 30082, + "##₇": 30083, + "##₈": 30084, + "##₉": 30085, + "##₊": 30086, + "##₍": 30087, + "##₎": 30088, + "##ₐ": 30089, + "##ₑ": 30090, + "##ₒ": 30091, + "##ₓ": 30092, + "##ₕ": 30093, + "##ₖ": 30094, + "##ₗ": 30095, + "##ₘ": 30096, + "##ₚ": 30097, + "##ₛ": 30098, + "##ₜ": 30099, + "##₤": 30100, + "##₩": 30101, + "##€": 30102, + "##₱": 30103, + "##₹": 30104, + "##ℓ": 30105, + "##№": 30106, + "##ℝ": 30107, + "##™": 30108, + "##⅓": 30109, + "##⅔": 30110, + "##←": 30111, + "##↑": 30112, + "##→": 30113, + "##↓": 30114, + "##↔": 30115, + "##↦": 30116, + "##⇄": 30117, + "##⇌": 30118, + "##⇒": 30119, + "##∂": 30120, + "##∅": 30121, + "##∆": 30122, + "##∇": 30123, + "##∈": 30124, + "##∗": 30125, + "##∘": 30126, + "##√": 30127, + "##∞": 30128, + "##∧": 30129, + "##∨": 30130, + "##∩": 30131, + "##∪": 30132, + "##≈": 30133, + "##≡": 30134, + "##≤": 30135, + "##≥": 30136, + "##⊂": 30137, + "##⊆": 30138, + "##⊕": 30139, + "##⊗": 30140, + "##⋅": 30141, + "##─": 30142, + "##│": 30143, + "##■": 30144, + "##▪": 30145, + "##●": 30146, + "##★": 30147, + "##☆": 30148, + "##☉": 30149, + "##♠": 30150, + "##♣": 30151, + "##♥": 30152, + "##♦": 30153, + "##♯": 30154, + "##⟨": 30155, + "##⟩": 30156, + "##ⱼ": 30157, + "##⺩": 30158, + "##⺼": 30159, + "##⽥": 30160, + "##、": 30161, + "##。": 30162, + "##〈": 30163, + "##〉": 30164, + "##《": 30165, + "##》": 30166, + "##「": 30167, + "##」": 30168, + "##『": 30169, + "##』": 30170, + "##〜": 30171, + "##あ": 30172, + "##い": 30173, + "##う": 30174, + "##え": 30175, + "##お": 30176, + "##か": 30177, + "##き": 30178, + "##く": 30179, + "##け": 30180, + "##こ": 30181, + "##さ": 30182, + "##し": 30183, + "##す": 30184, + "##せ": 30185, + "##そ": 30186, + "##た": 30187, + "##ち": 30188, + "##っ": 30189, + "##つ": 30190, + "##て": 30191, + "##と": 30192, + "##な": 30193, + "##に": 30194, + "##ぬ": 30195, + "##ね": 30196, + "##の": 30197, + "##は": 30198, + "##ひ": 30199, + "##ふ": 30200, + "##へ": 30201, + "##ほ": 30202, + "##ま": 30203, + "##み": 30204, + "##む": 30205, + "##め": 30206, + "##も": 30207, + "##や": 30208, + "##ゆ": 30209, + "##よ": 30210, + "##ら": 30211, + "##り": 30212, + "##る": 30213, + "##れ": 30214, + "##ろ": 30215, + "##を": 30216, + "##ん": 30217, + "##ァ": 30218, + "##ア": 30219, + "##ィ": 30220, + "##イ": 30221, + "##ウ": 30222, + "##ェ": 30223, + "##エ": 30224, + "##オ": 30225, + "##カ": 30226, + "##キ": 30227, + "##ク": 30228, + "##ケ": 30229, + "##コ": 30230, + "##サ": 30231, + "##シ": 30232, + "##ス": 30233, + "##セ": 30234, + "##タ": 30235, + "##チ": 30236, + "##ッ": 30237, + "##ツ": 30238, + "##テ": 30239, + "##ト": 30240, + "##ナ": 30241, + "##ニ": 30242, + "##ノ": 30243, + "##ハ": 30244, + "##ヒ": 30245, + "##フ": 30246, + "##ヘ": 30247, + "##ホ": 30248, + "##マ": 30249, + "##ミ": 30250, + "##ム": 30251, + "##メ": 30252, + "##モ": 30253, + "##ャ": 30254, + "##ュ": 30255, + "##ョ": 30256, + "##ラ": 30257, + "##リ": 30258, + "##ル": 30259, + "##レ": 30260, + "##ロ": 30261, + "##ワ": 30262, + "##ン": 30263, + "##・": 30264, + "##ー": 30265, + "##一": 30266, + "##三": 30267, + "##上": 30268, + "##下": 30269, + "##不": 30270, + "##世": 30271, + "##中": 30272, + "##主": 30273, + "##久": 30274, + "##之": 30275, + "##也": 30276, + "##事": 30277, + "##二": 30278, + "##五": 30279, + "##井": 30280, + "##京": 30281, + "##人": 30282, + "##亻": 30283, + "##仁": 30284, + "##介": 30285, + "##代": 30286, + "##仮": 30287, + "##伊": 30288, + "##会": 30289, + "##佐": 30290, + "##侍": 30291, + "##保": 30292, + "##信": 30293, + "##健": 30294, + "##元": 30295, + "##光": 30296, + "##八": 30297, + "##公": 30298, + "##内": 30299, + "##出": 30300, + "##分": 30301, + "##前": 30302, + "##劉": 30303, + "##力": 30304, + "##加": 30305, + "##勝": 30306, + "##北": 30307, + "##区": 30308, + "##十": 30309, + "##千": 30310, + "##南": 30311, + "##博": 30312, + "##原": 30313, + "##口": 30314, + "##古": 30315, + "##史": 30316, + "##司": 30317, + "##合": 30318, + "##吉": 30319, + "##同": 30320, + "##名": 30321, + "##和": 30322, + "##囗": 30323, + "##四": 30324, + "##国": 30325, + "##國": 30326, + "##土": 30327, + "##地": 30328, + "##坂": 30329, + "##城": 30330, + "##堂": 30331, + "##場": 30332, + "##士": 30333, + "##夏": 30334, + "##外": 30335, + "##大": 30336, + "##天": 30337, + "##太": 30338, + "##夫": 30339, + "##奈": 30340, + "##女": 30341, + "##子": 30342, + "##学": 30343, + "##宀": 30344, + "##宇": 30345, + "##安": 30346, + "##宗": 30347, + "##定": 30348, + "##宣": 30349, + "##宮": 30350, + "##家": 30351, + "##宿": 30352, + "##寺": 30353, + "##將": 30354, + "##小": 30355, + "##尚": 30356, + "##山": 30357, + "##岡": 30358, + "##島": 30359, + "##崎": 30360, + "##川": 30361, + "##州": 30362, + "##巿": 30363, + "##帝": 30364, + "##平": 30365, + "##年": 30366, + "##幸": 30367, + "##广": 30368, + "##弘": 30369, + "##張": 30370, + "##彳": 30371, + "##後": 30372, + "##御": 30373, + "##德": 30374, + "##心": 30375, + "##忄": 30376, + "##志": 30377, + "##忠": 30378, + "##愛": 30379, + "##成": 30380, + "##我": 30381, + "##戦": 30382, + "##戸": 30383, + "##手": 30384, + "##扌": 30385, + "##政": 30386, + "##文": 30387, + "##新": 30388, + "##方": 30389, + "##日": 30390, + "##明": 30391, + "##星": 30392, + "##春": 30393, + "##昭": 30394, + "##智": 30395, + "##曲": 30396, + "##書": 30397, + "##月": 30398, + "##有": 30399, + "##朝": 30400, + "##木": 30401, + "##本": 30402, + "##李": 30403, + "##村": 30404, + "##東": 30405, + "##松": 30406, + "##林": 30407, + "##森": 30408, + "##楊": 30409, + "##樹": 30410, + "##橋": 30411, + "##歌": 30412, + "##止": 30413, + "##正": 30414, + "##武": 30415, + "##比": 30416, + "##氏": 30417, + "##民": 30418, + "##水": 30419, + "##氵": 30420, + "##氷": 30421, + "##永": 30422, + "##江": 30423, + "##沢": 30424, + "##河": 30425, + "##治": 30426, + "##法": 30427, + "##海": 30428, + "##清": 30429, + "##漢": 30430, + "##瀬": 30431, + "##火": 30432, + "##版": 30433, + "##犬": 30434, + "##王": 30435, + "##生": 30436, + "##田": 30437, + "##男": 30438, + "##疒": 30439, + "##発": 30440, + "##白": 30441, + "##的": 30442, + "##皇": 30443, + "##目": 30444, + "##相": 30445, + "##省": 30446, + "##真": 30447, + "##石": 30448, + "##示": 30449, + "##社": 30450, + "##神": 30451, + "##福": 30452, + "##禾": 30453, + "##秀": 30454, + "##秋": 30455, + "##空": 30456, + "##立": 30457, + "##章": 30458, + "##竹": 30459, + "##糹": 30460, + "##美": 30461, + "##義": 30462, + "##耳": 30463, + "##良": 30464, + "##艹": 30465, + "##花": 30466, + "##英": 30467, + "##華": 30468, + "##葉": 30469, + "##藤": 30470, + "##行": 30471, + "##街": 30472, + "##西": 30473, + "##見": 30474, + "##訁": 30475, + "##語": 30476, + "##谷": 30477, + "##貝": 30478, + "##貴": 30479, + "##車": 30480, + "##軍": 30481, + "##辶": 30482, + "##道": 30483, + "##郎": 30484, + "##郡": 30485, + "##部": 30486, + "##都": 30487, + "##里": 30488, + "##野": 30489, + "##金": 30490, + "##鈴": 30491, + "##镇": 30492, + "##長": 30493, + "##門": 30494, + "##間": 30495, + "##阝": 30496, + "##阿": 30497, + "##陳": 30498, + "##陽": 30499, + "##雄": 30500, + "##青": 30501, + "##面": 30502, + "##風": 30503, + "##食": 30504, + "##香": 30505, + "##馬": 30506, + "##高": 30507, + "##龍": 30508, + "##龸": 30509, + "##fi": 30510, + "##fl": 30511, + "##!": 30512, + "##(": 30513, + "##)": 30514, + "##,": 30515, + "##-": 30516, + "##.": 30517, + "##/": 30518, + "##:": 30519, + "##?": 30520, + "##~": 30521 + } + } +} \ No newline at end of file diff --git a/multitask_intent_model_output/tokenizer_config.json b/multitask_intent_model_output/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ca078cbed9874571e1790b3704a58c00f0dc7556 --- /dev/null +++ b/multitask_intent_model_output/tokenizer_config.json @@ -0,0 +1,56 @@ +{ + "added_tokens_decoder": { + "0": { + "content": "[PAD]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "100": { + "content": "[UNK]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "101": { + "content": "[CLS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "102": { + "content": "[SEP]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "103": { + "content": "[MASK]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "clean_up_tokenization_spaces": false, + "cls_token": "[CLS]", + "do_lower_case": true, + "extra_special_tokens": {}, + "mask_token": "[MASK]", + "model_max_length": 512, + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "strip_accents": null, + "tokenize_chinese_chars": true, + "tokenizer_class": "DistilBertTokenizer", + "unk_token": "[UNK]" +} diff --git a/multitask_intent_model_output/train_metrics.json b/multitask_intent_model_output/train_metrics.json new file mode 100644 index 0000000000000000000000000000000000000000..bbce384d78801b0045e28bef8e6d0ec7d4bc0c13 --- /dev/null +++ b/multitask_intent_model_output/train_metrics.json @@ -0,0 +1,37 @@ +{ + "head": "multitask_intent", + "loss_weights": { + "decision_phase": 1.0, + "intent_subtype": 1.0, + "intent_type": 1.0 + }, + "test_count": 70, + "test_metrics": { + "epoch": 4.0, + "test_decision_phase_accuracy": 0.7931034482758621, + "test_decision_phase_macro_f1": 0.796485260770975, + "test_intent_subtype_accuracy": 0.8857142857142857, + "test_intent_subtype_macro_f1": 0.8093880020247664, + "test_intent_type_accuracy": 0.8936170212765957, + "test_intent_type_macro_f1": 0.8110224089635854, + "test_loss": 1.488637924194336, + "test_runtime": 0.1528, + "test_samples_per_second": 458.026, + "test_steps_per_second": 32.716 + }, + "train_count": 1590, + "val_count": 473, + "val_metrics": { + "epoch": 4.0, + "val_decision_phase_accuracy": 0.9707317073170731, + "val_decision_phase_macro_f1": 0.964698796984366, + "val_intent_subtype_accuracy": 0.9290123456790124, + "val_intent_subtype_macro_f1": 0.923158190894806, + "val_intent_type_accuracy": 0.9792387543252595, + "val_intent_type_macro_f1": 0.9630328385586321, + "val_loss": 0.5629223585128784, + "val_runtime": 1.0257, + "val_samples_per_second": 461.15, + "val_steps_per_second": 29.248 + } +} diff --git a/multitask_intent_model_output/vocab.txt b/multitask_intent_model_output/vocab.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb140275c155a9c7c5a3b3e0e77a9e839594a938 --- /dev/null +++ b/multitask_intent_model_output/vocab.txt @@ -0,0 +1,30522 @@ +[PAD] +[unused0] +[unused1] +[unused2] +[unused3] +[unused4] +[unused5] +[unused6] +[unused7] +[unused8] +[unused9] +[unused10] +[unused11] +[unused12] +[unused13] +[unused14] +[unused15] +[unused16] +[unused17] +[unused18] +[unused19] +[unused20] +[unused21] +[unused22] +[unused23] +[unused24] +[unused25] +[unused26] +[unused27] +[unused28] +[unused29] +[unused30] +[unused31] +[unused32] +[unused33] +[unused34] +[unused35] +[unused36] +[unused37] +[unused38] +[unused39] +[unused40] +[unused41] +[unused42] +[unused43] +[unused44] +[unused45] +[unused46] +[unused47] +[unused48] +[unused49] +[unused50] +[unused51] +[unused52] +[unused53] +[unused54] +[unused55] +[unused56] +[unused57] +[unused58] +[unused59] +[unused60] +[unused61] +[unused62] +[unused63] +[unused64] +[unused65] +[unused66] +[unused67] +[unused68] +[unused69] +[unused70] +[unused71] +[unused72] +[unused73] +[unused74] +[unused75] +[unused76] +[unused77] +[unused78] +[unused79] +[unused80] +[unused81] +[unused82] +[unused83] +[unused84] +[unused85] +[unused86] +[unused87] +[unused88] +[unused89] +[unused90] +[unused91] +[unused92] +[unused93] +[unused94] +[unused95] +[unused96] +[unused97] +[unused98] +[UNK] +[CLS] +[SEP] +[MASK] +[unused99] +[unused100] +[unused101] +[unused102] +[unused103] +[unused104] +[unused105] +[unused106] +[unused107] +[unused108] +[unused109] +[unused110] +[unused111] +[unused112] +[unused113] +[unused114] +[unused115] +[unused116] +[unused117] +[unused118] +[unused119] +[unused120] +[unused121] +[unused122] +[unused123] +[unused124] +[unused125] +[unused126] +[unused127] +[unused128] +[unused129] +[unused130] +[unused131] +[unused132] +[unused133] +[unused134] +[unused135] +[unused136] +[unused137] +[unused138] +[unused139] +[unused140] +[unused141] +[unused142] +[unused143] +[unused144] +[unused145] +[unused146] +[unused147] +[unused148] +[unused149] +[unused150] +[unused151] +[unused152] +[unused153] +[unused154] +[unused155] +[unused156] +[unused157] +[unused158] +[unused159] +[unused160] +[unused161] +[unused162] +[unused163] +[unused164] +[unused165] +[unused166] +[unused167] +[unused168] +[unused169] +[unused170] +[unused171] +[unused172] +[unused173] +[unused174] +[unused175] +[unused176] +[unused177] +[unused178] +[unused179] +[unused180] +[unused181] +[unused182] +[unused183] +[unused184] +[unused185] +[unused186] +[unused187] +[unused188] +[unused189] +[unused190] +[unused191] +[unused192] +[unused193] +[unused194] +[unused195] +[unused196] +[unused197] +[unused198] +[unused199] +[unused200] +[unused201] +[unused202] +[unused203] +[unused204] +[unused205] +[unused206] +[unused207] +[unused208] +[unused209] +[unused210] +[unused211] +[unused212] +[unused213] +[unused214] +[unused215] +[unused216] +[unused217] +[unused218] +[unused219] +[unused220] +[unused221] +[unused222] +[unused223] +[unused224] +[unused225] +[unused226] +[unused227] +[unused228] +[unused229] +[unused230] +[unused231] +[unused232] +[unused233] +[unused234] +[unused235] +[unused236] +[unused237] +[unused238] +[unused239] +[unused240] +[unused241] +[unused242] +[unused243] +[unused244] +[unused245] +[unused246] +[unused247] +[unused248] +[unused249] +[unused250] +[unused251] +[unused252] +[unused253] +[unused254] +[unused255] +[unused256] +[unused257] +[unused258] +[unused259] +[unused260] +[unused261] +[unused262] +[unused263] +[unused264] +[unused265] +[unused266] +[unused267] +[unused268] +[unused269] +[unused270] +[unused271] +[unused272] +[unused273] +[unused274] +[unused275] +[unused276] +[unused277] +[unused278] +[unused279] +[unused280] +[unused281] +[unused282] +[unused283] +[unused284] +[unused285] +[unused286] +[unused287] +[unused288] +[unused289] +[unused290] +[unused291] +[unused292] +[unused293] +[unused294] +[unused295] +[unused296] +[unused297] +[unused298] +[unused299] +[unused300] +[unused301] +[unused302] +[unused303] +[unused304] +[unused305] +[unused306] +[unused307] +[unused308] +[unused309] +[unused310] +[unused311] +[unused312] +[unused313] +[unused314] +[unused315] +[unused316] +[unused317] +[unused318] +[unused319] +[unused320] +[unused321] +[unused322] +[unused323] +[unused324] +[unused325] +[unused326] +[unused327] +[unused328] +[unused329] +[unused330] +[unused331] +[unused332] +[unused333] +[unused334] +[unused335] +[unused336] +[unused337] +[unused338] +[unused339] +[unused340] +[unused341] +[unused342] +[unused343] +[unused344] +[unused345] +[unused346] +[unused347] +[unused348] +[unused349] +[unused350] +[unused351] +[unused352] +[unused353] +[unused354] +[unused355] +[unused356] +[unused357] +[unused358] +[unused359] +[unused360] +[unused361] +[unused362] +[unused363] +[unused364] +[unused365] +[unused366] +[unused367] +[unused368] +[unused369] +[unused370] +[unused371] +[unused372] +[unused373] +[unused374] +[unused375] +[unused376] +[unused377] +[unused378] +[unused379] +[unused380] +[unused381] +[unused382] +[unused383] +[unused384] +[unused385] +[unused386] +[unused387] +[unused388] +[unused389] +[unused390] +[unused391] +[unused392] +[unused393] +[unused394] +[unused395] +[unused396] +[unused397] +[unused398] +[unused399] +[unused400] +[unused401] +[unused402] +[unused403] +[unused404] +[unused405] +[unused406] +[unused407] +[unused408] +[unused409] +[unused410] +[unused411] +[unused412] +[unused413] +[unused414] +[unused415] +[unused416] +[unused417] +[unused418] +[unused419] +[unused420] +[unused421] +[unused422] +[unused423] +[unused424] +[unused425] +[unused426] +[unused427] +[unused428] +[unused429] +[unused430] +[unused431] +[unused432] +[unused433] +[unused434] +[unused435] +[unused436] +[unused437] +[unused438] +[unused439] +[unused440] +[unused441] +[unused442] +[unused443] +[unused444] +[unused445] +[unused446] +[unused447] +[unused448] +[unused449] +[unused450] +[unused451] +[unused452] +[unused453] +[unused454] +[unused455] +[unused456] +[unused457] +[unused458] +[unused459] +[unused460] +[unused461] +[unused462] +[unused463] +[unused464] +[unused465] +[unused466] +[unused467] +[unused468] +[unused469] +[unused470] +[unused471] +[unused472] +[unused473] +[unused474] +[unused475] +[unused476] +[unused477] +[unused478] +[unused479] +[unused480] +[unused481] +[unused482] +[unused483] +[unused484] +[unused485] +[unused486] +[unused487] +[unused488] +[unused489] +[unused490] +[unused491] +[unused492] +[unused493] +[unused494] +[unused495] +[unused496] +[unused497] +[unused498] +[unused499] +[unused500] +[unused501] +[unused502] +[unused503] +[unused504] +[unused505] +[unused506] +[unused507] +[unused508] +[unused509] +[unused510] +[unused511] +[unused512] +[unused513] +[unused514] +[unused515] +[unused516] +[unused517] +[unused518] +[unused519] +[unused520] +[unused521] +[unused522] +[unused523] +[unused524] +[unused525] +[unused526] +[unused527] +[unused528] +[unused529] +[unused530] +[unused531] +[unused532] +[unused533] +[unused534] +[unused535] +[unused536] +[unused537] +[unused538] +[unused539] +[unused540] +[unused541] +[unused542] +[unused543] +[unused544] +[unused545] +[unused546] +[unused547] +[unused548] +[unused549] +[unused550] +[unused551] +[unused552] +[unused553] +[unused554] +[unused555] +[unused556] +[unused557] +[unused558] +[unused559] +[unused560] +[unused561] +[unused562] +[unused563] +[unused564] +[unused565] +[unused566] +[unused567] +[unused568] +[unused569] +[unused570] +[unused571] +[unused572] +[unused573] +[unused574] +[unused575] +[unused576] +[unused577] +[unused578] +[unused579] +[unused580] +[unused581] +[unused582] +[unused583] +[unused584] +[unused585] +[unused586] +[unused587] +[unused588] +[unused589] +[unused590] +[unused591] +[unused592] +[unused593] +[unused594] +[unused595] +[unused596] +[unused597] +[unused598] +[unused599] +[unused600] +[unused601] +[unused602] +[unused603] +[unused604] +[unused605] +[unused606] +[unused607] +[unused608] +[unused609] +[unused610] +[unused611] +[unused612] +[unused613] +[unused614] +[unused615] +[unused616] +[unused617] +[unused618] +[unused619] +[unused620] +[unused621] +[unused622] +[unused623] +[unused624] +[unused625] +[unused626] +[unused627] +[unused628] +[unused629] +[unused630] +[unused631] +[unused632] +[unused633] +[unused634] +[unused635] +[unused636] +[unused637] +[unused638] +[unused639] +[unused640] +[unused641] +[unused642] +[unused643] +[unused644] +[unused645] +[unused646] +[unused647] +[unused648] +[unused649] +[unused650] +[unused651] +[unused652] +[unused653] +[unused654] +[unused655] +[unused656] +[unused657] +[unused658] +[unused659] +[unused660] +[unused661] +[unused662] +[unused663] +[unused664] +[unused665] +[unused666] +[unused667] +[unused668] +[unused669] +[unused670] +[unused671] +[unused672] +[unused673] +[unused674] +[unused675] +[unused676] +[unused677] +[unused678] +[unused679] +[unused680] +[unused681] +[unused682] +[unused683] +[unused684] +[unused685] +[unused686] +[unused687] +[unused688] +[unused689] +[unused690] +[unused691] +[unused692] +[unused693] +[unused694] +[unused695] +[unused696] +[unused697] +[unused698] +[unused699] +[unused700] +[unused701] +[unused702] +[unused703] +[unused704] +[unused705] +[unused706] +[unused707] +[unused708] +[unused709] +[unused710] +[unused711] +[unused712] +[unused713] +[unused714] +[unused715] +[unused716] +[unused717] +[unused718] +[unused719] +[unused720] +[unused721] +[unused722] +[unused723] +[unused724] +[unused725] +[unused726] +[unused727] +[unused728] +[unused729] +[unused730] +[unused731] +[unused732] +[unused733] +[unused734] +[unused735] +[unused736] +[unused737] +[unused738] +[unused739] +[unused740] +[unused741] +[unused742] +[unused743] +[unused744] +[unused745] +[unused746] +[unused747] +[unused748] +[unused749] +[unused750] +[unused751] +[unused752] +[unused753] +[unused754] +[unused755] +[unused756] +[unused757] +[unused758] +[unused759] +[unused760] +[unused761] +[unused762] +[unused763] +[unused764] +[unused765] +[unused766] +[unused767] +[unused768] +[unused769] +[unused770] +[unused771] +[unused772] +[unused773] +[unused774] +[unused775] +[unused776] +[unused777] +[unused778] +[unused779] +[unused780] +[unused781] +[unused782] +[unused783] +[unused784] +[unused785] +[unused786] +[unused787] +[unused788] +[unused789] +[unused790] +[unused791] +[unused792] +[unused793] +[unused794] +[unused795] +[unused796] +[unused797] +[unused798] +[unused799] +[unused800] +[unused801] +[unused802] +[unused803] +[unused804] +[unused805] +[unused806] +[unused807] +[unused808] +[unused809] +[unused810] +[unused811] +[unused812] +[unused813] +[unused814] +[unused815] +[unused816] +[unused817] +[unused818] +[unused819] +[unused820] +[unused821] +[unused822] +[unused823] +[unused824] +[unused825] +[unused826] +[unused827] +[unused828] +[unused829] +[unused830] +[unused831] +[unused832] +[unused833] +[unused834] +[unused835] +[unused836] +[unused837] +[unused838] +[unused839] +[unused840] +[unused841] +[unused842] +[unused843] +[unused844] +[unused845] +[unused846] +[unused847] +[unused848] +[unused849] +[unused850] +[unused851] +[unused852] +[unused853] +[unused854] +[unused855] +[unused856] +[unused857] +[unused858] +[unused859] +[unused860] +[unused861] +[unused862] +[unused863] +[unused864] +[unused865] +[unused866] +[unused867] +[unused868] +[unused869] +[unused870] +[unused871] +[unused872] +[unused873] +[unused874] +[unused875] +[unused876] +[unused877] +[unused878] +[unused879] +[unused880] +[unused881] +[unused882] +[unused883] +[unused884] +[unused885] +[unused886] +[unused887] +[unused888] +[unused889] +[unused890] +[unused891] +[unused892] +[unused893] +[unused894] +[unused895] +[unused896] +[unused897] +[unused898] +[unused899] +[unused900] +[unused901] +[unused902] +[unused903] +[unused904] +[unused905] +[unused906] +[unused907] +[unused908] +[unused909] +[unused910] +[unused911] +[unused912] +[unused913] +[unused914] +[unused915] +[unused916] +[unused917] +[unused918] +[unused919] +[unused920] +[unused921] +[unused922] +[unused923] +[unused924] +[unused925] +[unused926] +[unused927] +[unused928] +[unused929] +[unused930] +[unused931] +[unused932] +[unused933] +[unused934] +[unused935] +[unused936] +[unused937] +[unused938] +[unused939] +[unused940] +[unused941] +[unused942] +[unused943] +[unused944] +[unused945] +[unused946] +[unused947] +[unused948] +[unused949] +[unused950] +[unused951] +[unused952] +[unused953] +[unused954] +[unused955] +[unused956] +[unused957] +[unused958] +[unused959] +[unused960] +[unused961] +[unused962] +[unused963] +[unused964] +[unused965] +[unused966] +[unused967] +[unused968] +[unused969] +[unused970] +[unused971] +[unused972] +[unused973] +[unused974] +[unused975] +[unused976] +[unused977] +[unused978] +[unused979] +[unused980] +[unused981] +[unused982] +[unused983] +[unused984] +[unused985] +[unused986] +[unused987] +[unused988] +[unused989] +[unused990] +[unused991] +[unused992] +[unused993] +! +" +# +$ +% +& +' +( +) +* ++ +, +- +. +/ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +: +; +< += +> +? +@ +[ +\ +] +^ +_ +` +a +b +c +d +e +f +g +h +i +j +k +l +m +n +o +p +q +r +s +t +u +v +w +x +y +z +{ +| +} +~ +¡ +¢ +£ +¤ +¥ +¦ +§ +¨ +© +ª +« +¬ +® +° +± +² +³ +´ +µ +¶ +· +¹ +º +» +¼ +½ +¾ +¿ +× +ß +æ +ð +÷ +ø +þ +đ +ħ +ı +ł +ŋ +œ +ƒ +ɐ +ɑ +ɒ +ɔ +ɕ +ə +ɛ +ɡ +ɣ +ɨ +ɪ +ɫ +ɬ +ɯ +ɲ +ɴ +ɹ +ɾ +ʀ +ʁ +ʂ +ʃ +ʉ +ʊ +ʋ +ʌ +ʎ +ʐ +ʑ +ʒ +ʔ +ʰ +ʲ +ʳ +ʷ +ʸ +ʻ +ʼ +ʾ +ʿ +ˈ +ː +ˡ +ˢ +ˣ +ˤ +α +β +γ +δ +ε +ζ +η +θ +ι +κ +λ +μ +ν +ξ +ο +π +ρ +ς +σ +τ +υ +φ +χ +ψ +ω +а +б +в +г +д +е +ж +з +и +к +л +м +н +о +п +р +с +т +у +ф +х +ц +ч +ш +щ +ъ +ы +ь +э +ю +я +ђ +є +і +ј +љ +њ +ћ +ӏ +ա +բ +գ +դ +ե +թ +ի +լ +կ +հ +մ +յ +ն +ո +պ +ս +վ +տ +ր +ւ +ք +־ +א +ב +ג +ד +ה +ו +ז +ח +ט +י +ך +כ +ל +ם +מ +ן +נ +ס +ע +ף +פ +ץ +צ +ק +ר +ש +ת +، +ء +ا +ب +ة +ت +ث +ج +ح +خ +د +ذ +ر +ز +س +ش +ص +ض +ط +ظ +ع +غ +ـ +ف +ق +ك +ل +م +ن +ه +و +ى +ي +ٹ +پ +چ +ک +گ +ں +ھ +ہ +ی +ے +अ +आ +उ +ए +क +ख +ग +च +ज +ट +ड +ण +त +थ +द +ध +न +प +ब +भ +म +य +र +ल +व +श +ष +स +ह +ा +ि +ी +ो +। +॥ +ং +অ +আ +ই +উ +এ +ও +ক +খ +গ +চ +ছ +জ +ট +ড +ণ +ত +থ +দ +ধ +ন +প +ব +ভ +ম +য +র +ল +শ +ষ +স +হ +া +ি +ী +ে +க +ச +ட +த +ந +ன +ப +ம +ய +ர +ல +ள +வ +ா +ி +ு +ே +ை +ನ +ರ +ಾ +ක +ය +ර +ල +ව +ා +ก +ง +ต +ท +น +พ +ม +ย +ร +ล +ว +ส +อ +า +เ +་ +། +ག +ང +ད +ན +པ +བ +མ +འ +ར +ལ +ས +မ +ა +ბ +გ +დ +ე +ვ +თ +ი +კ +ლ +მ +ნ +ო +რ +ს +ტ +უ +ᄀ +ᄂ +ᄃ +ᄅ +ᄆ +ᄇ +ᄉ +ᄊ +ᄋ +ᄌ +ᄎ +ᄏ +ᄐ +ᄑ +ᄒ +ᅡ +ᅢ +ᅥ +ᅦ +ᅧ +ᅩ +ᅪ +ᅭ +ᅮ +ᅯ +ᅲ +ᅳ +ᅴ +ᅵ +ᆨ +ᆫ +ᆯ +ᆷ +ᆸ +ᆼ +ᴬ +ᴮ +ᴰ +ᴵ +ᴺ +ᵀ +ᵃ +ᵇ +ᵈ +ᵉ +ᵍ +ᵏ +ᵐ +ᵒ +ᵖ +ᵗ +ᵘ +ᵢ +ᵣ +ᵤ +ᵥ +ᶜ +ᶠ +‐ +‑ +‒ +– +— +― +‖ +‘ +’ +‚ +“ +” +„ +† +‡ +• +… +‰ +′ +″ +› +‿ +⁄ +⁰ +ⁱ +⁴ +⁵ +⁶ +⁷ +⁸ +⁹ +⁺ +⁻ +ⁿ +₀ +₁ +₂ +₃ +₄ +₅ +₆ +₇ +₈ +₉ +₊ +₍ +₎ +ₐ +ₑ +ₒ +ₓ +ₕ +ₖ +ₗ +ₘ +ₙ +ₚ +ₛ +ₜ +₤ +₩ +€ +₱ +₹ +ℓ +№ +ℝ +™ +⅓ +⅔ +← +↑ +→ +↓ +↔ +↦ +⇄ +⇌ +⇒ +∂ +∅ +∆ +∇ +∈ +− +∗ +∘ +√ +∞ +∧ +∨ +∩ +∪ +≈ +≡ +≤ +≥ +⊂ +⊆ +⊕ +⊗ +⋅ +─ +│ +■ +▪ +● +★ +☆ +☉ +♠ +♣ +♥ +♦ +♭ +♯ +⟨ +⟩ +ⱼ +⺩ +⺼ +⽥ +、 +。 +〈 +〉 +《 +》 +「 +」 +『 +』 +〜 +あ +い +う +え +お +か +き +く +け +こ +さ +し +す +せ +そ +た +ち +っ +つ +て +と +な +に +ぬ +ね +の +は +ひ +ふ +へ +ほ +ま +み +む +め +も +や +ゆ +よ +ら +り +る +れ +ろ +を +ん +ァ +ア +ィ +イ +ウ +ェ +エ +オ +カ +キ +ク +ケ +コ +サ +シ +ス +セ +タ +チ +ッ +ツ +テ +ト +ナ +ニ +ノ +ハ +ヒ +フ +ヘ +ホ +マ +ミ +ム +メ +モ +ャ +ュ +ョ +ラ +リ +ル +レ +ロ +ワ +ン +・ +ー +一 +三 +上 +下 +不 +世 +中 +主 +久 +之 +也 +事 +二 +五 +井 +京 +人 +亻 +仁 +介 +代 +仮 +伊 +会 +佐 +侍 +保 +信 +健 +元 +光 +八 +公 +内 +出 +分 +前 +劉 +力 +加 +勝 +北 +区 +十 +千 +南 +博 +原 +口 +古 +史 +司 +合 +吉 +同 +名 +和 +囗 +四 +国 +國 +土 +地 +坂 +城 +堂 +場 +士 +夏 +外 +大 +天 +太 +夫 +奈 +女 +子 +学 +宀 +宇 +安 +宗 +定 +宣 +宮 +家 +宿 +寺 +將 +小 +尚 +山 +岡 +島 +崎 +川 +州 +巿 +帝 +平 +年 +幸 +广 +弘 +張 +彳 +後 +御 +德 +心 +忄 +志 +忠 +愛 +成 +我 +戦 +戸 +手 +扌 +政 +文 +新 +方 +日 +明 +星 +春 +昭 +智 +曲 +書 +月 +有 +朝 +木 +本 +李 +村 +東 +松 +林 +森 +楊 +樹 +橋 +歌 +止 +正 +武 +比 +氏 +民 +水 +氵 +氷 +永 +江 +沢 +河 +治 +法 +海 +清 +漢 +瀬 +火 +版 +犬 +王 +生 +田 +男 +疒 +発 +白 +的 +皇 +目 +相 +省 +真 +石 +示 +社 +神 +福 +禾 +秀 +秋 +空 +立 +章 +竹 +糹 +美 +義 +耳 +良 +艹 +花 +英 +華 +葉 +藤 +行 +街 +西 +見 +訁 +語 +谷 +貝 +貴 +車 +軍 +辶 +道 +郎 +郡 +部 +都 +里 +野 +金 +鈴 +镇 +長 +門 +間 +阝 +阿 +陳 +陽 +雄 +青 +面 +風 +食 +香 +馬 +高 +龍 +龸 +fi +fl +! +( +) +, +- +. +/ +: +? +~ +the +of +and +in +to +was +he +is +as +for +on +with +that +it +his +by +at +from +her +##s +she +you +had +an +were +but +be +this +are +not +my +they +one +which +or +have +him +me +first +all +also +their +has +up +who +out +been +when +after +there +into +new +two +its +##a +time +would +no +what +about +said +we +over +then +other +so +more +##e +can +if +like +back +them +only +some +could +##i +where +just +##ing +during +before +##n +do +##o +made +school +through +than +now +years +most +world +may +between +down +well +three +##d +year +while +will +##ed +##r +##y +later +##t +city +under +around +did +such +being +used +state +people +part +know +against +your +many +second +university +both +national +##er +these +don +known +off +way +until +re +how +even +get +head +... +didn +##ly +team +american +because +de +##l +born +united +film +since +still +long +work +south +us +became +any +high +again +day +family +see +right +man +eyes +house +season +war +states +including +took +life +north +same +each +called +name +much +place +however +go +four +group +another +found +won +area +here +going +10 +away +series +left +home +music +best +make +hand +number +company +several +never +last +john +000 +very +album +take +end +good +too +following +released +game +played +little +began +district +##m +old +want +those +side +held +own +early +county +ll +league +use +west +##u +face +think +##es +2010 +government +##h +march +came +small +general +town +june +##on +line +based +something +##k +september +thought +looked +along +international +2011 +air +july +club +went +january +october +our +august +april +york +12 +few +2012 +2008 +east +show +member +college +2009 +father +public +##us +come +men +five +set +station +church +##c +next +former +november +room +party +located +december +2013 +age +got +2007 +##g +system +let +love +2006 +though +every +2014 +look +song +water +century +without +body +black +night +within +great +women +single +ve +building +large +population +river +named +band +white +started +##an +once +15 +20 +should +18 +2015 +service +top +built +british +open +death +king +moved +local +times +children +february +book +why +11 +door +need +president +order +final +road +wasn +although +due +major +died +village +third +knew +2016 +asked +turned +st +wanted +say +##p +together +received +main +son +served +different +##en +behind +himself +felt +members +power +football +law +voice +play +##in +near +park +history +30 +having +2005 +16 +##man +saw +mother +##al +army +point +front +help +english +street +art +late +hands +games +award +##ia +young +14 +put +published +country +division +across +told +13 +often +ever +french +london +center +six +red +2017 +led +days +include +light +25 +find +tell +among +species +really +according +central +half +2004 +form +original +gave +office +making +enough +lost +full +opened +must +included +live +given +german +player +run +business +woman +community +cup +might +million +land +2000 +court +development +17 +short +round +ii +km +seen +class +story +always +become +sure +research +almost +director +council +la +##2 +career +things +using +island +##z +couldn +car +##is +24 +close +force +##1 +better +free +support +control +field +students +2003 +education +married +##b +nothing +worked +others +record +big +inside +level +anything +continued +give +james +##3 +military +established +non +returned +feel +does +title +written +thing +feet +william +far +co +association +hard +already +2002 +##ra +championship +human +western +100 +##na +department +hall +role +various +production +21 +19 +heart +2001 +living +fire +version +##ers +##f +television +royal +##4 +produced +working +act +case +society +region +present +radio +period +looking +least +total +keep +england +wife +program +per +brother +mind +special +22 +##le +am +works +soon +##6 +political +george +services +taken +created +##7 +further +able +reached +david +union +joined +upon +done +important +social +information +either +##ic +##x +appeared +position +ground +lead +rock +dark +election +23 +board +france +hair +course +arms +site +police +girl +instead +real +sound +##v +words +moment +##te +someone +##8 +summer +project +announced +san +less +wrote +past +followed +##5 +blue +founded +al +finally +india +taking +records +america +##ne +1999 +design +considered +northern +god +stop +battle +toward +european +outside +described +track +today +playing +language +28 +call +26 +heard +professional +low +australia +miles +california +win +yet +green +##ie +trying +blood +##ton +southern +science +maybe +everything +match +square +27 +mouth +video +race +recorded +leave +above +##9 +daughter +points +space +1998 +museum +change +middle +common +##0 +move +tv +post +##ta +lake +seven +tried +elected +closed +ten +paul +minister +##th +months +start +chief +return +canada +person +sea +release +similar +modern +brought +rest +hit +formed +mr +##la +1997 +floor +event +doing +thomas +1996 +robert +care +killed +training +star +week +needed +turn +finished +railway +rather +news +health +sent +example +ran +term +michael +coming +currently +yes +forces +despite +gold +areas +50 +stage +fact +29 +dead +says +popular +2018 +originally +germany +probably +developed +result +pulled +friend +stood +money +running +mi +signed +word +songs +child +eventually +met +tour +average +teams +minutes +festival +current +deep +kind +1995 +decided +usually +eastern +seemed +##ness +episode +bed +added +table +indian +private +charles +route +available +idea +throughout +centre +addition +appointed +style +1994 +books +eight +construction +press +mean +wall +friends +remained +schools +study +##ch +##um +institute +oh +chinese +sometimes +events +possible +1992 +australian +type +brown +forward +talk +process +food +debut +seat +performance +committee +features +character +arts +herself +else +lot +strong +russian +range +hours +peter +arm +##da +morning +dr +sold +##ry +quickly +directed +1993 +guitar +china +##w +31 +list +##ma +performed +media +uk +players +smile +##rs +myself +40 +placed +coach +province +towards +wouldn +leading +whole +boy +official +designed +grand +census +##el +europe +attack +japanese +henry +1991 +##re +##os +cross +getting +alone +action +lower +network +wide +washington +japan +1990 +hospital +believe +changed +sister +##ar +hold +gone +sir +hadn +ship +##ka +studies +academy +shot +rights +below +base +bad +involved +kept +largest +##ist +bank +future +especially +beginning +mark +movement +section +female +magazine +plan +professor +lord +longer +##ian +sat +walked +hill +actually +civil +energy +model +families +size +thus +aircraft +completed +includes +data +captain +##or +fight +vocals +featured +richard +bridge +fourth +1989 +officer +stone +hear +##ism +means +medical +groups +management +self +lips +competition +entire +lived +technology +leaving +federal +tournament +bit +passed +hot +independent +awards +kingdom +mary +spent +fine +doesn +reported +##ling +jack +fall +raised +itself +stay +true +studio +1988 +sports +replaced +paris +systems +saint +leader +theatre +whose +market +capital +parents +spanish +canadian +earth +##ity +cut +degree +writing +bay +christian +awarded +natural +higher +bill +##as +coast +provided +previous +senior +ft +valley +organization +stopped +onto +countries +parts +conference +queen +security +interest +saying +allowed +master +earlier +phone +matter +smith +winning +try +happened +moving +campaign +los +##ley +breath +nearly +mid +1987 +certain +girls +date +italian +african +standing +fell +artist +##ted +shows +deal +mine +industry +1986 +##ng +everyone +republic +provide +collection +library +student +##ville +primary +owned +older +via +heavy +1st +makes +##able +attention +anyone +africa +##ri +stated +length +ended +fingers +command +staff +skin +foreign +opening +governor +okay +medal +kill +sun +cover +job +1985 +introduced +chest +hell +feeling +##ies +success +meet +reason +standard +meeting +novel +1984 +trade +source +buildings +##land +rose +guy +goal +##ur +chapter +native +husband +previously +unit +limited +entered +weeks +producer +operations +mountain +takes +covered +forced +related +roman +complete +successful +key +texas +cold +##ya +channel +1980 +traditional +films +dance +clear +approximately +500 +nine +van +prince +question +active +tracks +ireland +regional +silver +author +personal +sense +operation +##ine +economic +1983 +holding +twenty +isbn +additional +speed +hour +edition +regular +historic +places +whom +shook +movie +km² +secretary +prior +report +chicago +read +foundation +view +engine +scored +1982 +units +ask +airport +property +ready +immediately +lady +month +listed +contract +##de +manager +themselves +lines +##ki +navy +writer +meant +##ts +runs +##ro +practice +championships +singer +glass +commission +required +forest +starting +culture +generally +giving +access +attended +test +couple +stand +catholic +martin +caught +executive +##less +eye +##ey +thinking +chair +quite +shoulder +1979 +hope +decision +plays +defeated +municipality +whether +structure +offered +slowly +pain +ice +direction +##ion +paper +mission +1981 +mostly +200 +noted +individual +managed +nature +lives +plant +##ha +helped +except +studied +computer +figure +relationship +issue +significant +loss +die +smiled +gun +ago +highest +1972 +##am +male +bring +goals +mexico +problem +distance +commercial +completely +location +annual +famous +drive +1976 +neck +1978 +surface +caused +italy +understand +greek +highway +wrong +hotel +comes +appearance +joseph +double +issues +musical +companies +castle +income +review +assembly +bass +initially +parliament +artists +experience +1974 +particular +walk +foot +engineering +talking +window +dropped +##ter +miss +baby +boys +break +1975 +stars +edge +remember +policy +carried +train +stadium +bar +sex +angeles +evidence +##ge +becoming +assistant +soviet +1977 +upper +step +wing +1970 +youth +financial +reach +##ll +actor +numerous +##se +##st +nodded +arrived +##ation +minute +##nt +believed +sorry +complex +beautiful +victory +associated +temple +1968 +1973 +chance +perhaps +metal +##son +1945 +bishop +##et +lee +launched +particularly +tree +le +retired +subject +prize +contains +yeah +theory +empire +##ce +suddenly +waiting +trust +recording +##to +happy +terms +camp +champion +1971 +religious +pass +zealand +names +2nd +port +ancient +tom +corner +represented +watch +legal +anti +justice +cause +watched +brothers +45 +material +changes +simply +response +louis +fast +##ting +answer +60 +historical +1969 +stories +straight +create +feature +increased +rate +administration +virginia +el +activities +cultural +overall +winner +programs +basketball +legs +guard +beyond +cast +doctor +mm +flight +results +remains +cost +effect +winter +##ble +larger +islands +problems +chairman +grew +commander +isn +1967 +pay +failed +selected +hurt +fort +box +regiment +majority +journal +35 +edward +plans +##ke +##ni +shown +pretty +irish +characters +directly +scene +likely +operated +allow +spring +##j +junior +matches +looks +mike +houses +fellow +##tion +beach +marriage +##ham +##ive +rules +oil +65 +florida +expected +nearby +congress +sam +peace +recent +iii +wait +subsequently +cell +##do +variety +serving +agreed +please +poor +joe +pacific +attempt +wood +democratic +piece +prime +##ca +rural +mile +touch +appears +township +1964 +1966 +soldiers +##men +##ized +1965 +pennsylvania +closer +fighting +claimed +score +jones +physical +editor +##ous +filled +genus +specific +sitting +super +mom +##va +therefore +supported +status +fear +cases +store +meaning +wales +minor +spain +tower +focus +vice +frank +follow +parish +separate +golden +horse +fifth +remaining +branch +32 +presented +stared +##id +uses +secret +forms +##co +baseball +exactly +##ck +choice +note +discovered +travel +composed +truth +russia +ball +color +kiss +dad +wind +continue +ring +referred +numbers +digital +greater +##ns +metres +slightly +direct +increase +1960 +responsible +crew +rule +trees +troops +##no +broke +goes +individuals +hundred +weight +creek +sleep +memory +defense +provides +ordered +code +value +jewish +windows +1944 +safe +judge +whatever +corps +realized +growing +pre +##ga +cities +alexander +gaze +lies +spread +scott +letter +showed +situation +mayor +transport +watching +workers +extended +##li +expression +normal +##ment +chart +multiple +border +##ba +host +##ner +daily +mrs +walls +piano +##ko +heat +cannot +##ate +earned +products +drama +era +authority +seasons +join +grade +##io +sign +difficult +machine +1963 +territory +mainly +##wood +stations +squadron +1962 +stepped +iron +19th +##led +serve +appear +sky +speak +broken +charge +knowledge +kilometres +removed +ships +article +campus +simple +##ty +pushed +britain +##ve +leaves +recently +cd +soft +boston +latter +easy +acquired +poland +##sa +quality +officers +presence +planned +nations +mass +broadcast +jean +share +image +influence +wild +offer +emperor +electric +reading +headed +ability +promoted +yellow +ministry +1942 +throat +smaller +politician +##by +latin +spoke +cars +williams +males +lack +pop +80 +##ier +acting +seeing +consists +##ti +estate +1961 +pressure +johnson +newspaper +jr +chris +olympics +online +conditions +beat +elements +walking +vote +##field +needs +carolina +text +featuring +global +block +shirt +levels +francisco +purpose +females +et +dutch +duke +ahead +gas +twice +safety +serious +turning +highly +lieutenant +firm +maria +amount +mixed +daniel +proposed +perfect +agreement +affairs +3rd +seconds +contemporary +paid +1943 +prison +save +kitchen +label +administrative +intended +constructed +academic +nice +teacher +races +1956 +formerly +corporation +ben +nation +issued +shut +1958 +drums +housing +victoria +seems +opera +1959 +graduated +function +von +mentioned +picked +build +recognized +shortly +protection +picture +notable +exchange +elections +1980s +loved +percent +racing +fish +elizabeth +garden +volume +hockey +1941 +beside +settled +##ford +1940 +competed +replied +drew +1948 +actress +marine +scotland +steel +glanced +farm +steve +1957 +risk +tonight +positive +magic +singles +effects +gray +screen +dog +##ja +residents +bus +sides +none +secondary +literature +polish +destroyed +flying +founder +households +1939 +lay +reserve +usa +gallery +##ler +1946 +industrial +younger +approach +appearances +urban +ones +1950 +finish +avenue +powerful +fully +growth +page +honor +jersey +projects +advanced +revealed +basic +90 +infantry +pair +equipment +visit +33 +evening +search +grant +effort +solo +treatment +buried +republican +primarily +bottom +owner +1970s +israel +gives +jim +dream +bob +remain +spot +70 +notes +produce +champions +contact +ed +soul +accepted +ways +del +##ally +losing +split +price +capacity +basis +trial +questions +##ina +1955 +20th +guess +officially +memorial +naval +initial +##ization +whispered +median +engineer +##ful +sydney +##go +columbia +strength +300 +1952 +tears +senate +00 +card +asian +agent +1947 +software +44 +draw +warm +supposed +com +pro +##il +transferred +leaned +##at +candidate +escape +mountains +asia +potential +activity +entertainment +seem +traffic +jackson +murder +36 +slow +product +orchestra +haven +agency +bbc +taught +website +comedy +unable +storm +planning +albums +rugby +environment +scientific +grabbed +protect +##hi +boat +typically +1954 +1953 +damage +principal +divided +dedicated +mount +ohio +##berg +pick +fought +driver +##der +empty +shoulders +sort +thank +berlin +prominent +account +freedom +necessary +efforts +alex +headquarters +follows +alongside +des +simon +andrew +suggested +operating +learning +steps +1949 +sweet +technical +begin +easily +34 +teeth +speaking +settlement +scale +##sh +renamed +ray +max +enemy +semi +joint +compared +##rd +scottish +leadership +analysis +offers +georgia +pieces +captured +animal +deputy +guest +organized +##lin +tony +combined +method +challenge +1960s +huge +wants +battalion +sons +rise +crime +types +facilities +telling +path +1951 +platform +sit +1990s +##lo +tells +assigned +rich +pull +##ot +commonly +alive +##za +letters +concept +conducted +wearing +happen +bought +becomes +holy +gets +ocean +defeat +languages +purchased +coffee +occurred +titled +##q +declared +applied +sciences +concert +sounds +jazz +brain +##me +painting +fleet +tax +nick +##ius +michigan +count +animals +leaders +episodes +##line +content +##den +birth +##it +clubs +64 +palace +critical +refused +fair +leg +laughed +returning +surrounding +participated +formation +lifted +pointed +connected +rome +medicine +laid +taylor +santa +powers +adam +tall +shared +focused +knowing +yards +entrance +falls +##wa +calling +##ad +sources +chosen +beneath +resources +yard +##ite +nominated +silence +zone +defined +##que +gained +thirty +38 +bodies +moon +##ard +adopted +christmas +widely +register +apart +iran +premier +serves +du +unknown +parties +##les +generation +##ff +continues +quick +fields +brigade +quiet +teaching +clothes +impact +weapons +partner +flat +theater +supreme +1938 +37 +relations +##tor +plants +suffered +1936 +wilson +kids +begins +##age +1918 +seats +armed +internet +models +worth +laws +400 +communities +classes +background +knows +thanks +quarter +reaching +humans +carry +killing +format +kong +hong +setting +75 +architecture +disease +railroad +inc +possibly +wish +arthur +thoughts +harry +doors +density +##di +crowd +illinois +stomach +tone +unique +reports +anyway +##ir +liberal +der +vehicle +thick +dry +drug +faced +largely +facility +theme +holds +creation +strange +colonel +##mi +revolution +bell +politics +turns +silent +rail +relief +independence +combat +shape +write +determined +sales +learned +4th +finger +oxford +providing +1937 +heritage +fiction +situated +designated +allowing +distribution +hosted +##est +sight +interview +estimated +reduced +##ria +toronto +footballer +keeping +guys +damn +claim +motion +sport +sixth +stayed +##ze +en +rear +receive +handed +twelve +dress +audience +granted +brazil +##well +spirit +##ated +noticed +etc +olympic +representative +eric +tight +trouble +reviews +drink +vampire +missing +roles +ranked +newly +household +finals +wave +critics +##ee +phase +massachusetts +pilot +unlike +philadelphia +bright +guns +crown +organizations +roof +42 +respectively +clearly +tongue +marked +circle +fox +korea +bronze +brian +expanded +sexual +supply +yourself +inspired +labour +fc +##ah +reference +vision +draft +connection +brand +reasons +1935 +classic +driving +trip +jesus +cells +entry +1920 +neither +trail +claims +atlantic +orders +labor +nose +afraid +identified +intelligence +calls +cancer +attacked +passing +stephen +positions +imperial +grey +jason +39 +sunday +48 +swedish +avoid +extra +uncle +message +covers +allows +surprise +materials +fame +hunter +##ji +1930 +citizens +figures +davis +environmental +confirmed +shit +titles +di +performing +difference +acts +attacks +##ov +existing +votes +opportunity +nor +shop +entirely +trains +opposite +pakistan +##pa +develop +resulted +representatives +actions +reality +pressed +##ish +barely +wine +conversation +faculty +northwest +ends +documentary +nuclear +stock +grace +sets +eat +alternative +##ps +bag +resulting +creating +surprised +cemetery +1919 +drop +finding +sarah +cricket +streets +tradition +ride +1933 +exhibition +target +ear +explained +rain +composer +injury +apartment +municipal +educational +occupied +netherlands +clean +billion +constitution +learn +1914 +maximum +classical +francis +lose +opposition +jose +ontario +bear +core +hills +rolled +ending +drawn +permanent +fun +##tes +##lla +lewis +sites +chamber +ryan +##way +scoring +height +1934 +##house +lyrics +staring +55 +officials +1917 +snow +oldest +##tic +orange +##ger +qualified +interior +apparently +succeeded +thousand +dinner +lights +existence +fans +heavily +41 +greatest +conservative +send +bowl +plus +enter +catch +##un +economy +duty +1929 +speech +authorities +princess +performances +versions +shall +graduate +pictures +effective +remembered +poetry +desk +crossed +starring +starts +passenger +sharp +##ant +acres +ass +weather +falling +rank +fund +supporting +check +adult +publishing +heads +cm +southeast +lane +##burg +application +bc +##ura +les +condition +transfer +prevent +display +ex +regions +earl +federation +cool +relatively +answered +besides +1928 +obtained +portion +##town +mix +##ding +reaction +liked +dean +express +peak +1932 +##tte +counter +religion +chain +rare +miller +convention +aid +lie +vehicles +mobile +perform +squad +wonder +lying +crazy +sword +##ping +attempted +centuries +weren +philosophy +category +##ize +anna +interested +47 +sweden +wolf +frequently +abandoned +kg +literary +alliance +task +entitled +##ay +threw +promotion +factory +tiny +soccer +visited +matt +fm +achieved +52 +defence +internal +persian +43 +methods +##ging +arrested +otherwise +cambridge +programming +villages +elementary +districts +rooms +criminal +conflict +worry +trained +1931 +attempts +waited +signal +bird +truck +subsequent +programme +##ol +ad +49 +communist +details +faith +sector +patrick +carrying +laugh +##ss +controlled +korean +showing +origin +fuel +evil +1927 +##ent +brief +identity +darkness +address +pool +missed +publication +web +planet +ian +anne +wings +invited +##tt +briefly +standards +kissed +##be +ideas +climate +causing +walter +worse +albert +articles +winners +desire +aged +northeast +dangerous +gate +doubt +1922 +wooden +multi +##ky +poet +rising +funding +46 +communications +communication +violence +copies +prepared +ford +investigation +skills +1924 +pulling +electronic +##ak +##ial +##han +containing +ultimately +offices +singing +understanding +restaurant +tomorrow +fashion +christ +ward +da +pope +stands +5th +flow +studios +aired +commissioned +contained +exist +fresh +americans +##per +wrestling +approved +kid +employed +respect +suit +1925 +angel +asking +increasing +frame +angry +selling +1950s +thin +finds +##nd +temperature +statement +ali +explain +inhabitants +towns +extensive +narrow +51 +jane +flowers +images +promise +somewhere +object +fly +closely +##ls +1912 +bureau +cape +1926 +weekly +presidential +legislative +1921 +##ai +##au +launch +founding +##ny +978 +##ring +artillery +strike +un +institutions +roll +writers +landing +chose +kevin +anymore +pp +##ut +attorney +fit +dan +billboard +receiving +agricultural +breaking +sought +dave +admitted +lands +mexican +##bury +charlie +specifically +hole +iv +howard +credit +moscow +roads +accident +1923 +proved +wear +struck +hey +guards +stuff +slid +expansion +1915 +cat +anthony +##kin +melbourne +opposed +sub +southwest +architect +failure +plane +1916 +##ron +map +camera +tank +listen +regarding +wet +introduction +metropolitan +link +ep +fighter +inch +grown +gene +anger +fixed +buy +dvd +khan +domestic +worldwide +chapel +mill +functions +examples +##head +developing +1910 +turkey +hits +pocket +antonio +papers +grow +unless +circuit +18th +concerned +attached +journalist +selection +journey +converted +provincial +painted +hearing +aren +bands +negative +aside +wondered +knight +lap +survey +ma +##ow +noise +billy +##ium +shooting +guide +bedroom +priest +resistance +motor +homes +sounded +giant +##mer +150 +scenes +equal +comic +patients +hidden +solid +actual +bringing +afternoon +touched +funds +wedding +consisted +marie +canal +sr +kim +treaty +turkish +recognition +residence +cathedral +broad +knees +incident +shaped +fired +norwegian +handle +cheek +contest +represent +##pe +representing +beauty +##sen +birds +advantage +emergency +wrapped +drawing +notice +pink +broadcasting +##ong +somehow +bachelor +seventh +collected +registered +establishment +alan +assumed +chemical +personnel +roger +retirement +jeff +portuguese +wore +tied +device +threat +progress +advance +##ised +banks +hired +manchester +nfl +teachers +structures +forever +##bo +tennis +helping +saturday +sale +applications +junction +hip +incorporated +neighborhood +dressed +ceremony +##ds +influenced +hers +visual +stairs +decades +inner +kansas +hung +hoped +gain +scheduled +downtown +engaged +austria +clock +norway +certainly +pale +protected +1913 +victor +employees +plate +putting +surrounded +##ists +finishing +blues +tropical +##ries +minnesota +consider +philippines +accept +54 +retrieved +1900 +concern +anderson +properties +institution +gordon +successfully +vietnam +##dy +backing +outstanding +muslim +crossing +folk +producing +usual +demand +occurs +observed +lawyer +educated +##ana +kelly +string +pleasure +budget +items +quietly +colorado +philip +typical +##worth +derived +600 +survived +asks +mental +##ide +56 +jake +jews +distinguished +ltd +1911 +sri +extremely +53 +athletic +loud +thousands +worried +shadow +transportation +horses +weapon +arena +importance +users +tim +objects +contributed +dragon +douglas +aware +senator +johnny +jordan +sisters +engines +flag +investment +samuel +shock +capable +clark +row +wheel +refers +session +familiar +biggest +wins +hate +maintained +drove +hamilton +request +expressed +injured +underground +churches +walker +wars +tunnel +passes +stupid +agriculture +softly +cabinet +regarded +joining +indiana +##ea +##ms +push +dates +spend +behavior +woods +protein +gently +chase +morgan +mention +burning +wake +combination +occur +mirror +leads +jimmy +indeed +impossible +singapore +paintings +covering +##nes +soldier +locations +attendance +sell +historian +wisconsin +invasion +argued +painter +diego +changing +egypt +##don +experienced +inches +##ku +missouri +vol +grounds +spoken +switzerland +##gan +reform +rolling +ha +forget +massive +resigned +burned +allen +tennessee +locked +values +improved +##mo +wounded +universe +sick +dating +facing +pack +purchase +user +##pur +moments +##ul +merged +anniversary +1908 +coal +brick +understood +causes +dynasty +queensland +establish +stores +crisis +promote +hoping +views +cards +referee +extension +##si +raise +arizona +improve +colonial +formal +charged +##rt +palm +lucky +hide +rescue +faces +95 +feelings +candidates +juan +##ell +goods +6th +courses +weekend +59 +luke +cash +fallen +##om +delivered +affected +installed +carefully +tries +swiss +hollywood +costs +lincoln +responsibility +##he +shore +file +proper +normally +maryland +assistance +jump +constant +offering +friendly +waters +persons +realize +contain +trophy +800 +partnership +factor +58 +musicians +cry +bound +oregon +indicated +hero +houston +medium +##ure +consisting +somewhat +##ara +57 +cycle +##che +beer +moore +frederick +gotten +eleven +worst +weak +approached +arranged +chin +loan +universal +bond +fifteen +pattern +disappeared +##ney +translated +##zed +lip +arab +capture +interests +insurance +##chi +shifted +cave +prix +warning +sections +courts +coat +plot +smell +feed +golf +favorite +maintain +knife +vs +voted +degrees +finance +quebec +opinion +translation +manner +ruled +operate +productions +choose +musician +discovery +confused +tired +separated +stream +techniques +committed +attend +ranking +kings +throw +passengers +measure +horror +fan +mining +sand +danger +salt +calm +decade +dam +require +runner +##ik +rush +associate +greece +##ker +rivers +consecutive +matthew +##ski +sighed +sq +documents +steam +edited +closing +tie +accused +1905 +##ini +islamic +distributed +directors +organisation +bruce +7th +breathing +mad +lit +arrival +concrete +taste +08 +composition +shaking +faster +amateur +adjacent +stating +1906 +twin +flew +##ran +tokyo +publications +##tone +obviously +ridge +storage +1907 +carl +pages +concluded +desert +driven +universities +ages +terminal +sequence +borough +250 +constituency +creative +cousin +economics +dreams +margaret +notably +reduce +montreal +mode +17th +ears +saved +jan +vocal +##ica +1909 +andy +##jo +riding +roughly +threatened +##ise +meters +meanwhile +landed +compete +repeated +grass +czech +regularly +charges +tea +sudden +appeal +##ung +solution +describes +pierre +classification +glad +parking +##ning +belt +physics +99 +rachel +add +hungarian +participate +expedition +damaged +gift +childhood +85 +fifty +##red +mathematics +jumped +letting +defensive +mph +##ux +##gh +testing +##hip +hundreds +shoot +owners +matters +smoke +israeli +kentucky +dancing +mounted +grandfather +emma +designs +profit +argentina +##gs +truly +li +lawrence +cole +begun +detroit +willing +branches +smiling +decide +miami +enjoyed +recordings +##dale +poverty +ethnic +gay +##bi +gary +arabic +09 +accompanied +##one +##ons +fishing +determine +residential +acid +##ary +alice +returns +starred +mail +##ang +jonathan +strategy +##ue +net +forty +cook +businesses +equivalent +commonwealth +distinct +ill +##cy +seriously +##ors +##ped +shift +harris +replace +rio +imagine +formula +ensure +##ber +additionally +scheme +conservation +occasionally +purposes +feels +favor +##and +##ore +1930s +contrast +hanging +hunt +movies +1904 +instruments +victims +danish +christopher +busy +demon +sugar +earliest +colony +studying +balance +duties +##ks +belgium +slipped +carter +05 +visible +stages +iraq +fifa +##im +commune +forming +zero +07 +continuing +talked +counties +legend +bathroom +option +tail +clay +daughters +afterwards +severe +jaw +visitors +##ded +devices +aviation +russell +kate +##vi +entering +subjects +##ino +temporary +swimming +forth +smooth +ghost +audio +bush +operates +rocks +movements +signs +eddie +##tz +ann +voices +honorary +06 +memories +dallas +pure +measures +racial +promised +66 +harvard +ceo +16th +parliamentary +indicate +benefit +flesh +dublin +louisiana +1902 +1901 +patient +sleeping +1903 +membership +coastal +medieval +wanting +element +scholars +rice +62 +limit +survive +makeup +rating +definitely +collaboration +obvious +##tan +boss +ms +baron +birthday +linked +soil +diocese +##lan +ncaa +##mann +offensive +shell +shouldn +waist +##tus +plain +ross +organ +resolution +manufacturing +adding +relative +kennedy +98 +whilst +moth +marketing +gardens +crash +72 +heading +partners +credited +carlos +moves +cable +##zi +marshall +##out +depending +bottle +represents +rejected +responded +existed +04 +jobs +denmark +lock +##ating +treated +graham +routes +talent +commissioner +drugs +secure +tests +reign +restored +photography +##gi +contributions +oklahoma +designer +disc +grin +seattle +robin +paused +atlanta +unusual +##gate +praised +las +laughing +satellite +hungary +visiting +##sky +interesting +factors +deck +poems +norman +##water +stuck +speaker +rifle +domain +premiered +##her +dc +comics +actors +01 +reputation +eliminated +8th +ceiling +prisoners +script +##nce +leather +austin +mississippi +rapidly +admiral +parallel +charlotte +guilty +tools +gender +divisions +fruit +##bs +laboratory +nelson +fantasy +marry +rapid +aunt +tribe +requirements +aspects +suicide +amongst +adams +bone +ukraine +abc +kick +sees +edinburgh +clothing +column +rough +gods +hunting +broadway +gathered +concerns +##ek +spending +ty +12th +snapped +requires +solar +bones +cavalry +##tta +iowa +drinking +waste +index +franklin +charity +thompson +stewart +tip +flash +landscape +friday +enjoy +singh +poem +listening +##back +eighth +fred +differences +adapted +bomb +ukrainian +surgery +corporate +masters +anywhere +##more +waves +odd +sean +portugal +orleans +dick +debate +kent +eating +puerto +cleared +96 +expect +cinema +97 +guitarist +blocks +electrical +agree +involving +depth +dying +panel +struggle +##ged +peninsula +adults +novels +emerged +vienna +metro +debuted +shoes +tamil +songwriter +meets +prove +beating +instance +heaven +scared +sending +marks +artistic +passage +superior +03 +significantly +shopping +##tive +retained +##izing +malaysia +technique +cheeks +##ola +warren +maintenance +destroy +extreme +allied +120 +appearing +##yn +fill +advice +alabama +qualifying +policies +cleveland +hat +battery +smart +authors +10th +soundtrack +acted +dated +lb +glance +equipped +coalition +funny +outer +ambassador +roy +possibility +couples +campbell +dna +loose +ethan +supplies +1898 +gonna +88 +monster +##res +shake +agents +frequency +springs +dogs +practices +61 +gang +plastic +easier +suggests +gulf +blade +exposed +colors +industries +markets +pan +nervous +electoral +charts +legislation +ownership +##idae +mac +appointment +shield +copy +assault +socialist +abbey +monument +license +throne +employment +jay +93 +replacement +charter +cloud +powered +suffering +accounts +oak +connecticut +strongly +wright +colour +crystal +13th +context +welsh +networks +voiced +gabriel +jerry +##cing +forehead +mp +##ens +manage +schedule +totally +remix +##ii +forests +occupation +print +nicholas +brazilian +strategic +vampires +engineers +76 +roots +seek +correct +instrumental +und +alfred +backed +hop +##des +stanley +robinson +traveled +wayne +welcome +austrian +achieve +67 +exit +rates +1899 +strip +whereas +##cs +sing +deeply +adventure +bobby +rick +jamie +careful +components +cap +useful +personality +knee +##shi +pushing +hosts +02 +protest +ca +ottoman +symphony +##sis +63 +boundary +1890 +processes +considering +considerable +tons +##work +##ft +##nia +cooper +trading +dear +conduct +91 +illegal +apple +revolutionary +holiday +definition +harder +##van +jacob +circumstances +destruction +##lle +popularity +grip +classified +liverpool +donald +baltimore +flows +seeking +honour +approval +92 +mechanical +till +happening +statue +critic +increasingly +immediate +describe +commerce +stare +##ster +indonesia +meat +rounds +boats +baker +orthodox +depression +formally +worn +naked +claire +muttered +sentence +11th +emily +document +77 +criticism +wished +vessel +spiritual +bent +virgin +parker +minimum +murray +lunch +danny +printed +compilation +keyboards +false +blow +belonged +68 +raising +78 +cutting +##board +pittsburgh +##up +9th +shadows +81 +hated +indigenous +jon +15th +barry +scholar +ah +##zer +oliver +##gy +stick +susan +meetings +attracted +spell +romantic +##ver +ye +1895 +photo +demanded +customers +##ac +1896 +logan +revival +keys +modified +commanded +jeans +##ious +upset +raw +phil +detective +hiding +resident +vincent +##bly +experiences +diamond +defeating +coverage +lucas +external +parks +franchise +helen +bible +successor +percussion +celebrated +il +lift +profile +clan +romania +##ied +mills +##su +nobody +achievement +shrugged +fault +1897 +rhythm +initiative +breakfast +carbon +700 +69 +lasted +violent +74 +wound +ken +killer +gradually +filmed +°c +dollars +processing +94 +remove +criticized +guests +sang +chemistry +##vin +legislature +disney +##bridge +uniform +escaped +integrated +proposal +purple +denied +liquid +karl +influential +morris +nights +stones +intense +experimental +twisted +71 +84 +##ld +pace +nazi +mitchell +ny +blind +reporter +newspapers +14th +centers +burn +basin +forgotten +surviving +filed +collections +monastery +losses +manual +couch +description +appropriate +merely +tag +missions +sebastian +restoration +replacing +triple +73 +elder +julia +warriors +benjamin +julian +convinced +stronger +amazing +declined +versus +merchant +happens +output +finland +bare +barbara +absence +ignored +dawn +injuries +##port +producers +##ram +82 +luis +##ities +kw +admit +expensive +electricity +nba +exception +symbol +##ving +ladies +shower +sheriff +characteristics +##je +aimed +button +ratio +effectively +summit +angle +jury +bears +foster +vessels +pants +executed +evans +dozen +advertising +kicked +patrol +1889 +competitions +lifetime +principles +athletics +##logy +birmingham +sponsored +89 +rob +nomination +1893 +acoustic +##sm +creature +longest +##tra +credits +harbor +dust +josh +##so +territories +milk +infrastructure +completion +thailand +indians +leon +archbishop +##sy +assist +pitch +blake +arrangement +girlfriend +serbian +operational +hence +sad +scent +fur +dj +sessions +hp +refer +rarely +##ora +exists +1892 +##ten +scientists +dirty +penalty +burst +portrait +seed +79 +pole +limits +rival +1894 +stable +alpha +grave +constitutional +alcohol +arrest +flower +mystery +devil +architectural +relationships +greatly +habitat +##istic +larry +progressive +remote +cotton +##ics +##ok +preserved +reaches +##ming +cited +86 +vast +scholarship +decisions +cbs +joy +teach +1885 +editions +knocked +eve +searching +partly +participation +gap +animated +fate +excellent +##ett +na +87 +alternate +saints +youngest +##ily +climbed +##ita +##tors +suggest +##ct +discussion +staying +choir +lakes +jacket +revenue +nevertheless +peaked +instrument +wondering +annually +managing +neil +1891 +signing +terry +##ice +apply +clinical +brooklyn +aim +catherine +fuck +farmers +figured +ninth +pride +hugh +evolution +ordinary +involvement +comfortable +shouted +tech +encouraged +taiwan +representation +sharing +##lia +##em +panic +exact +cargo +competing +fat +cried +83 +1920s +occasions +pa +cabin +borders +utah +marcus +##isation +badly +muscles +##ance +victorian +transition +warner +bet +permission +##rin +slave +terrible +similarly +shares +seth +uefa +possession +medals +benefits +colleges +lowered +perfectly +mall +transit +##ye +##kar +publisher +##ened +harrison +deaths +elevation +##ae +asleep +machines +sigh +ash +hardly +argument +occasion +parent +leo +decline +1888 +contribution +##ua +concentration +1000 +opportunities +hispanic +guardian +extent +emotions +hips +mason +volumes +bloody +controversy +diameter +steady +mistake +phoenix +identify +violin +##sk +departure +richmond +spin +funeral +enemies +1864 +gear +literally +connor +random +sergeant +grab +confusion +1865 +transmission +informed +op +leaning +sacred +suspended +thinks +gates +portland +luck +agencies +yours +hull +expert +muscle +layer +practical +sculpture +jerusalem +latest +lloyd +statistics +deeper +recommended +warrior +arkansas +mess +supports +greg +eagle +1880 +recovered +rated +concerts +rushed +##ano +stops +eggs +files +premiere +keith +##vo +delhi +turner +pit +affair +belief +paint +##zing +mate +##ach +##ev +victim +##ology +withdrew +bonus +styles +fled +##ud +glasgow +technologies +funded +nbc +adaptation +##ata +portrayed +cooperation +supporters +judges +bernard +justin +hallway +ralph +##ick +graduating +controversial +distant +continental +spider +bite +##ho +recognize +intention +mixing +##ese +egyptian +bow +tourism +suppose +claiming +tiger +dominated +participants +vi +##ru +nurse +partially +tape +##rum +psychology +##rn +essential +touring +duo +voting +civilian +emotional +channels +##king +apparent +hebrew +1887 +tommy +carrier +intersection +beast +hudson +##gar +##zo +lab +nova +bench +discuss +costa +##ered +detailed +behalf +drivers +unfortunately +obtain +##lis +rocky +##dae +siege +friendship +honey +##rian +1861 +amy +hang +posted +governments +collins +respond +wildlife +preferred +operator +##po +laura +pregnant +videos +dennis +suspected +boots +instantly +weird +automatic +businessman +alleged +placing +throwing +ph +mood +1862 +perry +venue +jet +remainder +##lli +##ci +passion +biological +boyfriend +1863 +dirt +buffalo +ron +segment +fa +abuse +##era +genre +thrown +stroke +colored +stress +exercise +displayed +##gen +struggled +##tti +abroad +dramatic +wonderful +thereafter +madrid +component +widespread +##sed +tale +citizen +todd +monday +1886 +vancouver +overseas +forcing +crying +descent +##ris +discussed +substantial +ranks +regime +1870 +provinces +switch +drum +zane +ted +tribes +proof +lp +cream +researchers +volunteer +manor +silk +milan +donated +allies +venture +principle +delivery +enterprise +##ves +##ans +bars +traditionally +witch +reminded +copper +##uk +pete +inter +links +colin +grinned +elsewhere +competitive +frequent +##oy +scream +##hu +tension +texts +submarine +finnish +defending +defend +pat +detail +1884 +affiliated +stuart +themes +villa +periods +tool +belgian +ruling +crimes +answers +folded +licensed +resort +demolished +hans +lucy +1881 +lion +traded +photographs +writes +craig +##fa +trials +generated +beth +noble +debt +percentage +yorkshire +erected +ss +viewed +grades +confidence +ceased +islam +telephone +retail +##ible +chile +m² +roberts +sixteen +##ich +commented +hampshire +innocent +dual +pounds +checked +regulations +afghanistan +sung +rico +liberty +assets +bigger +options +angels +relegated +tribute +wells +attending +leaf +##yan +butler +romanian +forum +monthly +lisa +patterns +gmina +##tory +madison +hurricane +rev +##ians +bristol +##ula +elite +valuable +disaster +democracy +awareness +germans +freyja +##ins +loop +absolutely +paying +populations +maine +sole +prayer +spencer +releases +doorway +bull +##ani +lover +midnight +conclusion +##sson +thirteen +lily +mediterranean +##lt +nhl +proud +sample +##hill +drummer +guinea +##ova +murphy +climb +##ston +instant +attributed +horn +ain +railways +steven +##ao +autumn +ferry +opponent +root +traveling +secured +corridor +stretched +tales +sheet +trinity +cattle +helps +indicates +manhattan +murdered +fitted +1882 +gentle +grandmother +mines +shocked +vegas +produces +##light +caribbean +##ou +belong +continuous +desperate +drunk +historically +trio +waved +raf +dealing +nathan +bat +murmured +interrupted +residing +scientist +pioneer +harold +aaron +##net +delta +attempting +minority +mini +believes +chorus +tend +lots +eyed +indoor +load +shots +updated +jail +##llo +concerning +connecting +wealth +##ved +slaves +arrive +rangers +sufficient +rebuilt +##wick +cardinal +flood +muhammad +whenever +relation +runners +moral +repair +viewers +arriving +revenge +punk +assisted +bath +fairly +breathe +lists +innings +illustrated +whisper +nearest +voters +clinton +ties +ultimate +screamed +beijing +lions +andre +fictional +gathering +comfort +radar +suitable +dismissed +hms +ban +pine +wrist +atmosphere +voivodeship +bid +timber +##ned +##nan +giants +##ane +cameron +recovery +uss +identical +categories +switched +serbia +laughter +noah +ensemble +therapy +peoples +touching +##off +locally +pearl +platforms +everywhere +ballet +tables +lanka +herbert +outdoor +toured +derek +1883 +spaces +contested +swept +1878 +exclusive +slight +connections +##dra +winds +prisoner +collective +bangladesh +tube +publicly +wealthy +thai +##ys +isolated +select +##ric +insisted +pen +fortune +ticket +spotted +reportedly +animation +enforcement +tanks +110 +decides +wider +lowest +owen +##time +nod +hitting +##hn +gregory +furthermore +magazines +fighters +solutions +##ery +pointing +requested +peru +reed +chancellor +knights +mask +worker +eldest +flames +reduction +1860 +volunteers +##tis +reporting +##hl +wire +advisory +endemic +origins +settlers +pursue +knock +consumer +1876 +eu +compound +creatures +mansion +sentenced +ivan +deployed +guitars +frowned +involves +mechanism +kilometers +perspective +shops +maps +terminus +duncan +alien +fist +bridges +##pers +heroes +fed +derby +swallowed +##ros +patent +sara +illness +characterized +adventures +slide +hawaii +jurisdiction +##op +organised +##side +adelaide +walks +biology +se +##ties +rogers +swing +tightly +boundaries +##rie +prepare +implementation +stolen +##sha +certified +colombia +edwards +garage +##mm +recalled +##ball +rage +harm +nigeria +breast +##ren +furniture +pupils +settle +##lus +cuba +balls +client +alaska +21st +linear +thrust +celebration +latino +genetic +terror +##cia +##ening +lightning +fee +witness +lodge +establishing +skull +##ique +earning +hood +##ei +rebellion +wang +sporting +warned +missile +devoted +activist +porch +worship +fourteen +package +1871 +decorated +##shire +housed +##ock +chess +sailed +doctors +oscar +joan +treat +garcia +harbour +jeremy +##ire +traditions +dominant +jacques +##gon +##wan +relocated +1879 +amendment +sized +companion +simultaneously +volleyball +spun +acre +increases +stopping +loves +belongs +affect +drafted +tossed +scout +battles +1875 +filming +shoved +munich +tenure +vertical +romance +pc +##cher +argue +##ical +craft +ranging +www +opens +honest +tyler +yesterday +virtual +##let +muslims +reveal +snake +immigrants +radical +screaming +speakers +firing +saving +belonging +ease +lighting +prefecture +blame +farmer +hungry +grows +rubbed +beam +sur +subsidiary +##cha +armenian +sao +dropping +conventional +##fer +microsoft +reply +qualify +spots +1867 +sweat +festivals +##ken +immigration +physician +discover +exposure +sandy +explanation +isaac +implemented +##fish +hart +initiated +connect +stakes +presents +heights +householder +pleased +tourist +regardless +slip +closest +##ction +surely +sultan +brings +riley +preparation +aboard +slammed +baptist +experiment +ongoing +interstate +organic +playoffs +##ika +1877 +130 +##tar +hindu +error +tours +tier +plenty +arrangements +talks +trapped +excited +sank +ho +athens +1872 +denver +welfare +suburb +athletes +trick +diverse +belly +exclusively +yelled +1868 +##med +conversion +##ette +1874 +internationally +computers +conductor +abilities +sensitive +hello +dispute +measured +globe +rocket +prices +amsterdam +flights +tigers +inn +municipalities +emotion +references +3d +##mus +explains +airlines +manufactured +pm +archaeological +1873 +interpretation +devon +comment +##ites +settlements +kissing +absolute +improvement +suite +impressed +barcelona +sullivan +jefferson +towers +jesse +julie +##tin +##lu +grandson +hi +gauge +regard +rings +interviews +trace +raymond +thumb +departments +burns +serial +bulgarian +scores +demonstrated +##ix +1866 +kyle +alberta +underneath +romanized +##ward +relieved +acquisition +phrase +cliff +reveals +han +cuts +merger +custom +##dar +nee +gilbert +graduation +##nts +assessment +cafe +difficulty +demands +swung +democrat +jennifer +commons +1940s +grove +##yo +completing +focuses +sum +substitute +bearing +stretch +reception +##py +reflected +essentially +destination +pairs +##ched +survival +resource +##bach +promoting +doubles +messages +tear +##down +##fully +parade +florence +harvey +incumbent +partial +framework +900 +pedro +frozen +procedure +olivia +controls +##mic +shelter +personally +temperatures +##od +brisbane +tested +sits +marble +comprehensive +oxygen +leonard +##kov +inaugural +iranian +referring +quarters +attitude +##ivity +mainstream +lined +mars +dakota +norfolk +unsuccessful +##° +explosion +helicopter +congressional +##sing +inspector +bitch +seal +departed +divine +##ters +coaching +examination +punishment +manufacturer +sink +columns +unincorporated +signals +nevada +squeezed +dylan +dining +photos +martial +manuel +eighteen +elevator +brushed +plates +ministers +ivy +congregation +##len +slept +specialized +taxes +curve +restricted +negotiations +likes +statistical +arnold +inspiration +execution +bold +intermediate +significance +margin +ruler +wheels +gothic +intellectual +dependent +listened +eligible +buses +widow +syria +earn +cincinnati +collapsed +recipient +secrets +accessible +philippine +maritime +goddess +clerk +surrender +breaks +playoff +database +##ified +##lon +ideal +beetle +aspect +soap +regulation +strings +expand +anglo +shorter +crosses +retreat +tough +coins +wallace +directions +pressing +##oon +shipping +locomotives +comparison +topics +nephew +##mes +distinction +honors +travelled +sierra +ibn +##over +fortress +sa +recognised +carved +1869 +clients +##dan +intent +##mar +coaches +describing +bread +##ington +beaten +northwestern +##ona +merit +youtube +collapse +challenges +em +historians +objective +submitted +virus +attacking +drake +assume +##ere +diseases +marc +stem +leeds +##cus +##ab +farming +glasses +##lock +visits +nowhere +fellowship +relevant +carries +restaurants +experiments +101 +constantly +bases +targets +shah +tenth +opponents +verse +territorial +##ira +writings +corruption +##hs +instruction +inherited +reverse +emphasis +##vic +employee +arch +keeps +rabbi +watson +payment +uh +##ala +nancy +##tre +venice +fastest +sexy +banned +adrian +properly +ruth +touchdown +dollar +boards +metre +circles +edges +favour +comments +ok +travels +liberation +scattered +firmly +##ular +holland +permitted +diesel +kenya +den +originated +##ral +demons +resumed +dragged +rider +##rus +servant +blinked +extend +torn +##ias +##sey +input +meal +everybody +cylinder +kinds +camps +##fe +bullet +logic +##wn +croatian +evolved +healthy +fool +chocolate +wise +preserve +pradesh +##ess +respective +1850 +##ew +chicken +artificial +gross +corresponding +convicted +cage +caroline +dialogue +##dor +narrative +stranger +mario +br +christianity +failing +trent +commanding +buddhist +1848 +maurice +focusing +yale +bike +altitude +##ering +mouse +revised +##sley +veteran +##ig +pulls +theology +crashed +campaigns +legion +##ability +drag +excellence +customer +cancelled +intensity +excuse +##lar +liga +participating +contributing +printing +##burn +variable +##rk +curious +bin +legacy +renaissance +##my +symptoms +binding +vocalist +dancer +##nie +grammar +gospel +democrats +ya +enters +sc +diplomatic +hitler +##ser +clouds +mathematical +quit +defended +oriented +##heim +fundamental +hardware +impressive +equally +convince +confederate +guilt +chuck +sliding +##ware +magnetic +narrowed +petersburg +bulgaria +otto +phd +skill +##ama +reader +hopes +pitcher +reservoir +hearts +automatically +expecting +mysterious +bennett +extensively +imagined +seeds +monitor +fix +##ative +journalism +struggling +signature +ranch +encounter +photographer +observation +protests +##pin +influences +##hr +calendar +##all +cruz +croatia +locomotive +hughes +naturally +shakespeare +basement +hook +uncredited +faded +theories +approaches +dare +phillips +filling +fury +obama +##ain +efficient +arc +deliver +min +raid +breeding +inducted +leagues +efficiency +axis +montana +eagles +##ked +supplied +instructions +karen +picking +indicating +trap +anchor +practically +christians +tomb +vary +occasional +electronics +lords +readers +newcastle +faint +innovation +collect +situations +engagement +160 +claude +mixture +##feld +peer +tissue +logo +lean +##ration +°f +floors +##ven +architects +reducing +##our +##ments +rope +1859 +ottawa +##har +samples +banking +declaration +proteins +resignation +francois +saudi +advocate +exhibited +armor +twins +divorce +##ras +abraham +reviewed +jo +temporarily +matrix +physically +pulse +curled +##ena +difficulties +bengal +usage +##ban +annie +riders +certificate +##pi +holes +warsaw +distinctive +jessica +##mon +mutual +1857 +customs +circular +eugene +removal +loaded +mere +vulnerable +depicted +generations +dame +heir +enormous +lightly +climbing +pitched +lessons +pilots +nepal +ram +google +preparing +brad +louise +renowned +##₂ +liam +##ably +plaza +shaw +sophie +brilliant +bills +##bar +##nik +fucking +mainland +server +pleasant +seized +veterans +jerked +fail +beta +brush +radiation +stored +warmth +southeastern +nate +sin +raced +berkeley +joke +athlete +designation +trunk +##low +roland +qualification +archives +heels +artwork +receives +judicial +reserves +##bed +woke +installation +abu +floating +fake +lesser +excitement +interface +concentrated +addressed +characteristic +amanda +saxophone +monk +auto +##bus +releasing +egg +dies +interaction +defender +ce +outbreak +glory +loving +##bert +sequel +consciousness +http +awake +ski +enrolled +##ress +handling +rookie +brow +somebody +biography +warfare +amounts +contracts +presentation +fabric +dissolved +challenged +meter +psychological +lt +elevated +rally +accurate +##tha +hospitals +undergraduate +specialist +venezuela +exhibit +shed +nursing +protestant +fluid +structural +footage +jared +consistent +prey +##ska +succession +reflect +exile +lebanon +wiped +suspect +shanghai +resting +integration +preservation +marvel +variant +pirates +sheep +rounded +capita +sailing +colonies +manuscript +deemed +variations +clarke +functional +emerging +boxing +relaxed +curse +azerbaijan +heavyweight +nickname +editorial +rang +grid +tightened +earthquake +flashed +miguel +rushing +##ches +improvements +boxes +brooks +180 +consumption +molecular +felix +societies +repeatedly +variation +aids +civic +graphics +professionals +realm +autonomous +receiver +delayed +workshop +militia +chairs +trump +canyon +##point +harsh +extending +lovely +happiness +##jan +stake +eyebrows +embassy +wellington +hannah +##ella +sony +corners +bishops +swear +cloth +contents +xi +namely +commenced +1854 +stanford +nashville +courage +graphic +commitment +garrison +##bin +hamlet +clearing +rebels +attraction +literacy +cooking +ruins +temples +jenny +humanity +celebrate +hasn +freight +sixty +rebel +bastard +##art +newton +##ada +deer +##ges +##ching +smiles +delaware +singers +##ets +approaching +assists +flame +##ph +boulevard +barrel +planted +##ome +pursuit +##sia +consequences +posts +shallow +invitation +rode +depot +ernest +kane +rod +concepts +preston +topic +chambers +striking +blast +arrives +descendants +montgomery +ranges +worlds +##lay +##ari +span +chaos +praise +##ag +fewer +1855 +sanctuary +mud +fbi +##ions +programmes +maintaining +unity +harper +bore +handsome +closure +tournaments +thunder +nebraska +linda +facade +puts +satisfied +argentine +dale +cork +dome +panama +##yl +1858 +tasks +experts +##ates +feeding +equation +##las +##ida +##tu +engage +bryan +##ax +um +quartet +melody +disbanded +sheffield +blocked +gasped +delay +kisses +maggie +connects +##non +sts +poured +creator +publishers +##we +guided +ellis +extinct +hug +gaining +##ord +complicated +##bility +poll +clenched +investigate +##use +thereby +quantum +spine +cdp +humor +kills +administered +semifinals +##du +encountered +ignore +##bu +commentary +##maker +bother +roosevelt +140 +plains +halfway +flowing +cultures +crack +imprisoned +neighboring +airline +##ses +##view +##mate +##ec +gather +wolves +marathon +transformed +##ill +cruise +organisations +carol +punch +exhibitions +numbered +alarm +ratings +daddy +silently +##stein +queens +colours +impression +guidance +liu +tactical +##rat +marshal +della +arrow +##ings +rested +feared +tender +owns +bitter +advisor +escort +##ides +spare +farms +grants +##ene +dragons +encourage +colleagues +cameras +##und +sucked +pile +spirits +prague +statements +suspension +landmark +fence +torture +recreation +bags +permanently +survivors +pond +spy +predecessor +bombing +coup +##og +protecting +transformation +glow +##lands +##book +dug +priests +andrea +feat +barn +jumping +##chen +##ologist +##con +casualties +stern +auckland +pipe +serie +revealing +ba +##bel +trevor +mercy +spectrum +yang +consist +governing +collaborated +possessed +epic +comprises +blew +shane +##ack +lopez +honored +magical +sacrifice +judgment +perceived +hammer +mtv +baronet +tune +das +missionary +sheets +350 +neutral +oral +threatening +attractive +shade +aims +seminary +##master +estates +1856 +michel +wounds +refugees +manufacturers +##nic +mercury +syndrome +porter +##iya +##din +hamburg +identification +upstairs +purse +widened +pause +cared +breathed +affiliate +santiago +prevented +celtic +fisher +125 +recruited +byzantine +reconstruction +farther +##mp +diet +sake +au +spite +sensation +##ert +blank +separation +105 +##hon +vladimir +armies +anime +##lie +accommodate +orbit +cult +sofia +archive +##ify +##box +founders +sustained +disorder +honours +northeastern +mia +crops +violet +threats +blanket +fires +canton +followers +southwestern +prototype +voyage +assignment +altered +moderate +protocol +pistol +##eo +questioned +brass +lifting +1852 +math +authored +##ual +doug +dimensional +dynamic +##san +1851 +pronounced +grateful +quest +uncomfortable +boom +presidency +stevens +relating +politicians +chen +barrier +quinn +diana +mosque +tribal +cheese +palmer +portions +sometime +chester +treasure +wu +bend +download +millions +reforms +registration +##osa +consequently +monitoring +ate +preliminary +brandon +invented +ps +eaten +exterior +intervention +ports +documented +log +displays +lecture +sally +favourite +##itz +vermont +lo +invisible +isle +breed +##ator +journalists +relay +speaks +backward +explore +midfielder +actively +stefan +procedures +cannon +blond +kenneth +centered +servants +chains +libraries +malcolm +essex +henri +slavery +##hal +facts +fairy +coached +cassie +cats +washed +cop +##fi +announcement +item +2000s +vinyl +activated +marco +frontier +growled +curriculum +##das +loyal +accomplished +leslie +ritual +kenny +##00 +vii +napoleon +hollow +hybrid +jungle +stationed +friedrich +counted +##ulated +platinum +theatrical +seated +col +rubber +glen +1840 +diversity +healing +extends +id +provisions +administrator +columbus +##oe +tributary +te +assured +org +##uous +prestigious +examined +lectures +grammy +ronald +associations +bailey +allan +essays +flute +believing +consultant +proceedings +travelling +1853 +kit +kerala +yugoslavia +buddy +methodist +##ith +burial +centres +batman +##nda +discontinued +bo +dock +stockholm +lungs +severely +##nk +citing +manga +##ugh +steal +mumbai +iraqi +robot +celebrity +bride +broadcasts +abolished +pot +joel +overhead +franz +packed +reconnaissance +johann +acknowledged +introduce +handled +doctorate +developments +drinks +alley +palestine +##nis +##aki +proceeded +recover +bradley +grain +patch +afford +infection +nationalist +legendary +##ath +interchange +virtually +gen +gravity +exploration +amber +vital +wishes +powell +doctrine +elbow +screenplay +##bird +contribute +indonesian +pet +creates +##com +enzyme +kylie +discipline +drops +manila +hunger +##ien +layers +suffer +fever +bits +monica +keyboard +manages +##hood +searched +appeals +##bad +testament +grande +reid +##war +beliefs +congo +##ification +##dia +si +requiring +##via +casey +1849 +regret +streak +rape +depends +syrian +sprint +pound +tourists +upcoming +pub +##xi +tense +##els +practiced +echo +nationwide +guild +motorcycle +liz +##zar +chiefs +desired +elena +bye +precious +absorbed +relatives +booth +pianist +##mal +citizenship +exhausted +wilhelm +##ceae +##hed +noting +quarterback +urge +hectares +##gue +ace +holly +##tal +blonde +davies +parked +sustainable +stepping +twentieth +airfield +galaxy +nest +chip +##nell +tan +shaft +paulo +requirement +##zy +paradise +tobacco +trans +renewed +vietnamese +##cker +##ju +suggesting +catching +holmes +enjoying +md +trips +colt +holder +butterfly +nerve +reformed +cherry +bowling +trailer +carriage +goodbye +appreciate +toy +joshua +interactive +enabled +involve +##kan +collar +determination +bunch +facebook +recall +shorts +superintendent +episcopal +frustration +giovanni +nineteenth +laser +privately +array +circulation +##ovic +armstrong +deals +painful +permit +discrimination +##wi +aires +retiring +cottage +ni +##sta +horizon +ellen +jamaica +ripped +fernando +chapters +playstation +patron +lecturer +navigation +behaviour +genes +georgian +export +solomon +rivals +swift +seventeen +rodriguez +princeton +independently +sox +1847 +arguing +entity +casting +hank +criteria +oakland +geographic +milwaukee +reflection +expanding +conquest +dubbed +##tv +halt +brave +brunswick +doi +arched +curtis +divorced +predominantly +somerset +streams +ugly +zoo +horrible +curved +buenos +fierce +dictionary +vector +theological +unions +handful +stability +chan +punjab +segments +##lly +altar +ignoring +gesture +monsters +pastor +##stone +thighs +unexpected +operators +abruptly +coin +compiled +associates +improving +migration +pin +##ose +compact +collegiate +reserved +##urs +quarterfinals +roster +restore +assembled +hurry +oval +##cies +1846 +flags +martha +##del +victories +sharply +##rated +argues +deadly +neo +drawings +symbols +performer +##iel +griffin +restrictions +editing +andrews +java +journals +arabia +compositions +dee +pierce +removing +hindi +casino +runway +civilians +minds +nasa +hotels +##zation +refuge +rent +retain +potentially +conferences +suburban +conducting +##tto +##tions +##tle +descended +massacre +##cal +ammunition +terrain +fork +souls +counts +chelsea +durham +drives +cab +##bank +perth +realizing +palestinian +finn +simpson +##dal +betty +##ule +moreover +particles +cardinals +tent +evaluation +extraordinary +##oid +inscription +##works +wednesday +chloe +maintains +panels +ashley +trucks +##nation +cluster +sunlight +strikes +zhang +##wing +dialect +canon +##ap +tucked +##ws +collecting +##mas +##can +##sville +maker +quoted +evan +franco +aria +buying +cleaning +eva +closet +provision +apollo +clinic +rat +##ez +necessarily +ac +##gle +##ising +venues +flipped +cent +spreading +trustees +checking +authorized +##sco +disappointed +##ado +notion +duration +trumpet +hesitated +topped +brussels +rolls +theoretical +hint +define +aggressive +repeat +wash +peaceful +optical +width +allegedly +mcdonald +strict +copyright +##illa +investors +mar +jam +witnesses +sounding +miranda +michelle +privacy +hugo +harmony +##pp +valid +lynn +glared +nina +102 +headquartered +diving +boarding +gibson +##ncy +albanian +marsh +routine +dealt +enhanced +er +intelligent +substance +targeted +enlisted +discovers +spinning +observations +pissed +smoking +rebecca +capitol +visa +varied +costume +seemingly +indies +compensation +surgeon +thursday +arsenal +westminster +suburbs +rid +anglican +##ridge +knots +foods +alumni +lighter +fraser +whoever +portal +scandal +##ray +gavin +advised +instructor +flooding +terrorist +##ale +teenage +interim +senses +duck +teen +thesis +abby +eager +overcome +##ile +newport +glenn +rises +shame +##cc +prompted +priority +forgot +bomber +nicolas +protective +360 +cartoon +katherine +breeze +lonely +trusted +henderson +richardson +relax +banner +candy +palms +remarkable +##rio +legends +cricketer +essay +ordained +edmund +rifles +trigger +##uri +##away +sail +alert +1830 +audiences +penn +sussex +siblings +pursued +indianapolis +resist +rosa +consequence +succeed +avoided +1845 +##ulation +inland +##tie +##nna +counsel +profession +chronicle +hurried +##una +eyebrow +eventual +bleeding +innovative +cure +##dom +committees +accounting +con +scope +hardy +heather +tenor +gut +herald +codes +tore +scales +wagon +##oo +luxury +tin +prefer +fountain +triangle +bonds +darling +convoy +dried +traced +beings +troy +accidentally +slam +findings +smelled +joey +lawyers +outcome +steep +bosnia +configuration +shifting +toll +brook +performers +lobby +philosophical +construct +shrine +aggregate +boot +cox +phenomenon +savage +insane +solely +reynolds +lifestyle +##ima +nationally +holdings +consideration +enable +edgar +mo +mama +##tein +fights +relegation +chances +atomic +hub +conjunction +awkward +reactions +currency +finale +kumar +underwent +steering +elaborate +gifts +comprising +melissa +veins +reasonable +sunshine +chi +solve +trails +inhabited +elimination +ethics +huh +ana +molly +consent +apartments +layout +marines +##ces +hunters +bulk +##oma +hometown +##wall +##mont +cracked +reads +neighbouring +withdrawn +admission +wingspan +damned +anthology +lancashire +brands +batting +forgive +cuban +awful +##lyn +104 +dimensions +imagination +##ade +dante +##ship +tracking +desperately +goalkeeper +##yne +groaned +workshops +confident +burton +gerald +milton +circus +uncertain +slope +copenhagen +sophia +fog +philosopher +portraits +accent +cycling +varying +gripped +larvae +garrett +specified +scotia +mature +luther +kurt +rap +##kes +aerial +750 +ferdinand +heated +es +transported +##shan +safely +nonetheless +##orn +##gal +motors +demanding +##sburg +startled +##brook +ally +generate +caps +ghana +stained +demo +mentions +beds +ap +afterward +diary +##bling +utility +##iro +richards +1837 +conspiracy +conscious +shining +footsteps +observer +cyprus +urged +loyalty +developer +probability +olive +upgraded +gym +miracle +insects +graves +1844 +ourselves +hydrogen +amazon +katie +tickets +poets +##pm +planes +##pan +prevention +witnessed +dense +jin +randy +tang +warehouse +monroe +bang +archived +elderly +investigations +alec +granite +mineral +conflicts +controlling +aboriginal +carlo +##zu +mechanics +stan +stark +rhode +skirt +est +##berry +bombs +respected +##horn +imposed +limestone +deny +nominee +memphis +grabbing +disabled +##als +amusement +aa +frankfurt +corn +referendum +varies +slowed +disk +firms +unconscious +incredible +clue +sue +##zhou +twist +##cio +joins +idaho +chad +developers +computing +destroyer +103 +mortal +tucker +kingston +choices +yu +carson +1800 +os +whitney +geneva +pretend +dimension +staged +plateau +maya +##une +freestyle +##bc +rovers +hiv +##ids +tristan +classroom +prospect +##hus +honestly +diploma +lied +thermal +auxiliary +feast +unlikely +iata +##tel +morocco +pounding +treasury +lithuania +considerably +1841 +dish +1812 +geological +matching +stumbled +destroying +marched +brien +advances +cake +nicole +belle +settling +measuring +directing +##mie +tuesday +bassist +capabilities +stunned +fraud +torpedo +##list +##phone +anton +wisdom +surveillance +ruined +##ulate +lawsuit +healthcare +theorem +halls +trend +aka +horizontal +dozens +acquire +lasting +swim +hawk +gorgeous +fees +vicinity +decrease +adoption +tactics +##ography +pakistani +##ole +draws +##hall +willie +burke +heath +algorithm +integral +powder +elliott +brigadier +jackie +tate +varieties +darker +##cho +lately +cigarette +specimens +adds +##ree +##ensis +##inger +exploded +finalist +cia +murders +wilderness +arguments +nicknamed +acceptance +onwards +manufacture +robertson +jets +tampa +enterprises +blog +loudly +composers +nominations +1838 +ai +malta +inquiry +automobile +hosting +viii +rays +tilted +grief +museums +strategies +furious +euro +equality +cohen +poison +surrey +wireless +governed +ridiculous +moses +##esh +##room +vanished +##ito +barnes +attract +morrison +istanbul +##iness +absent +rotation +petition +janet +##logical +satisfaction +custody +deliberately +observatory +comedian +surfaces +pinyin +novelist +strictly +canterbury +oslo +monks +embrace +ibm +jealous +photograph +continent +dorothy +marina +doc +excess +holden +allegations +explaining +stack +avoiding +lance +storyline +majesty +poorly +spike +dos +bradford +raven +travis +classics +proven +voltage +pillow +fists +butt +1842 +interpreted +##car +1839 +gage +telegraph +lens +promising +expelled +casual +collector +zones +##min +silly +nintendo +##kh +##bra +downstairs +chef +suspicious +afl +flies +vacant +uganda +pregnancy +condemned +lutheran +estimates +cheap +decree +saxon +proximity +stripped +idiot +deposits +contrary +presenter +magnus +glacier +im +offense +edwin +##ori +upright +##long +bolt +##ois +toss +geographical +##izes +environments +delicate +marking +abstract +xavier +nails +windsor +plantation +occurring +equity +saskatchewan +fears +drifted +sequences +vegetation +revolt +##stic +1843 +sooner +fusion +opposing +nato +skating +1836 +secretly +ruin +lease +##oc +edit +##nne +flora +anxiety +ruby +##ological +##mia +tel +bout +taxi +emmy +frost +rainbow +compounds +foundations +rainfall +assassination +nightmare +dominican +##win +achievements +deserve +orlando +intact +armenia +##nte +calgary +valentine +106 +marion +proclaimed +theodore +bells +courtyard +thigh +gonzalez +console +troop +minimal +monte +everyday +##ence +##if +supporter +terrorism +buck +openly +presbyterian +activists +carpet +##iers +rubbing +uprising +##yi +cute +conceived +legally +##cht +millennium +cello +velocity +ji +rescued +cardiff +1835 +rex +concentrate +senators +beard +rendered +glowing +battalions +scouts +competitors +sculptor +catalogue +arctic +ion +raja +bicycle +wow +glancing +lawn +##woman +gentleman +lighthouse +publish +predicted +calculated +##val +variants +##gne +strain +##ui +winston +deceased +##nus +touchdowns +brady +caleb +sinking +echoed +crush +hon +blessed +protagonist +hayes +endangered +magnitude +editors +##tine +estimate +responsibilities +##mel +backup +laying +consumed +sealed +zurich +lovers +frustrated +##eau +ahmed +kicking +mit +treasurer +1832 +biblical +refuse +terrified +pump +agrees +genuine +imprisonment +refuses +plymouth +##hen +lou +##nen +tara +trembling +antarctic +ton +learns +##tas +crap +crucial +faction +atop +##borough +wrap +lancaster +odds +hopkins +erik +lyon +##eon +bros +##ode +snap +locality +tips +empress +crowned +cal +acclaimed +chuckled +##ory +clara +sends +mild +towel +##fl +##day +##а +wishing +assuming +interviewed +##bal +##die +interactions +eden +cups +helena +##lf +indie +beck +##fire +batteries +filipino +wizard +parted +##lam +traces +##born +rows +idol +albany +delegates +##ees +##sar +discussions +##ex +notre +instructed +belgrade +highways +suggestion +lauren +possess +orientation +alexandria +abdul +beats +salary +reunion +ludwig +alright +wagner +intimate +pockets +slovenia +hugged +brighton +merchants +cruel +stole +trek +slopes +repairs +enrollment +politically +underlying +promotional +counting +boeing +##bb +isabella +naming +##и +keen +bacteria +listing +separately +belfast +ussr +450 +lithuanian +anybody +ribs +sphere +martinez +cock +embarrassed +proposals +fragments +nationals +##fs +##wski +premises +fin +1500 +alpine +matched +freely +bounded +jace +sleeve +##af +gaming +pier +populated +evident +##like +frances +flooded +##dle +frightened +pour +trainer +framed +visitor +challenging +pig +wickets +##fold +infected +email +##pes +arose +##aw +reward +ecuador +oblast +vale +ch +shuttle +##usa +bach +rankings +forbidden +cornwall +accordance +salem +consumers +bruno +fantastic +toes +machinery +resolved +julius +remembering +propaganda +iceland +bombardment +tide +contacts +wives +##rah +concerto +macdonald +albania +implement +daisy +tapped +sudan +helmet +angela +mistress +##lic +crop +sunk +finest +##craft +hostile +##ute +##tsu +boxer +fr +paths +adjusted +habit +ballot +supervision +soprano +##zen +bullets +wicked +sunset +regiments +disappear +lamp +performs +app +##gia +##oa +rabbit +digging +incidents +entries +##cion +dishes +##oi +introducing +##ati +##fied +freshman +slot +jill +tackles +baroque +backs +##iest +lone +sponsor +destiny +altogether +convert +##aro +consensus +shapes +demonstration +basically +feminist +auction +artifacts +##bing +strongest +twitter +halifax +2019 +allmusic +mighty +smallest +precise +alexandra +viola +##los +##ille +manuscripts +##illo +dancers +ari +managers +monuments +blades +barracks +springfield +maiden +consolidated +electron +##end +berry +airing +wheat +nobel +inclusion +blair +payments +geography +bee +cc +eleanor +react +##hurst +afc +manitoba +##yu +su +lineup +fitness +recreational +investments +airborne +disappointment +##dis +edmonton +viewing +##row +renovation +##cast +infant +bankruptcy +roses +aftermath +pavilion +##yer +carpenter +withdrawal +ladder +##hy +discussing +popped +reliable +agreements +rochester +##abad +curves +bombers +220 +rao +reverend +decreased +choosing +107 +stiff +consulting +naples +crawford +tracy +ka +ribbon +cops +##lee +crushed +deciding +unified +teenager +accepting +flagship +explorer +poles +sanchez +inspection +revived +skilled +induced +exchanged +flee +locals +tragedy +swallow +loading +hanna +demonstrate +##ela +salvador +flown +contestants +civilization +##ines +wanna +rhodes +fletcher +hector +knocking +considers +##ough +nash +mechanisms +sensed +mentally +walt +unclear +##eus +renovated +madame +##cks +crews +governmental +##hin +undertaken +monkey +##ben +##ato +fatal +armored +copa +caves +governance +grasp +perception +certification +froze +damp +tugged +wyoming +##rg +##ero +newman +##lor +nerves +curiosity +graph +115 +##ami +withdraw +tunnels +dull +meredith +moss +exhibits +neighbors +communicate +accuracy +explored +raiders +republicans +secular +kat +superman +penny +criticised +##tch +freed +update +conviction +wade +ham +likewise +delegation +gotta +doll +promises +technological +myth +nationality +resolve +convent +##mark +sharon +dig +sip +coordinator +entrepreneur +fold +##dine +capability +councillor +synonym +blown +swan +cursed +1815 +jonas +haired +sofa +canvas +keeper +rivalry +##hart +rapper +speedway +swords +postal +maxwell +estonia +potter +recurring +##nn +##ave +errors +##oni +cognitive +1834 +##² +claws +nadu +roberto +bce +wrestler +ellie +##ations +infinite +ink +##tia +presumably +finite +staircase +108 +noel +patricia +nacional +##cation +chill +eternal +tu +preventing +prussia +fossil +limbs +##logist +ernst +frog +perez +rene +##ace +pizza +prussian +##ios +##vy +molecules +regulatory +answering +opinions +sworn +lengths +supposedly +hypothesis +upward +habitats +seating +ancestors +drank +yield +hd +synthesis +researcher +modest +##var +mothers +peered +voluntary +homeland +##the +acclaim +##igan +static +valve +luxembourg +alto +carroll +fe +receptor +norton +ambulance +##tian +johnston +catholics +depicting +jointly +elephant +gloria +mentor +badge +ahmad +distinguish +remarked +councils +precisely +allison +advancing +detection +crowded +##10 +cooperative +ankle +mercedes +dagger +surrendered +pollution +commit +subway +jeffrey +lesson +sculptures +provider +##fication +membrane +timothy +rectangular +fiscal +heating +teammate +basket +particle +anonymous +deployment +##ple +missiles +courthouse +proportion +shoe +sec +##ller +complaints +forbes +blacks +abandon +remind +sizes +overwhelming +autobiography +natalie +##awa +risks +contestant +countryside +babies +scorer +invaded +enclosed +proceed +hurling +disorders +##cu +reflecting +continuously +cruiser +graduates +freeway +investigated +ore +deserved +maid +blocking +phillip +jorge +shakes +dove +mann +variables +lacked +burden +accompanying +que +consistently +organizing +provisional +complained +endless +##rm +tubes +juice +georges +krishna +mick +labels +thriller +##uch +laps +arcade +sage +snail +##table +shannon +fi +laurence +seoul +vacation +presenting +hire +churchill +surprisingly +prohibited +savannah +technically +##oli +170 +##lessly +testimony +suited +speeds +toys +romans +mlb +flowering +measurement +talented +kay +settings +charleston +expectations +shattered +achieving +triumph +ceremonies +portsmouth +lanes +mandatory +loser +stretching +cologne +realizes +seventy +cornell +careers +webb +##ulating +americas +budapest +ava +suspicion +##ison +yo +conrad +##hai +sterling +jessie +rector +##az +1831 +transform +organize +loans +christine +volcanic +warrant +slender +summers +subfamily +newer +danced +dynamics +rhine +proceeds +heinrich +gastropod +commands +sings +facilitate +easter +ra +positioned +responses +expense +fruits +yanked +imported +25th +velvet +vic +primitive +tribune +baldwin +neighbourhood +donna +rip +hay +pr +##uro +1814 +espn +welcomed +##aria +qualifier +glare +highland +timing +##cted +shells +eased +geometry +louder +exciting +slovakia +##sion +##iz +##lot +savings +prairie +##ques +marching +rafael +tonnes +##lled +curtain +preceding +shy +heal +greene +worthy +##pot +detachment +bury +sherman +##eck +reinforced +seeks +bottles +contracted +duchess +outfit +walsh +##sc +mickey +##ase +geoffrey +archer +squeeze +dawson +eliminate +invention +##enberg +neal +##eth +stance +dealer +coral +maple +retire +polo +simplified +##ht +1833 +hid +watts +backwards +jules +##oke +genesis +mt +frames +rebounds +burma +woodland +moist +santos +whispers +drained +subspecies +##aa +streaming +ulster +burnt +correspondence +maternal +gerard +denis +stealing +##load +genius +duchy +##oria +inaugurated +momentum +suits +placement +sovereign +clause +thames +##hara +confederation +reservation +sketch +yankees +lets +rotten +charm +hal +verses +ultra +commercially +dot +salon +citation +adopt +winnipeg +mist +allocated +cairo +##boy +jenkins +interference +objectives +##wind +1820 +portfolio +armoured +sectors +##eh +initiatives +##world +integrity +exercises +robe +tap +ab +gazed +##tones +distracted +rulers +111 +favorable +jerome +tended +cart +factories +##eri +diplomat +valued +gravel +charitable +##try +calvin +exploring +chang +shepherd +terrace +pdf +pupil +##ural +reflects +ups +##rch +governors +shelf +depths +##nberg +trailed +crest +tackle +##nian +##ats +hatred +##kai +clare +makers +ethiopia +longtime +detected +embedded +lacking +slapped +rely +thomson +anticipation +iso +morton +successive +agnes +screenwriter +straightened +philippe +playwright +haunted +licence +iris +intentions +sutton +112 +logical +correctly +##weight +branded +licked +tipped +silva +ricky +narrator +requests +##ents +greeted +supernatural +cow +##wald +lung +refusing +employer +strait +gaelic +liner +##piece +zoe +sabha +##mba +driveway +harvest +prints +bates +reluctantly +threshold +algebra +ira +wherever +coupled +240 +assumption +picks +##air +designers +raids +gentlemen +##ean +roller +blowing +leipzig +locks +screw +dressing +strand +##lings +scar +dwarf +depicts +##nu +nods +##mine +differ +boris +##eur +yuan +flip +##gie +mob +invested +questioning +applying +##ture +shout +##sel +gameplay +blamed +illustrations +bothered +weakness +rehabilitation +##of +##zes +envelope +rumors +miners +leicester +subtle +kerry +##ico +ferguson +##fu +premiership +ne +##cat +bengali +prof +catches +remnants +dana +##rily +shouting +presidents +baltic +ought +ghosts +dances +sailors +shirley +fancy +dominic +##bie +madonna +##rick +bark +buttons +gymnasium +ashes +liver +toby +oath +providence +doyle +evangelical +nixon +cement +carnegie +embarked +hatch +surroundings +guarantee +needing +pirate +essence +##bee +filter +crane +hammond +projected +immune +percy +twelfth +##ult +regent +doctoral +damon +mikhail +##ichi +lu +critically +elect +realised +abortion +acute +screening +mythology +steadily +##fc +frown +nottingham +kirk +wa +minneapolis +##rra +module +algeria +mc +nautical +encounters +surprising +statues +availability +shirts +pie +alma +brows +munster +mack +soup +crater +tornado +sanskrit +cedar +explosive +bordered +dixon +planets +stamp +exam +happily +##bble +carriers +kidnapped +##vis +accommodation +emigrated +##met +knockout +correspondent +violation +profits +peaks +lang +specimen +agenda +ancestry +pottery +spelling +equations +obtaining +ki +linking +1825 +debris +asylum +##20 +buddhism +teddy +##ants +gazette +##nger +##sse +dental +eligibility +utc +fathers +averaged +zimbabwe +francesco +coloured +hissed +translator +lynch +mandate +humanities +mackenzie +uniforms +lin +##iana +##gio +asset +mhz +fitting +samantha +genera +wei +rim +beloved +shark +riot +entities +expressions +indo +carmen +slipping +owing +abbot +neighbor +sidney +##av +rats +recommendations +encouraging +squadrons +anticipated +commanders +conquered +##oto +donations +diagnosed +##mond +divide +##iva +guessed +decoration +vernon +auditorium +revelation +conversations +##kers +##power +herzegovina +dash +alike +protested +lateral +herman +accredited +mg +##gent +freeman +mel +fiji +crow +crimson +##rine +livestock +##pped +humanitarian +bored +oz +whip +##lene +##ali +legitimate +alter +grinning +spelled +anxious +oriental +wesley +##nin +##hole +carnival +controller +detect +##ssa +bowed +educator +kosovo +macedonia +##sin +occupy +mastering +stephanie +janeiro +para +unaware +nurses +noon +135 +cam +hopefully +ranger +combine +sociology +polar +rica +##eer +neill +##sman +holocaust +##ip +doubled +lust +1828 +109 +decent +cooling +unveiled +##card +1829 +nsw +homer +chapman +meyer +##gin +dive +mae +reagan +expertise +##gled +darwin +brooke +sided +prosecution +investigating +comprised +petroleum +genres +reluctant +differently +trilogy +johns +vegetables +corpse +highlighted +lounge +pension +unsuccessfully +elegant +aided +ivory +beatles +amelia +cain +dubai +sunny +immigrant +babe +click +##nder +underwater +pepper +combining +mumbled +atlas +horns +accessed +ballad +physicians +homeless +gestured +rpm +freak +louisville +corporations +patriots +prizes +rational +warn +modes +decorative +overnight +din +troubled +phantom +##ort +monarch +sheer +##dorf +generals +guidelines +organs +addresses +##zon +enhance +curling +parishes +cord +##kie +linux +caesar +deutsche +bavaria +##bia +coleman +cyclone +##eria +bacon +petty +##yama +##old +hampton +diagnosis +1824 +throws +complexity +rita +disputed +##₃ +pablo +##sch +marketed +trafficking +##ulus +examine +plague +formats +##oh +vault +faithful +##bourne +webster +##ox +highlights +##ient +##ann +phones +vacuum +sandwich +modeling +##gated +bolivia +clergy +qualities +isabel +##nas +##ars +wears +screams +reunited +annoyed +bra +##ancy +##rate +differential +transmitter +tattoo +container +poker +##och +excessive +resides +cowboys +##tum +augustus +trash +providers +statute +retreated +balcony +reversed +void +storey +preceded +masses +leap +laughs +neighborhoods +wards +schemes +falcon +santo +battlefield +pad +ronnie +thread +lesbian +venus +##dian +beg +sandstone +daylight +punched +gwen +analog +stroked +wwe +acceptable +measurements +dec +toxic +##kel +adequate +surgical +economist +parameters +varsity +##sberg +quantity +ella +##chy +##rton +countess +generating +precision +diamonds +expressway +ga +##ı +1821 +uruguay +talents +galleries +expenses +scanned +colleague +outlets +ryder +lucien +##ila +paramount +##bon +syracuse +dim +fangs +gown +sweep +##sie +toyota +missionaries +websites +##nsis +sentences +adviser +val +trademark +spells +##plane +patience +starter +slim +##borg +toe +incredibly +shoots +elliot +nobility +##wyn +cowboy +endorsed +gardner +tendency +persuaded +organisms +emissions +kazakhstan +amused +boring +chips +themed +##hand +llc +constantinople +chasing +systematic +guatemala +borrowed +erin +carey +##hard +highlands +struggles +1810 +##ifying +##ced +wong +exceptions +develops +enlarged +kindergarten +castro +##ern +##rina +leigh +zombie +juvenile +##most +consul +##nar +sailor +hyde +clarence +intensive +pinned +nasty +useless +jung +clayton +stuffed +exceptional +ix +apostolic +230 +transactions +##dge +exempt +swinging +cove +religions +##ash +shields +dairy +bypass +190 +pursuing +bug +joyce +bombay +chassis +southampton +chat +interact +redesignated +##pen +nascar +pray +salmon +rigid +regained +malaysian +grim +publicity +constituted +capturing +toilet +delegate +purely +tray +drift +loosely +striker +weakened +trinidad +mitch +itv +defines +transmitted +ming +scarlet +nodding +fitzgerald +fu +narrowly +sp +tooth +standings +virtue +##₁ +##wara +##cting +chateau +gloves +lid +##nel +hurting +conservatory +##pel +sinclair +reopened +sympathy +nigerian +strode +advocated +optional +chronic +discharge +##rc +suck +compatible +laurel +stella +shi +fails +wage +dodge +128 +informal +sorts +levi +buddha +villagers +##aka +chronicles +heavier +summoned +gateway +3000 +eleventh +jewelry +translations +accordingly +seas +##ency +fiber +pyramid +cubic +dragging +##ista +caring +##ops +android +contacted +lunar +##dt +kai +lisbon +patted +1826 +sacramento +theft +madagascar +subtropical +disputes +ta +holidays +piper +willow +mare +cane +itunes +newfoundland +benny +companions +dong +raj +observe +roar +charming +plaque +tibetan +fossils +enacted +manning +bubble +tina +tanzania +##eda +##hir +funk +swamp +deputies +cloak +ufc +scenario +par +scratch +metals +anthem +guru +engaging +specially +##boat +dialects +nineteen +cecil +duet +disability +messenger +unofficial +##lies +defunct +eds +moonlight +drainage +surname +puzzle +honda +switching +conservatives +mammals +knox +broadcaster +sidewalk +cope +##ried +benson +princes +peterson +##sal +bedford +sharks +eli +wreck +alberto +gasp +archaeology +lgbt +teaches +securities +madness +compromise +waving +coordination +davidson +visions +leased +possibilities +eighty +jun +fernandez +enthusiasm +assassin +sponsorship +reviewer +kingdoms +estonian +laboratories +##fy +##nal +applies +verb +celebrations +##zzo +rowing +lightweight +sadness +submit +mvp +balanced +dude +##vas +explicitly +metric +magnificent +mound +brett +mohammad +mistakes +irregular +##hing +##ass +sanders +betrayed +shipped +surge +##enburg +reporters +termed +georg +pity +verbal +bulls +abbreviated +enabling +appealed +##are +##atic +sicily +sting +heel +sweetheart +bart +spacecraft +brutal +monarchy +##tter +aberdeen +cameo +diane +##ub +survivor +clyde +##aries +complaint +##makers +clarinet +delicious +chilean +karnataka +coordinates +1818 +panties +##rst +pretending +ar +dramatically +kiev +bella +tends +distances +113 +catalog +launching +instances +telecommunications +portable +lindsay +vatican +##eim +angles +aliens +marker +stint +screens +bolton +##rne +judy +wool +benedict +plasma +europa +spark +imaging +filmmaker +swiftly +##een +contributor +##nor +opted +stamps +apologize +financing +butter +gideon +sophisticated +alignment +avery +chemicals +yearly +speculation +prominence +professionally +##ils +immortal +institutional +inception +wrists +identifying +tribunal +derives +gains +##wo +papal +preference +linguistic +vince +operative +brewery +##ont +unemployment +boyd +##ured +##outs +albeit +prophet +1813 +bi +##rr +##face +##rad +quarterly +asteroid +cleaned +radius +temper +##llen +telugu +jerk +viscount +menu +##ote +glimpse +##aya +yacht +hawaiian +baden +##rl +laptop +readily +##gu +monetary +offshore +scots +watches +##yang +##arian +upgrade +needle +xbox +lea +encyclopedia +flank +fingertips +##pus +delight +teachings +confirm +roth +beaches +midway +winters +##iah +teasing +daytime +beverly +gambling +bonnie +##backs +regulated +clement +hermann +tricks +knot +##shing +##uring +##vre +detached +ecological +owed +specialty +byron +inventor +bats +stays +screened +unesco +midland +trim +affection +##ander +##rry +jess +thoroughly +feedback +##uma +chennai +strained +heartbeat +wrapping +overtime +pleaded +##sworth +mon +leisure +oclc +##tate +##ele +feathers +angelo +thirds +nuts +surveys +clever +gill +commentator +##dos +darren +rides +gibraltar +##nc +##mu +dissolution +dedication +shin +meals +saddle +elvis +reds +chaired +taller +appreciation +functioning +niece +favored +advocacy +robbie +criminals +suffolk +yugoslav +passport +constable +congressman +hastings +vera +##rov +consecrated +sparks +ecclesiastical +confined +##ovich +muller +floyd +nora +1822 +paved +1827 +cumberland +ned +saga +spiral +##flow +appreciated +yi +collaborative +treating +similarities +feminine +finishes +##ib +jade +import +##nse +##hot +champagne +mice +securing +celebrities +helsinki +attributes +##gos +cousins +phases +ache +lucia +gandhi +submission +vicar +spear +shine +tasmania +biting +detention +constitute +tighter +seasonal +##gus +terrestrial +matthews +##oka +effectiveness +parody +philharmonic +##onic +1816 +strangers +encoded +consortium +guaranteed +regards +shifts +tortured +collision +supervisor +inform +broader +insight +theaters +armour +emeritus +blink +incorporates +mapping +##50 +##ein +handball +flexible +##nta +substantially +generous +thief +##own +carr +loses +1793 +prose +ucla +romeo +generic +metallic +realization +damages +mk +commissioners +zach +default +##ther +helicopters +lengthy +stems +spa +partnered +spectators +rogue +indication +penalties +teresa +1801 +sen +##tric +dalton +##wich +irving +photographic +##vey +dell +deaf +peters +excluded +unsure +##vable +patterson +crawled +##zio +resided +whipped +latvia +slower +ecole +pipes +employers +maharashtra +comparable +va +textile +pageant +##gel +alphabet +binary +irrigation +chartered +choked +antoine +offs +waking +supplement +##wen +quantities +demolition +regain +locate +urdu +folks +alt +114 +##mc +scary +andreas +whites +##ava +classrooms +mw +aesthetic +publishes +valleys +guides +cubs +johannes +bryant +conventions +affecting +##itt +drain +awesome +isolation +prosecutor +ambitious +apology +captive +downs +atmospheric +lorenzo +aisle +beef +foul +##onia +kidding +composite +disturbed +illusion +natives +##ffer +emi +rockets +riverside +wartime +painters +adolf +melted +##ail +uncertainty +simulation +hawks +progressed +meantime +builder +spray +breach +unhappy +regina +russians +##urg +determining +##tation +tram +1806 +##quin +aging +##12 +1823 +garion +rented +mister +diaz +terminated +clip +1817 +depend +nervously +disco +owe +defenders +shiva +notorious +disbelief +shiny +worcester +##gation +##yr +trailing +undertook +islander +belarus +limitations +watershed +fuller +overlooking +utilized +raphael +1819 +synthetic +breakdown +klein +##nate +moaned +memoir +lamb +practicing +##erly +cellular +arrows +exotic +##graphy +witches +117 +charted +rey +hut +hierarchy +subdivision +freshwater +giuseppe +aloud +reyes +qatar +marty +sideways +utterly +sexually +jude +prayers +mccarthy +softball +blend +damien +##gging +##metric +wholly +erupted +lebanese +negro +revenues +tasted +comparative +teamed +transaction +labeled +maori +sovereignty +parkway +trauma +gran +malay +121 +advancement +descendant +2020 +buzz +salvation +inventory +symbolic +##making +antarctica +mps +##gas +##bro +mohammed +myanmar +holt +submarines +tones +##lman +locker +patriarch +bangkok +emerson +remarks +predators +kin +afghan +confession +norwich +rental +emerge +advantages +##zel +rca +##hold +shortened +storms +aidan +##matic +autonomy +compliance +##quet +dudley +atp +##osis +1803 +motto +documentation +summary +professors +spectacular +christina +archdiocese +flashing +innocence +remake +##dell +psychic +reef +scare +employ +rs +sticks +meg +gus +leans +##ude +accompany +bergen +tomas +##iko +doom +wages +pools +##nch +##bes +breasts +scholarly +alison +outline +brittany +breakthrough +willis +realistic +##cut +##boro +competitor +##stan +pike +picnic +icon +designing +commercials +washing +villain +skiing +micro +costumes +auburn +halted +executives +##hat +logistics +cycles +vowel +applicable +barrett +exclaimed +eurovision +eternity +ramon +##umi +##lls +modifications +sweeping +disgust +##uck +torch +aviv +ensuring +rude +dusty +sonic +donovan +outskirts +cu +pathway +##band +##gun +##lines +disciplines +acids +cadet +paired +##40 +sketches +##sive +marriages +##⁺ +folding +peers +slovak +implies +admired +##beck +1880s +leopold +instinct +attained +weston +megan +horace +##ination +dorsal +ingredients +evolutionary +##its +complications +deity +lethal +brushing +levy +deserted +institutes +posthumously +delivering +telescope +coronation +motivated +rapids +luc +flicked +pays +volcano +tanner +weighed +##nica +crowds +frankie +gifted +addressing +granddaughter +winding +##rna +constantine +gomez +##front +landscapes +rudolf +anthropology +slate +werewolf +##lio +astronomy +circa +rouge +dreaming +sack +knelt +drowned +naomi +prolific +tracked +freezing +herb +##dium +agony +randall +twisting +wendy +deposit +touches +vein +wheeler +##bbled +##bor +batted +retaining +tire +presently +compare +specification +daemon +nigel +##grave +merry +recommendation +czechoslovakia +sandra +ng +roma +##sts +lambert +inheritance +sheikh +winchester +cries +examining +##yle +comeback +cuisine +nave +##iv +ko +retrieve +tomatoes +barker +polished +defining +irene +lantern +personalities +begging +tract +swore +1809 +175 +##gic +omaha +brotherhood +##rley +haiti +##ots +exeter +##ete +##zia +steele +dumb +pearson +210 +surveyed +elisabeth +trends +##ef +fritz +##rf +premium +bugs +fraction +calmly +viking +##birds +tug +inserted +unusually +##ield +confronted +distress +crashing +brent +turks +resign +##olo +cambodia +gabe +sauce +##kal +evelyn +116 +extant +clusters +quarry +teenagers +luna +##lers +##ister +affiliation +drill +##ashi +panthers +scenic +libya +anita +strengthen +inscriptions +##cated +lace +sued +judith +riots +##uted +mint +##eta +preparations +midst +dub +challenger +##vich +mock +cf +displaced +wicket +breaths +enables +schmidt +analyst +##lum +ag +highlight +automotive +axe +josef +newark +sufficiently +resembles +50th +##pal +flushed +mum +traits +##ante +commodore +incomplete +warming +titular +ceremonial +ethical +118 +celebrating +eighteenth +cao +lima +medalist +mobility +strips +snakes +##city +miniature +zagreb +barton +escapes +umbrella +automated +doubted +differs +cooled +georgetown +dresden +cooked +fade +wyatt +rna +jacobs +carlton +abundant +stereo +boost +madras +inning +##hia +spur +ip +malayalam +begged +osaka +groan +escaping +charging +dose +vista +##aj +bud +papa +communists +advocates +edged +tri +##cent +resemble +peaking +necklace +fried +montenegro +saxony +goose +glances +stuttgart +curator +recruit +grocery +sympathetic +##tting +##fort +127 +lotus +randolph +ancestor +##rand +succeeding +jupiter +1798 +macedonian +##heads +hiking +1808 +handing +fischer +##itive +garbage +node +##pies +prone +singular +papua +inclined +attractions +italia +pouring +motioned +grandma +garnered +jacksonville +corp +ego +ringing +aluminum +##hausen +ordering +##foot +drawer +traders +synagogue +##play +##kawa +resistant +wandering +fragile +fiona +teased +var +hardcore +soaked +jubilee +decisive +exposition +mercer +poster +valencia +hale +kuwait +1811 +##ises +##wr +##eed +tavern +gamma +122 +johan +##uer +airways +amino +gil +##ury +vocational +domains +torres +##sp +generator +folklore +outcomes +##keeper +canberra +shooter +fl +beams +confrontation +##lling +##gram +feb +aligned +forestry +pipeline +jax +motorway +conception +decay +##tos +coffin +##cott +stalin +1805 +escorted +minded +##nam +sitcom +purchasing +twilight +veronica +additions +passive +tensions +straw +123 +frequencies +1804 +refugee +cultivation +##iate +christie +clary +bulletin +crept +disposal +##rich +##zong +processor +crescent +##rol +bmw +emphasized +whale +nazis +aurora +##eng +dwelling +hauled +sponsors +toledo +mega +ideology +theatres +tessa +cerambycidae +saves +turtle +cone +suspects +kara +rusty +yelling +greeks +mozart +shades +cocked +participant +##tro +shire +spit +freeze +necessity +##cos +inmates +nielsen +councillors +loaned +uncommon +omar +peasants +botanical +offspring +daniels +formations +jokes +1794 +pioneers +sigma +licensing +##sus +wheelchair +polite +1807 +liquor +pratt +trustee +##uta +forewings +balloon +##zz +kilometre +camping +explicit +casually +shawn +foolish +teammates +nm +hassan +carrie +judged +satisfy +vanessa +knives +selective +cnn +flowed +##lice +eclipse +stressed +eliza +mathematician +cease +cultivated +##roy +commissions +browns +##ania +destroyers +sheridan +meadow +##rius +minerals +##cial +downstream +clash +gram +memoirs +ventures +baha +seymour +archie +midlands +edith +fare +flynn +invite +canceled +tiles +stabbed +boulder +incorporate +amended +camden +facial +mollusk +unreleased +descriptions +yoga +grabs +550 +raises +ramp +shiver +##rose +coined +pioneering +tunes +qing +warwick +tops +119 +melanie +giles +##rous +wandered +##inal +annexed +nov +30th +unnamed +##ished +organizational +airplane +normandy +stoke +whistle +blessing +violations +chased +holders +shotgun +##ctic +outlet +reactor +##vik +tires +tearing +shores +fortified +mascot +constituencies +nc +columnist +productive +tibet +##rta +lineage +hooked +oct +tapes +judging +cody +##gger +hansen +kashmir +triggered +##eva +solved +cliffs +##tree +resisted +anatomy +protesters +transparent +implied +##iga +injection +mattress +excluding +##mbo +defenses +helpless +devotion +##elli +growl +liberals +weber +phenomena +atoms +plug +##iff +mortality +apprentice +howe +convincing +aaa +swimmer +barber +leone +promptly +sodium +def +nowadays +arise +##oning +gloucester +corrected +dignity +norm +erie +##ders +elders +evacuated +sylvia +compression +##yar +hartford +pose +backpack +reasoning +accepts +24th +wipe +millimetres +marcel +##oda +dodgers +albion +1790 +overwhelmed +aerospace +oaks +1795 +showcase +acknowledge +recovering +nolan +ashe +hurts +geology +fashioned +disappearance +farewell +swollen +shrug +marquis +wimbledon +124 +rue +1792 +commemorate +reduces +experiencing +inevitable +calcutta +intel +##court +murderer +sticking +fisheries +imagery +bloom +280 +brake +##inus +gustav +hesitation +memorable +po +viral +beans +accidents +tunisia +antenna +spilled +consort +treatments +aye +perimeter +##gard +donation +hostage +migrated +banker +addiction +apex +lil +trout +##ously +conscience +##nova +rams +sands +genome +passionate +troubles +##lets +##set +amid +##ibility +##ret +higgins +exceed +vikings +##vie +payne +##zan +muscular +##ste +defendant +sucking +##wal +ibrahim +fuselage +claudia +vfl +europeans +snails +interval +##garh +preparatory +statewide +tasked +lacrosse +viktor +##lation +angola +##hra +flint +implications +employs +teens +patrons +stall +weekends +barriers +scrambled +nucleus +tehran +jenna +parsons +lifelong +robots +displacement +5000 +##bles +precipitation +##gt +knuckles +clutched +1802 +marrying +ecology +marx +accusations +declare +scars +kolkata +mat +meadows +bermuda +skeleton +finalists +vintage +crawl +coordinate +affects +subjected +orchestral +mistaken +##tc +mirrors +dipped +relied +260 +arches +candle +##nick +incorporating +wildly +fond +basilica +owl +fringe +rituals +whispering +stirred +feud +tertiary +slick +goat +honorable +whereby +skip +ricardo +stripes +parachute +adjoining +submerged +synthesizer +##gren +intend +positively +ninety +phi +beaver +partition +fellows +alexis +prohibition +carlisle +bizarre +fraternity +##bre +doubts +icy +cbc +aquatic +sneak +sonny +combines +airports +crude +supervised +spatial +merge +alfonso +##bic +corrupt +scan +undergo +##ams +disabilities +colombian +comparing +dolphins +perkins +##lish +reprinted +unanimous +bounced +hairs +underworld +midwest +semester +bucket +paperback +miniseries +coventry +demise +##leigh +demonstrations +sensor +rotating +yan +##hler +arrange +soils +##idge +hyderabad +labs +##dr +brakes +grandchildren +##nde +negotiated +rover +ferrari +continuation +directorate +augusta +stevenson +counterpart +gore +##rda +nursery +rican +ave +collectively +broadly +pastoral +repertoire +asserted +discovering +nordic +styled +fiba +cunningham +harley +middlesex +survives +tumor +tempo +zack +aiming +lok +urgent +##rade +##nto +devils +##ement +contractor +turin +##wl +##ool +bliss +repaired +simmons +moan +astronomical +cr +negotiate +lyric +1890s +lara +bred +clad +angus +pbs +##ience +engineered +posed +##lk +hernandez +possessions +elbows +psychiatric +strokes +confluence +electorate +lifts +campuses +lava +alps +##ep +##ution +##date +physicist +woody +##page +##ographic +##itis +juliet +reformation +sparhawk +320 +complement +suppressed +jewel +##½ +floated +##kas +continuity +sadly +##ische +inability +melting +scanning +paula +flour +judaism +safer +vague +##lm +solving +curb +##stown +financially +gable +bees +expired +miserable +cassidy +dominion +1789 +cupped +145 +robbery +facto +amos +warden +resume +tallest +marvin +ing +pounded +usd +declaring +gasoline +##aux +darkened +270 +650 +sophomore +##mere +erection +gossip +televised +risen +dial +##eu +pillars +##link +passages +profound +##tina +arabian +ashton +silicon +nail +##ead +##lated +##wer +##hardt +fleming +firearms +ducked +circuits +blows +waterloo +titans +##lina +atom +fireplace +cheshire +financed +activation +algorithms +##zzi +constituent +catcher +cherokee +partnerships +sexuality +platoon +tragic +vivian +guarded +whiskey +meditation +poetic +##late +##nga +##ake +porto +listeners +dominance +kendra +mona +chandler +factions +22nd +salisbury +attitudes +derivative +##ido +##haus +intake +paced +javier +illustrator +barrels +bias +cockpit +burnett +dreamed +ensuing +##anda +receptors +someday +hawkins +mattered +##lal +slavic +1799 +jesuit +cameroon +wasted +tai +wax +lowering +victorious +freaking +outright +hancock +librarian +sensing +bald +calcium +myers +tablet +announcing +barack +shipyard +pharmaceutical +##uan +greenwich +flush +medley +patches +wolfgang +pt +speeches +acquiring +exams +nikolai +##gg +hayden +kannada +##type +reilly +##pt +waitress +abdomen +devastated +capped +pseudonym +pharmacy +fulfill +paraguay +1796 +clicked +##trom +archipelago +syndicated +##hman +lumber +orgasm +rejection +clifford +lorraine +advent +mafia +rodney +brock +##ght +##used +##elia +cassette +chamberlain +despair +mongolia +sensors +developmental +upstream +##eg +##alis +spanning +165 +trombone +basque +seeded +interred +renewable +rhys +leapt +revision +molecule +##ages +chord +vicious +nord +shivered +23rd +arlington +debts +corpus +sunrise +bays +blackburn +centimetres +##uded +shuddered +gm +strangely +gripping +cartoons +isabelle +orbital +##ppa +seals +proving +##lton +refusal +strengthened +bust +assisting +baghdad +batsman +portrayal +mara +pushes +spears +og +##cock +reside +nathaniel +brennan +1776 +confirmation +caucus +##worthy +markings +yemen +nobles +ku +lazy +viewer +catalan +encompasses +sawyer +##fall +sparked +substances +patents +braves +arranger +evacuation +sergio +persuade +dover +tolerance +penguin +cum +jockey +insufficient +townships +occupying +declining +plural +processed +projection +puppet +flanders +introduces +liability +##yon +gymnastics +antwerp +taipei +hobart +candles +jeep +wes +observers +126 +chaplain +bundle +glorious +##hine +hazel +flung +sol +excavations +dumped +stares +sh +bangalore +triangular +icelandic +intervals +expressing +turbine +##vers +songwriting +crafts +##igo +jasmine +ditch +rite +##ways +entertaining +comply +sorrow +wrestlers +basel +emirates +marian +rivera +helpful +##some +caution +downward +networking +##atory +##tered +darted +genocide +emergence +replies +specializing +spokesman +convenient +unlocked +fading +augustine +concentrations +resemblance +elijah +investigator +andhra +##uda +promotes +bean +##rrell +fleeing +wan +simone +announcer +##ame +##bby +lydia +weaver +132 +residency +modification +##fest +stretches +##ast +alternatively +nat +lowe +lacks +##ented +pam +tile +concealed +inferior +abdullah +residences +tissues +vengeance +##ided +moisture +peculiar +groove +zip +bologna +jennings +ninja +oversaw +zombies +pumping +batch +livingston +emerald +installations +1797 +peel +nitrogen +rama +##fying +##star +schooling +strands +responding +werner +##ost +lime +casa +accurately +targeting +##rod +underway +##uru +hemisphere +lester +##yard +occupies +2d +griffith +angrily +reorganized +##owing +courtney +deposited +##dd +##30 +estadio +##ifies +dunn +exiled +##ying +checks +##combe +##о +##fly +successes +unexpectedly +blu +assessed +##flower +##ه +observing +sacked +spiders +kn +##tail +mu +nodes +prosperity +audrey +divisional +155 +broncos +tangled +adjust +feeds +erosion +paolo +surf +directory +snatched +humid +admiralty +screwed +gt +reddish +##nese +modules +trench +lamps +bind +leah +bucks +competes +##nz +##form +transcription +##uc +isles +violently +clutching +pga +cyclist +inflation +flats +ragged +unnecessary +##hian +stubborn +coordinated +harriet +baba +disqualified +330 +insect +wolfe +##fies +reinforcements +rocked +duel +winked +embraced +bricks +##raj +hiatus +defeats +pending +brightly +jealousy +##xton +##hm +##uki +lena +gdp +colorful +##dley +stein +kidney +##shu +underwear +wanderers +##haw +##icus +guardians +m³ +roared +habits +##wise +permits +gp +uranium +punished +disguise +bundesliga +elise +dundee +erotic +partisan +pi +collectors +float +individually +rendering +behavioral +bucharest +ser +hare +valerie +corporal +nutrition +proportional +##isa +immense +##kis +pavement +##zie +##eld +sutherland +crouched +1775 +##lp +suzuki +trades +endurance +operas +crosby +prayed +priory +rory +socially +##urn +gujarat +##pu +walton +cube +pasha +privilege +lennon +floods +thorne +waterfall +nipple +scouting +approve +##lov +minorities +voter +dwight +extensions +assure +ballroom +slap +dripping +privileges +rejoined +confessed +demonstrating +patriotic +yell +investor +##uth +pagan +slumped +squares +##cle +##kins +confront +bert +embarrassment +##aid +aston +urging +sweater +starr +yuri +brains +williamson +commuter +mortar +structured +selfish +exports +##jon +cds +##him +unfinished +##rre +mortgage +destinations +##nagar +canoe +solitary +buchanan +delays +magistrate +fk +##pling +motivation +##lier +##vier +recruiting +assess +##mouth +malik +antique +1791 +pius +rahman +reich +tub +zhou +smashed +airs +galway +xii +conditioning +honduras +discharged +dexter +##pf +lionel +129 +debates +lemon +tiffany +volunteered +dom +dioxide +procession +devi +sic +tremendous +advertisements +colts +transferring +verdict +hanover +decommissioned +utter +relate +pac +racism +##top +beacon +limp +similarity +terra +occurrence +ant +##how +becky +capt +updates +armament +richie +pal +##graph +halloween +mayo +##ssen +##bone +cara +serena +fcc +dolls +obligations +##dling +violated +lafayette +jakarta +exploitation +##ime +infamous +iconic +##lah +##park +kitty +moody +reginald +dread +spill +crystals +olivier +modeled +bluff +equilibrium +separating +notices +ordnance +extinction +onset +cosmic +attachment +sammy +expose +privy +anchored +##bil +abbott +admits +bending +baritone +emmanuel +policeman +vaughan +winged +climax +dresses +denny +polytechnic +mohamed +burmese +authentic +nikki +genetics +grandparents +homestead +gaza +postponed +metacritic +una +##sby +##bat +unstable +dissertation +##rial +##cian +curls +obscure +uncovered +bronx +praying +disappearing +##hoe +prehistoric +coke +turret +mutations +nonprofit +pits +monaco +##ي +##usion +prominently +dispatched +podium +##mir +uci +##uation +133 +fortifications +birthplace +kendall +##lby +##oll +preacher +rack +goodman +##rman +persistent +##ott +countless +jaime +recorder +lexington +persecution +jumps +renewal +wagons +##11 +crushing +##holder +decorations +##lake +abundance +wrath +laundry +£1 +garde +##rp +jeanne +beetles +peasant +##sl +splitting +caste +sergei +##rer +##ema +scripts +##ively +rub +satellites +##vor +inscribed +verlag +scrapped +gale +packages +chick +potato +slogan +kathleen +arabs +##culture +counterparts +reminiscent +choral +##tead +rand +retains +bushes +dane +accomplish +courtesy +closes +##oth +slaughter +hague +krakow +lawson +tailed +elias +ginger +##ttes +canopy +betrayal +rebuilding +turf +##hof +frowning +allegiance +brigades +kicks +rebuild +polls +alias +nationalism +td +rowan +audition +bowie +fortunately +recognizes +harp +dillon +horrified +##oro +renault +##tics +ropes +##α +presumed +rewarded +infrared +wiping +accelerated +illustration +##rid +presses +practitioners +badminton +##iard +detained +##tera +recognizing +relates +misery +##sies +##tly +reproduction +piercing +potatoes +thornton +esther +manners +hbo +##aan +ours +bullshit +ernie +perennial +sensitivity +illuminated +rupert +##jin +##iss +##ear +rfc +nassau +##dock +staggered +socialism +##haven +appointments +nonsense +prestige +sharma +haul +##tical +solidarity +gps +##ook +##rata +igor +pedestrian +##uit +baxter +tenants +wires +medication +unlimited +guiding +impacts +diabetes +##rama +sasha +pas +clive +extraction +131 +continually +constraints +##bilities +sonata +hunted +sixteenth +chu +planting +quote +mayer +pretended +abs +spat +##hua +ceramic +##cci +curtains +pigs +pitching +##dad +latvian +sore +dayton +##sted +##qi +patrols +slice +playground +##nted +shone +stool +apparatus +inadequate +mates +treason +##ija +desires +##liga +##croft +somalia +laurent +mir +leonardo +oracle +grape +obliged +chevrolet +thirteenth +stunning +enthusiastic +##ede +accounted +concludes +currents +basil +##kovic +drought +##rica +mai +##aire +shove +posting +##shed +pilgrimage +humorous +packing +fry +pencil +wines +smells +144 +marilyn +aching +newest +clung +bon +neighbours +sanctioned +##pie +mug +##stock +drowning +##mma +hydraulic +##vil +hiring +reminder +lilly +investigators +##ncies +sour +##eous +compulsory +packet +##rion +##graphic +##elle +cannes +##inate +depressed +##rit +heroic +importantly +theresa +##tled +conway +saturn +marginal +rae +##xia +corresponds +royce +pact +jasper +explosives +packaging +aluminium +##ttered +denotes +rhythmic +spans +assignments +hereditary +outlined +originating +sundays +lad +reissued +greeting +beatrice +##dic +pillar +marcos +plots +handbook +alcoholic +judiciary +avant +slides +extract +masculine +blur +##eum +##force +homage +trembled +owens +hymn +trey +omega +signaling +socks +accumulated +reacted +attic +theo +lining +angie +distraction +primera +talbot +##key +1200 +ti +creativity +billed +##hey +deacon +eduardo +identifies +proposition +dizzy +gunner +hogan +##yam +##pping +##hol +ja +##chan +jensen +reconstructed +##berger +clearance +darius +##nier +abe +harlem +plea +dei +circled +emotionally +notation +fascist +neville +exceeded +upwards +viable +ducks +##fo +workforce +racer +limiting +shri +##lson +possesses +1600 +kerr +moths +devastating +laden +disturbing +locking +##cture +gal +fearing +accreditation +flavor +aide +1870s +mountainous +##baum +melt +##ures +motel +texture +servers +soda +##mb +herd +##nium +erect +puzzled +hum +peggy +examinations +gould +testified +geoff +ren +devised +sacks +##law +denial +posters +grunted +cesar +tutor +ec +gerry +offerings +byrne +falcons +combinations +ct +incoming +pardon +rocking +26th +avengers +flared +mankind +seller +uttar +loch +nadia +stroking +exposing +##hd +fertile +ancestral +instituted +##has +noises +prophecy +taxation +eminent +vivid +pol +##bol +dart +indirect +multimedia +notebook +upside +displaying +adrenaline +referenced +geometric +##iving +progression +##ddy +blunt +announce +##far +implementing +##lav +aggression +liaison +cooler +cares +headache +plantations +gorge +dots +impulse +thickness +ashamed +averaging +kathy +obligation +precursor +137 +fowler +symmetry +thee +225 +hears +##rai +undergoing +ads +butcher +bowler +##lip +cigarettes +subscription +goodness +##ically +browne +##hos +##tech +kyoto +donor +##erty +damaging +friction +drifting +expeditions +hardened +prostitution +152 +fauna +blankets +claw +tossing +snarled +butterflies +recruits +investigative +coated +healed +138 +communal +hai +xiii +academics +boone +psychologist +restless +lahore +stephens +mba +brendan +foreigners +printer +##pc +ached +explode +27th +deed +scratched +dared +##pole +cardiac +1780 +okinawa +proto +commando +compelled +oddly +electrons +##base +replica +thanksgiving +##rist +sheila +deliberate +stafford +tidal +representations +hercules +ou +##path +##iated +kidnapping +lenses +##tling +deficit +samoa +mouths +consuming +computational +maze +granting +smirk +razor +fixture +ideals +inviting +aiden +nominal +##vs +issuing +julio +pitt +ramsey +docks +##oss +exhaust +##owed +bavarian +draped +anterior +mating +ethiopian +explores +noticing +##nton +discarded +convenience +hoffman +endowment +beasts +cartridge +mormon +paternal +probe +sleeves +interfere +lump +deadline +##rail +jenks +bulldogs +scrap +alternating +justified +reproductive +nam +seize +descending +secretariat +kirby +coupe +grouped +smash +panther +sedan +tapping +##18 +lola +cheer +germanic +unfortunate +##eter +unrelated +##fan +subordinate +##sdale +suzanne +advertisement +##ility +horsepower +##lda +cautiously +discourse +luigi +##mans +##fields +noun +prevalent +mao +schneider +everett +surround +governorate +kira +##avia +westward +##take +misty +rails +sustainability +134 +unused +##rating +packs +toast +unwilling +regulate +thy +suffrage +nile +awe +assam +definitions +travelers +affordable +##rb +conferred +sells +undefeated +beneficial +torso +basal +repeating +remixes +##pass +bahrain +cables +fang +##itated +excavated +numbering +statutory +##rey +deluxe +##lian +forested +ramirez +derbyshire +zeus +slamming +transfers +astronomer +banana +lottery +berg +histories +bamboo +##uchi +resurrection +posterior +bowls +vaguely +##thi +thou +preserving +tensed +offence +##inas +meyrick +callum +ridden +watt +langdon +tying +lowland +snorted +daring +truman +##hale +##girl +aura +overly +filing +weighing +goa +infections +philanthropist +saunders +eponymous +##owski +latitude +perspectives +reviewing +mets +commandant +radial +##kha +flashlight +reliability +koch +vowels +amazed +ada +elaine +supper +##rth +##encies +predator +debated +soviets +cola +##boards +##nah +compartment +crooked +arbitrary +fourteenth +##ctive +havana +majors +steelers +clips +profitable +ambush +exited +packers +##tile +nude +cracks +fungi +##е +limb +trousers +josie +shelby +tens +frederic +##ος +definite +smoothly +constellation +insult +baton +discs +lingering +##nco +conclusions +lent +staging +becker +grandpa +shaky +##tron +einstein +obstacles +sk +adverse +elle +economically +##moto +mccartney +thor +dismissal +motions +readings +nostrils +treatise +##pace +squeezing +evidently +prolonged +1783 +venezuelan +je +marguerite +beirut +takeover +shareholders +##vent +denise +digit +airplay +norse +##bbling +imaginary +pills +hubert +blaze +vacated +eliminating +##ello +vine +mansfield +##tty +retrospective +barrow +borne +clutch +bail +forensic +weaving +##nett +##witz +desktop +citadel +promotions +worrying +dorset +ieee +subdivided +##iating +manned +expeditionary +pickup +synod +chuckle +185 +barney +##rz +##ffin +functionality +karachi +litigation +meanings +uc +lick +turbo +anders +##ffed +execute +curl +oppose +ankles +typhoon +##د +##ache +##asia +linguistics +compassion +pressures +grazing +perfection +##iting +immunity +monopoly +muddy +backgrounds +136 +namibia +francesca +monitors +attracting +stunt +tuition +##ии +vegetable +##mates +##quent +mgm +jen +complexes +forts +##ond +cellar +bites +seventeenth +royals +flemish +failures +mast +charities +##cular +peruvian +capitals +macmillan +ipswich +outward +frigate +postgraduate +folds +employing +##ouse +concurrently +fiery +##tai +contingent +nightmares +monumental +nicaragua +##kowski +lizard +mal +fielding +gig +reject +##pad +harding +##ipe +coastline +##cin +##nos +beethoven +humphrey +innovations +##tam +##nge +norris +doris +solicitor +huang +obey +141 +##lc +niagara +##tton +shelves +aug +bourbon +curry +nightclub +specifications +hilton +##ndo +centennial +dispersed +worm +neglected +briggs +sm +font +kuala +uneasy +plc +##nstein +##bound +##aking +##burgh +awaiting +pronunciation +##bbed +##quest +eh +optimal +zhu +raped +greens +presided +brenda +worries +##life +venetian +marxist +turnout +##lius +refined +braced +sins +grasped +sunderland +nickel +speculated +lowell +cyrillic +communism +fundraising +resembling +colonists +mutant +freddie +usc +##mos +gratitude +##run +mural +##lous +chemist +wi +reminds +28th +steals +tess +pietro +##ingen +promoter +ri +microphone +honoured +rai +sant +##qui +feather +##nson +burlington +kurdish +terrorists +deborah +sickness +##wed +##eet +hazard +irritated +desperation +veil +clarity +##rik +jewels +xv +##gged +##ows +##cup +berkshire +unfair +mysteries +orchid +winced +exhaustion +renovations +stranded +obe +infinity +##nies +adapt +redevelopment +thanked +registry +olga +domingo +noir +tudor +ole +##atus +commenting +behaviors +##ais +crisp +pauline +probable +stirling +wigan +##bian +paralympics +panting +surpassed +##rew +luca +barred +pony +famed +##sters +cassandra +waiter +carolyn +exported +##orted +andres +destructive +deeds +jonah +castles +vacancy +suv +##glass +1788 +orchard +yep +famine +belarusian +sprang +##forth +skinny +##mis +administrators +rotterdam +zambia +zhao +boiler +discoveries +##ride +##physics +lucius +disappointing +outreach +spoon +##frame +qualifications +unanimously +enjoys +regency +##iidae +stade +realism +veterinary +rodgers +dump +alain +chestnut +castile +censorship +rumble +gibbs +##itor +communion +reggae +inactivated +logs +loads +##houses +homosexual +##iano +ale +informs +##cas +phrases +plaster +linebacker +ambrose +kaiser +fascinated +850 +limerick +recruitment +forge +mastered +##nding +leinster +rooted +threaten +##strom +borneo +##hes +suggestions +scholarships +propeller +documentaries +patronage +coats +constructing +invest +neurons +comet +entirety +shouts +identities +annoying +unchanged +wary +##antly +##ogy +neat +oversight +##kos +phillies +replay +constance +##kka +incarnation +humble +skies +minus +##acy +smithsonian +##chel +guerrilla +jar +cadets +##plate +surplus +audit +##aru +cracking +joanna +louisa +pacing +##lights +intentionally +##iri +diner +nwa +imprint +australians +tong +unprecedented +bunker +naive +specialists +ark +nichols +railing +leaked +pedal +##uka +shrub +longing +roofs +v8 +captains +neural +tuned +##ntal +##jet +emission +medina +frantic +codex +definitive +sid +abolition +intensified +stocks +enrique +sustain +genoa +oxide +##written +clues +cha +##gers +tributaries +fragment +venom +##rity +##ente +##sca +muffled +vain +sire +laos +##ingly +##hana +hastily +snapping +surfaced +sentiment +motive +##oft +contests +approximate +mesa +luckily +dinosaur +exchanges +propelled +accord +bourne +relieve +tow +masks +offended +##ues +cynthia +##mmer +rains +bartender +zinc +reviewers +lois +##sai +legged +arrogant +rafe +rosie +comprise +handicap +blockade +inlet +lagoon +copied +drilling +shelley +petals +##inian +mandarin +obsolete +##inated +onward +arguably +productivity +cindy +praising +seldom +busch +discusses +raleigh +shortage +ranged +stanton +encouragement +firstly +conceded +overs +temporal +##uke +cbe +##bos +woo +certainty +pumps +##pton +stalked +##uli +lizzie +periodic +thieves +weaker +##night +gases +shoving +chooses +wc +##chemical +prompting +weights +##kill +robust +flanked +sticky +hu +tuberculosis +##eb +##eal +christchurch +resembled +wallet +reese +inappropriate +pictured +distract +fixing +fiddle +giggled +burger +heirs +hairy +mechanic +torque +apache +obsessed +chiefly +cheng +logging +##tag +extracted +meaningful +numb +##vsky +gloucestershire +reminding +##bay +unite +##lit +breeds +diminished +clown +glove +1860s +##ن +##ug +archibald +focal +freelance +sliced +depiction +##yk +organism +switches +sights +stray +crawling +##ril +lever +leningrad +interpretations +loops +anytime +reel +alicia +delighted +##ech +inhaled +xiv +suitcase +bernie +vega +licenses +northampton +exclusion +induction +monasteries +racecourse +homosexuality +##right +##sfield +##rky +dimitri +michele +alternatives +ions +commentators +genuinely +objected +pork +hospitality +fencing +stephan +warships +peripheral +wit +drunken +wrinkled +quentin +spends +departing +chung +numerical +spokesperson +##zone +johannesburg +caliber +killers +##udge +assumes +neatly +demographic +abigail +bloc +##vel +mounting +##lain +bentley +slightest +xu +recipients +##jk +merlin +##writer +seniors +prisons +blinking +hindwings +flickered +kappa +##hel +80s +strengthening +appealing +brewing +gypsy +mali +lashes +hulk +unpleasant +harassment +bio +treaties +predict +instrumentation +pulp +troupe +boiling +mantle +##ffe +ins +##vn +dividing +handles +verbs +##onal +coconut +senegal +340 +thorough +gum +momentarily +##sto +cocaine +panicked +destined +##turing +teatro +denying +weary +captained +mans +##hawks +##code +wakefield +bollywood +thankfully +##16 +cyril +##wu +amendments +##bahn +consultation +stud +reflections +kindness +1787 +internally +##ovo +tex +mosaic +distribute +paddy +seeming +143 +##hic +piers +##15 +##mura +##verse +popularly +winger +kang +sentinel +mccoy +##anza +covenant +##bag +verge +fireworks +suppress +thrilled +dominate +##jar +swansea +##60 +142 +reconciliation +##ndi +stiffened +cue +dorian +##uf +damascus +amor +ida +foremost +##aga +porsche +unseen +dir +##had +##azi +stony +lexi +melodies +##nko +angular +integer +podcast +ants +inherent +jaws +justify +persona +##olved +josephine +##nr +##ressed +customary +flashes +gala +cyrus +glaring +backyard +ariel +physiology +greenland +html +stir +avon +atletico +finch +methodology +ked +##lent +mas +catholicism +townsend +branding +quincy +fits +containers +1777 +ashore +aragon +##19 +forearm +poisoning +##sd +adopting +conquer +grinding +amnesty +keller +finances +evaluate +forged +lankan +instincts +##uto +guam +bosnian +photographed +workplace +desirable +protector +##dog +allocation +intently +encourages +willy +##sten +bodyguard +electro +brighter +##ν +bihar +##chev +lasts +opener +amphibious +sal +verde +arte +##cope +captivity +vocabulary +yields +##tted +agreeing +desmond +pioneered +##chus +strap +campaigned +railroads +##ович +emblem +##dre +stormed +501 +##ulous +marijuana +northumberland +##gn +##nath +bowen +landmarks +beaumont +##qua +danube +##bler +attorneys +th +ge +flyers +critique +villains +cass +mutation +acc +##0s +colombo +mckay +motif +sampling +concluding +syndicate +##rell +neon +stables +ds +warnings +clint +mourning +wilkinson +##tated +merrill +leopard +evenings +exhaled +emil +sonia +ezra +discrete +stove +farrell +fifteenth +prescribed +superhero +##rier +worms +helm +wren +##duction +##hc +expo +##rator +hq +unfamiliar +antony +prevents +acceleration +fiercely +mari +painfully +calculations +cheaper +ign +clifton +irvine +davenport +mozambique +##np +pierced +##evich +wonders +##wig +##cate +##iling +crusade +ware +##uel +enzymes +reasonably +mls +##coe +mater +ambition +bunny +eliot +kernel +##fin +asphalt +headmaster +torah +aden +lush +pins +waived +##care +##yas +joao +substrate +enforce +##grad +##ules +alvarez +selections +epidemic +tempted +##bit +bremen +translates +ensured +waterfront +29th +forrest +manny +malone +kramer +reigning +cookies +simpler +absorption +205 +engraved +##ffy +evaluated +1778 +haze +146 +comforting +crossover +##abe +thorn +##rift +##imo +##pop +suppression +fatigue +cutter +##tr +201 +wurttemberg +##orf +enforced +hovering +proprietary +gb +samurai +syllable +ascent +lacey +tick +lars +tractor +merchandise +rep +bouncing +defendants +##yre +huntington +##ground +##oko +standardized +##hor +##hima +assassinated +nu +predecessors +rainy +liar +assurance +lyrical +##uga +secondly +flattened +ios +parameter +undercover +##mity +bordeaux +punish +ridges +markers +exodus +inactive +hesitate +debbie +nyc +pledge +savoy +nagar +offset +organist +##tium +hesse +marin +converting +##iver +diagram +propulsion +pu +validity +reverted +supportive +##dc +ministries +clans +responds +proclamation +##inae +##ø +##rea +ein +pleading +patriot +sf +birch +islanders +strauss +hates +##dh +brandenburg +concession +rd +##ob +1900s +killings +textbook +antiquity +cinematography +wharf +embarrassing +setup +creed +farmland +inequality +centred +signatures +fallon +370 +##ingham +##uts +ceylon +gazing +directive +laurie +##tern +globally +##uated +##dent +allah +excavation +threads +##cross +148 +frantically +icc +utilize +determines +respiratory +thoughtful +receptions +##dicate +merging +chandra +seine +147 +builders +builds +diagnostic +dev +visibility +goddamn +analyses +dhaka +cho +proves +chancel +concurrent +curiously +canadians +pumped +restoring +1850s +turtles +jaguar +sinister +spinal +traction +declan +vows +1784 +glowed +capitalism +swirling +install +universidad +##lder +##oat +soloist +##genic +##oor +coincidence +beginnings +nissan +dip +resorts +caucasus +combustion +infectious +##eno +pigeon +serpent +##itating +conclude +masked +salad +jew +##gr +surreal +toni +##wc +harmonica +151 +##gins +##etic +##coat +fishermen +intending +bravery +##wave +klaus +titan +wembley +taiwanese +ransom +40th +incorrect +hussein +eyelids +jp +cooke +dramas +utilities +##etta +##print +eisenhower +principally +granada +lana +##rak +openings +concord +##bl +bethany +connie +morality +sega +##mons +##nard +earnings +##kara +##cine +wii +communes +##rel +coma +composing +softened +severed +grapes +##17 +nguyen +analyzed +warlord +hubbard +heavenly +behave +slovenian +##hit +##ony +hailed +filmmakers +trance +caldwell +skye +unrest +coward +likelihood +##aging +bern +sci +taliban +honolulu +propose +##wang +1700 +browser +imagining +cobra +contributes +dukes +instinctively +conan +violinist +##ores +accessories +gradual +##amp +quotes +sioux +##dating +undertake +intercepted +sparkling +compressed +139 +fungus +tombs +haley +imposing +rests +degradation +lincolnshire +retailers +wetlands +tulsa +distributor +dungeon +nun +greenhouse +convey +atlantis +aft +exits +oman +dresser +lyons +##sti +joking +eddy +judgement +omitted +digits +##cts +##game +juniors +##rae +cents +stricken +une +##ngo +wizards +weir +breton +nan +technician +fibers +liking +royalty +##cca +154 +persia +terribly +magician +##rable +##unt +vance +cafeteria +booker +camille +warmer +##static +consume +cavern +gaps +compass +contemporaries +foyer +soothing +graveyard +maj +plunged +blush +##wear +cascade +demonstrates +ordinance +##nov +boyle +##lana +rockefeller +shaken +banjo +izzy +##ense +breathless +vines +##32 +##eman +alterations +chromosome +dwellings +feudal +mole +153 +catalonia +relics +tenant +mandated +##fm +fridge +hats +honesty +patented +raul +heap +cruisers +accusing +enlightenment +infants +wherein +chatham +contractors +zen +affinity +hc +osborne +piston +156 +traps +maturity +##rana +lagos +##zal +peering +##nay +attendant +dealers +protocols +subset +prospects +biographical +##cre +artery +##zers +insignia +nuns +endured +##eration +recommend +schwartz +serbs +berger +cromwell +crossroads +##ctor +enduring +clasped +grounded +##bine +marseille +twitched +abel +choke +https +catalyst +moldova +italians +##tist +disastrous +wee +##oured +##nti +wwf +nope +##piration +##asa +expresses +thumbs +167 +##nza +coca +1781 +cheating +##ption +skipped +sensory +heidelberg +spies +satan +dangers +semifinal +202 +bohemia +whitish +confusing +shipbuilding +relies +surgeons +landings +ravi +baku +moor +suffix +alejandro +##yana +litre +upheld +##unk +rajasthan +##rek +coaster +insists +posture +scenarios +etienne +favoured +appoint +transgender +elephants +poked +greenwood +defences +fulfilled +militant +somali +1758 +chalk +potent +##ucci +migrants +wink +assistants +nos +restriction +activism +niger +##ario +colon +shaun +##sat +daphne +##erated +swam +congregations +reprise +considerations +magnet +playable +xvi +##р +overthrow +tobias +knob +chavez +coding +##mers +propped +katrina +orient +newcomer +##suke +temperate +##pool +farmhouse +interrogation +##vd +committing +##vert +forthcoming +strawberry +joaquin +macau +ponds +shocking +siberia +##cellular +chant +contributors +##nant +##ologists +sped +absorb +hail +1782 +spared +##hore +barbados +karate +opus +originates +saul +##xie +evergreen +leaped +##rock +correlation +exaggerated +weekday +unification +bump +tracing +brig +afb +pathways +utilizing +##ners +mod +mb +disturbance +kneeling +##stad +##guchi +100th +pune +##thy +decreasing +168 +manipulation +miriam +academia +ecosystem +occupational +rbi +##lem +rift +##14 +rotary +stacked +incorporation +awakening +generators +guerrero +racist +##omy +cyber +derivatives +culminated +allie +annals +panzer +sainte +wikipedia +pops +zu +austro +##vate +algerian +politely +nicholson +mornings +educate +tastes +thrill +dartmouth +##gating +db +##jee +regan +differing +concentrating +choreography +divinity +##media +pledged +alexandre +routing +gregor +madeline +##idal +apocalypse +##hora +gunfire +culminating +elves +fined +liang +lam +programmed +tar +guessing +transparency +gabrielle +##gna +cancellation +flexibility +##lining +accession +shea +stronghold +nets +specializes +##rgan +abused +hasan +sgt +ling +exceeding +##₄ +admiration +supermarket +##ark +photographers +specialised +tilt +resonance +hmm +perfume +380 +sami +threatens +garland +botany +guarding +boiled +greet +puppy +russo +supplier +wilmington +vibrant +vijay +##bius +paralympic +grumbled +paige +faa +licking +margins +hurricanes +##gong +fest +grenade +ripping +##uz +counseling +weigh +##sian +needles +wiltshire +edison +costly +##not +fulton +tramway +redesigned +staffordshire +cache +gasping +watkins +sleepy +candidacy +##group +monkeys +timeline +throbbing +##bid +##sos +berth +uzbekistan +vanderbilt +bothering +overturned +ballots +gem +##iger +sunglasses +subscribers +hooker +compelling +ang +exceptionally +saloon +stab +##rdi +carla +terrifying +rom +##vision +coil +##oids +satisfying +vendors +31st +mackay +deities +overlooked +ambient +bahamas +felipe +olympia +whirled +botanist +advertised +tugging +##dden +disciples +morales +unionist +rites +foley +morse +motives +creepy +##₀ +soo +##sz +bargain +highness +frightening +turnpike +tory +reorganization +##cer +depict +biographer +##walk +unopposed +manifesto +##gles +institut +emile +accidental +kapoor +##dam +kilkenny +cortex +lively +##13 +romanesque +jain +shan +cannons +##ood +##ske +petrol +echoing +amalgamated +disappears +cautious +proposes +sanctions +trenton +##ر +flotilla +aus +contempt +tor +canary +cote +theirs +##hun +conceptual +deleted +fascinating +paso +blazing +elf +honourable +hutchinson +##eiro +##outh +##zin +surveyor +tee +amidst +wooded +reissue +intro +##ono +cobb +shelters +newsletter +hanson +brace +encoding +confiscated +dem +caravan +marino +scroll +melodic +cows +imam +##adi +##aneous +northward +searches +biodiversity +cora +310 +roaring +##bers +connell +theologian +halo +compose +pathetic +unmarried +dynamo +##oot +az +calculation +toulouse +deserves +humour +nr +forgiveness +tam +undergone +martyr +pamela +myths +whore +counselor +hicks +290 +heavens +battleship +electromagnetic +##bbs +stellar +establishments +presley +hopped +##chin +temptation +90s +wills +nas +##yuan +nhs +##nya +seminars +##yev +adaptations +gong +asher +lex +indicator +sikh +tobago +cites +goin +##yte +satirical +##gies +characterised +correspond +bubbles +lure +participates +##vid +eruption +skate +therapeutic +1785 +canals +wholesale +defaulted +sac +460 +petit +##zzled +virgil +leak +ravens +256 +portraying +##yx +ghetto +creators +dams +portray +vicente +##rington +fae +namesake +bounty +##arium +joachim +##ota +##iser +aforementioned +axle +snout +depended +dismantled +reuben +480 +##ibly +gallagher +##lau +##pd +earnest +##ieu +##iary +inflicted +objections +##llar +asa +gritted +##athy +jericho +##sea +##was +flick +underside +ceramics +undead +substituted +195 +eastward +undoubtedly +wheeled +chimney +##iche +guinness +cb +##ager +siding +##bell +traitor +baptiste +disguised +inauguration +149 +tipperary +choreographer +perched +warmed +stationary +eco +##ike +##ntes +bacterial +##aurus +flores +phosphate +##core +attacker +invaders +alvin +intersects +a1 +indirectly +immigrated +businessmen +cornelius +valves +narrated +pill +sober +ul +nationale +monastic +applicants +scenery +##jack +161 +motifs +constitutes +cpu +##osh +jurisdictions +sd +tuning +irritation +woven +##uddin +fertility +gao +##erie +antagonist +impatient +glacial +hides +boarded +denominations +interception +##jas +cookie +nicola +##tee +algebraic +marquess +bahn +parole +buyers +bait +turbines +paperwork +bestowed +natasha +renee +oceans +purchases +157 +vaccine +215 +##tock +fixtures +playhouse +integrate +jai +oswald +intellectuals +##cky +booked +nests +mortimer +##isi +obsession +sept +##gler +##sum +440 +scrutiny +simultaneous +squinted +##shin +collects +oven +shankar +penned +remarkably +##я +slips +luggage +spectral +1786 +collaborations +louie +consolidation +##ailed +##ivating +420 +hoover +blackpool +harness +ignition +vest +tails +belmont +mongol +skinner +##nae +visually +mage +derry +##tism +##unce +stevie +transitional +##rdy +redskins +drying +prep +prospective +##21 +annoyance +oversee +##loaded +fills +##books +##iki +announces +fda +scowled +respects +prasad +mystic +tucson +##vale +revue +springer +bankrupt +1772 +aristotle +salvatore +habsburg +##geny +dal +natal +nut +pod +chewing +darts +moroccan +walkover +rosario +lenin +punjabi +##ße +grossed +scattering +wired +invasive +hui +polynomial +corridors +wakes +gina +portrays +##cratic +arid +retreating +erich +irwin +sniper +##dha +linen +lindsey +maneuver +butch +shutting +socio +bounce +commemorative +postseason +jeremiah +pines +275 +mystical +beads +bp +abbas +furnace +bidding +consulted +assaulted +empirical +rubble +enclosure +sob +weakly +cancel +polly +yielded +##emann +curly +prediction +battered +70s +vhs +jacqueline +render +sails +barked +detailing +grayson +riga +sloane +raging +##yah +herbs +bravo +##athlon +alloy +giggle +imminent +suffers +assumptions +waltz +##itate +accomplishments +##ited +bathing +remixed +deception +prefix +##emia +deepest +##tier +##eis +balkan +frogs +##rong +slab +##pate +philosophers +peterborough +grains +imports +dickinson +rwanda +##atics +1774 +dirk +lan +tablets +##rove +clone +##rice +caretaker +hostilities +mclean +##gre +regimental +treasures +norms +impose +tsar +tango +diplomacy +variously +complain +192 +recognise +arrests +1779 +celestial +pulitzer +##dus +bing +libretto +##moor +adele +splash +##rite +expectation +lds +confronts +##izer +spontaneous +harmful +wedge +entrepreneurs +buyer +##ope +bilingual +translate +rugged +conner +circulated +uae +eaton +##gra +##zzle +lingered +lockheed +vishnu +reelection +alonso +##oom +joints +yankee +headline +cooperate +heinz +laureate +invading +##sford +echoes +scandinavian +##dham +hugging +vitamin +salute +micah +hind +trader +##sper +radioactive +##ndra +militants +poisoned +ratified +remark +campeonato +deprived +wander +prop +##dong +outlook +##tani +##rix +##eye +chiang +darcy +##oping +mandolin +spice +statesman +babylon +182 +walled +forgetting +afro +##cap +158 +giorgio +buffer +##polis +planetary +##gis +overlap +terminals +kinda +centenary +##bir +arising +manipulate +elm +ke +1770 +ak +##tad +chrysler +mapped +moose +pomeranian +quad +macarthur +assemblies +shoreline +recalls +stratford +##rted +noticeable +##evic +imp +##rita +##sque +accustomed +supplying +tents +disgusted +vogue +sipped +filters +khz +reno +selecting +luftwaffe +mcmahon +tyne +masterpiece +carriages +collided +dunes +exercised +flare +remembers +muzzle +##mobile +heck +##rson +burgess +lunged +middleton +boycott +bilateral +##sity +hazardous +lumpur +multiplayer +spotlight +jackets +goldman +liege +porcelain +rag +waterford +benz +attracts +hopeful +battling +ottomans +kensington +baked +hymns +cheyenne +lattice +levine +borrow +polymer +clashes +michaels +monitored +commitments +denounced +##25 +##von +cavity +##oney +hobby +akin +##holders +futures +intricate +cornish +patty +##oned +illegally +dolphin +##lag +barlow +yellowish +maddie +apologized +luton +plagued +##puram +nana +##rds +sway +fanny +łodz +##rino +psi +suspicions +hanged +##eding +initiate +charlton +##por +nak +competent +235 +analytical +annex +wardrobe +reservations +##rma +sect +162 +fairfax +hedge +piled +buckingham +uneven +bauer +simplicity +snyder +interpret +accountability +donors +moderately +byrd +continents +##cite +##max +disciple +hr +jamaican +ping +nominees +##uss +mongolian +diver +attackers +eagerly +ideological +pillows +miracles +apartheid +revolver +sulfur +clinics +moran +163 +##enko +ile +katy +rhetoric +##icated +chronology +recycling +##hrer +elongated +mughal +pascal +profiles +vibration +databases +domination +##fare +##rant +matthias +digest +rehearsal +polling +weiss +initiation +reeves +clinging +flourished +impress +ngo +##hoff +##ume +buckley +symposium +rhythms +weed +emphasize +transforming +##taking +##gence +##yman +accountant +analyze +flicker +foil +priesthood +voluntarily +decreases +##80 +##hya +slater +sv +charting +mcgill +##lde +moreno +##iu +besieged +zur +robes +##phic +admitting +api +deported +turmoil +peyton +earthquakes +##ares +nationalists +beau +clair +brethren +interrupt +welch +curated +galerie +requesting +164 +##ested +impending +steward +viper +##vina +complaining +beautifully +brandy +foam +nl +1660 +##cake +alessandro +punches +laced +explanations +##lim +attribute +clit +reggie +discomfort +##cards +smoothed +whales +##cene +adler +countered +duffy +disciplinary +widening +recipe +reliance +conducts +goats +gradient +preaching +##shaw +matilda +quasi +striped +meridian +cannabis +cordoba +certificates +##agh +##tering +graffiti +hangs +pilgrims +repeats +##ych +revive +urine +etat +##hawk +fueled +belts +fuzzy +susceptible +##hang +mauritius +salle +sincere +beers +hooks +##cki +arbitration +entrusted +advise +sniffed +seminar +junk +donnell +processors +principality +strapped +celia +mendoza +everton +fortunes +prejudice +starving +reassigned +steamer +##lund +tuck +evenly +foreman +##ffen +dans +375 +envisioned +slit +##xy +baseman +liberia +rosemary +##weed +electrified +periodically +potassium +stride +contexts +sperm +slade +mariners +influx +bianca +subcommittee +##rane +spilling +icao +estuary +##nock +delivers +iphone +##ulata +isa +mira +bohemian +dessert +##sbury +welcoming +proudly +slowing +##chs +musee +ascension +russ +##vian +waits +##psy +africans +exploit +##morphic +gov +eccentric +crab +peck +##ull +entrances +formidable +marketplace +groom +bolted +metabolism +patton +robbins +courier +payload +endure +##ifier +andes +refrigerator +##pr +ornate +##uca +ruthless +illegitimate +masonry +strasbourg +bikes +adobe +##³ +apples +quintet +willingly +niche +bakery +corpses +energetic +##cliffe +##sser +##ards +177 +centimeters +centro +fuscous +cretaceous +rancho +##yde +andrei +telecom +tottenham +oasis +ordination +vulnerability +presiding +corey +cp +penguins +sims +##pis +malawi +piss +##48 +correction +##cked +##ffle +##ryn +countdown +detectives +psychiatrist +psychedelic +dinosaurs +blouse +##get +choi +vowed +##oz +randomly +##pol +49ers +scrub +blanche +bruins +dusseldorf +##using +unwanted +##ums +212 +dominique +elevations +headlights +om +laguna +##oga +1750 +famously +ignorance +shrewsbury +##aine +ajax +breuning +che +confederacy +greco +overhaul +##screen +paz +skirts +disagreement +cruelty +jagged +phoebe +shifter +hovered +viruses +##wes +mandy +##lined +##gc +landlord +squirrel +dashed +##ι +ornamental +gag +wally +grange +literal +spurs +undisclosed +proceeding +yin +##text +billie +orphan +spanned +humidity +indy +weighted +presentations +explosions +lucian +##tary +vaughn +hindus +##anga +##hell +psycho +171 +daytona +protects +efficiently +rematch +sly +tandem +##oya +rebranded +impaired +hee +metropolis +peach +godfrey +diaspora +ethnicity +prosperous +gleaming +dar +grossing +playback +##rden +stripe +pistols +##tain +births +labelled +##cating +172 +rudy +alba +##onne +aquarium +hostility +##gb +##tase +shudder +sumatra +hardest +lakers +consonant +creeping +demos +homicide +capsule +zeke +liberties +expulsion +pueblo +##comb +trait +transporting +##ddin +##neck +##yna +depart +gregg +mold +ledge +hangar +oldham +playboy +termination +analysts +gmbh +romero +##itic +insist +cradle +filthy +brightness +slash +shootout +deposed +bordering +##truct +isis +microwave +tumbled +sheltered +cathy +werewolves +messy +andersen +convex +clapped +clinched +satire +wasting +edo +vc +rufus +##jak +mont +##etti +poznan +##keeping +restructuring +transverse +##rland +azerbaijani +slovene +gestures +roommate +choking +shear +##quist +vanguard +oblivious +##hiro +disagreed +baptism +##lich +coliseum +##aceae +salvage +societe +cory +locke +relocation +relying +versailles +ahl +swelling +##elo +cheerful +##word +##edes +gin +sarajevo +obstacle +diverted +##nac +messed +thoroughbred +fluttered +utrecht +chewed +acquaintance +assassins +dispatch +mirza +##wart +nike +salzburg +swell +yen +##gee +idle +ligue +samson +##nds +##igh +playful +spawned +##cise +tease +##case +burgundy +##bot +stirring +skeptical +interceptions +marathi +##dies +bedrooms +aroused +pinch +##lik +preferences +tattoos +buster +digitally +projecting +rust +##ital +kitten +priorities +addison +pseudo +##guard +dusk +icons +sermon +##psis +##iba +bt +##lift +##xt +ju +truce +rink +##dah +##wy +defects +psychiatry +offences +calculate +glucose +##iful +##rized +##unda +francaise +##hari +richest +warwickshire +carly +1763 +purity +redemption +lending +##cious +muse +bruises +cerebral +aero +carving +##name +preface +terminology +invade +monty +##int +anarchist +blurred +##iled +rossi +treats +guts +shu +foothills +ballads +undertaking +premise +cecilia +affiliates +blasted +conditional +wilder +minors +drone +rudolph +buffy +swallowing +horton +attested +##hop +rutherford +howell +primetime +livery +penal +##bis +minimize +hydro +wrecked +wrought +palazzo +##gling +cans +vernacular +friedman +nobleman +shale +walnut +danielle +##ection +##tley +sears +##kumar +chords +lend +flipping +streamed +por +dracula +gallons +sacrifices +gamble +orphanage +##iman +mckenzie +##gible +boxers +daly +##balls +##ان +208 +##ific +##rative +##iq +exploited +slated +##uity +circling +hillary +pinched +goldberg +provost +campaigning +lim +piles +ironically +jong +mohan +successors +usaf +##tem +##ught +autobiographical +haute +preserves +##ending +acquitted +comparisons +203 +hydroelectric +gangs +cypriot +torpedoes +rushes +chrome +derive +bumps +instability +fiat +pets +##mbe +silas +dye +reckless +settler +##itation +info +heats +##writing +176 +canonical +maltese +fins +mushroom +stacy +aspen +avid +##kur +##loading +vickers +gaston +hillside +statutes +wilde +gail +kung +sabine +comfortably +motorcycles +##rgo +169 +pneumonia +fetch +##sonic +axel +faintly +parallels +##oop +mclaren +spouse +compton +interdisciplinary +miner +##eni +181 +clamped +##chal +##llah +separates +versa +##mler +scarborough +labrador +##lity +##osing +rutgers +hurdles +como +166 +burt +divers +##100 +wichita +cade +coincided +##erson +bruised +mla +##pper +vineyard +##ili +##brush +notch +mentioning +jase +hearted +kits +doe +##acle +pomerania +##ady +ronan +seizure +pavel +problematic +##zaki +domenico +##ulin +catering +penelope +dependence +parental +emilio +ministerial +atkinson +##bolic +clarkson +chargers +colby +grill +peeked +arises +summon +##aged +fools +##grapher +faculties +qaeda +##vial +garner +refurbished +##hwa +geelong +disasters +nudged +bs +shareholder +lori +algae +reinstated +rot +##ades +##nous +invites +stainless +183 +inclusive +##itude +diocesan +til +##icz +denomination +##xa +benton +floral +registers +##ider +##erman +##kell +absurd +brunei +guangzhou +hitter +retaliation +##uled +##eve +blanc +nh +consistency +contamination +##eres +##rner +dire +palermo +broadcasters +diaries +inspire +vols +brewer +tightening +ky +mixtape +hormone +##tok +stokes +##color +##dly +##ssi +pg +##ometer +##lington +sanitation +##tility +intercontinental +apps +##adt +¹⁄₂ +cylinders +economies +favourable +unison +croix +gertrude +odyssey +vanity +dangling +##logists +upgrades +dice +middleweight +practitioner +##ight +206 +henrik +parlor +orion +angered +lac +python +blurted +##rri +sensual +intends +swings +angled +##phs +husky +attain +peerage +precinct +textiles +cheltenham +shuffled +dai +confess +tasting +bhutan +##riation +tyrone +segregation +abrupt +ruiz +##rish +smirked +blackwell +confidential +browning +amounted +##put +vase +scarce +fabulous +raided +staple +guyana +unemployed +glider +shay +##tow +carmine +troll +intervene +squash +superstar +##uce +cylindrical +len +roadway +researched +handy +##rium +##jana +meta +lao +declares +##rring +##tadt +##elin +##kova +willem +shrubs +napoleonic +realms +skater +qi +volkswagen +##ł +tad +hara +archaeologist +awkwardly +eerie +##kind +wiley +##heimer +##24 +titus +organizers +cfl +crusaders +lama +usb +vent +enraged +thankful +occupants +maximilian +##gaard +possessing +textbooks +##oran +collaborator +quaker +##ulo +avalanche +mono +silky +straits +isaiah +mustang +surged +resolutions +potomac +descend +cl +kilograms +plato +strains +saturdays +##olin +bernstein +##ype +holstein +ponytail +##watch +belize +conversely +heroine +perpetual +##ylus +charcoal +piedmont +glee +negotiating +backdrop +prologue +##jah +##mmy +pasadena +climbs +ramos +sunni +##holm +##tner +##tri +anand +deficiency +hertfordshire +stout +##avi +aperture +orioles +##irs +doncaster +intrigued +bombed +coating +otis +##mat +cocktail +##jit +##eto +amir +arousal +sar +##proof +##act +##ories +dixie +pots +##bow +whereabouts +159 +##fted +drains +bullying +cottages +scripture +coherent +fore +poe +appetite +##uration +sampled +##ators +##dp +derrick +rotor +jays +peacock +installment +##rro +advisors +##coming +rodeo +scotch +##mot +##db +##fen +##vant +ensued +rodrigo +dictatorship +martyrs +twenties +##н +towed +incidence +marta +rainforest +sai +scaled +##cles +oceanic +qualifiers +symphonic +mcbride +dislike +generalized +aubrey +colonization +##iation +##lion +##ssing +disliked +lublin +salesman +##ulates +spherical +whatsoever +sweating +avalon +contention +punt +severity +alderman +atari +##dina +##grant +##rop +scarf +seville +vertices +annexation +fairfield +fascination +inspiring +launches +palatinate +regretted +##rca +feral +##iom +elk +nap +olsen +reddy +yong +##leader +##iae +garment +transports +feng +gracie +outrage +viceroy +insides +##esis +breakup +grady +organizer +softer +grimaced +222 +murals +galicia +arranging +vectors +##rsten +bas +##sb +##cens +sloan +##eka +bitten +ara +fender +nausea +bumped +kris +banquet +comrades +detector +persisted +##llan +adjustment +endowed +cinemas +##shot +sellers +##uman +peek +epa +kindly +neglect +simpsons +talon +mausoleum +runaway +hangul +lookout +##cic +rewards +coughed +acquainted +chloride +##ald +quicker +accordion +neolithic +##qa +artemis +coefficient +lenny +pandora +tx +##xed +ecstasy +litter +segunda +chairperson +gemma +hiss +rumor +vow +nasal +antioch +compensate +patiently +transformers +##eded +judo +morrow +penis +posthumous +philips +bandits +husbands +denote +flaming +##any +##phones +langley +yorker +1760 +walters +##uo +##kle +gubernatorial +fatty +samsung +leroy +outlaw +##nine +unpublished +poole +jakob +##ᵢ +##ₙ +crete +distorted +superiority +##dhi +intercept +crust +mig +claus +crashes +positioning +188 +stallion +301 +frontal +armistice +##estinal +elton +aj +encompassing +camel +commemorated +malaria +woodward +calf +cigar +penetrate +##oso +willard +##rno +##uche +illustrate +amusing +convergence +noteworthy +##lma +##rva +journeys +realise +manfred +##sable +410 +##vocation +hearings +fiance +##posed +educators +provoked +adjusting +##cturing +modular +stockton +paterson +vlad +rejects +electors +selena +maureen +##tres +uber +##rce +swirled +##num +proportions +nanny +pawn +naturalist +parma +apostles +awoke +ethel +wen +##bey +monsoon +overview +##inating +mccain +rendition +risky +adorned +##ih +equestrian +germain +nj +conspicuous +confirming +##yoshi +shivering +##imeter +milestone +rumours +flinched +bounds +smacked +token +##bei +lectured +automobiles +##shore +impacted +##iable +nouns +nero +##leaf +ismail +prostitute +trams +##lace +bridget +sud +stimulus +impressions +reins +revolves +##oud +##gned +giro +honeymoon +##swell +criterion +##sms +##uil +libyan +prefers +##osition +211 +preview +sucks +accusation +bursts +metaphor +diffusion +tolerate +faye +betting +cinematographer +liturgical +specials +bitterly +humboldt +##ckle +flux +rattled +##itzer +archaeologists +odor +authorised +marshes +discretion +##ов +alarmed +archaic +inverse +##leton +explorers +##pine +drummond +tsunami +woodlands +##minate +##tland +booklet +insanity +owning +insert +crafted +calculus +##tore +receivers +##bt +stung +##eca +##nched +prevailing +travellers +eyeing +lila +graphs +##borne +178 +julien +##won +morale +adaptive +therapist +erica +cw +libertarian +bowman +pitches +vita +##ional +crook +##ads +##entation +caledonia +mutiny +##sible +1840s +automation +##ß +flock +##pia +ironic +pathology +##imus +remarried +##22 +joker +withstand +energies +##att +shropshire +hostages +madeleine +tentatively +conflicting +mateo +recipes +euros +ol +mercenaries +nico +##ndon +albuquerque +augmented +mythical +bel +freud +##child +cough +##lica +365 +freddy +lillian +genetically +nuremberg +calder +209 +bonn +outdoors +paste +suns +urgency +vin +restraint +tyson +##cera +##selle +barrage +bethlehem +kahn +##par +mounts +nippon +barony +happier +ryu +makeshift +sheldon +blushed +castillo +barking +listener +taped +bethel +fluent +headlines +pornography +rum +disclosure +sighing +mace +doubling +gunther +manly +##plex +rt +interventions +physiological +forwards +emerges +##tooth +##gny +compliment +rib +recession +visibly +barge +faults +connector +exquisite +prefect +##rlin +patio +##cured +elevators +brandt +italics +pena +173 +wasp +satin +ea +botswana +graceful +respectable +##jima +##rter +##oic +franciscan +generates +##dl +alfredo +disgusting +##olate +##iously +sherwood +warns +cod +promo +cheryl +sino +##ة +##escu +twitch +##zhi +brownish +thom +ortiz +##dron +densely +##beat +carmel +reinforce +##bana +187 +anastasia +downhill +vertex +contaminated +remembrance +harmonic +homework +##sol +fiancee +gears +olds +angelica +loft +ramsay +quiz +colliery +sevens +##cape +autism +##hil +walkway +##boats +ruben +abnormal +ounce +khmer +##bbe +zachary +bedside +morphology +punching +##olar +sparrow +convinces +##35 +hewitt +queer +remastered +rods +mabel +solemn +notified +lyricist +symmetric +##xide +174 +encore +passports +wildcats +##uni +baja +##pac +mildly +##ease +bleed +commodity +mounds +glossy +orchestras +##omo +damian +prelude +ambitions +##vet +awhile +remotely +##aud +asserts +imply +##iques +distinctly +modelling +remedy +##dded +windshield +dani +xiao +##endra +audible +powerplant +1300 +invalid +elemental +acquisitions +##hala +immaculate +libby +plata +smuggling +ventilation +denoted +minh +##morphism +430 +differed +dion +kelley +lore +mocking +sabbath +spikes +hygiene +drown +runoff +stylized +tally +liberated +aux +interpreter +righteous +aba +siren +reaper +pearce +millie +##cier +##yra +gaius +##iso +captures +##ttering +dorm +claudio +##sic +benches +knighted +blackness +##ored +discount +fumble +oxidation +routed +##ς +novak +perpendicular +spoiled +fracture +splits +##urt +pads +topology +##cats +axes +fortunate +offenders +protestants +esteem +221 +broadband +convened +frankly +hound +prototypes +isil +facilitated +keel +##sher +sahara +awaited +bubba +orb +prosecutors +186 +hem +520 +##xing +relaxing +remnant +romney +sorted +slalom +stefano +ulrich +##active +exemption +folder +pauses +foliage +hitchcock +epithet +204 +criticisms +##aca +ballistic +brody +hinduism +chaotic +youths +equals +##pala +pts +thicker +analogous +capitalist +improvised +overseeing +sinatra +ascended +beverage +##tl +straightforward +##kon +curran +##west +bois +325 +induce +surveying +emperors +sax +unpopular +##kk +cartoonist +fused +##mble +unto +##yuki +localities +##cko +##ln +darlington +slain +academie +lobbying +sediment +puzzles +##grass +defiance +dickens +manifest +tongues +alumnus +arbor +coincide +184 +appalachian +mustafa +examiner +cabaret +traumatic +yves +bracelet +draining +heroin +magnum +baths +odessa +consonants +mitsubishi +##gua +kellan +vaudeville +##fr +joked +null +straps +probation +##ław +ceded +interfaces +##pas +##zawa +blinding +viet +224 +rothschild +museo +640 +huddersfield +##vr +tactic +##storm +brackets +dazed +incorrectly +##vu +reg +glazed +fearful +manifold +benefited +irony +##sun +stumbling +##rte +willingness +balkans +mei +wraps +##aba +injected +##lea +gu +syed +harmless +##hammer +bray +takeoff +poppy +timor +cardboard +astronaut +purdue +weeping +southbound +cursing +stalls +diagonal +##neer +lamar +bryce +comte +weekdays +harrington +##uba +negatively +##see +lays +grouping +##cken +##henko +affirmed +halle +modernist +##lai +hodges +smelling +aristocratic +baptized +dismiss +justification +oilers +##now +coupling +qin +snack +healer +##qing +gardener +layla +battled +formulated +stephenson +gravitational +##gill +##jun +1768 +granny +coordinating +suites +##cd +##ioned +monarchs +##cote +##hips +sep +blended +apr +barrister +deposition +fia +mina +policemen +paranoid +##pressed +churchyard +covert +crumpled +creep +abandoning +tr +transmit +conceal +barr +understands +readiness +spire +##cology +##enia +##erry +610 +startling +unlock +vida +bowled +slots +##nat +##islav +spaced +trusting +admire +rig +##ink +slack +##70 +mv +207 +casualty +##wei +classmates +##odes +##rar +##rked +amherst +furnished +evolve +foundry +menace +mead +##lein +flu +wesleyan +##kled +monterey +webber +##vos +wil +##mith +##на +bartholomew +justices +restrained +##cke +amenities +191 +mediated +sewage +trenches +ml +mainz +##thus +1800s +##cula +##inski +caine +bonding +213 +converts +spheres +superseded +marianne +crypt +sweaty +ensign +historia +##br +spruce +##post +##ask +forks +thoughtfully +yukon +pamphlet +ames +##uter +karma +##yya +bryn +negotiation +sighs +incapable +##mbre +##ntial +actresses +taft +##mill +luce +prevailed +##amine +1773 +motionless +envoy +testify +investing +sculpted +instructors +provence +kali +cullen +horseback +##while +goodwin +##jos +gaa +norte +##ldon +modify +wavelength +abd +214 +skinned +sprinter +forecast +scheduling +marries +squared +tentative +##chman +boer +##isch +bolts +swap +fisherman +assyrian +impatiently +guthrie +martins +murdoch +194 +tanya +nicely +dolly +lacy +med +##45 +syn +decks +fashionable +millionaire +##ust +surfing +##ml +##ision +heaved +tammy +consulate +attendees +routinely +197 +fuse +saxophonist +backseat +malaya +##lord +scowl +tau +##ishly +193 +sighted +steaming +##rks +303 +911 +##holes +##hong +ching +##wife +bless +conserved +jurassic +stacey +unix +zion +chunk +rigorous +blaine +198 +peabody +slayer +dismay +brewers +nz +##jer +det +##glia +glover +postwar +int +penetration +sylvester +imitation +vertically +airlift +heiress +knoxville +viva +##uin +390 +macon +##rim +##fighter +##gonal +janice +##orescence +##wari +marius +belongings +leicestershire +196 +blanco +inverted +preseason +sanity +sobbing +##due +##elt +##dled +collingwood +regeneration +flickering +shortest +##mount +##osi +feminism +##lat +sherlock +cabinets +fumbled +northbound +precedent +snaps +##mme +researching +##akes +guillaume +insights +manipulated +vapor +neighbour +sap +gangster +frey +f1 +stalking +scarcely +callie +barnett +tendencies +audi +doomed +assessing +slung +panchayat +ambiguous +bartlett +##etto +distributing +violating +wolverhampton +##hetic +swami +histoire +##urus +liable +pounder +groin +hussain +larsen +popping +surprises +##atter +vie +curt +##station +mute +relocate +musicals +authorization +richter +##sef +immortality +tna +bombings +##press +deteriorated +yiddish +##acious +robbed +colchester +cs +pmid +ao +verified +balancing +apostle +swayed +recognizable +oxfordshire +retention +nottinghamshire +contender +judd +invitational +shrimp +uhf +##icient +cleaner +longitudinal +tanker +##mur +acronym +broker +koppen +sundance +suppliers +##gil +4000 +clipped +fuels +petite +##anne +landslide +helene +diversion +populous +landowners +auspices +melville +quantitative +##xes +ferries +nicky +##llus +doo +haunting +roche +carver +downed +unavailable +##pathy +approximation +hiroshima +##hue +garfield +valle +comparatively +keyboardist +traveler +##eit +congestion +calculating +subsidiaries +##bate +serb +modernization +fairies +deepened +ville +averages +##lore +inflammatory +tonga +##itch +co₂ +squads +##hea +gigantic +serum +enjoyment +retailer +verona +35th +cis +##phobic +magna +technicians +##vati +arithmetic +##sport +levin +##dation +amtrak +chow +sienna +##eyer +backstage +entrepreneurship +##otic +learnt +tao +##udy +worcestershire +formulation +baggage +hesitant +bali +sabotage +##kari +barren +enhancing +murmur +pl +freshly +putnam +syntax +aces +medicines +resentment +bandwidth +##sier +grins +chili +guido +##sei +framing +implying +gareth +lissa +genevieve +pertaining +admissions +geo +thorpe +proliferation +sato +bela +analyzing +parting +##gor +awakened +##isman +huddled +secrecy +##kling +hush +gentry +540 +dungeons +##ego +coasts +##utz +sacrificed +##chule +landowner +mutually +prevalence +programmer +adolescent +disrupted +seaside +gee +trusts +vamp +georgie +##nesian +##iol +schedules +sindh +##market +etched +hm +sparse +bey +beaux +scratching +gliding +unidentified +216 +collaborating +gems +jesuits +oro +accumulation +shaping +mbe +anal +##xin +231 +enthusiasts +newscast +##egan +janata +dewey +parkinson +179 +ankara +biennial +towering +dd +inconsistent +950 +##chet +thriving +terminate +cabins +furiously +eats +advocating +donkey +marley +muster +phyllis +leiden +##user +grassland +glittering +iucn +loneliness +217 +memorandum +armenians +##ddle +popularized +rhodesia +60s +lame +##illon +sans +bikini +header +orbits +##xx +##finger +##ulator +sharif +spines +biotechnology +strolled +naughty +yates +##wire +fremantle +milo +##mour +abducted +removes +##atin +humming +wonderland +##chrome +##ester +hume +pivotal +##rates +armand +grams +believers +elector +rte +apron +bis +scraped +##yria +endorsement +initials +##llation +eps +dotted +hints +buzzing +emigration +nearer +##tom +indicators +##ulu +coarse +neutron +protectorate +##uze +directional +exploits +pains +loire +1830s +proponents +guggenheim +rabbits +ritchie +305 +hectare +inputs +hutton +##raz +verify +##ako +boilers +longitude +##lev +skeletal +yer +emilia +citrus +compromised +##gau +pokemon +prescription +paragraph +eduard +cadillac +attire +categorized +kenyan +weddings +charley +##bourg +entertain +monmouth +##lles +nutrients +davey +mesh +incentive +practised +ecosystems +kemp +subdued +overheard +##rya +bodily +maxim +##nius +apprenticeship +ursula +##fight +lodged +rug +silesian +unconstitutional +patel +inspected +coyote +unbeaten +##hak +34th +disruption +convict +parcel +##cl +##nham +collier +implicated +mallory +##iac +##lab +susannah +winkler +##rber +shia +phelps +sediments +graphical +robotic +##sner +adulthood +mart +smoked +##isto +kathryn +clarified +##aran +divides +convictions +oppression +pausing +burying +##mt +federico +mathias +eileen +##tana +kite +hunched +##acies +189 +##atz +disadvantage +liza +kinetic +greedy +paradox +yokohama +dowager +trunks +ventured +##gement +gupta +vilnius +olaf +##thest +crimean +hopper +##ej +progressively +arturo +mouthed +arrondissement +##fusion +rubin +simulcast +oceania +##orum +##stra +##rred +busiest +intensely +navigator +cary +##vine +##hini +##bies +fife +rowe +rowland +posing +insurgents +shafts +lawsuits +activate +conor +inward +culturally +garlic +265 +##eering +eclectic +##hui +##kee +##nl +furrowed +vargas +meteorological +rendezvous +##aus +culinary +commencement +##dition +quota +##notes +mommy +salaries +overlapping +mule +##iology +##mology +sums +wentworth +##isk +##zione +mainline +subgroup +##illy +hack +plaintiff +verdi +bulb +differentiation +engagements +multinational +supplemented +bertrand +caller +regis +##naire +##sler +##arts +##imated +blossom +propagation +kilometer +viaduct +vineyards +##uate +beckett +optimization +golfer +songwriters +seminal +semitic +thud +volatile +evolving +ridley +##wley +trivial +distributions +scandinavia +jiang +##ject +wrestled +insistence +##dio +emphasizes +napkin +##ods +adjunct +rhyme +##ricted +##eti +hopeless +surrounds +tremble +32nd +smoky +##ntly +oils +medicinal +padded +steer +wilkes +219 +255 +concessions +hue +uniquely +blinded +landon +yahoo +##lane +hendrix +commemorating +dex +specify +chicks +##ggio +intercity +1400 +morley +##torm +highlighting +##oting +pang +oblique +stalled +##liner +flirting +newborn +1769 +bishopric +shaved +232 +currie +##ush +dharma +spartan +##ooped +favorites +smug +novella +sirens +abusive +creations +espana +##lage +paradigm +semiconductor +sheen +##rdo +##yen +##zak +nrl +renew +##pose +##tur +adjutant +marches +norma +##enity +ineffective +weimar +grunt +##gat +lordship +plotting +expenditure +infringement +lbs +refrain +av +mimi +mistakenly +postmaster +1771 +##bara +ras +motorsports +tito +199 +subjective +##zza +bully +stew +##kaya +prescott +1a +##raphic +##zam +bids +styling +paranormal +reeve +sneaking +exploding +katz +akbar +migrant +syllables +indefinitely +##ogical +destroys +replaces +applause +##phine +pest +##fide +218 +articulated +bertie +##thing +##cars +##ptic +courtroom +crowley +aesthetics +cummings +tehsil +hormones +titanic +dangerously +##ibe +stadion +jaenelle +auguste +ciudad +##chu +mysore +partisans +##sio +lucan +philipp +##aly +debating +henley +interiors +##rano +##tious +homecoming +beyonce +usher +henrietta +prepares +weeds +##oman +ely +plucked +##pire +##dable +luxurious +##aq +artifact +password +pasture +juno +maddy +minsk +##dder +##ologies +##rone +assessments +martian +royalist +1765 +examines +##mani +##rge +nino +223 +parry +scooped +relativity +##eli +##uting +##cao +congregational +noisy +traverse +##agawa +strikeouts +nickelodeon +obituary +transylvania +binds +depictions +polk +trolley +##yed +##lard +breeders +##under +dryly +hokkaido +1762 +strengths +stacks +bonaparte +connectivity +neared +prostitutes +stamped +anaheim +gutierrez +sinai +##zzling +bram +fresno +madhya +##86 +proton +##lena +##llum +##phon +reelected +wanda +##anus +##lb +ample +distinguishing +##yler +grasping +sermons +tomato +bland +stimulation +avenues +##eux +spreads +scarlett +fern +pentagon +assert +baird +chesapeake +ir +calmed +distortion +fatalities +##olis +correctional +pricing +##astic +##gina +prom +dammit +ying +collaborate +##chia +welterweight +33rd +pointer +substitution +bonded +umpire +communicating +multitude +paddle +##obe +federally +intimacy +##insky +betray +ssr +##lett +##lean +##lves +##therapy +airbus +##tery +functioned +ud +bearer +biomedical +netflix +##hire +##nca +condom +brink +ik +##nical +macy +##bet +flap +gma +experimented +jelly +lavender +##icles +##ulia +munro +##mian +##tial +rye +##rle +60th +gigs +hottest +rotated +predictions +fuji +bu +##erence +##omi +barangay +##fulness +##sas +clocks +##rwood +##liness +cereal +roe +wight +decker +uttered +babu +onion +xml +forcibly +##df +petra +sarcasm +hartley +peeled +storytelling +##42 +##xley +##ysis +##ffa +fibre +kiel +auditor +fig +harald +greenville +##berries +geographically +nell +quartz +##athic +cemeteries +##lr +crossings +nah +holloway +reptiles +chun +sichuan +snowy +660 +corrections +##ivo +zheng +ambassadors +blacksmith +fielded +fluids +hardcover +turnover +medications +melvin +academies +##erton +ro +roach +absorbing +spaniards +colton +##founded +outsider +espionage +kelsey +245 +edible +##ulf +dora +establishes +##sham +##tries +contracting +##tania +cinematic +costello +nesting +##uron +connolly +duff +##nology +mma +##mata +fergus +sexes +gi +optics +spectator +woodstock +banning +##hee +##fle +differentiate +outfielder +refinery +226 +312 +gerhard +horde +lair +drastically +##udi +landfall +##cheng +motorsport +odi +##achi +predominant +quay +skins +##ental +edna +harshly +complementary +murdering +##aves +wreckage +##90 +ono +outstretched +lennox +munitions +galen +reconcile +470 +scalp +bicycles +gillespie +questionable +rosenberg +guillermo +hostel +jarvis +kabul +volvo +opium +yd +##twined +abuses +decca +outpost +##cino +sensible +neutrality +##64 +ponce +anchorage +atkins +turrets +inadvertently +disagree +libre +vodka +reassuring +weighs +##yal +glide +jumper +ceilings +repertory +outs +stain +##bial +envy +##ucible +smashing +heightened +policing +hyun +mixes +lai +prima +##ples +celeste +##bina +lucrative +intervened +kc +manually +##rned +stature +staffed +bun +bastards +nairobi +priced +##auer +thatcher +##kia +tripped +comune +##ogan +##pled +brasil +incentives +emanuel +hereford +musica +##kim +benedictine +biennale +##lani +eureka +gardiner +rb +knocks +sha +##ael +##elled +##onate +efficacy +ventura +masonic +sanford +maize +leverage +##feit +capacities +santana +##aur +novelty +vanilla +##cter +##tour +benin +##oir +##rain +neptune +drafting +tallinn +##cable +humiliation +##boarding +schleswig +fabian +bernardo +liturgy +spectacle +sweeney +pont +routledge +##tment +cosmos +ut +hilt +sleek +universally +##eville +##gawa +typed +##dry +favors +allegheny +glaciers +##rly +recalling +aziz +##log +parasite +requiem +auf +##berto +##llin +illumination +##breaker +##issa +festivities +bows +govern +vibe +vp +333 +sprawled +larson +pilgrim +bwf +leaping +##rts +##ssel +alexei +greyhound +hoarse +##dler +##oration +seneca +##cule +gaping +##ulously +##pura +cinnamon +##gens +##rricular +craven +fantasies +houghton +engined +reigned +dictator +supervising +##oris +bogota +commentaries +unnatural +fingernails +spirituality +tighten +##tm +canadiens +protesting +intentional +cheers +sparta +##ytic +##iere +##zine +widen +belgarath +controllers +dodd +iaaf +navarre +##ication +defect +squire +steiner +whisky +##mins +560 +inevitably +tome +##gold +chew +##uid +##lid +elastic +##aby +streaked +alliances +jailed +regal +##ined +##phy +czechoslovak +narration +absently +##uld +bluegrass +guangdong +quran +criticizing +hose +hari +##liest +##owa +skier +streaks +deploy +##lom +raft +bose +dialed +huff +##eira +haifa +simplest +bursting +endings +ib +sultanate +##titled +franks +whitman +ensures +sven +##ggs +collaborators +forster +organising +ui +banished +napier +injustice +teller +layered +thump +##otti +roc +battleships +evidenced +fugitive +sadie +robotics +##roud +equatorial +geologist +##iza +yielding +##bron +##sr +internationale +mecca +##diment +sbs +skyline +toad +uploaded +reflective +undrafted +lal +leafs +bayern +##dai +lakshmi +shortlisted +##stick +##wicz +camouflage +donate +af +christi +lau +##acio +disclosed +nemesis +1761 +assemble +straining +northamptonshire +tal +##asi +bernardino +premature +heidi +42nd +coefficients +galactic +reproduce +buzzed +sensations +zionist +monsieur +myrtle +##eme +archery +strangled +musically +viewpoint +antiquities +bei +trailers +seahawks +cured +pee +preferring +tasmanian +lange +sul +##mail +##working +colder +overland +lucivar +massey +gatherings +haitian +##smith +disapproval +flaws +##cco +##enbach +1766 +npr +##icular +boroughs +creole +forums +techno +1755 +dent +abdominal +streetcar +##eson +##stream +procurement +gemini +predictable +##tya +acheron +christoph +feeder +fronts +vendor +bernhard +jammu +tumors +slang +##uber +goaltender +twists +curving +manson +vuelta +mer +peanut +confessions +pouch +unpredictable +allowance +theodor +vascular +##factory +bala +authenticity +metabolic +coughing +nanjing +##cea +pembroke +##bard +splendid +36th +ff +hourly +##ahu +elmer +handel +##ivate +awarding +thrusting +dl +experimentation +##hesion +##46 +caressed +entertained +steak +##rangle +biologist +orphans +baroness +oyster +stepfather +##dridge +mirage +reefs +speeding +##31 +barons +1764 +227 +inhabit +preached +repealed +##tral +honoring +boogie +captives +administer +johanna +##imate +gel +suspiciously +1767 +sobs +##dington +backbone +hayward +garry +##folding +##nesia +maxi +##oof +##ppe +ellison +galileo +##stand +crimea +frenzy +amour +bumper +matrices +natalia +baking +garth +palestinians +##grove +smack +conveyed +ensembles +gardening +##manship +##rup +##stituting +1640 +harvesting +topography +jing +shifters +dormitory +##carriage +##lston +ist +skulls +##stadt +dolores +jewellery +sarawak +##wai +##zier +fences +christy +confinement +tumbling +credibility +fir +stench +##bria +##plication +##nged +##sam +virtues +##belt +marjorie +pba +##eem +##made +celebrates +schooner +agitated +barley +fulfilling +anthropologist +##pro +restrict +novi +regulating +##nent +padres +##rani +##hesive +loyola +tabitha +milky +olson +proprietor +crambidae +guarantees +intercollegiate +ljubljana +hilda +##sko +ignorant +hooded +##lts +sardinia +##lidae +##vation +frontman +privileged +witchcraft +##gp +jammed +laude +poking +##than +bracket +amazement +yunnan +##erus +maharaja +linnaeus +264 +commissioning +milano +peacefully +##logies +akira +rani +regulator +##36 +grasses +##rance +luzon +crows +compiler +gretchen +seaman +edouard +tab +buccaneers +ellington +hamlets +whig +socialists +##anto +directorial +easton +mythological +##kr +##vary +rhineland +semantic +taut +dune +inventions +succeeds +##iter +replication +branched +##pired +jul +prosecuted +kangaroo +penetrated +##avian +middlesbrough +doses +bleak +madam +predatory +relentless +##vili +reluctance +##vir +hailey +crore +silvery +1759 +monstrous +swimmers +transmissions +hawthorn +informing +##eral +toilets +caracas +crouch +kb +##sett +295 +cartel +hadley +##aling +alexia +yvonne +##biology +cinderella +eton +superb +blizzard +stabbing +industrialist +maximus +##gm +##orus +groves +maud +clade +oversized +comedic +##bella +rosen +nomadic +fulham +montane +beverages +galaxies +redundant +swarm +##rot +##folia +##llis +buckinghamshire +fen +bearings +bahadur +##rom +gilles +phased +dynamite +faber +benoit +vip +##ount +##wd +booking +fractured +tailored +anya +spices +westwood +cairns +auditions +inflammation +steamed +##rocity +##acion +##urne +skyla +thereof +watford +torment +archdeacon +transforms +lulu +demeanor +fucked +serge +##sor +mckenna +minas +entertainer +##icide +caress +originate +residue +##sty +1740 +##ilised +##org +beech +##wana +subsidies +##ghton +emptied +gladstone +ru +firefighters +voodoo +##rcle +het +nightingale +tamara +edmond +ingredient +weaknesses +silhouette +285 +compatibility +withdrawing +hampson +##mona +anguish +giggling +##mber +bookstore +##jiang +southernmost +tilting +##vance +bai +economical +rf +briefcase +dreadful +hinted +projections +shattering +totaling +##rogate +analogue +indicted +periodical +fullback +##dman +haynes +##tenberg +##ffs +##ishment +1745 +thirst +stumble +penang +vigorous +##ddling +##kor +##lium +octave +##ove +##enstein +##inen +##ones +siberian +##uti +cbn +repeal +swaying +##vington +khalid +tanaka +unicorn +otago +plastered +lobe +riddle +##rella +perch +##ishing +croydon +filtered +graeme +tripoli +##ossa +crocodile +##chers +sufi +mined +##tung +inferno +lsu +##phi +swelled +utilizes +£2 +cale +periodicals +styx +hike +informally +coop +lund +##tidae +ala +hen +qui +transformations +disposed +sheath +chickens +##cade +fitzroy +sas +silesia +unacceptable +odisha +1650 +sabrina +pe +spokane +ratios +athena +massage +shen +dilemma +##drum +##riz +##hul +corona +doubtful +niall +##pha +##bino +fines +cite +acknowledging +bangor +ballard +bathurst +##resh +huron +mustered +alzheimer +garments +kinase +tyre +warship +##cp +flashback +pulmonary +braun +cheat +kamal +cyclists +constructions +grenades +ndp +traveller +excuses +stomped +signalling +trimmed +futsal +mosques +relevance +##wine +wta +##23 +##vah +##lter +hoc +##riding +optimistic +##´s +deco +sim +interacting +rejecting +moniker +waterways +##ieri +##oku +mayors +gdansk +outnumbered +pearls +##ended +##hampton +fairs +totals +dominating +262 +notions +stairway +compiling +pursed +commodities +grease +yeast +##jong +carthage +griffiths +residual +amc +contraction +laird +sapphire +##marine +##ivated +amalgamation +dissolve +inclination +lyle +packaged +altitudes +suez +canons +graded +lurched +narrowing +boasts +guise +wed +enrico +##ovsky +rower +scarred +bree +cub +iberian +protagonists +bargaining +proposing +trainers +voyages +vans +fishes +##aea +##ivist +##verance +encryption +artworks +kazan +sabre +cleopatra +hepburn +rotting +supremacy +mecklenburg +##brate +burrows +hazards +outgoing +flair +organizes +##ctions +scorpion +##usions +boo +234 +chevalier +dunedin +slapping +##34 +ineligible +pensions +##38 +##omic +manufactures +emails +bismarck +238 +weakening +blackish +ding +mcgee +quo +##rling +northernmost +xx +manpower +greed +sampson +clicking +##ange +##horpe +##inations +##roving +torre +##eptive +##moral +symbolism +38th +asshole +meritorious +outfits +splashed +biographies +sprung +astros +##tale +302 +737 +filly +raoul +nw +tokugawa +linden +clubhouse +##apa +tracts +romano +##pio +putin +tags +##note +chained +dickson +gunshot +moe +gunn +rashid +##tails +zipper +##bas +##nea +contrasted +##ply +##udes +plum +pharaoh +##pile +aw +comedies +ingrid +sandwiches +subdivisions +1100 +mariana +nokia +kamen +hz +delaney +veto +herring +##words +possessive +outlines +##roup +siemens +stairwell +rc +gallantry +messiah +palais +yells +233 +zeppelin +##dm +bolivar +##cede +smackdown +mckinley +##mora +##yt +muted +geologic +finely +unitary +avatar +hamas +maynard +rees +bog +contrasting +##rut +liv +chico +disposition +pixel +##erate +becca +dmitry +yeshiva +narratives +##lva +##ulton +mercenary +sharpe +tempered +navigate +stealth +amassed +keynes +##lini +untouched +##rrie +havoc +lithium +##fighting +abyss +graf +southward +wolverine +balloons +implements +ngos +transitions +##icum +ambushed +concacaf +dormant +economists +##dim +costing +csi +rana +universite +boulders +verity +##llon +collin +mellon +misses +cypress +fluorescent +lifeless +spence +##ulla +crewe +shepard +pak +revelations +##م +jolly +gibbons +paw +##dro +##quel +freeing +##test +shack +fries +palatine +##51 +##hiko +accompaniment +cruising +recycled +##aver +erwin +sorting +synthesizers +dyke +realities +sg +strides +enslaved +wetland +##ghan +competence +gunpowder +grassy +maroon +reactors +objection +##oms +carlson +gearbox +macintosh +radios +shelton +##sho +clergyman +prakash +254 +mongols +trophies +oricon +228 +stimuli +twenty20 +cantonese +cortes +mirrored +##saurus +bhp +cristina +melancholy +##lating +enjoyable +nuevo +##wny +downfall +schumacher +##ind +banging +lausanne +rumbled +paramilitary +reflex +ax +amplitude +migratory +##gall +##ups +midi +barnard +lastly +sherry +##hp +##nall +keystone +##kra +carleton +slippery +##53 +coloring +foe +socket +otter +##rgos +mats +##tose +consultants +bafta +bison +topping +##km +490 +primal +abandonment +transplant +atoll +hideous +mort +pained +reproduced +tae +howling +##turn +unlawful +billionaire +hotter +poised +lansing +##chang +dinamo +retro +messing +nfc +domesday +##mina +blitz +timed +##athing +##kley +ascending +gesturing +##izations +signaled +tis +chinatown +mermaid +savanna +jameson +##aint +catalina +##pet +##hers +cochrane +cy +chatting +##kus +alerted +computation +mused +noelle +majestic +mohawk +campo +octagonal +##sant +##hend +241 +aspiring +##mart +comprehend +iona +paralyzed +shimmering +swindon +rhone +##eley +reputed +configurations +pitchfork +agitation +francais +gillian +lipstick +##ilo +outsiders +pontifical +resisting +bitterness +sewer +rockies +##edd +##ucher +misleading +1756 +exiting +galloway +##nging +risked +##heart +246 +commemoration +schultz +##rka +integrating +##rsa +poses +shrieked +##weiler +guineas +gladys +jerking +owls +goldsmith +nightly +penetrating +##unced +lia +##33 +ignited +betsy +##aring +##thorpe +follower +vigorously +##rave +coded +kiran +knit +zoology +tbilisi +##28 +##bered +repository +govt +deciduous +dino +growling +##bba +enhancement +unleashed +chanting +pussy +biochemistry +##eric +kettle +repression +toxicity +nrhp +##arth +##kko +##bush +ernesto +commended +outspoken +242 +mca +parchment +sms +kristen +##aton +bisexual +raked +glamour +navajo +a2 +conditioned +showcased +##hma +spacious +youthful +##esa +usl +appliances +junta +brest +layne +conglomerate +enchanted +chao +loosened +picasso +circulating +inspect +montevideo +##centric +##kti +piazza +spurred +##aith +bari +freedoms +poultry +stamford +lieu +##ect +indigo +sarcastic +bahia +stump +attach +dvds +frankenstein +lille +approx +scriptures +pollen +##script +nmi +overseen +##ivism +tides +proponent +newmarket +inherit +milling +##erland +centralized +##rou +distributors +credentials +drawers +abbreviation +##lco +##xon +downing +uncomfortably +ripe +##oes +erase +franchises +##ever +populace +##bery +##khar +decomposition +pleas +##tet +daryl +sabah +##stle +##wide +fearless +genie +lesions +annette +##ogist +oboe +appendix +nair +dripped +petitioned +maclean +mosquito +parrot +rpg +hampered +1648 +operatic +reservoirs +##tham +irrelevant +jolt +summarized +##fp +medallion +##taff +##− +clawed +harlow +narrower +goddard +marcia +bodied +fremont +suarez +altering +tempest +mussolini +porn +##isms +sweetly +oversees +walkers +solitude +grimly +shrines +hk +ich +supervisors +hostess +dietrich +legitimacy +brushes +expressive +##yp +dissipated +##rse +localized +systemic +##nikov +gettysburg +##js +##uaries +dialogues +muttering +251 +housekeeper +sicilian +discouraged +##frey +beamed +kaladin +halftime +kidnap +##amo +##llet +1754 +synonymous +depleted +instituto +insulin +reprised +##opsis +clashed +##ctric +interrupting +radcliffe +insisting +medici +1715 +ejected +playfully +turbulent +##47 +starvation +##rini +shipment +rebellious +petersen +verification +merits +##rified +cakes +##charged +1757 +milford +shortages +spying +fidelity +##aker +emitted +storylines +harvested +seismic +##iform +cheung +kilda +theoretically +barbie +lynx +##rgy +##tius +goblin +mata +poisonous +##nburg +reactive +residues +obedience +##евич +conjecture +##rac +401 +hating +sixties +kicker +moaning +motown +##bha +emancipation +neoclassical +##hering +consoles +ebert +professorship +##tures +sustaining +assaults +obeyed +affluent +incurred +tornadoes +##eber +##zow +emphasizing +highlanders +cheated +helmets +##ctus +internship +terence +bony +executions +legislators +berries +peninsular +tinged +##aco +1689 +amplifier +corvette +ribbons +lavish +pennant +##lander +worthless +##chfield +##forms +mariano +pyrenees +expenditures +##icides +chesterfield +mandir +tailor +39th +sergey +nestled +willed +aristocracy +devotees +goodnight +raaf +rumored +weaponry +remy +appropriations +harcourt +burr +riaa +##lence +limitation +unnoticed +guo +soaking +swamps +##tica +collapsing +tatiana +descriptive +brigham +psalm +##chment +maddox +##lization +patti +caliph +##aja +akron +injuring +serra +##ganj +basins +##sari +astonished +launcher +##church +hilary +wilkins +sewing +##sf +stinging +##fia +##ncia +underwood +startup +##ition +compilations +vibrations +embankment +jurist +##nity +bard +juventus +groundwater +kern +palaces +helium +boca +cramped +marissa +soto +##worm +jae +princely +##ggy +faso +bazaar +warmly +##voking +229 +pairing +##lite +##grate +##nets +wien +freaked +ulysses +rebirth +##alia +##rent +mummy +guzman +jimenez +stilled +##nitz +trajectory +tha +woken +archival +professions +##pts +##pta +hilly +shadowy +shrink +##bolt +norwood +glued +migrate +stereotypes +devoid +##pheus +625 +evacuate +horrors +infancy +gotham +knowles +optic +downloaded +sachs +kingsley +parramatta +darryl +mor +##onale +shady +commence +confesses +kan +##meter +##placed +marlborough +roundabout +regents +frigates +io +##imating +gothenburg +revoked +carvings +clockwise +convertible +intruder +##sche +banged +##ogo +vicky +bourgeois +##mony +dupont +footing +##gum +pd +##real +buckle +yun +penthouse +sane +720 +serviced +stakeholders +neumann +bb +##eers +comb +##gam +catchment +pinning +rallies +typing +##elles +forefront +freiburg +sweetie +giacomo +widowed +goodwill +worshipped +aspirations +midday +##vat +fishery +##trick +bournemouth +turk +243 +hearth +ethanol +guadalajara +murmurs +sl +##uge +afforded +scripted +##hta +wah +##jn +coroner +translucent +252 +memorials +puck +progresses +clumsy +##race +315 +candace +recounted +##27 +##slin +##uve +filtering +##mac +howl +strata +heron +leveled +##ays +dubious +##oja +##т +##wheel +citations +exhibiting +##laya +##mics +##pods +turkic +##lberg +injunction +##ennial +##mit +antibodies +##44 +organise +##rigues +cardiovascular +cushion +inverness +##zquez +dia +cocoa +sibling +##tman +##roid +expanse +feasible +tunisian +algiers +##relli +rus +bloomberg +dso +westphalia +bro +tacoma +281 +downloads +##ours +konrad +duran +##hdi +continuum +jett +compares +legislator +secession +##nable +##gues +##zuka +translating +reacher +##gley +##ła +aleppo +##agi +tc +orchards +trapping +linguist +versatile +drumming +postage +calhoun +superiors +##mx +barefoot +leary +##cis +ignacio +alfa +kaplan +##rogen +bratislava +mori +##vot +disturb +haas +313 +cartridges +gilmore +radiated +salford +tunic +hades +##ulsive +archeological +delilah +magistrates +auditioned +brewster +charters +empowerment +blogs +cappella +dynasties +iroquois +whipping +##krishna +raceway +truths +myra +weaken +judah +mcgregor +##horse +mic +refueling +37th +burnley +bosses +markus +premio +query +##gga +dunbar +##economic +darkest +lyndon +sealing +commendation +reappeared +##mun +addicted +ezio +slaughtered +satisfactory +shuffle +##eves +##thic +##uj +fortification +warrington +##otto +resurrected +fargo +mane +##utable +##lei +##space +foreword +ox +##aris +##vern +abrams +hua +##mento +sakura +##alo +uv +sentimental +##skaya +midfield +##eses +sturdy +scrolls +macleod +##kyu +entropy +##lance +mitochondrial +cicero +excelled +thinner +convoys +perceive +##oslav +##urable +systematically +grind +burkina +287 +##tagram +ops +##aman +guantanamo +##cloth +##tite +forcefully +wavy +##jou +pointless +##linger +##tze +layton +portico +superficial +clerical +outlaws +##hism +burials +muir +##inn +creditors +hauling +rattle +##leg +calais +monde +archers +reclaimed +dwell +wexford +hellenic +falsely +remorse +##tek +dough +furnishings +##uttered +gabon +neurological +novice +##igraphy +contemplated +pulpit +nightstand +saratoga +##istan +documenting +pulsing +taluk +##firmed +busted +marital +##rien +disagreements +wasps +##yes +hodge +mcdonnell +mimic +fran +pendant +dhabi +musa +##nington +congratulations +argent +darrell +concussion +losers +regrets +thessaloniki +reversal +donaldson +hardwood +thence +achilles +ritter +##eran +demonic +jurgen +prophets +goethe +eki +classmate +buff +##cking +yank +irrational +##inging +perished +seductive +qur +sourced +##crat +##typic +mustard +ravine +barre +horizontally +characterization +phylogenetic +boise +##dit +##runner +##tower +brutally +intercourse +seduce +##bbing +fay +ferris +ogden +amar +nik +unarmed +##inator +evaluating +kyrgyzstan +sweetness +##lford +##oki +mccormick +meiji +notoriety +stimulate +disrupt +figuring +instructional +mcgrath +##zoo +groundbreaking +##lto +flinch +khorasan +agrarian +bengals +mixer +radiating +##sov +ingram +pitchers +nad +tariff +##cript +tata +##codes +##emi +##ungen +appellate +lehigh +##bled +##giri +brawl +duct +texans +##ciation +##ropolis +skipper +speculative +vomit +doctrines +stresses +253 +davy +graders +whitehead +jozef +timely +cumulative +haryana +paints +appropriately +boon +cactus +##ales +##pid +dow +legions +##pit +perceptions +1730 +picturesque +##yse +periphery +rune +wr +##aha +celtics +sentencing +whoa +##erin +confirms +variance +425 +moines +mathews +spade +rave +m1 +fronted +fx +blending +alleging +reared +##gl +237 +##paper +grassroots +eroded +##free +##physical +directs +ordeal +##sław +accelerate +hacker +rooftop +##inia +lev +buys +cebu +devote +##lce +specialising +##ulsion +choreographed +repetition +warehouses +##ryl +paisley +tuscany +analogy +sorcerer +hash +huts +shards +descends +exclude +nix +chaplin +gaga +ito +vane +##drich +causeway +misconduct +limo +orchestrated +glands +jana +##kot +u2 +##mple +##sons +branching +contrasts +scoop +longed +##virus +chattanooga +##75 +syrup +cornerstone +##tized +##mind +##iaceae +careless +precedence +frescoes +##uet +chilled +consult +modelled +snatch +peat +##thermal +caucasian +humane +relaxation +spins +temperance +##lbert +occupations +lambda +hybrids +moons +mp3 +##oese +247 +rolf +societal +yerevan +ness +##ssler +befriended +mechanized +nominate +trough +boasted +cues +seater +##hom +bends +##tangle +conductors +emptiness +##lmer +eurasian +adriatic +tian +##cie +anxiously +lark +propellers +chichester +jock +ev +2a +##holding +credible +recounts +tori +loyalist +abduction +##hoot +##redo +nepali +##mite +ventral +tempting +##ango +##crats +steered +##wice +javelin +dipping +laborers +prentice +looming +titanium +##ː +badges +emir +tensor +##ntation +egyptians +rash +denies +hawthorne +lombard +showers +wehrmacht +dietary +trojan +##reus +welles +executing +horseshoe +lifeboat +##lak +elsa +infirmary +nearing +roberta +boyer +mutter +trillion +joanne +##fine +##oked +sinks +vortex +uruguayan +clasp +sirius +##block +accelerator +prohibit +sunken +byu +chronological +diplomats +ochreous +510 +symmetrical +1644 +maia +##tology +salts +reigns +atrocities +##ия +hess +bared +issn +##vyn +cater +saturated +##cycle +##isse +sable +voyager +dyer +yusuf +##inge +fountains +wolff +##39 +##nni +engraving +rollins +atheist +ominous +##ault +herr +chariot +martina +strung +##fell +##farlane +horrific +sahib +gazes +saetan +erased +ptolemy +##olic +flushing +lauderdale +analytic +##ices +530 +navarro +beak +gorilla +herrera +broom +guadalupe +raiding +sykes +311 +bsc +deliveries +1720 +invasions +carmichael +tajikistan +thematic +ecumenical +sentiments +onstage +##rians +##brand +##sume +catastrophic +flanks +molten +##arns +waller +aimee +terminating +##icing +alternately +##oche +nehru +printers +outraged +##eving +empires +template +banners +repetitive +za +##oise +vegetarian +##tell +guiana +opt +cavendish +lucknow +synthesized +##hani +##mada +finalized +##ctable +fictitious +mayoral +unreliable +##enham +embracing +peppers +rbis +##chio +##neo +inhibition +slashed +togo +orderly +embroidered +safari +salty +236 +barron +benito +totaled +##dak +pubs +simulated +caden +devin +tolkien +momma +welding +sesame +##ept +gottingen +hardness +630 +shaman +temeraire +620 +adequately +pediatric +##kit +ck +assertion +radicals +composure +cadence +seafood +beaufort +lazarus +mani +warily +cunning +kurdistan +249 +cantata +##kir +ares +##41 +##clusive +nape +townland +geared +insulted +flutter +boating +violate +draper +dumping +malmo +##hh +##romatic +firearm +alta +bono +obscured +##clave +exceeds +panorama +unbelievable +##train +preschool +##essed +disconnected +installing +rescuing +secretaries +accessibility +##castle +##drive +##ifice +##film +bouts +slug +waterway +mindanao +##buro +##ratic +halves +##ل +calming +liter +maternity +adorable +bragg +electrification +mcc +##dote +roxy +schizophrenia +##body +munoz +kaye +whaling +239 +mil +tingling +tolerant +##ago +unconventional +volcanoes +##finder +deportivo +##llie +robson +kaufman +neuroscience +wai +deportation +masovian +scraping +converse +##bh +hacking +bulge +##oun +administratively +yao +580 +amp +mammoth +booster +claremont +hooper +nomenclature +pursuits +mclaughlin +melinda +##sul +catfish +barclay +substrates +taxa +zee +originals +kimberly +packets +padma +##ality +borrowing +ostensibly +solvent +##bri +##genesis +##mist +lukas +shreveport +veracruz +##ь +##lou +##wives +cheney +tt +anatolia +hobbs +##zyn +cyclic +radiant +alistair +greenish +siena +dat +independents +##bation +conform +pieter +hyper +applicant +bradshaw +spores +telangana +vinci +inexpensive +nuclei +322 +jang +nme +soho +spd +##ign +cradled +receptionist +pow +##43 +##rika +fascism +##ifer +experimenting +##ading +##iec +##region +345 +jocelyn +maris +stair +nocturnal +toro +constabulary +elgin +##kker +msc +##giving +##schen +##rase +doherty +doping +sarcastically +batter +maneuvers +##cano +##apple +##gai +##git +intrinsic +##nst +##stor +1753 +showtime +cafes +gasps +lviv +ushered +##thed +fours +restart +astonishment +transmitting +flyer +shrugs +##sau +intriguing +cones +dictated +mushrooms +medial +##kovsky +##elman +escorting +gaped +##26 +godfather +##door +##sell +djs +recaptured +timetable +vila +1710 +3a +aerodrome +mortals +scientology +##orne +angelina +mag +convection +unpaid +insertion +intermittent +lego +##nated +endeavor +kota +pereira +##lz +304 +bwv +glamorgan +insults +agatha +fey +##cend +fleetwood +mahogany +protruding +steamship +zeta +##arty +mcguire +suspense +##sphere +advising +urges +##wala +hurriedly +meteor +gilded +inline +arroyo +stalker +##oge +excitedly +revered +##cure +earle +introductory +##break +##ilde +mutants +puff +pulses +reinforcement +##haling +curses +lizards +stalk +correlated +##fixed +fallout +macquarie +##unas +bearded +denton +heaving +802 +##ocation +winery +assign +dortmund +##lkirk +everest +invariant +charismatic +susie +##elling +bled +lesley +telegram +sumner +bk +##ogen +##к +wilcox +needy +colbert +duval +##iferous +##mbled +allotted +attends +imperative +##hita +replacements +hawker +##inda +insurgency +##zee +##eke +casts +##yla +680 +ives +transitioned +##pack +##powering +authoritative +baylor +flex +cringed +plaintiffs +woodrow +##skie +drastic +ape +aroma +unfolded +commotion +nt +preoccupied +theta +routines +lasers +privatization +wand +domino +ek +clenching +nsa +strategically +showered +bile +handkerchief +pere +storing +christophe +insulting +316 +nakamura +romani +asiatic +magdalena +palma +cruises +stripping +405 +konstantin +soaring +##berman +colloquially +forerunner +havilland +incarcerated +parasites +sincerity +##utus +disks +plank +saigon +##ining +corbin +homo +ornaments +powerhouse +##tlement +chong +fastened +feasibility +idf +morphological +usable +##nish +##zuki +aqueduct +jaguars +keepers +##flies +aleksandr +faust +assigns +ewing +bacterium +hurled +tricky +hungarians +integers +wallis +321 +yamaha +##isha +hushed +oblivion +aviator +evangelist +friars +##eller +monograph +ode +##nary +airplanes +labourers +charms +##nee +1661 +hagen +tnt +rudder +fiesta +transcript +dorothea +ska +inhibitor +maccabi +retorted +raining +encompassed +clauses +menacing +1642 +lineman +##gist +vamps +##ape +##dick +gloom +##rera +dealings +easing +seekers +##nut +##pment +helens +unmanned +##anu +##isson +basics +##amy +##ckman +adjustments +1688 +brutality +horne +##zell +sui +##55 +##mable +aggregator +##thal +rhino +##drick +##vira +counters +zoom +##01 +##rting +mn +montenegrin +packard +##unciation +##♭ +##kki +reclaim +scholastic +thugs +pulsed +##icia +syriac +quan +saddam +banda +kobe +blaming +buddies +dissent +##lusion +##usia +corbett +jaya +delle +erratic +lexie +##hesis +435 +amiga +hermes +##pressing +##leen +chapels +gospels +jamal +##uating +compute +revolving +warp +##sso +##thes +armory +##eras +##gol +antrim +loki +##kow +##asian +##good +##zano +braid +handwriting +subdistrict +funky +pantheon +##iculate +concurrency +estimation +improper +juliana +##his +newcomers +johnstone +staten +communicated +##oco +##alle +sausage +stormy +##stered +##tters +superfamily +##grade +acidic +collateral +tabloid +##oped +##rza +bladder +austen +##ellant +mcgraw +##hay +hannibal +mein +aquino +lucifer +wo +badger +boar +cher +christensen +greenberg +interruption +##kken +jem +244 +mocked +bottoms +cambridgeshire +##lide +sprawling +##bbly +eastwood +ghent +synth +##buck +advisers +##bah +nominally +hapoel +qu +daggers +estranged +fabricated +towels +vinnie +wcw +misunderstanding +anglia +nothin +unmistakable +##dust +##lova +chilly +marquette +truss +##edge +##erine +reece +##lty +##chemist +##connected +272 +308 +41st +bash +raion +waterfalls +##ump +##main +labyrinth +queue +theorist +##istle +bharatiya +flexed +soundtracks +rooney +leftist +patrolling +wharton +plainly +alleviate +eastman +schuster +topographic +engages +immensely +unbearable +fairchild +1620 +dona +lurking +parisian +oliveira +ia +indictment +hahn +bangladeshi +##aster +vivo +##uming +##ential +antonia +expects +indoors +kildare +harlan +##logue +##ogenic +##sities +forgiven +##wat +childish +tavi +##mide +##orra +plausible +grimm +successively +scooted +##bola +##dget +##rith +spartans +emery +flatly +azure +epilogue +##wark +flourish +##iny +##tracted +##overs +##oshi +bestseller +distressed +receipt +spitting +hermit +topological +##cot +drilled +subunit +francs +##layer +eel +##fk +##itas +octopus +footprint +petitions +ufo +##say +##foil +interfering +leaking +palo +##metry +thistle +valiant +##pic +narayan +mcpherson +##fast +gonzales +##ym +##enne +dustin +novgorod +solos +##zman +doin +##raph +##patient +##meyer +soluble +ashland +cuffs +carole +pendleton +whistling +vassal +##river +deviation +revisited +constituents +rallied +rotate +loomed +##eil +##nting +amateurs +augsburg +auschwitz +crowns +skeletons +##cona +bonnet +257 +dummy +globalization +simeon +sleeper +mandal +differentiated +##crow +##mare +milne +bundled +exasperated +talmud +owes +segregated +##feng +##uary +dentist +piracy +props +##rang +devlin +##torium +malicious +paws +##laid +dependency +##ergy +##fers +##enna +258 +pistons +rourke +jed +grammatical +tres +maha +wig +512 +ghostly +jayne +##achal +##creen +##ilis +##lins +##rence +designate +##with +arrogance +cambodian +clones +showdown +throttle +twain +##ception +lobes +metz +nagoya +335 +braking +##furt +385 +roaming +##minster +amin +crippled +##37 +##llary +indifferent +hoffmann +idols +intimidating +1751 +261 +influenza +memo +onions +1748 +bandage +consciously +##landa +##rage +clandestine +observes +swiped +tangle +##ener +##jected +##trum +##bill +##lta +hugs +congresses +josiah +spirited +##dek +humanist +managerial +filmmaking +inmate +rhymes +debuting +grimsby +ur +##laze +duplicate +vigor +##tf +republished +bolshevik +refurbishment +antibiotics +martini +methane +newscasts +royale +horizons +levant +iain +visas +##ischen +paler +##around +manifestation +snuck +alf +chop +futile +pedestal +rehab +##kat +bmg +kerman +res +fairbanks +jarrett +abstraction +saharan +##zek +1746 +procedural +clearer +kincaid +sash +luciano +##ffey +crunch +helmut +##vara +revolutionaries +##tute +creamy +leach +##mmon +1747 +permitting +nes +plight +wendell +##lese +contra +ts +clancy +ipa +mach +staples +autopsy +disturbances +nueva +karin +pontiac +##uding +proxy +venerable +haunt +leto +bergman +expands +##helm +wal +##pipe +canning +celine +cords +obesity +##enary +intrusion +planner +##phate +reasoned +sequencing +307 +harrow +##chon +##dora +marred +mcintyre +repay +tarzan +darting +248 +harrisburg +margarita +repulsed +##hur +##lding +belinda +hamburger +novo +compliant +runways +bingham +registrar +skyscraper +ic +cuthbert +improvisation +livelihood +##corp +##elial +admiring +##dened +sporadic +believer +casablanca +popcorn +##29 +asha +shovel +##bek +##dice +coiled +tangible +##dez +casper +elsie +resin +tenderness +rectory +##ivision +avail +sonar +##mori +boutique +##dier +guerre +bathed +upbringing +vaulted +sandals +blessings +##naut +##utnant +1680 +306 +foxes +pia +corrosion +hesitantly +confederates +crystalline +footprints +shapiro +tirana +valentin +drones +45th +microscope +shipments +texted +inquisition +wry +guernsey +unauthorized +resigning +760 +ripple +schubert +stu +reassure +felony +##ardo +brittle +koreans +##havan +##ives +dun +implicit +tyres +##aldi +##lth +magnolia +##ehan +##puri +##poulos +aggressively +fei +gr +familiarity +##poo +indicative +##trust +fundamentally +jimmie +overrun +395 +anchors +moans +##opus +britannia +armagh +##ggle +purposely +seizing +##vao +bewildered +mundane +avoidance +cosmopolitan +geometridae +quartermaster +caf +415 +chatter +engulfed +gleam +purge +##icate +juliette +jurisprudence +guerra +revisions +##bn +casimir +brew +##jm +1749 +clapton +cloudy +conde +hermitage +278 +simulations +torches +vincenzo +matteo +##rill +hidalgo +booming +westbound +accomplishment +tentacles +unaffected +##sius +annabelle +flopped +sloping +##litz +dreamer +interceptor +vu +##loh +consecration +copying +messaging +breaker +climates +hospitalized +1752 +torino +afternoons +winfield +witnessing +##teacher +breakers +choirs +sawmill +coldly +##ege +sipping +haste +uninhabited +conical +bibliography +pamphlets +severn +edict +##oca +deux +illnesses +grips +##pl +rehearsals +sis +thinkers +tame +##keepers +1690 +acacia +reformer +##osed +##rys +shuffling +##iring +##shima +eastbound +ionic +rhea +flees +littered +##oum +rocker +vomiting +groaning +champ +overwhelmingly +civilizations +paces +sloop +adoptive +##tish +skaters +##vres +aiding +mango +##joy +nikola +shriek +##ignon +pharmaceuticals +##mg +tuna +calvert +gustavo +stocked +yearbook +##urai +##mana +computed +subsp +riff +hanoi +kelvin +hamid +moors +pastures +summons +jihad +nectar +##ctors +bayou +untitled +pleasing +vastly +republics +intellect +##η +##ulio +##tou +crumbling +stylistic +sb +##ی +consolation +frequented +h₂o +walden +widows +##iens +404 +##ignment +chunks +improves +288 +grit +recited +##dev +snarl +sociological +##arte +##gul +inquired +##held +bruise +clube +consultancy +homogeneous +hornets +multiplication +pasta +prick +savior +##grin +##kou +##phile +yoon +##gara +grimes +vanishing +cheering +reacting +bn +distillery +##quisite +##vity +coe +dockyard +massif +##jord +escorts +voss +##valent +byte +chopped +hawke +illusions +workings +floats +##koto +##vac +kv +annapolis +madden +##onus +alvaro +noctuidae +##cum +##scopic +avenge +steamboat +forte +illustrates +erika +##trip +570 +dew +nationalities +bran +manifested +thirsty +diversified +muscled +reborn +##standing +arson +##lessness +##dran +##logram +##boys +##kushima +##vious +willoughby +##phobia +286 +alsace +dashboard +yuki +##chai +granville +myspace +publicized +tricked +##gang +adjective +##ater +relic +reorganisation +enthusiastically +indications +saxe +##lassified +consolidate +iec +padua +helplessly +ramps +renaming +regulars +pedestrians +accents +convicts +inaccurate +lowers +mana +##pati +barrie +bjp +outta +someplace +berwick +flanking +invoked +marrow +sparsely +excerpts +clothed +rei +##ginal +wept +##straße +##vish +alexa +excel +##ptive +membranes +aquitaine +creeks +cutler +sheppard +implementations +ns +##dur +fragrance +budge +concordia +magnesium +marcelo +##antes +gladly +vibrating +##rral +##ggles +montrose +##omba +lew +seamus +1630 +cocky +##ament +##uen +bjorn +##rrick +fielder +fluttering +##lase +methyl +kimberley +mcdowell +reductions +barbed +##jic +##tonic +aeronautical +condensed +distracting +##promising +huffed +##cala +##sle +claudius +invincible +missy +pious +balthazar +ci +##lang +butte +combo +orson +##dication +myriad +1707 +silenced +##fed +##rh +coco +netball +yourselves +##oza +clarify +heller +peg +durban +etudes +offender +roast +blackmail +curvature +##woods +vile +309 +illicit +suriname +##linson +overture +1685 +bubbling +gymnast +tucking +##mming +##ouin +maldives +##bala +gurney +##dda +##eased +##oides +backside +pinto +jars +racehorse +tending +##rdial +baronetcy +wiener +duly +##rke +barbarian +cupping +flawed +##thesis +bertha +pleistocene +puddle +swearing +##nob +##tically +fleeting +prostate +amulet +educating +##mined +##iti +##tler +75th +jens +respondents +analytics +cavaliers +papacy +raju +##iente +##ulum +##tip +funnel +271 +disneyland +##lley +sociologist +##iam +2500 +faulkner +louvre +menon +##dson +276 +##ower +afterlife +mannheim +peptide +referees +comedians +meaningless +##anger +##laise +fabrics +hurley +renal +sleeps +##bour +##icle +breakout +kristin +roadside +animator +clover +disdain +unsafe +redesign +##urity +firth +barnsley +portage +reset +narrows +268 +commandos +expansive +speechless +tubular +##lux +essendon +eyelashes +smashwords +##yad +##bang +##claim +craved +sprinted +chet +somme +astor +wrocław +orton +266 +bane +##erving +##uing +mischief +##amps +##sund +scaling +terre +##xious +impairment +offenses +undermine +moi +soy +contiguous +arcadia +inuit +seam +##tops +macbeth +rebelled +##icative +##iot +590 +elaborated +frs +uniformed +##dberg +259 +powerless +priscilla +stimulated +980 +qc +arboretum +frustrating +trieste +bullock +##nified +enriched +glistening +intern +##adia +locus +nouvelle +ollie +ike +lash +starboard +ee +tapestry +headlined +hove +rigged +##vite +pollock +##yme +thrive +clustered +cas +roi +gleamed +olympiad +##lino +pressured +regimes +##hosis +##lick +ripley +##ophone +kickoff +gallon +rockwell +##arable +crusader +glue +revolutions +scrambling +1714 +grover +##jure +englishman +aztec +263 +contemplating +coven +ipad +preach +triumphant +tufts +##esian +rotational +##phus +328 +falkland +##brates +strewn +clarissa +rejoin +environmentally +glint +banded +drenched +moat +albanians +johor +rr +maestro +malley +nouveau +shaded +taxonomy +v6 +adhere +bunk +airfields +##ritan +1741 +encompass +remington +tran +##erative +amelie +mazda +friar +morals +passions +##zai +breadth +vis +##hae +argus +burnham +caressing +insider +rudd +##imov +##mini +##rso +italianate +murderous +textual +wainwright +armada +bam +weave +timer +##taken +##nh +fra +##crest +ardent +salazar +taps +tunis +##ntino +allegro +gland +philanthropic +##chester +implication +##optera +esq +judas +noticeably +wynn +##dara +inched +indexed +crises +villiers +bandit +royalties +patterned +cupboard +interspersed +accessory +isla +kendrick +entourage +stitches +##esthesia +headwaters +##ior +interlude +distraught +draught +1727 +##basket +biased +sy +transient +triad +subgenus +adapting +kidd +shortstop +##umatic +dimly +spiked +mcleod +reprint +nellie +pretoria +windmill +##cek +singled +##mps +273 +reunite +##orous +747 +bankers +outlying +##omp +##ports +##tream +apologies +cosmetics +patsy +##deh +##ocks +##yson +bender +nantes +serene +##nad +lucha +mmm +323 +##cius +##gli +cmll +coinage +nestor +juarez +##rook +smeared +sprayed +twitching +sterile +irina +embodied +juveniles +enveloped +miscellaneous +cancers +dq +gulped +luisa +crested +swat +donegal +ref +##anov +##acker +hearst +mercantile +##lika +doorbell +ua +vicki +##alla +##som +bilbao +psychologists +stryker +sw +horsemen +turkmenistan +wits +##national +anson +mathew +screenings +##umb +rihanna +##agne +##nessy +aisles +##iani +##osphere +hines +kenton +saskatoon +tasha +truncated +##champ +##itan +mildred +advises +fredrik +interpreting +inhibitors +##athi +spectroscopy +##hab +##kong +karim +panda +##oia +##nail +##vc +conqueror +kgb +leukemia +##dity +arrivals +cheered +pisa +phosphorus +shielded +##riated +mammal +unitarian +urgently +chopin +sanitary +##mission +spicy +drugged +hinges +##tort +tipping +trier +impoverished +westchester +##caster +267 +epoch +nonstop +##gman +##khov +aromatic +centrally +cerro +##tively +##vio +billions +modulation +sedimentary +283 +facilitating +outrageous +goldstein +##eak +##kt +ld +maitland +penultimate +pollard +##dance +fleets +spaceship +vertebrae +##nig +alcoholism +als +recital +##bham +##ference +##omics +m2 +##bm +trois +##tropical +##в +commemorates +##meric +marge +##raction +1643 +670 +cosmetic +ravaged +##ige +catastrophe +eng +##shida +albrecht +arterial +bellamy +decor +harmon +##rde +bulbs +synchronized +vito +easiest +shetland +shielding +wnba +##glers +##ssar +##riam +brianna +cumbria +##aceous +##rard +cores +thayer +##nsk +brood +hilltop +luminous +carts +keynote +larkin +logos +##cta +##ا +##mund +##quay +lilith +tinted +277 +wrestle +mobilization +##uses +sequential +siam +bloomfield +takahashi +274 +##ieving +presenters +ringo +blazed +witty +##oven +##ignant +devastation +haydn +harmed +newt +therese +##peed +gershwin +molina +rabbis +sudanese +001 +innate +restarted +##sack +##fus +slices +wb +##shah +enroll +hypothetical +hysterical +1743 +fabio +indefinite +warped +##hg +exchanging +525 +unsuitable +##sboro +gallo +1603 +bret +cobalt +homemade +##hunter +mx +operatives +##dhar +terraces +durable +latch +pens +whorls +##ctuated +##eaux +billing +ligament +succumbed +##gly +regulators +spawn +##brick +##stead +filmfare +rochelle +##nzo +1725 +circumstance +saber +supplements +##nsky +##tson +crowe +wellesley +carrot +##9th +##movable +primate +drury +sincerely +topical +##mad +##rao +callahan +kyiv +smarter +tits +undo +##yeh +announcements +anthologies +barrio +nebula +##islaus +##shaft +##tyn +bodyguards +2021 +assassinate +barns +emmett +scully +##mah +##yd +##eland +##tino +##itarian +demoted +gorman +lashed +prized +adventist +writ +##gui +alla +invertebrates +##ausen +1641 +amman +1742 +align +healy +redistribution +##gf +##rize +insulation +##drop +adherents +hezbollah +vitro +ferns +yanking +269 +php +registering +uppsala +cheerleading +confines +mischievous +tully +##ross +49th +docked +roam +stipulated +pumpkin +##bry +prompt +##ezer +blindly +shuddering +craftsmen +frail +scented +katharine +scramble +shaggy +sponge +helix +zaragoza +279 +##52 +43rd +backlash +fontaine +seizures +posse +cowan +nonfiction +telenovela +wwii +hammered +undone +##gpur +encircled +irs +##ivation +artefacts +oneself +searing +smallpox +##belle +##osaurus +shandong +breached +upland +blushing +rankin +infinitely +psyche +tolerated +docking +evicted +##col +unmarked +##lving +gnome +lettering +litres +musique +##oint +benevolent +##jal +blackened +##anna +mccall +racers +tingle +##ocene +##orestation +introductions +radically +292 +##hiff +##باد +1610 +1739 +munchen +plead +##nka +condo +scissors +##sight +##tens +apprehension +##cey +##yin +hallmark +watering +formulas +sequels +##llas +aggravated +bae +commencing +##building +enfield +prohibits +marne +vedic +civilized +euclidean +jagger +beforehand +blasts +dumont +##arney +##nem +740 +conversions +hierarchical +rios +simulator +##dya +##lellan +hedges +oleg +thrusts +shadowed +darby +maximize +1744 +gregorian +##nded +##routed +sham +unspecified +##hog +emory +factual +##smo +##tp +fooled +##rger +ortega +wellness +marlon +##oton +##urance +casket +keating +ley +enclave +##ayan +char +influencing +jia +##chenko +412 +ammonia +erebidae +incompatible +violins +cornered +##arat +grooves +astronauts +columbian +rampant +fabrication +kyushu +mahmud +vanish +##dern +mesopotamia +##lete +ict +##rgen +caspian +kenji +pitted +##vered +999 +grimace +roanoke +tchaikovsky +twinned +##analysis +##awan +xinjiang +arias +clemson +kazakh +sizable +1662 +##khand +##vard +plunge +tatum +vittorio +##nden +cholera +##dana +##oper +bracing +indifference +projectile +superliga +##chee +realises +upgrading +299 +porte +retribution +##vies +nk +stil +##resses +ama +bureaucracy +blackberry +bosch +testosterone +collapses +greer +##pathic +ioc +fifties +malls +##erved +bao +baskets +adolescents +siegfried +##osity +##tosis +mantra +detecting +existent +fledgling +##cchi +dissatisfied +gan +telecommunication +mingled +sobbed +6000 +controversies +outdated +taxis +##raus +fright +slams +##lham +##fect +##tten +detectors +fetal +tanned +##uw +fray +goth +olympian +skipping +mandates +scratches +sheng +unspoken +hyundai +tracey +hotspur +restrictive +##buch +americana +mundo +##bari +burroughs +diva +vulcan +##6th +distinctions +thumping +##ngen +mikey +sheds +fide +rescues +springsteen +vested +valuation +##ece +##ely +pinnacle +rake +sylvie +##edo +almond +quivering +##irus +alteration +faltered +##wad +51st +hydra +ticked +##kato +recommends +##dicated +antigua +arjun +stagecoach +wilfred +trickle +pronouns +##pon +aryan +nighttime +##anian +gall +pea +stitch +##hei +leung +milos +##dini +eritrea +nexus +starved +snowfall +kant +parasitic +cot +discus +hana +strikers +appleton +kitchens +##erina +##partisan +##itha +##vius +disclose +metis +##channel +1701 +tesla +##vera +fitch +1735 +blooded +##tila +decimal +##tang +##bai +cyclones +eun +bottled +peas +pensacola +basha +bolivian +crabs +boil +lanterns +partridge +roofed +1645 +necks +##phila +opined +patting +##kla +##lland +chuckles +volta +whereupon +##nche +devout +euroleague +suicidal +##dee +inherently +involuntary +knitting +nasser +##hide +puppets +colourful +courageous +southend +stills +miraculous +hodgson +richer +rochdale +ethernet +greta +uniting +prism +umm +##haya +##itical +##utation +deterioration +pointe +prowess +##ropriation +lids +scranton +billings +subcontinent +##koff +##scope +brute +kellogg +psalms +degraded +##vez +stanisław +##ructured +ferreira +pun +astonishing +gunnar +##yat +arya +prc +gottfried +##tight +excursion +##ographer +dina +##quil +##nare +huffington +illustrious +wilbur +gundam +verandah +##zard +naacp +##odle +constructive +fjord +kade +##naud +generosity +thrilling +baseline +cayman +frankish +plastics +accommodations +zoological +##fting +cedric +qb +motorized +##dome +##otted +squealed +tackled +canucks +budgets +situ +asthma +dail +gabled +grasslands +whimpered +writhing +judgments +##65 +minnie +pv +##carbon +bananas +grille +domes +monique +odin +maguire +markham +tierney +##estra +##chua +libel +poke +speedy +atrium +laval +notwithstanding +##edly +fai +kala +##sur +robb +##sma +listings +luz +supplementary +tianjin +##acing +enzo +jd +ric +scanner +croats +transcribed +##49 +arden +cv +##hair +##raphy +##lver +##uy +357 +seventies +staggering +alam +horticultural +hs +regression +timbers +blasting +##ounded +montagu +manipulating +##cit +catalytic +1550 +troopers +##meo +condemnation +fitzpatrick +##oire +##roved +inexperienced +1670 +castes +##lative +outing +314 +dubois +flicking +quarrel +ste +learners +1625 +iq +whistled +##class +282 +classify +tariffs +temperament +355 +folly +liszt +##yles +immersed +jordanian +ceasefire +apparel +extras +maru +fished +##bio +harta +stockport +assortment +craftsman +paralysis +transmitters +##cola +blindness +##wk +fatally +proficiency +solemnly +##orno +repairing +amore +groceries +ultraviolet +##chase +schoolhouse +##tua +resurgence +nailed +##otype +##× +ruse +saliva +diagrams +##tructing +albans +rann +thirties +1b +antennas +hilarious +cougars +paddington +stats +##eger +breakaway +ipod +reza +authorship +prohibiting +scoffed +##etz +##ttle +conscription +defected +trondheim +##fires +ivanov +keenan +##adan +##ciful +##fb +##slow +locating +##ials +##tford +cadiz +basalt +blankly +interned +rags +rattling +##tick +carpathian +reassured +sync +bum +guildford +iss +staunch +##onga +astronomers +sera +sofie +emergencies +susquehanna +##heard +duc +mastery +vh1 +williamsburg +bayer +buckled +craving +##khan +##rdes +bloomington +##write +alton +barbecue +##bians +justine +##hri +##ndt +delightful +smartphone +newtown +photon +retrieval +peugeot +hissing +##monium +##orough +flavors +lighted +relaunched +tainted +##games +##lysis +anarchy +microscopic +hopping +adept +evade +evie +##beau +inhibit +sinn +adjustable +hurst +intuition +wilton +cisco +44th +lawful +lowlands +stockings +thierry +##dalen +##hila +##nai +fates +prank +tb +maison +lobbied +provocative +1724 +4a +utopia +##qual +carbonate +gujarati +purcell +##rford +curtiss +##mei +overgrown +arenas +mediation +swallows +##rnik +respectful +turnbull +##hedron +##hope +alyssa +ozone +##ʻi +ami +gestapo +johansson +snooker +canteen +cuff +declines +empathy +stigma +##ags +##iner +##raine +taxpayers +gui +volga +##wright +##copic +lifespan +overcame +tattooed +enactment +giggles +##ador +##camp +barrington +bribe +obligatory +orbiting +peng +##enas +elusive +sucker +##vating +cong +hardship +empowered +anticipating +estrada +cryptic +greasy +detainees +planck +sudbury +plaid +dod +marriott +kayla +##ears +##vb +##zd +mortally +##hein +cognition +radha +319 +liechtenstein +meade +richly +argyle +harpsichord +liberalism +trumpets +lauded +tyrant +salsa +tiled +lear +promoters +reused +slicing +trident +##chuk +##gami +##lka +cantor +checkpoint +##points +gaul +leger +mammalian +##tov +##aar +##schaft +doha +frenchman +nirvana +##vino +delgado +headlining +##eron +##iography +jug +tko +1649 +naga +intersections +##jia +benfica +nawab +##suka +ashford +gulp +##deck +##vill +##rug +brentford +frazier +pleasures +dunne +potsdam +shenzhen +dentistry +##tec +flanagan +##dorff +##hear +chorale +dinah +prem +quezon +##rogated +relinquished +sutra +terri +##pani +flaps +##rissa +poly +##rnet +homme +aback +##eki +linger +womb +##kson +##lewood +doorstep +orthodoxy +threaded +westfield +##rval +dioceses +fridays +subsided +##gata +loyalists +##biotic +##ettes +letterman +lunatic +prelate +tenderly +invariably +souza +thug +winslow +##otide +furlongs +gogh +jeopardy +##runa +pegasus +##umble +humiliated +standalone +tagged +##roller +freshmen +klan +##bright +attaining +initiating +transatlantic +logged +viz +##uance +1723 +combatants +intervening +stephane +chieftain +despised +grazed +317 +cdc +galveston +godzilla +macro +simulate +##planes +parades +##esses +960 +##ductive +##unes +equator +overdose +##cans +##hosh +##lifting +joshi +epstein +sonora +treacherous +aquatics +manchu +responsive +##sation +supervisory +##christ +##llins +##ibar +##balance +##uso +kimball +karlsruhe +mab +##emy +ignores +phonetic +reuters +spaghetti +820 +almighty +danzig +rumbling +tombstone +designations +lured +outset +##felt +supermarkets +##wt +grupo +kei +kraft +susanna +##blood +comprehension +genealogy +##aghan +##verted +redding +##ythe +1722 +bowing +##pore +##roi +lest +sharpened +fulbright +valkyrie +sikhs +##unds +swans +bouquet +merritt +##tage +##venting +commuted +redhead +clerks +leasing +cesare +dea +hazy +##vances +fledged +greenfield +servicemen +##gical +armando +blackout +dt +sagged +downloadable +intra +potion +pods +##4th +##mism +xp +attendants +gambia +stale +##ntine +plump +asteroids +rediscovered +buds +flea +hive +##neas +1737 +classifications +debuts +##eles +olympus +scala +##eurs +##gno +##mute +hummed +sigismund +visuals +wiggled +await +pilasters +clench +sulfate +##ances +bellevue +enigma +trainee +snort +##sw +clouded +denim +##rank +##rder +churning +hartman +lodges +riches +sima +##missible +accountable +socrates +regulates +mueller +##cr +1702 +avoids +solids +himalayas +nutrient +pup +##jevic +squat +fades +nec +##lates +##pina +##rona +##ου +privateer +tequila +##gative +##mpton +apt +hornet +immortals +##dou +asturias +cleansing +dario +##rries +##anta +etymology +servicing +zhejiang +##venor +##nx +horned +erasmus +rayon +relocating +£10 +##bags +escalated +promenade +stubble +2010s +artisans +axial +liquids +mora +sho +yoo +##tsky +bundles +oldies +##nally +notification +bastion +##ths +sparkle +##lved +1728 +leash +pathogen +highs +##hmi +immature +880 +gonzaga +ignatius +mansions +monterrey +sweets +bryson +##loe +polled +regatta +brightest +pei +rosy +squid +hatfield +payroll +addict +meath +cornerback +heaviest +lodging +##mage +capcom +rippled +##sily +barnet +mayhem +ymca +snuggled +rousseau +##cute +blanchard +284 +fragmented +leighton +chromosomes +risking +##md +##strel +##utter +corinne +coyotes +cynical +hiroshi +yeomanry +##ractive +ebook +grading +mandela +plume +agustin +magdalene +##rkin +bea +femme +trafford +##coll +##lun +##tance +52nd +fourier +upton +##mental +camilla +gust +iihf +islamabad +longevity +##kala +feldman +netting +##rization +endeavour +foraging +mfa +orr +##open +greyish +contradiction +graz +##ruff +handicapped +marlene +tweed +oaxaca +spp +campos +miocene +pri +configured +cooks +pluto +cozy +pornographic +##entes +70th +fairness +glided +jonny +lynne +rounding +sired +##emon +##nist +remade +uncover +##mack +complied +lei +newsweek +##jured +##parts +##enting +##pg +293 +finer +guerrillas +athenian +deng +disused +stepmother +accuse +gingerly +seduction +521 +confronting +##walker +##going +gora +nostalgia +sabres +virginity +wrenched +##minated +syndication +wielding +eyre +##56 +##gnon +##igny +behaved +taxpayer +sweeps +##growth +childless +gallant +##ywood +amplified +geraldine +scrape +##ffi +babylonian +fresco +##rdan +##kney +##position +1718 +restricting +tack +fukuoka +osborn +selector +partnering +##dlow +318 +gnu +kia +tak +whitley +gables +##54 +##mania +mri +softness +immersion +##bots +##evsky +1713 +chilling +insignificant +pcs +##uis +elites +lina +purported +supplemental +teaming +##americana +##dding +##inton +proficient +rouen +##nage +##rret +niccolo +selects +##bread +fluffy +1621 +gruff +knotted +mukherjee +polgara +thrash +nicholls +secluded +smoothing +thru +corsica +loaf +whitaker +inquiries +##rrier +##kam +indochina +289 +marlins +myles +peking +##tea +extracts +pastry +superhuman +connacht +vogel +##ditional +##het +##udged +##lash +gloss +quarries +refit +teaser +##alic +##gaon +20s +materialized +sling +camped +pickering +tung +tracker +pursuant +##cide +cranes +soc +##cini +##typical +##viere +anhalt +overboard +workout +chores +fares +orphaned +stains +##logie +fenton +surpassing +joyah +triggers +##itte +grandmaster +##lass +##lists +clapping +fraudulent +ledger +nagasaki +##cor +##nosis +##tsa +eucalyptus +tun +##icio +##rney +##tara +dax +heroism +ina +wrexham +onboard +unsigned +##dates +moshe +galley +winnie +droplets +exiles +praises +watered +noodles +##aia +fein +adi +leland +multicultural +stink +bingo +comets +erskine +modernized +canned +constraint +domestically +chemotherapy +featherweight +stifled +##mum +darkly +irresistible +refreshing +hasty +isolate +##oys +kitchener +planners +##wehr +cages +yarn +implant +toulon +elects +childbirth +yue +##lind +##lone +cn +rightful +sportsman +junctions +remodeled +specifies +##rgh +291 +##oons +complimented +##urgent +lister +ot +##logic +bequeathed +cheekbones +fontana +gabby +##dial +amadeus +corrugated +maverick +resented +triangles +##hered +##usly +nazareth +tyrol +1675 +assent +poorer +sectional +aegean +##cous +296 +nylon +ghanaian +##egorical +##weig +cushions +forbid +fusiliers +obstruction +somerville +##scia +dime +earrings +elliptical +leyte +oder +polymers +timmy +atm +midtown +piloted +settles +continual +externally +mayfield +##uh +enrichment +henson +keane +persians +1733 +benji +braden +pep +324 +##efe +contenders +pepsi +valet +##isches +298 +##asse +##earing +goofy +stroll +##amen +authoritarian +occurrences +adversary +ahmedabad +tangent +toppled +dorchester +1672 +modernism +marxism +islamist +charlemagne +exponential +racks +unicode +brunette +mbc +pic +skirmish +##bund +##lad +##powered +##yst +hoisted +messina +shatter +##ctum +jedi +vantage +##music +##neil +clemens +mahmoud +corrupted +authentication +lowry +nils +##washed +omnibus +wounding +jillian +##itors +##opped +serialized +narcotics +handheld +##arm +##plicity +intersecting +stimulating +##onis +crate +fellowships +hemingway +casinos +climatic +fordham +copeland +drip +beatty +leaflets +robber +brothel +madeira +##hedral +sphinx +ultrasound +##vana +valor +forbade +leonid +villas +##aldo +duane +marquez +##cytes +disadvantaged +forearms +kawasaki +reacts +consular +lax +uncles +uphold +##hopper +concepcion +dorsey +lass +##izan +arching +passageway +1708 +researches +tia +internationals +##graphs +##opers +distinguishes +javanese +divert +##uven +plotted +##listic +##rwin +##erik +##tify +affirmative +signifies +validation +##bson +kari +felicity +georgina +zulu +##eros +##rained +##rath +overcoming +##dot +argyll +##rbin +1734 +chiba +ratification +windy +earls +parapet +##marks +hunan +pristine +astrid +punta +##gart +brodie +##kota +##oder +malaga +minerva +rouse +##phonic +bellowed +pagoda +portals +reclamation +##gur +##odies +##⁄₄ +parentheses +quoting +allergic +palette +showcases +benefactor +heartland +nonlinear +##tness +bladed +cheerfully +scans +##ety +##hone +1666 +girlfriends +pedersen +hiram +sous +##liche +##nator +1683 +##nery +##orio +##umen +bobo +primaries +smiley +##cb +unearthed +uniformly +fis +metadata +1635 +ind +##oted +recoil +##titles +##tura +##ια +406 +hilbert +jamestown +mcmillan +tulane +seychelles +##frid +antics +coli +fated +stucco +##grants +1654 +bulky +accolades +arrays +caledonian +carnage +optimism +puebla +##tative +##cave +enforcing +rotherham +seo +dunlop +aeronautics +chimed +incline +zoning +archduke +hellenistic +##oses +##sions +candi +thong +##ople +magnate +rustic +##rsk +projective +slant +##offs +danes +hollis +vocalists +##ammed +congenital +contend +gesellschaft +##ocating +##pressive +douglass +quieter +##cm +##kshi +howled +salim +spontaneously +townsville +buena +southport +##bold +kato +1638 +faerie +stiffly +##vus +##rled +297 +flawless +realising +taboo +##7th +bytes +straightening +356 +jena +##hid +##rmin +cartwright +berber +bertram +soloists +411 +noses +417 +coping +fission +hardin +inca +##cen +1717 +mobilized +vhf +##raf +biscuits +curate +##85 +##anial +331 +gaunt +neighbourhoods +1540 +##abas +blanca +bypassed +sockets +behold +coincidentally +##bane +nara +shave +splinter +terrific +##arion +##erian +commonplace +juris +redwood +waistband +boxed +caitlin +fingerprints +jennie +naturalized +##ired +balfour +craters +jody +bungalow +hugely +quilt +glitter +pigeons +undertaker +bulging +constrained +goo +##sil +##akh +assimilation +reworked +##person +persuasion +##pants +felicia +##cliff +##ulent +1732 +explodes +##dun +##inium +##zic +lyman +vulture +hog +overlook +begs +northwards +ow +spoil +##urer +fatima +favorably +accumulate +sargent +sorority +corresponded +dispersal +kochi +toned +##imi +##lita +internacional +newfound +##agger +##lynn +##rigue +booths +peanuts +##eborg +medicare +muriel +nur +##uram +crates +millennia +pajamas +worsened +##breakers +jimi +vanuatu +yawned +##udeau +carousel +##hony +hurdle +##ccus +##mounted +##pod +rv +##eche +airship +ambiguity +compulsion +recapture +##claiming +arthritis +##osomal +1667 +asserting +ngc +sniffing +dade +discontent +glendale +ported +##amina +defamation +rammed +##scent +fling +livingstone +##fleet +875 +##ppy +apocalyptic +comrade +lcd +##lowe +cessna +eine +persecuted +subsistence +demi +hoop +reliefs +710 +coptic +progressing +stemmed +perpetrators +1665 +priestess +##nio +dobson +ebony +rooster +itf +tortricidae +##bbon +##jian +cleanup +##jean +##øy +1721 +eighties +taxonomic +holiness +##hearted +##spar +antilles +showcasing +stabilized +##nb +gia +mascara +michelangelo +dawned +##uria +##vinsky +extinguished +fitz +grotesque +£100 +##fera +##loid +##mous +barges +neue +throbbed +cipher +johnnie +##a1 +##mpt +outburst +##swick +spearheaded +administrations +c1 +heartbreak +pixels +pleasantly +##enay +lombardy +plush +##nsed +bobbie +##hly +reapers +tremor +xiang +minogue +substantive +hitch +barak +##wyl +kwan +##encia +910 +obscene +elegance +indus +surfer +bribery +conserve +##hyllum +##masters +horatio +##fat +apes +rebound +psychotic +##pour +iteration +##mium +##vani +botanic +horribly +antiques +dispose +paxton +##hli +##wg +timeless +1704 +disregard +engraver +hounds +##bau +##version +looted +uno +facilitates +groans +masjid +rutland +antibody +disqualification +decatur +footballers +quake +slacks +48th +rein +scribe +stabilize +commits +exemplary +tho +##hort +##chison +pantry +traversed +##hiti +disrepair +identifiable +vibrated +baccalaureate +##nnis +csa +interviewing +##iensis +##raße +greaves +wealthiest +343 +classed +jogged +£5 +##58 +##atal +illuminating +knicks +respecting +##uno +scrubbed +##iji +##dles +kruger +moods +growls +raider +silvia +chefs +kam +vr +cree +percival +##terol +gunter +counterattack +defiant +henan +ze +##rasia +##riety +equivalence +submissions +##fra +##thor +bautista +mechanically +##heater +cornice +herbal +templar +##mering +outputs +ruining +ligand +renumbered +extravagant +mika +blockbuster +eta +insurrection +##ilia +darkening +ferocious +pianos +strife +kinship +##aer +melee +##anor +##iste +##may +##oue +decidedly +weep +##jad +##missive +##ppel +354 +puget +unease +##gnant +1629 +hammering +kassel +ob +wessex +##lga +bromwich +egan +paranoia +utilization +##atable +##idad +contradictory +provoke +##ols +##ouring +##tangled +knesset +##very +##lette +plumbing +##sden +##¹ +greensboro +occult +sniff +338 +zev +beaming +gamer +haggard +mahal +##olt +##pins +mendes +utmost +briefing +gunnery +##gut +##pher +##zh +##rok +1679 +khalifa +sonya +##boot +principals +urbana +wiring +##liffe +##minating +##rrado +dahl +nyu +skepticism +np +townspeople +ithaca +lobster +somethin +##fur +##arina +##−1 +freighter +zimmerman +biceps +contractual +##herton +amend +hurrying +subconscious +##anal +336 +meng +clermont +spawning +##eia +##lub +dignitaries +impetus +snacks +spotting +twigs +##bilis +##cz +##ouk +libertadores +nic +skylar +##aina +##firm +gustave +asean +##anum +dieter +legislatures +flirt +bromley +trolls +umar +##bbies +##tyle +blah +parc +bridgeport +crank +negligence +##nction +46th +constantin +molded +bandages +seriousness +00pm +siegel +carpets +compartments +upbeat +statehood +##dner +##edging +marko +730 +platt +##hane +paving +##iy +1738 +abbess +impatience +limousine +nbl +##talk +441 +lucille +mojo +nightfall +robbers +##nais +karel +brisk +calves +replicate +ascribed +telescopes +##olf +intimidated +##reen +ballast +specialization +##sit +aerodynamic +caliphate +rainer +visionary +##arded +epsilon +##aday +##onte +aggregation +auditory +boosted +reunification +kathmandu +loco +robyn +402 +acknowledges +appointing +humanoid +newell +redeveloped +restraints +##tained +barbarians +chopper +1609 +italiana +##lez +##lho +investigates +wrestlemania +##anies +##bib +690 +##falls +creaked +dragoons +gravely +minions +stupidity +volley +##harat +##week +musik +##eries +##uously +fungal +massimo +semantics +malvern +##ahl +##pee +discourage +embryo +imperialism +1910s +profoundly +##ddled +jiangsu +sparkled +stat +##holz +sweatshirt +tobin +##iction +sneered +##cheon +##oit +brit +causal +smyth +##neuve +diffuse +perrin +silvio +##ipes +##recht +detonated +iqbal +selma +##nism +##zumi +roasted +##riders +tay +##ados +##mament +##mut +##rud +840 +completes +nipples +cfa +flavour +hirsch +##laus +calderon +sneakers +moravian +##ksha +1622 +rq +294 +##imeters +bodo +##isance +##pre +##ronia +anatomical +excerpt +##lke +dh +kunst +##tablished +##scoe +biomass +panted +unharmed +gael +housemates +montpellier +##59 +coa +rodents +tonic +hickory +singleton +##taro +451 +1719 +aldo +breaststroke +dempsey +och +rocco +##cuit +merton +dissemination +midsummer +serials +##idi +haji +polynomials +##rdon +gs +enoch +prematurely +shutter +taunton +£3 +##grating +##inates +archangel +harassed +##asco +326 +archway +dazzling +##ecin +1736 +sumo +wat +##kovich +1086 +honneur +##ently +##nostic +##ttal +##idon +1605 +403 +1716 +blogger +rents +##gnan +hires +##ikh +##dant +howie +##rons +handler +retracted +shocks +1632 +arun +duluth +kepler +trumpeter +##lary +peeking +seasoned +trooper +##mara +laszlo +##iciencies +##rti +heterosexual +##inatory +##ssion +indira +jogging +##inga +##lism +beit +dissatisfaction +malice +##ately +nedra +peeling +##rgeon +47th +stadiums +475 +vertigo +##ains +iced +restroom +##plify +##tub +illustrating +pear +##chner +##sibility +inorganic +rappers +receipts +watery +##kura +lucinda +##oulos +reintroduced +##8th +##tched +gracefully +saxons +nutritional +wastewater +rained +favourites +bedrock +fisted +hallways +likeness +upscale +##lateral +1580 +blinds +prequel +##pps +##tama +deter +humiliating +restraining +tn +vents +1659 +laundering +recess +rosary +tractors +coulter +federer +##ifiers +##plin +persistence +##quitable +geschichte +pendulum +quakers +##beam +bassett +pictorial +buffet +koln +##sitor +drills +reciprocal +shooters +##57 +##cton +##tees +converge +pip +dmitri +donnelly +yamamoto +aqua +azores +demographics +hypnotic +spitfire +suspend +wryly +roderick +##rran +sebastien +##asurable +mavericks +##fles +##200 +himalayan +prodigy +##iance +transvaal +demonstrators +handcuffs +dodged +mcnamara +sublime +1726 +crazed +##efined +##till +ivo +pondered +reconciled +shrill +sava +##duk +bal +cad +heresy +jaipur +goran +##nished +341 +lux +shelly +whitehall +##hre +israelis +peacekeeping +##wled +1703 +demetrius +ousted +##arians +##zos +beale +anwar +backstroke +raged +shrinking +cremated +##yck +benign +towing +wadi +darmstadt +landfill +parana +soothe +colleen +sidewalks +mayfair +tumble +hepatitis +ferrer +superstructure +##gingly +##urse +##wee +anthropological +translators +##mies +closeness +hooves +##pw +mondays +##roll +##vita +landscaping +##urized +purification +sock +thorns +thwarted +jalan +tiberius +##taka +saline +##rito +confidently +khyber +sculptors +##ij +brahms +hammersmith +inspectors +battista +fivb +fragmentation +hackney +##uls +arresting +exercising +antoinette +bedfordshire +##zily +dyed +##hema +1656 +racetrack +variability +##tique +1655 +austrians +deteriorating +madman +theorists +aix +lehman +weathered +1731 +decreed +eruptions +1729 +flaw +quinlan +sorbonne +flutes +nunez +1711 +adored +downwards +fable +rasped +1712 +moritz +mouthful +renegade +shivers +stunts +dysfunction +restrain +translit +327 +pancakes +##avio +##cision +##tray +351 +vial +##lden +bain +##maid +##oxide +chihuahua +malacca +vimes +##rba +##rnier +1664 +donnie +plaques +##ually +337 +bangs +floppy +huntsville +loretta +nikolay +##otte +eater +handgun +ubiquitous +##hett +eras +zodiac +1634 +##omorphic +1820s +##zog +cochran +##bula +##lithic +warring +##rada +dalai +excused +blazers +mcconnell +reeling +bot +este +##abi +geese +hoax +taxon +##bla +guitarists +##icon +condemning +hunts +inversion +moffat +taekwondo +##lvis +1624 +stammered +##rest +##rzy +sousa +fundraiser +marylebone +navigable +uptown +cabbage +daniela +salman +shitty +whimper +##kian +##utive +programmers +protections +rm +##rmi +##rued +forceful +##enes +fuss +##tao +##wash +brat +oppressive +reykjavik +spartak +ticking +##inkles +##kiewicz +adolph +horst +maui +protege +straighten +cpc +landau +concourse +clements +resultant +##ando +imaginative +joo +reactivated +##rem +##ffled +##uising +consultative +##guide +flop +kaitlyn +mergers +parenting +somber +##vron +supervise +vidhan +##imum +courtship +exemplified +harmonies +medallist +refining +##rrow +##ка +amara +##hum +780 +goalscorer +sited +overshadowed +rohan +displeasure +secretive +multiplied +osman +##orth +engravings +padre +##kali +##veda +miniatures +mis +##yala +clap +pali +rook +##cana +1692 +57th +antennae +astro +oskar +1628 +bulldog +crotch +hackett +yucatan +##sure +amplifiers +brno +ferrara +migrating +##gree +thanking +turing +##eza +mccann +ting +andersson +onslaught +gaines +ganga +incense +standardization +##mation +sentai +scuba +stuffing +turquoise +waivers +alloys +##vitt +regaining +vaults +##clops +##gizing +digger +furry +memorabilia +probing +##iad +payton +rec +deutschland +filippo +opaque +seamen +zenith +afrikaans +##filtration +disciplined +inspirational +##merie +banco +confuse +grafton +tod +##dgets +championed +simi +anomaly +biplane +##ceptive +electrode +##para +1697 +cleavage +crossbow +swirl +informant +##lars +##osta +afi +bonfire +spec +##oux +lakeside +slump +##culus +##lais +##qvist +##rrigan +1016 +facades +borg +inwardly +cervical +xl +pointedly +050 +stabilization +##odon +chests +1699 +hacked +ctv +orthogonal +suzy +##lastic +gaulle +jacobite +rearview +##cam +##erted +ashby +##drik +##igate +##mise +##zbek +affectionately +canine +disperse +latham +##istles +##ivar +spielberg +##orin +##idium +ezekiel +cid +##sg +durga +middletown +##cina +customized +frontiers +harden +##etano +##zzy +1604 +bolsheviks +##66 +coloration +yoko +##bedo +briefs +slabs +debra +liquidation +plumage +##oin +blossoms +dementia +subsidy +1611 +proctor +relational +jerseys +parochial +ter +##ici +esa +peshawar +cavalier +loren +cpi +idiots +shamrock +1646 +dutton +malabar +mustache +##endez +##ocytes +referencing +terminates +marche +yarmouth +##sop +acton +mated +seton +subtly +baptised +beige +extremes +jolted +kristina +telecast +##actic +safeguard +waldo +##baldi +##bular +endeavors +sloppy +subterranean +##ensburg +##itung +delicately +pigment +tq +##scu +1626 +##ound +collisions +coveted +herds +##personal +##meister +##nberger +chopra +##ricting +abnormalities +defective +galician +lucie +##dilly +alligator +likened +##genase +burundi +clears +complexion +derelict +deafening +diablo +fingered +champaign +dogg +enlist +isotope +labeling +mrna +##erre +brilliance +marvelous +##ayo +1652 +crawley +ether +footed +dwellers +deserts +hamish +rubs +warlock +skimmed +##lizer +870 +buick +embark +heraldic +irregularities +##ajan +kiara +##kulam +##ieg +antigen +kowalski +##lge +oakley +visitation +##mbit +vt +##suit +1570 +murderers +##miento +##rites +chimneys +##sling +condemn +custer +exchequer +havre +##ghi +fluctuations +##rations +dfb +hendricks +vaccines +##tarian +nietzsche +biking +juicy +##duced +brooding +scrolling +selangor +##ragan +352 +annum +boomed +seminole +sugarcane +##dna +departmental +dismissing +innsbruck +arteries +ashok +batavia +daze +kun +overtook +##rga +##tlan +beheaded +gaddafi +holm +electronically +faulty +galilee +fractures +kobayashi +##lized +gunmen +magma +aramaic +mala +eastenders +inference +messengers +bf +##qu +407 +bathrooms +##vere +1658 +flashbacks +ideally +misunderstood +##jali +##weather +mendez +##grounds +505 +uncanny +##iii +1709 +friendships +##nbc +sacrament +accommodated +reiterated +logistical +pebbles +thumped +##escence +administering +decrees +drafts +##flight +##cased +##tula +futuristic +picket +intimidation +winthrop +##fahan +interfered +339 +afar +francoise +morally +uta +cochin +croft +dwarfs +##bruck +##dents +##nami +biker +##hner +##meral +nano +##isen +##ometric +##pres +##ан +brightened +meek +parcels +securely +gunners +##jhl +##zko +agile +hysteria +##lten +##rcus +bukit +champs +chevy +cuckoo +leith +sadler +theologians +welded +##section +1663 +jj +plurality +xander +##rooms +##formed +shredded +temps +intimately +pau +tormented +##lok +##stellar +1618 +charred +ems +essen +##mmel +alarms +spraying +ascot +blooms +twinkle +##abia +##apes +internment +obsidian +##chaft +snoop +##dav +##ooping +malibu +##tension +quiver +##itia +hays +mcintosh +travers +walsall +##ffie +1623 +beverley +schwarz +plunging +structurally +m3 +rosenthal +vikram +##tsk +770 +ghz +##onda +##tiv +chalmers +groningen +pew +reckon +unicef +##rvis +55th +##gni +1651 +sulawesi +avila +cai +metaphysical +screwing +turbulence +##mberg +augusto +samba +56th +baffled +momentary +toxin +##urian +##wani +aachen +condoms +dali +steppe +##3d +##app +##oed +##year +adolescence +dauphin +electrically +inaccessible +microscopy +nikita +##ega +atv +##cel +##enter +##oles +##oteric +##ы +accountants +punishments +wrongly +bribes +adventurous +clinch +flinders +southland +##hem +##kata +gough +##ciency +lads +soared +##ה +undergoes +deformation +outlawed +rubbish +##arus +##mussen +##nidae +##rzburg +arcs +##ingdon +##tituted +1695 +wheelbase +wheeling +bombardier +campground +zebra +##lices +##oj +##bain +lullaby +##ecure +donetsk +wylie +grenada +##arding +##ης +squinting +eireann +opposes +##andra +maximal +runes +##broken +##cuting +##iface +##ror +##rosis +additive +britney +adultery +triggering +##drome +detrimental +aarhus +containment +jc +swapped +vichy +##ioms +madly +##oric +##rag +brant +##ckey +##trix +1560 +1612 +broughton +rustling +##stems +##uder +asbestos +mentoring +##nivorous +finley +leaps +##isan +apical +pry +slits +substitutes +##dict +intuitive +fantasia +insistent +unreasonable +##igen +##vna +domed +hannover +margot +ponder +##zziness +impromptu +jian +lc +rampage +stemming +##eft +andrey +gerais +whichever +amnesia +appropriated +anzac +clicks +modifying +ultimatum +cambrian +maids +verve +yellowstone +##mbs +conservatoire +##scribe +adherence +dinners +spectra +imperfect +mysteriously +sidekick +tatar +tuba +##aks +##ifolia +distrust +##athan +##zle +c2 +ronin +zac +##pse +celaena +instrumentalist +scents +skopje +##mbling +comical +compensated +vidal +condor +intersect +jingle +wavelengths +##urrent +mcqueen +##izzly +carp +weasel +422 +kanye +militias +postdoctoral +eugen +gunslinger +##ɛ +faux +hospice +##for +appalled +derivation +dwarves +##elis +dilapidated +##folk +astoria +philology +##lwyn +##otho +##saka +inducing +philanthropy +##bf +##itative +geek +markedly +sql +##yce +bessie +indices +rn +##flict +495 +frowns +resolving +weightlifting +tugs +cleric +contentious +1653 +mania +rms +##miya +##reate +##ruck +##tucket +bien +eels +marek +##ayton +##cence +discreet +unofficially +##ife +leaks +##bber +1705 +332 +dung +compressor +hillsborough +pandit +shillings +distal +##skin +381 +##tat +##you +nosed +##nir +mangrove +undeveloped +##idia +textures +##inho +##500 +##rise +ae +irritating +nay +amazingly +bancroft +apologetic +compassionate +kata +symphonies +##lovic +airspace +##lch +930 +gifford +precautions +fulfillment +sevilla +vulgar +martinique +##urities +looting +piccolo +tidy +##dermott +quadrant +armchair +incomes +mathematicians +stampede +nilsson +##inking +##scan +foo +quarterfinal +##ostal +shang +shouldered +squirrels +##owe +344 +vinegar +##bner +##rchy +##systems +delaying +##trics +ars +dwyer +rhapsody +sponsoring +##gration +bipolar +cinder +starters +##olio +##urst +421 +signage +##nty +aground +figurative +mons +acquaintances +duets +erroneously +soyuz +elliptic +recreated +##cultural +##quette +##ssed +##tma +##zcz +moderator +scares +##itaire +##stones +##udence +juniper +sighting +##just +##nsen +britten +calabria +ry +bop +cramer +forsyth +stillness +##л +airmen +gathers +unfit +##umber +##upt +taunting +##rip +seeker +streamlined +##bution +holster +schumann +tread +vox +##gano +##onzo +strive +dil +reforming +covent +newbury +predicting +##orro +decorate +tre +##puted +andover +ie +asahi +dept +dunkirk +gills +##tori +buren +huskies +##stis +##stov +abstracts +bets +loosen +##opa +1682 +yearning +##glio +##sir +berman +effortlessly +enamel +napoli +persist +##peration +##uez +attache +elisa +b1 +invitations +##kic +accelerating +reindeer +boardwalk +clutches +nelly +polka +starbucks +##kei +adamant +huey +lough +unbroken +adventurer +embroidery +inspecting +stanza +##ducted +naia +taluka +##pone +##roids +chases +deprivation +florian +##jing +##ppet +earthly +##lib +##ssee +colossal +foreigner +vet +freaks +patrice +rosewood +triassic +upstate +##pkins +dominates +ata +chants +ks +vo +##400 +##bley +##raya +##rmed +555 +agra +infiltrate +##ailing +##ilation +##tzer +##uppe +##werk +binoculars +enthusiast +fujian +squeak +##avs +abolitionist +almeida +boredom +hampstead +marsden +rations +##ands +inflated +334 +bonuses +rosalie +patna +##rco +329 +detachments +penitentiary +54th +flourishing +woolf +##dion +##etched +papyrus +##lster +##nsor +##toy +bobbed +dismounted +endelle +inhuman +motorola +tbs +wince +wreath +##ticus +hideout +inspections +sanjay +disgrace +infused +pudding +stalks +##urbed +arsenic +leases +##hyl +##rrard +collarbone +##waite +##wil +dowry +##bant +##edance +genealogical +nitrate +salamanca +scandals +thyroid +necessitated +##! +##" +### +##$ +##% +##& +##' +##( +##) +##* +##+ +##, +##- +##. +##/ +##: +##; +##< +##= +##> +##? +##@ +##[ +##\ +##] +##^ +##_ +##` +##{ +##| +##} +##~ +##¡ +##¢ +##£ +##¤ +##¥ +##¦ +##§ +##¨ +##© +##ª +##« +##¬ +##® +##± +##´ +##µ +##¶ +##· +##º +##» +##¼ +##¾ +##¿ +##æ +##ð +##÷ +##þ +##đ +##ħ +##ŋ +##œ +##ƒ +##ɐ +##ɑ +##ɒ +##ɔ +##ɕ +##ə +##ɡ +##ɣ +##ɨ +##ɪ +##ɫ +##ɬ +##ɯ +##ɲ +##ɴ +##ɹ +##ɾ +##ʀ +##ʁ +##ʂ +##ʃ +##ʉ +##ʊ +##ʋ +##ʌ +##ʎ +##ʐ +##ʑ +##ʒ +##ʔ +##ʰ +##ʲ +##ʳ +##ʷ +##ʸ +##ʻ +##ʼ +##ʾ +##ʿ +##ˈ +##ˡ +##ˢ +##ˣ +##ˤ +##β +##γ +##δ +##ε +##ζ +##θ +##κ +##λ +##μ +##ξ +##ο +##π +##ρ +##σ +##τ +##υ +##φ +##χ +##ψ +##ω +##б +##г +##д +##ж +##з +##м +##п +##с +##у +##ф +##х +##ц +##ч +##ш +##щ +##ъ +##э +##ю +##ђ +##є +##і +##ј +##љ +##њ +##ћ +##ӏ +##ա +##բ +##գ +##դ +##ե +##թ +##ի +##լ +##կ +##հ +##մ +##յ +##ն +##ո +##պ +##ս +##վ +##տ +##ր +##ւ +##ք +##־ +##א +##ב +##ג +##ד +##ו +##ז +##ח +##ט +##י +##ך +##כ +##ל +##ם +##מ +##ן +##נ +##ס +##ע +##ף +##פ +##ץ +##צ +##ק +##ר +##ש +##ת +##، +##ء +##ب +##ت +##ث +##ج +##ح +##خ +##ذ +##ز +##س +##ش +##ص +##ض +##ط +##ظ +##ع +##غ +##ـ +##ف +##ق +##ك +##و +##ى +##ٹ +##پ +##چ +##ک +##گ +##ں +##ھ +##ہ +##ے +##अ +##आ +##उ +##ए +##क +##ख +##ग +##च +##ज +##ट +##ड +##ण +##त +##थ +##द +##ध +##न +##प +##ब +##भ +##म +##य +##र +##ल +##व +##श +##ष +##स +##ह +##ा +##ि +##ी +##ो +##। +##॥ +##ং +##অ +##আ +##ই +##উ +##এ +##ও +##ক +##খ +##গ +##চ +##ছ +##জ +##ট +##ড +##ণ +##ত +##থ +##দ +##ধ +##ন +##প +##ব +##ভ +##ম +##য +##র +##ল +##শ +##ষ +##স +##হ +##া +##ি +##ী +##ে +##க +##ச +##ட +##த +##ந +##ன +##ப +##ம +##ய +##ர +##ல +##ள +##வ +##ா +##ி +##ு +##ே +##ை +##ನ +##ರ +##ಾ +##ක +##ය +##ර +##ල +##ව +##ා +##ก +##ง +##ต +##ท +##น +##พ +##ม +##ย +##ร +##ล +##ว +##ส +##อ +##า +##เ +##་ +##། +##ག +##ང +##ད +##ན +##པ +##བ +##མ +##འ +##ར +##ལ +##ས +##မ +##ა +##ბ +##გ +##დ +##ე +##ვ +##თ +##ი +##კ +##ლ +##მ +##ნ +##ო +##რ +##ს +##ტ +##უ +##ᄀ +##ᄂ +##ᄃ +##ᄅ +##ᄆ +##ᄇ +##ᄉ +##ᄊ +##ᄋ +##ᄌ +##ᄎ +##ᄏ +##ᄐ +##ᄑ +##ᄒ +##ᅡ +##ᅢ +##ᅥ +##ᅦ +##ᅧ +##ᅩ +##ᅪ +##ᅭ +##ᅮ +##ᅯ +##ᅲ +##ᅳ +##ᅴ +##ᅵ +##ᆨ +##ᆫ +##ᆯ +##ᆷ +##ᆸ +##ᆼ +##ᴬ +##ᴮ +##ᴰ +##ᴵ +##ᴺ +##ᵀ +##ᵃ +##ᵇ +##ᵈ +##ᵉ +##ᵍ +##ᵏ +##ᵐ +##ᵒ +##ᵖ +##ᵗ +##ᵘ +##ᵣ +##ᵤ +##ᵥ +##ᶜ +##ᶠ +##‐ +##‑ +##‒ +##– +##— +##― +##‖ +##‘ +##’ +##‚ +##“ +##” +##„ +##† +##‡ +##• +##… +##‰ +##′ +##″ +##› +##‿ +##⁄ +##⁰ +##ⁱ +##⁴ +##⁵ +##⁶ +##⁷ +##⁸ +##⁹ +##⁻ +##ⁿ +##₅ +##₆ +##₇ +##₈ +##₉ +##₊ +##₍ +##₎ +##ₐ +##ₑ +##ₒ +##ₓ +##ₕ +##ₖ +##ₗ +##ₘ +##ₚ +##ₛ +##ₜ +##₤ +##₩ +##€ +##₱ +##₹ +##ℓ +##№ +##ℝ +##™ +##⅓ +##⅔ +##← +##↑ +##→ +##↓ +##↔ +##↦ +##⇄ +##⇌ +##⇒ +##∂ +##∅ +##∆ +##∇ +##∈ +##∗ +##∘ +##√ +##∞ +##∧ +##∨ +##∩ +##∪ +##≈ +##≡ +##≤ +##≥ +##⊂ +##⊆ +##⊕ +##⊗ +##⋅ +##─ +##│ +##■ +##▪ +##● +##★ +##☆ +##☉ +##♠ +##♣ +##♥ +##♦ +##♯ +##⟨ +##⟩ +##ⱼ +##⺩ +##⺼ +##⽥ +##、 +##。 +##〈 +##〉 +##《 +##》 +##「 +##」 +##『 +##』 +##〜 +##あ +##い +##う +##え +##お +##か +##き +##く +##け +##こ +##さ +##し +##す +##せ +##そ +##た +##ち +##っ +##つ +##て +##と +##な +##に +##ぬ +##ね +##の +##は +##ひ +##ふ +##へ +##ほ +##ま +##み +##む +##め +##も +##や +##ゆ +##よ +##ら +##り +##る +##れ +##ろ +##を +##ん +##ァ +##ア +##ィ +##イ +##ウ +##ェ +##エ +##オ +##カ +##キ +##ク +##ケ +##コ +##サ +##シ +##ス +##セ +##タ +##チ +##ッ +##ツ +##テ +##ト +##ナ +##ニ +##ノ +##ハ +##ヒ +##フ +##ヘ +##ホ +##マ +##ミ +##ム +##メ +##モ +##ャ +##ュ +##ョ +##ラ +##リ +##ル +##レ +##ロ +##ワ +##ン +##・ +##ー +##一 +##三 +##上 +##下 +##不 +##世 +##中 +##主 +##久 +##之 +##也 +##事 +##二 +##五 +##井 +##京 +##人 +##亻 +##仁 +##介 +##代 +##仮 +##伊 +##会 +##佐 +##侍 +##保 +##信 +##健 +##元 +##光 +##八 +##公 +##内 +##出 +##分 +##前 +##劉 +##力 +##加 +##勝 +##北 +##区 +##十 +##千 +##南 +##博 +##原 +##口 +##古 +##史 +##司 +##合 +##吉 +##同 +##名 +##和 +##囗 +##四 +##国 +##國 +##土 +##地 +##坂 +##城 +##堂 +##場 +##士 +##夏 +##外 +##大 +##天 +##太 +##夫 +##奈 +##女 +##子 +##学 +##宀 +##宇 +##安 +##宗 +##定 +##宣 +##宮 +##家 +##宿 +##寺 +##將 +##小 +##尚 +##山 +##岡 +##島 +##崎 +##川 +##州 +##巿 +##帝 +##平 +##年 +##幸 +##广 +##弘 +##張 +##彳 +##後 +##御 +##德 +##心 +##忄 +##志 +##忠 +##愛 +##成 +##我 +##戦 +##戸 +##手 +##扌 +##政 +##文 +##新 +##方 +##日 +##明 +##星 +##春 +##昭 +##智 +##曲 +##書 +##月 +##有 +##朝 +##木 +##本 +##李 +##村 +##東 +##松 +##林 +##森 +##楊 +##樹 +##橋 +##歌 +##止 +##正 +##武 +##比 +##氏 +##民 +##水 +##氵 +##氷 +##永 +##江 +##沢 +##河 +##治 +##法 +##海 +##清 +##漢 +##瀬 +##火 +##版 +##犬 +##王 +##生 +##田 +##男 +##疒 +##発 +##白 +##的 +##皇 +##目 +##相 +##省 +##真 +##石 +##示 +##社 +##神 +##福 +##禾 +##秀 +##秋 +##空 +##立 +##章 +##竹 +##糹 +##美 +##義 +##耳 +##良 +##艹 +##花 +##英 +##華 +##葉 +##藤 +##行 +##街 +##西 +##見 +##訁 +##語 +##谷 +##貝 +##貴 +##車 +##軍 +##辶 +##道 +##郎 +##郡 +##部 +##都 +##里 +##野 +##金 +##鈴 +##镇 +##長 +##門 +##間 +##阝 +##阿 +##陳 +##陽 +##雄 +##青 +##面 +##風 +##食 +##香 +##馬 +##高 +##龍 +##龸 +##fi +##fl +##! +##( +##) +##, +##- +##. +##/ +##: +##? +##~ diff --git a/multitask_model.py b/multitask_model.py new file mode 100644 index 0000000000000000000000000000000000000000..f415a0f34e1ce80cf62836cf9261597844c95af2 --- /dev/null +++ b/multitask_model.py @@ -0,0 +1,36 @@ +from __future__ import annotations + +from dataclasses import dataclass + +import torch +from torch import nn +from transformers import AutoModel + + +@dataclass(frozen=True) +class MultiTaskLabelSizes: + intent_type: int + intent_subtype: int + decision_phase: int + + +class MultiTaskIntentModel(nn.Module): + def __init__(self, base_model_name: str, label_sizes: MultiTaskLabelSizes): + super().__init__() + self.base_model_name = base_model_name + self.encoder = AutoModel.from_pretrained(base_model_name) + hidden_size = int(self.encoder.config.hidden_size) + self.dropout = nn.Dropout(float(getattr(self.encoder.config, "seq_classif_dropout", 0.2))) + self.intent_type_head = nn.Linear(hidden_size, label_sizes.intent_type) + self.intent_subtype_head = nn.Linear(hidden_size, label_sizes.intent_subtype) + self.decision_phase_head = nn.Linear(hidden_size, label_sizes.decision_phase) + + def forward(self, input_ids: torch.Tensor, attention_mask: torch.Tensor) -> dict[str, torch.Tensor]: + outputs = self.encoder(input_ids=input_ids, attention_mask=attention_mask) + pooled = outputs.last_hidden_state[:, 0] + pooled = self.dropout(pooled) + return { + "intent_type_logits": self.intent_type_head(pooled), + "intent_subtype_logits": self.intent_subtype_head(pooled), + "decision_phase_logits": self.decision_phase_head(pooled), + } diff --git a/multitask_runtime.py b/multitask_runtime.py new file mode 100644 index 0000000000000000000000000000000000000000..e426f430732133a92bd9589e62a0cf9f7144af51 --- /dev/null +++ b/multitask_runtime.py @@ -0,0 +1,223 @@ +from __future__ import annotations + +import json +from dataclasses import dataclass +from functools import lru_cache +from pathlib import Path + +import torch +from transformers import AutoTokenizer + +from config import ( + CALIBRATION_ARTIFACTS_DIR, + DECISION_PHASE_HEAD_CONFIG, + INTENT_HEAD_CONFIG, + MULTITASK_INTENT_MODEL_DIR, + SUBTYPE_HEAD_CONFIG, +) +from multitask_model import MultiTaskIntentModel, MultiTaskLabelSizes + + +def round_score(value: float) -> float: + return round(float(value), 4) + + +TASK_TO_CONFIG = { + "intent_type": INTENT_HEAD_CONFIG, + "intent_subtype": SUBTYPE_HEAD_CONFIG, + "decision_phase": DECISION_PHASE_HEAD_CONFIG, +} + +TASK_TO_LOGIT_KEY = { + "intent_type": "intent_type_logits", + "intent_subtype": "intent_subtype_logits", + "decision_phase": "decision_phase_logits", +} + + +@dataclass(frozen=True) +class CalibrationState: + calibrated: bool + temperature: float + confidence_threshold: float + + +class MultiTaskRuntime: + def __init__(self, model_dir: Path): + self.model_dir = model_dir + self._tokenizer = None + self._model = None + self._metadata = None + self._predict_batch_size = 32 + + @property + def metadata(self) -> dict: + if self._metadata is None: + metadata_path = self.model_dir / "metadata.json" + if not metadata_path.exists(): + raise FileNotFoundError( + f"Missing multitask metadata at {metadata_path}. Run python3 training/train_multitask_intent.py first." + ) + self._metadata = json.loads(metadata_path.read_text(encoding="utf-8")) + return self._metadata + + @property + def tokenizer(self): + if self._tokenizer is None: + self._tokenizer = AutoTokenizer.from_pretrained(str(self.model_dir)) + return self._tokenizer + + @property + def model(self) -> MultiTaskIntentModel: + if self._model is None: + weights_path = self.model_dir / "multitask_model.pt" + if not weights_path.exists(): + raise FileNotFoundError( + f"Missing multitask weights at {weights_path}. Run python3 training/train_multitask_intent.py first." + ) + payload = torch.load(weights_path, map_location="cpu") + label_sizes = MultiTaskLabelSizes( + intent_type=len(TASK_TO_CONFIG["intent_type"].labels), + intent_subtype=len(TASK_TO_CONFIG["intent_subtype"].labels), + decision_phase=len(TASK_TO_CONFIG["decision_phase"].labels), + ) + model = MultiTaskIntentModel(self.metadata["base_model_name"], label_sizes) + model.load_state_dict(payload["state_dict"], strict=True) + model.eval() + self._model = model + return self._model + + def _encode(self, texts: list[str], max_length: int) -> dict[str, torch.Tensor]: + encoded = self.tokenizer( + texts, + return_tensors="pt", + truncation=True, + padding=True, + max_length=max_length, + ) + return {"input_ids": encoded["input_ids"], "attention_mask": encoded["attention_mask"]} + + def _predict_logits(self, task: str, texts: list[str]) -> torch.Tensor: + config = TASK_TO_CONFIG[task] + inputs = self._encode(texts, config.max_length) + with torch.no_grad(): + outputs = self.model(**inputs) + return outputs[TASK_TO_LOGIT_KEY[task]] + + +class MultiTaskHeadProxy: + def __init__(self, task: str): + if task not in TASK_TO_CONFIG: + raise ValueError(f"Unsupported multitask head: {task}") + self.task = task + self.config = TASK_TO_CONFIG[task] + self.runtime = get_multitask_runtime() + self._calibration = None + + @property + def tokenizer(self): + return self.runtime.tokenizer + + @property + def model(self): + proxy = self + + class _TaskModelView: + config = type("ConfigView", (), {"id2label": proxy.config.id2label})() + + def forward(self, input_ids=None, attention_mask=None, **kwargs): + with torch.no_grad(): + outputs = proxy.runtime.model(input_ids=input_ids, attention_mask=attention_mask) + logits = outputs[TASK_TO_LOGIT_KEY[proxy.task]] + return type("OutputView", (), {"logits": logits})() + + __call__ = forward + + return _TaskModelView() + + @property + def forward_arg_names(self) -> set[str]: + return {"input_ids", "attention_mask"} + + @property + def calibration(self) -> CalibrationState: + if self._calibration is None: + calibrated = False + temperature = 1.0 + confidence_threshold = self.config.default_confidence_threshold + calibration_path = CALIBRATION_ARTIFACTS_DIR / f"{self.task}.json" + if calibration_path.exists(): + payload = json.loads(calibration_path.read_text(encoding="utf-8")) + calibrated = bool(payload.get("calibrated", True)) + temperature = float(payload.get("temperature", 1.0)) + confidence_threshold = float(payload.get("confidence_threshold", confidence_threshold)) + self._calibration = CalibrationState( + calibrated=calibrated, + temperature=max(temperature, 1e-3), + confidence_threshold=min(max(confidence_threshold, 0.0), 1.0), + ) + return self._calibration + + def _predict_probs(self, texts: list[str]) -> tuple[torch.Tensor, torch.Tensor]: + logits = self.runtime._predict_logits(self.task, texts) + raw_probs = torch.softmax(logits, dim=-1) + calibrated_probs = torch.softmax(logits / self.calibration.temperature, dim=-1) + return raw_probs, calibrated_probs + + def predict_probs_batch(self, texts: list[str]) -> tuple[torch.Tensor, torch.Tensor]: + if not texts: + empty = torch.empty((0, len(self.config.labels)), dtype=torch.float32) + return empty, empty + raw_chunks: list[torch.Tensor] = [] + calibrated_chunks: list[torch.Tensor] = [] + for start in range(0, len(texts), self.runtime._predict_batch_size): + batch = texts[start : start + self.runtime._predict_batch_size] + raw, calibrated = self._predict_probs(batch) + raw_chunks.append(raw.detach().cpu()) + calibrated_chunks.append(calibrated.detach().cpu()) + return torch.cat(raw_chunks, dim=0), torch.cat(calibrated_chunks, dim=0) + + def predict_batch(self, texts: list[str], confidence_threshold: float | None = None) -> list[dict]: + if not texts: + return [] + effective_threshold = ( + self.calibration.confidence_threshold + if confidence_threshold is None + else min(max(float(confidence_threshold), 0.0), 1.0) + ) + predictions: list[dict] = [] + for start in range(0, len(texts), self.runtime._predict_batch_size): + batch = texts[start : start + self.runtime._predict_batch_size] + raw_probs, calibrated_probs = self._predict_probs(batch) + for raw_row, calibrated_row in zip(raw_probs, calibrated_probs): + pred_id = int(torch.argmax(calibrated_row).item()) + confidence = float(calibrated_row[pred_id].item()) + raw_confidence = float(raw_row[pred_id].item()) + predictions.append( + { + "label": self.config.id2label[pred_id], + "confidence": round_score(confidence), + "raw_confidence": round_score(raw_confidence), + "confidence_threshold": round_score(effective_threshold), + "calibrated": self.calibration.calibrated, + "meets_confidence_threshold": confidence >= effective_threshold, + } + ) + return predictions + + def predict(self, text: str, confidence_threshold: float | None = None) -> dict: + return self.predict_batch([text], confidence_threshold=confidence_threshold)[0] + + def status(self) -> dict: + return { + "head": self.task, + "model_path": str(self.runtime.model_dir), + "calibration_path": str(CALIBRATION_ARTIFACTS_DIR / f"{self.task}.json"), + "ready": (self.runtime.model_dir / "multitask_model.pt").exists(), + "calibrated": self.calibration.calibrated, + } + + +@lru_cache(maxsize=1) +def get_multitask_runtime() -> MultiTaskRuntime: + return MultiTaskRuntime(MULTITASK_INTENT_MODEL_DIR) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea4b63d88fba03fffa45ff43a8da04a17f423da7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +# Agentic intent classifier — training, calibration, IAB, combined_inference +torch>=2.0.0 +transformers>=4.36.0 +datasets>=2.14.0 +accelerate>=0.25.0 +scikit-learn>=1.2.0 +numpy>=1.24.0 +pandas>=2.0.0 +safetensors>=0.4.0 +onnx>=1.14.0 +onnxscript>=0.1.0 diff --git a/roadmap_issue_drafts.md b/roadmap_issue_drafts.md new file mode 100644 index 0000000000000000000000000000000000000000..3bd6be8f65d30ade9c1b76e9e878d3ad9bf61b89 --- /dev/null +++ b/roadmap_issue_drafts.md @@ -0,0 +1,96 @@ +# Roadmap Issue Drafts + +These are the next three roadmap issues to open in GitHub once authenticated issue creation is available. + +## 1. Build External Demo UI For Decision Envelope + +Suggested title: + +`Build external demo UI for query -> model_output -> system_decision` + +Suggested body: + +```md +## Goal + +Add a simple external-facing demo interface on top of `/classify` so a user can paste a query and see the full decision envelope in a clean, understandable format. + +## Scope + +- add a lightweight UI for entering a raw query +- render `model_output.classification.intent` +- render fallback state when present +- render `system_decision.policy` +- render `system_decision.opportunity` +- include a few preloaded demo prompts + +## Why + +The current JSON API is enough for engineering validation, but not enough for partner demos or taxonomy walkthroughs. + +## Done When + +- someone can run the demo locally and inspect the full output without using curl +- the UI clearly shows query -> classification -> system decision +``` + +## 2. Add Better Support Handling To Intent-Type Layer + +Suggested title: + +`Add dedicated support handling to reduce personal_reflection fallback on account-help prompts` + +Suggested body: + +```md +## Goal + +Reduce the current failure mode where support-like prompts such as login and billing issues collapse into `personal_reflection` or low-confidence fallback behavior. + +## Scope + +- review support-like prompts in the current benchmark +- decide whether to add a dedicated `support` intent-type head or a rule-based override layer +- add a fixed support-oriented evaluation set +- document the chosen approach in `known_limitations.md` + +## Why + +The `decision_phase` head can already separate `support` reasonably well, but the `intent_type` layer still underperforms on these cases. + +## Done When + +- support prompts are no longer commonly labeled as `personal_reflection` +- the combined envelope fails safe for support queries with clearer semantics +``` + +## 3. Add Evaluation Harness And Canonical Benchmark Runner + +Suggested title: + +`Add canonical benchmark runner for demo prompts and regression checks` + +Suggested body: + +```md +## Goal + +Turn the current prompt suite and canonical examples into a repeatable regression harness. + +## Scope + +- add a script that runs the fixed demo prompts through `combined_inference.py` +- save outputs to a machine-readable artifact +- compare current outputs against expected behavior notes +- flag meaningful regressions in fallback behavior and phase classification + +## Why + +The repo now has frozen `v0.1` baselines. A benchmark runner is the clean way to protect demo quality without returning to ad hoc tuning. + +## Done When + +- one command runs the prompt suite end to end +- current outputs are easy to inspect and compare over time +- demo regressions become visible before external sharing +``` diff --git a/schemas.py b/schemas.py new file mode 100644 index 0000000000000000000000000000000000000000..c0019422c1111b7750ea17f824bdbb3f5244c82c --- /dev/null +++ b/schemas.py @@ -0,0 +1,327 @@ +from __future__ import annotations + +from copy import deepcopy + +from config import DECISION_PHASE_LABELS, INTENT_TYPE_LABELS, PROJECT_VERSION, SUBTYPE_LABELS + +API_SCHEMA_VERSION = "2026-03-22" +ALLOWED_MONETIZATION_ELIGIBILITY = { + "allowed", + "allowed_with_caution", + "restricted", + "not_allowed", +} +ALLOWED_DECISION_BASIS = { + "score_threshold", + "fallback_low_confidence", + "fallback_ambiguous_intent", + "fallback_policy_default", +} +ALLOWED_SENSITIVITY = {"low", "medium", "high"} +ALLOWED_OPPORTUNITY_TYPES = { + "none", + "transaction_trigger", + "decision_moment", + "comparison_slot", + "soft_recommendation", +} +ALLOWED_OPPORTUNITY_STRENGTHS = {"low", "medium", "high"} +ALLOWED_FALLBACK_REASONS = {"ambiguous_query", "policy_default", "confidence_below_threshold"} +ALLOWED_IAB_MAPPING_MODES = {"exact", "nearest_equivalent", "internal_extension"} + + +class SchemaValidationError(Exception): + def __init__(self, code: str, details: list[dict]): + super().__init__(code) + self.code = code + self.details = details + + +def _detail(field: str, message: str, error_type: str = "validation_error") -> dict: + return {"field": field, "message": message, "type": error_type} + + +def _expect_dict(value, field: str, errors: list[dict]) -> dict | None: + if not isinstance(value, dict): + errors.append(_detail(field, "must be an object", "type_error")) + return None + return value + + +def _expect_list(value, field: str, errors: list[dict]) -> list | None: + if not isinstance(value, list): + errors.append(_detail(field, "must be an array", "type_error")) + return None + return value + + +def _expect_bool(value, field: str, errors: list[dict]) -> bool | None: + if not isinstance(value, bool): + errors.append(_detail(field, "must be a boolean", "type_error")) + return None + return value + + +def _expect_str(value, field: str, errors: list[dict], *, min_length: int = 0, max_length: int | None = None) -> str | None: + if not isinstance(value, str): + errors.append(_detail(field, "must be a string", "type_error")) + return None + cleaned = value.strip() + if len(cleaned) < min_length: + errors.append(_detail(field, f"must be at least {min_length} characters", "value_error")) + if max_length is not None and len(cleaned) > max_length: + errors.append(_detail(field, f"must be at most {max_length} characters", "value_error")) + return cleaned + + +def _expect_float(value, field: str, errors: list[dict], *, minimum: float = 0.0, maximum: float = 1.0) -> float | None: + if not isinstance(value, (int, float)) or isinstance(value, bool): + errors.append(_detail(field, "must be a number", "type_error")) + return None + coerced = float(value) + if coerced < minimum or coerced > maximum: + errors.append(_detail(field, f"must be between {minimum} and {maximum}", "value_error")) + return coerced + + +def _expect_member(value, field: str, allowed: set[str] | tuple[str, ...], errors: list[dict]) -> str | None: + member = _expect_str(value, field, errors, min_length=1) + if member is not None and member not in allowed: + allowed_values = ", ".join(sorted(allowed)) + errors.append(_detail(field, f"must be one of: {allowed_values}", "value_error")) + return member + + +def validate_classify_request(payload) -> dict: + errors: list[dict] = [] + payload_dict = _expect_dict(payload, "body", errors) + if payload_dict is None: + raise SchemaValidationError("request_validation_failed", errors) + + extra_keys = sorted(set(payload_dict) - {"text"}) + if extra_keys: + errors.append(_detail("body", f"unexpected fields: {', '.join(extra_keys)}", "value_error")) + + text = _expect_str(payload_dict.get("text"), "text", errors, min_length=1, max_length=5000) + if errors: + raise SchemaValidationError("request_validation_failed", errors) + return {"text": text} + + +def _validate_head_confidence(payload, field: str, labels: tuple[str, ...], errors: list[dict]) -> None: + data = _expect_dict(payload, field, errors) + if data is None: + return + _expect_member(data.get("label"), f"{field}.label", labels, errors) + _expect_float(data.get("confidence"), f"{field}.confidence", errors) + _expect_float(data.get("raw_confidence"), f"{field}.raw_confidence", errors) + _expect_float(data.get("confidence_threshold"), f"{field}.confidence_threshold", errors) + _expect_bool(data.get("calibrated"), f"{field}.calibrated", errors) + _expect_bool(data.get("meets_threshold"), f"{field}.meets_threshold", errors) + + +def _validate_iab_level(payload, field: str, errors: list[dict]) -> None: + data = _expect_dict(payload, field, errors) + if data is None: + return + _expect_str(data.get("id"), f"{field}.id", errors, min_length=1) + _expect_str(data.get("label"), f"{field}.label", errors, min_length=1) + + +def _validate_iab_content(payload, field: str, errors: list[dict]) -> None: + data = _expect_dict(payload, field, errors) + if data is None: + return + taxonomy = _expect_str(data.get("taxonomy"), f"{field}.taxonomy", errors, min_length=1) + if taxonomy is not None and taxonomy != "IAB Content Taxonomy": + errors.append(_detail(f"{field}.taxonomy", "must equal 'IAB Content Taxonomy'", "value_error")) + _expect_str(data.get("taxonomy_version"), f"{field}.taxonomy_version", errors, min_length=1) + _validate_iab_level(data.get("tier1"), f"{field}.tier1", errors) + tier2 = data.get("tier2") + if tier2 is not None: + _validate_iab_level(tier2, f"{field}.tier2", errors) + tier3 = data.get("tier3") + if tier3 is not None: + _validate_iab_level(tier3, f"{field}.tier3", errors) + tier4 = data.get("tier4") + if tier4 is not None: + _validate_iab_level(tier4, f"{field}.tier4", errors) + _expect_member(data.get("mapping_mode"), f"{field}.mapping_mode", ALLOWED_IAB_MAPPING_MODES, errors) + _expect_float(data.get("mapping_confidence"), f"{field}.mapping_confidence", errors) + + +def _validate_fallback(payload, field: str, errors: list[dict]) -> None: + if payload is None: + return + data = _expect_dict(payload, field, errors) + if data is None: + return + _expect_bool(data.get("applied"), f"{field}.applied", errors) + _expect_member(data.get("fallback_intent_type"), f"{field}.fallback_intent_type", INTENT_TYPE_LABELS, errors) + _expect_member( + data.get("fallback_monetization_eligibility"), + f"{field}.fallback_monetization_eligibility", + {"not_allowed"}, + errors, + ) + _expect_member(data.get("reason"), f"{field}.reason", ALLOWED_FALLBACK_REASONS, errors) + failed_components = _expect_list(data.get("failed_components"), f"{field}.failed_components", errors) + if failed_components is not None: + for index, item in enumerate(failed_components): + _expect_member( + item, + f"{field}.failed_components[{index}]", + {"intent_type", "intent_subtype", "decision_phase"}, + errors, + ) + + +def _validate_policy(payload, field: str, errors: list[dict]) -> None: + data = _expect_dict(payload, field, errors) + if data is None: + return + _expect_member(data.get("monetization_eligibility"), f"{field}.monetization_eligibility", ALLOWED_MONETIZATION_ELIGIBILITY, errors) + _expect_str(data.get("eligibility_reason"), f"{field}.eligibility_reason", errors, min_length=1) + _expect_member(data.get("decision_basis"), f"{field}.decision_basis", ALLOWED_DECISION_BASIS, errors) + thresholds = _expect_dict(data.get("applied_thresholds"), f"{field}.applied_thresholds", errors) + if thresholds is not None: + _expect_float(thresholds.get("commercial_score_min"), f"{field}.applied_thresholds.commercial_score_min", errors) + _expect_float(thresholds.get("intent_type_confidence_min"), f"{field}.applied_thresholds.intent_type_confidence_min", errors) + _expect_float( + thresholds.get("intent_subtype_confidence_min"), + f"{field}.applied_thresholds.intent_subtype_confidence_min", + errors, + ) + _expect_float(thresholds.get("decision_phase_confidence_min"), f"{field}.applied_thresholds.decision_phase_confidence_min", errors) + _expect_member(data.get("sensitivity"), f"{field}.sensitivity", ALLOWED_SENSITIVITY, errors) + _expect_bool(data.get("regulated_vertical"), f"{field}.regulated_vertical", errors) + + +def _validate_opportunity(payload, field: str, errors: list[dict]) -> None: + data = _expect_dict(payload, field, errors) + if data is None: + return + _expect_member(data.get("type"), f"{field}.type", ALLOWED_OPPORTUNITY_TYPES, errors) + _expect_member(data.get("strength"), f"{field}.strength", ALLOWED_OPPORTUNITY_STRENGTHS, errors) + + +def validate_classify_response(payload) -> dict: + errors: list[dict] = [] + response = _expect_dict(payload, "response", errors) + if response is None: + raise SchemaValidationError("response_validation_failed", errors) + + model_output = _expect_dict(response.get("model_output"), "model_output", errors) + if model_output is not None: + classification = _expect_dict(model_output.get("classification"), "model_output.classification", errors) + if classification is not None: + _validate_iab_content( + classification.get("iab_content"), + "model_output.classification.iab_content", + errors, + ) + intent = _expect_dict(classification.get("intent"), "model_output.classification.intent", errors) + if intent is not None: + _expect_member(intent.get("type"), "model_output.classification.intent.type", INTENT_TYPE_LABELS, errors) + _expect_member(intent.get("subtype"), "model_output.classification.intent.subtype", SUBTYPE_LABELS, errors) + _expect_member( + intent.get("decision_phase"), + "model_output.classification.intent.decision_phase", + DECISION_PHASE_LABELS, + errors, + ) + _expect_float(intent.get("confidence"), "model_output.classification.intent.confidence", errors) + _expect_float(intent.get("commercial_score"), "model_output.classification.intent.commercial_score", errors) + _expect_str(intent.get("summary"), "model_output.classification.intent.summary", errors, min_length=1) + component_confidence = _expect_dict( + intent.get("component_confidence"), + "model_output.classification.intent.component_confidence", + errors, + ) + if component_confidence is not None: + _validate_head_confidence( + component_confidence.get("intent_type"), + "model_output.classification.intent.component_confidence.intent_type", + INTENT_TYPE_LABELS, + errors, + ) + _validate_head_confidence( + component_confidence.get("intent_subtype"), + "model_output.classification.intent.component_confidence.intent_subtype", + SUBTYPE_LABELS, + errors, + ) + _validate_head_confidence( + component_confidence.get("decision_phase"), + "model_output.classification.intent.component_confidence.decision_phase", + DECISION_PHASE_LABELS, + errors, + ) + _expect_member( + component_confidence.get("overall_strategy"), + "model_output.classification.intent.component_confidence.overall_strategy", + {"min_required_component_confidence"}, + errors, + ) + _validate_fallback(model_output.get("fallback"), "model_output.fallback", errors) + + system_decision = _expect_dict(response.get("system_decision"), "system_decision", errors) + if system_decision is not None: + _validate_policy(system_decision.get("policy"), "system_decision.policy", errors) + _validate_opportunity(system_decision.get("opportunity"), "system_decision.opportunity", errors) + intent_trajectory = _expect_list(system_decision.get("intent_trajectory"), "system_decision.intent_trajectory", errors) + if intent_trajectory is not None: + for index, item in enumerate(intent_trajectory): + _expect_member(item, f"system_decision.intent_trajectory[{index}]", DECISION_PHASE_LABELS, errors) + + meta = _expect_dict(response.get("meta"), "meta", errors) + if meta is not None: + _expect_str(meta.get("system_version"), "meta.system_version", errors, min_length=1) + _expect_bool(meta.get("calibration_enabled"), "meta.calibration_enabled", errors) + _expect_bool(meta.get("iab_mapping_is_placeholder"), "meta.iab_mapping_is_placeholder", errors) + + if errors: + raise SchemaValidationError("response_validation_failed", errors) + return deepcopy(response) + + +def validate_health_response(payload) -> dict: + errors: list[dict] = [] + response = _expect_dict(payload, "response", errors) + if response is None: + raise SchemaValidationError("response_validation_failed", errors) + + _expect_member(response.get("status"), "status", {"ok"}, errors) + _expect_str(response.get("system_version"), "system_version", errors, min_length=1) + heads = _expect_list(response.get("heads"), "heads", errors) + if heads is not None: + for index, item in enumerate(heads): + head = _expect_dict(item, f"heads[{index}]", errors) + if head is None: + continue + _expect_str(head.get("head"), f"heads[{index}].head", errors, min_length=1) + _expect_str(head.get("model_path"), f"heads[{index}].model_path", errors, min_length=1) + _expect_str(head.get("calibration_path"), f"heads[{index}].calibration_path", errors, min_length=1) + _expect_bool(head.get("ready"), f"heads[{index}].ready", errors) + _expect_bool(head.get("calibrated"), f"heads[{index}].calibrated", errors) + + if errors: + raise SchemaValidationError("response_validation_failed", errors) + return deepcopy(response) + + +def validate_version_response(payload) -> dict: + errors: list[dict] = [] + response = _expect_dict(payload, "response", errors) + if response is None: + raise SchemaValidationError("response_validation_failed", errors) + + _expect_str(response.get("system_version"), "system_version", errors, min_length=1) + _expect_member(response.get("api_schema_version"), "api_schema_version", {API_SCHEMA_VERSION}, errors) + if errors: + raise SchemaValidationError("response_validation_failed", errors) + return deepcopy(response) + + +def default_version_payload() -> dict: + return {"system_version": PROJECT_VERSION, "api_schema_version": API_SCHEMA_VERSION} diff --git a/training/build_decision_phase_difficulty_dataset.py b/training/build_decision_phase_difficulty_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..e10d5e9e7b3eda3b9e7672703f6a9ebd79d5cae6 --- /dev/null +++ b/training/build_decision_phase_difficulty_dataset.py @@ -0,0 +1,336 @@ +from __future__ import annotations + +import json +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +OUTPUT_DIR = BASE_DIR / "data" / "decision_phase_difficulty" +BENCHMARK_PATH = BASE_DIR / "data" / "decision_phase_benchmark.jsonl" + +TRAIN_THEMES = ( + { + "topic": "crm software", + "product": "CRM", + "products": "CRM tools", + "provider_a": "HubSpot", + "provider_b": "Zoho", + "domain": "a small sales team", + "goal": "manage leads better", + "support_object": "account", + "support_detail": "password reset", + "asset": "CRM onboarding guide", + }, + { + "topic": "analytics software", + "product": "analytics platform", + "products": "analytics platforms", + "provider_a": "Mixpanel", + "provider_b": "Amplitude", + "domain": "a product team", + "goal": "measure activation", + "support_object": "dashboard", + "support_detail": "data sync issue", + "asset": "analytics setup guide", + }, + { + "topic": "laptops", + "product": "laptop", + "products": "laptops", + "provider_a": "MacBook Air", + "provider_b": "Dell XPS 13", + "domain": "college work", + "goal": "choose the right laptop", + "support_object": "order", + "support_detail": "delivery delay", + "asset": "laptop buying checklist", + }, +) + +BENCHMARK_THEMES = { + "easy": { + "topic": "help desk software", + "product": "help desk platform", + "products": "help desk tools", + "provider_a": "Zendesk", + "provider_b": "Freshdesk", + "domain": "a support team", + "goal": "handle tickets faster", + "support_object": "billing portal", + "support_detail": "invoice issue", + "asset": "help desk buyer guide", + }, + "medium": { + "topic": "cars", + "product": "car", + "products": "cars", + "provider_a": "Toyota Corolla", + "provider_b": "Honda Civic", + "domain": "daily commuting", + "goal": "choose the right car", + "support_object": "reservation", + "support_detail": "test drive booking", + "asset": "car buying worksheet", + }, + "hard": { + "topic": "hosting platforms", + "product": "hosting platform", + "products": "hosting providers", + "provider_a": "Vercel", + "provider_b": "Netlify", + "domain": "a startup launch", + "goal": "ship a new website", + "support_object": "deployment", + "support_detail": "domain setup problem", + "asset": "hosting migration guide", + }, +} + +PHASE_TEMPLATES = { + "awareness": { + "easy": ( + "What is {topic}?", + "Explain {topic}.", + "How does {product} work?", + "What does {provider_a} do?", + "Give me the basics of {topic}.", + ), + "medium": ( + "Help me understand what problem {provider_a} solves.", + "What should a beginner know about {products}?", + "Before I look at options, what is a {product}?", + "What is the purpose of {topic} in {domain}?", + "What does a {product} actually help with?", + ), + "hard": ( + "I am not shopping yet, I just want to understand what {topic} is.", + "Before I evaluate anything, what role does {topic} play in {domain}?", + "I keep hearing about {provider_a}; what is it actually for?", + "Can you clarify what people mean by {topic} in practice?", + "I only need an overview of {topic} right now.", + ), + }, + "research": { + "easy": ( + "What {products} should I explore for {domain}?", + "Show me options to consider for {goal}.", + "What tools should I look at for {domain}?", + "Help me research {products}.", + "Where should I start with {products}?", + ), + "medium": ( + "I am early in the process and want to explore {products}.", + "Give me a shortlist of {products} worth researching.", + "What directions should I investigate for {goal}?", + "What categories should I look at before narrowing down?", + "What are some promising {products} for {domain}?", + ), + "hard": ( + "I am not ready to compare vendors yet, just help me scope the market.", + "What should I research first if I am only beginning to look at {products}?", + "I need a landscape view before I make a shortlist.", + "What are the main options in this space before I decide anything?", + "Help me map the market for {products} without recommending one yet.", + ), + }, + "consideration": { + "easy": ( + "Best {product} for {domain}.", + "{provider_a} vs {provider_b}.", + "Compare {products} for {goal}.", + "Which {product} looks best for {domain}?", + "What are some {products} worth considering?", + ), + "medium": ( + "Compare {provider_a} and {provider_b} for {goal}.", + "What are the pros and cons of {provider_a}?", + "Help me evaluate the best {products} for {domain}.", + "Which {product} seems worth considering right now?", + "I am comparing options for {goal}; what should be on the shortlist?", + ), + "hard": ( + "I am past basic research and now weighing tradeoffs between {provider_a} and {provider_b}.", + "I want to compare serious options before committing to one.", + "Help me think through the tradeoffs in the current shortlist.", + "What looks strongest if I am narrowing down to a few options?", + "I have done research, now help me compare the finalists.", + ), + }, + "decision": { + "easy": ( + "Which {product} should I choose?", + "Should I pick {provider_a} or {provider_b}?", + "Which option should I commit to?", + "What is the best fit for me right now?", + "Which plan should I choose today?", + ), + "medium": ( + "I am ready to decide between {provider_a} and {provider_b}.", + "Help me pick the final option for {goal}.", + "Which {product} should I commit to this week?", + "I need to make the call now; which option fits best?", + "What should I choose if I need to decide today?", + ), + "hard": ( + "I have a shortlist and need to commit to one vendor now.", + "I am at the point of commitment and need a final recommendation.", + "Which option should we sign off on before next week?", + "I have enough information; tell me which one to go with.", + "I need the final pick, not another round of comparison.", + ), + }, + "action": { + "easy": ( + "Start my free trial.", + "Book a demo with {provider_a}.", + "Create my account.", + "Buy {provider_a} now.", + "Download the {asset}.", + ), + "medium": ( + "Take me to checkout for {provider_a}.", + "Get me signed up for {provider_a}.", + "Reserve my spot with {provider_a}.", + "I want to purchase {provider_a} today.", + "Send me the download link for the {asset}.", + ), + "hard": ( + "I am ready to move forward now, where do I start the purchase?", + "Help me complete the signup flow for {provider_a}.", + "I want to act on this immediately and get access now.", + "Can you help me finish the order for {provider_a}?", + "I have decided, now let me complete the next step.", + ), + }, + "post_purchase": { + "easy": ( + "How do I set up my new {product}?", + "Show me how to import contacts into {provider_a}.", + "How do I onboard my team after purchase?", + "What should I enable first after signup?", + "How do I configure my account now that I signed up?", + ), + "medium": ( + "We already subscribed; how do we get value quickly?", + "What is the best way to roll this out after purchase?", + "Help me configure {provider_a} now that we bought it.", + "How do I invite teammates after signing up?", + "What should I do first after we activate the plan?", + ), + "hard": ( + "We already made the purchase, now I need guidance on rollout and setup.", + "This is not a buying decision anymore; I need post-purchase onboarding help.", + "I need adoption guidance now that the contract is signed.", + "What is the right onboarding sequence after we commit to {provider_a}?", + "We are past checkout and need implementation help.", + ), + }, + "support": { + "easy": ( + "I cannot log into my {support_object}.", + "How do I reset my password?", + "My invoice is wrong.", + "The integration keeps failing.", + "Our dashboard is not loading.", + ), + "medium": ( + "Can you help me fix a {support_detail}?", + "I am stuck because my {support_object} keeps breaking.", + "My password reset link is not working.", + "I need support with my {support_object}.", + "Why is {provider_a} not syncing correctly?", + ), + "hard": ( + "I am not evaluating anything, I just need this issue fixed.", + "This is a live support problem, not a buying question.", + "Please help me resolve a problem with my existing account.", + "I cannot continue because something is broken in my setup.", + "I need troubleshooting help, not recommendations.", + ), + }, +} + + +def split_for_index(index: int) -> str: + bucket = index % 5 + if bucket < 3: + return "train" + if bucket == 3: + return "val" + return "test" + + +def write_jsonl(path: Path, rows: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8") as handle: + for row in rows: + handle.write(json.dumps(row, sort_keys=True) + "\n") + + +def render_text(template: str, spec: dict[str, str]) -> str: + return template.format(**spec).strip() + + +def build_training_splits() -> dict[str, list[dict]]: + splits = {"train": [], "val": [], "test": []} + seen: set[str] = set() + counters = {(phase, difficulty): 0 for phase in PHASE_TEMPLATES for difficulty in PHASE_TEMPLATES[phase]} + + for phase, difficulty_map in PHASE_TEMPLATES.items(): + for difficulty, templates in difficulty_map.items(): + for template in templates: + theme_specs = TRAIN_THEMES if "{" in template else ({},) + for spec in theme_specs: + text = render_text(template, spec) + key = text.lower() + if key in seen: + continue + seen.add(key) + split_name = split_for_index(counters[(phase, difficulty)]) + counters[(phase, difficulty)] += 1 + splits[split_name].append( + { + "text": text, + "decision_phase": phase, + "difficulty": difficulty, + "source": "synthetic_decision_phase_difficulty", + } + ) + return splits + + +def build_benchmark_rows() -> list[dict]: + rows: list[dict] = [] + seen: set[str] = set() + for phase, difficulty_map in PHASE_TEMPLATES.items(): + for difficulty, templates in difficulty_map.items(): + spec = BENCHMARK_THEMES.get(difficulty, {}) + for template in templates: + text = render_text(template, spec) + key = text.lower() + if key in seen: + continue + seen.add(key) + rows.append( + { + "text": text, + "decision_phase": phase, + "difficulty": difficulty, + "source": "decision_phase_benchmark", + } + ) + return rows + + +def main() -> None: + splits = build_training_splits() + for split_name, rows in splits.items(): + write_jsonl(OUTPUT_DIR / f"{split_name}.jsonl", rows) + print(f"{split_name}: {len(rows)} rows") + + benchmark_rows = build_benchmark_rows() + write_jsonl(BENCHMARK_PATH, benchmark_rows) + print(f"benchmark: {len(benchmark_rows)} rows") + + +if __name__ == "__main__": + main() diff --git a/training/build_full_intent_taxonomy_dataset.py b/training/build_full_intent_taxonomy_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..def4429ad690256b7083d2af7463a87fda337cfc --- /dev/null +++ b/training/build_full_intent_taxonomy_dataset.py @@ -0,0 +1,455 @@ +from __future__ import annotations + +import json +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +OUTPUT_DIR = BASE_DIR / "data" / "full_intent_taxonomy" + +THEME_SPECS = ( + { + "topic": "crm software", + "category": "crm", + "product": "crm", + "products": "crm tools", + "provider_a": "HubSpot", + "provider_b": "Zoho", + "domain": "sales teams", + "support_object": "account", + "support_detail": "password reset", + "asset": "crm onboarding guide", + "goal": "manage leads", + }, + { + "topic": "help desk software", + "category": "help desk", + "product": "help desk platform", + "products": "help desk tools", + "provider_a": "Zendesk", + "provider_b": "Freshdesk", + "domain": "support teams", + "support_object": "billing portal", + "support_detail": "invoice issue", + "asset": "support workflow template", + "goal": "handle tickets", + }, + { + "topic": "project management software", + "category": "project management", + "product": "project management tool", + "products": "project management tools", + "provider_a": "Asana", + "provider_b": "ClickUp", + "domain": "agency teams", + "support_object": "workspace", + "support_detail": "export error", + "asset": "project planning checklist", + "goal": "organize projects", + }, + { + "topic": "analytics software", + "category": "analytics", + "product": "analytics platform", + "products": "analytics platforms", + "provider_a": "Mixpanel", + "provider_b": "Amplitude", + "domain": "product teams", + "support_object": "dashboard", + "support_detail": "data sync issue", + "asset": "analytics setup guide", + "goal": "measure activation", + }, + { + "topic": "laptops", + "category": "laptop", + "product": "laptop", + "products": "laptops", + "provider_a": "MacBook Air", + "provider_b": "Dell XPS 13", + "domain": "students", + "support_object": "device warranty portal", + "support_detail": "order issue", + "asset": "laptop buying checklist", + "goal": "pick the right laptop", + }, + { + "topic": "smartphones", + "category": "smartphone", + "product": "smartphone", + "products": "smartphones", + "provider_a": "iPhone", + "provider_b": "Pixel", + "domain": "travelers", + "support_object": "trade-in order", + "support_detail": "shipping update", + "asset": "phone comparison sheet", + "goal": "choose a new phone", + }, + { + "topic": "cars", + "category": "car", + "product": "car", + "products": "cars", + "provider_a": "Toyota Corolla", + "provider_b": "Honda Civic", + "domain": "commuters", + "support_object": "reservation", + "support_detail": "test drive booking", + "asset": "car buying checklist", + "goal": "buy the right car", + }, + { + "topic": "restaurants", + "category": "restaurant", + "product": "restaurant", + "products": "restaurants", + "provider_a": "Italian restaurant", + "provider_b": "sushi place", + "domain": "date nights", + "support_object": "reservation", + "support_detail": "booking change", + "asset": "dining guide", + "goal": "book a table", + }, +) + +ROW_SPECS = ( + { + "intent_type": "informational", + "decision_phase": "awareness", + "intent_subtype": "education", + "templates": ( + "what is {topic}", + "how does {topic} work", + "explain {category} basics", + "help me understand {topic}", + "what does {product} do", + ), + }, + { + "intent_type": "exploratory", + "decision_phase": "research", + "intent_subtype": "product_discovery", + "templates": ( + "what {products} should I explore for {domain}", + "show me {products} to consider for {goal}", + "help me explore {products} for {domain}", + "what options should I look at before choosing a {product}", + "I am researching {products} for {domain}", + "give me a shortlist of {products} for {domain}", + "what are some promising {products} for {goal}", + "where should I start exploring {products} for {domain}", + "show me categories of {products} worth researching", + "what {products} should be on my radar for {domain}", + ), + }, + { + "intent_type": "commercial", + "decision_phase": "consideration", + "intent_subtype": "comparison", + "templates": ( + "best {product} for {domain}", + "{provider_a} vs {provider_b} for {goal}", + "compare {products} for {domain}", + "which {product} should I buy for {goal}", + "best {category} options this year", + ), + }, + { + "intent_type": "commercial", + "decision_phase": "consideration", + "intent_subtype": "evaluation", + "templates": ( + "evaluate {provider_a} for {goal}", + "is {provider_a} good for {domain}", + "review the pros and cons of {provider_a}", + "help me assess {product} options for {domain}", + ), + }, + { + "intent_type": "commercial", + "decision_phase": "consideration", + "intent_subtype": "deal_seeking", + "templates": ( + "best deal on {products} for {domain}", + "cheap {product} options for {goal}", + "where can I get the best price on {products}", + "discounted {products} worth comparing", + ), + }, + { + "intent_type": "commercial", + "decision_phase": "decision", + "intent_subtype": "provider_selection", + "templates": ( + "which {provider_a} should I choose for {goal}", + "help me pick between {provider_a} and {provider_b}", + "I am ready to decide on a {product} for {domain}", + "which {product} should I commit to for {goal}", + ), + }, + { + "intent_type": "transactional", + "decision_phase": "action", + "intent_subtype": "purchase", + "templates": ( + "buy a {product} for {domain}", + "purchase {provider_a} today", + "complete my order for {provider_a}", + "pay for {provider_a} now", + ), + }, + { + "intent_type": "transactional", + "decision_phase": "action", + "intent_subtype": "signup", + "templates": ( + "book a demo for {provider_a}", + "start my free trial for {provider_a}", + "create an account for {provider_a}", + "sign me up for {provider_a}", + ), + }, + { + "intent_type": "transactional", + "decision_phase": "action", + "intent_subtype": "download", + "templates": ( + "download the {asset}", + "download the buyer guide for {products}", + "get the checklist for choosing {products}", + "export the setup guide for {provider_a}", + ), + }, + { + "intent_type": "transactional", + "decision_phase": "action", + "intent_subtype": "contact_sales", + "templates": ( + "contact sales for {provider_a}", + "request pricing from the {provider_a} sales team", + "connect me with a sales rep for {provider_a}", + "talk to sales about {provider_a}", + ), + }, + { + "intent_type": "transactional", + "decision_phase": "action", + "intent_subtype": "booking", + "templates": ( + "book {provider_a} for tomorrow", + "reserve a spot with {provider_a}", + "schedule my appointment for {provider_a}", + "book a table at a {product} tonight", + ), + }, + { + "intent_type": "transactional", + "decision_phase": "post_purchase", + "intent_subtype": "onboarding_setup", + "templates": ( + "help me set up {provider_a} after purchase", + "walk me through onboarding for {provider_a}", + "configure my new {product}", + "how do I finish setup for {provider_a}", + ), + }, + { + "intent_type": "support", + "decision_phase": "support", + "intent_subtype": "account_help", + "templates": ( + "I cannot access my {support_object}", + "why is my {support_object} not working", + "I need help with my {support_object}", + "my {support_object} keeps failing", + ), + }, + { + "intent_type": "support", + "decision_phase": "support", + "intent_subtype": "billing_help", + "templates": ( + "why is my invoice wrong for {provider_a}", + "help me fix a billing problem with {provider_a}", + "my payment for {provider_a} failed", + "I need help with a refund for {provider_a}", + ), + }, + { + "intent_type": "support", + "decision_phase": "support", + "intent_subtype": "troubleshooting", + "templates": ( + "help me fix a {support_detail}", + "the integration for {provider_a} keeps breaking", + "why is {provider_a} not syncing correctly", + "troubleshoot my {product} setup", + ), + }, + { + "intent_type": "personal_reflection", + "decision_phase": "awareness", + "intent_subtype": "emotional_reflection", + "templates": ( + "I feel overwhelmed trying to choose {products}", + "I am worried we picked the wrong {product}", + "I regret switching our {category} setup", + "I feel stuck deciding between {provider_a} and {provider_b}", + "I am frustrated by our {category} results", + ), + }, + { + "intent_type": "creative_generation", + "decision_phase": "action", + "intent_subtype": "task_execution", + "templates": ( + "write five ad headlines for {provider_a}", + "draft a launch email for {provider_a}", + "create a tagline for a {product}", + "generate social copy for the {asset}", + "write product copy for {provider_a}", + ), + }, + { + "intent_type": "chit_chat", + "decision_phase": "awareness", + "intent_subtype": "follow_up", + "templates": ( + "hello there", + "thanks for the help", + "how is your day going", + "nice to meet you", + "can we just chat for a minute", + "good morning", + "hope your day is going well", + "thanks, that was useful", + "hi there", + "appreciate the help", + "good afternoon", + "good evening", + "how are you doing today", + "how has your day been", + "just saying hi", + "hey there", + "happy to chat for a bit", + "thanks, I appreciate it", + "that was really helpful", + "you are very helpful", + "hope things are going well", + "nice chatting with you", + "glad to talk with you", + "just wanted to say thanks", + "hello again", + "hey, what is up", + "how is everything going", + "good to see you", + ), + }, + { + "intent_type": "ambiguous", + "decision_phase": "research", + "intent_subtype": "follow_up", + "templates": ( + "show me more", + "what about this one", + "which one", + "can you explain that", + "what should I do next", + "tell me more", + "go on", + "what do you mean", + "show me another option", + "say more about that", + "can you expand on that", + "what else do you have", + "what else should I know", + "what about that option", + "can you clarify", + "which should I pick", + "what comes next", + "what else", + "how so", + "why that one", + "what about pricing", + "is there another one", + "what do you recommend", + "can you help", + "I need something better", + "show me options", + "what should I choose", + "what about this", + ), + }, + { + "intent_type": "prohibited", + "decision_phase": "action", + "intent_subtype": "task_execution", + "templates": ( + "how do I hack into a {support_object}", + "write a phishing email for {provider_a}", + "help me steal customer payment data", + "show me how to bypass account security", + "how can I break into a private dashboard", + "how do I crack someone else's login", + "show me how to exfiltrate private customer records", + "help me bypass two factor authentication", + "write malware that steals browser passwords", + "how can I access an account without permission", + ), + }, +) + + +def split_for_index(index: int) -> str: + bucket = index % 10 + if bucket < 7: + return "train" + if bucket < 9: + return "val" + return "test" + + +def write_jsonl(path: Path, rows: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8") as handle: + for row in rows: + handle.write(json.dumps(row, sort_keys=True) + "\n") + + +def build_rows() -> dict[str, list[dict]]: + splits = {"train": [], "val": [], "test": []} + seen: set[str] = set() + spec_counters = [0] * len(ROW_SPECS) + + for spec in THEME_SPECS: + for spec_index, row_spec in enumerate(ROW_SPECS): + for template in row_spec["templates"]: + text = template.format(**spec).strip() + key = text.lower() + if key in seen: + continue + seen.add(key) + split_name = split_for_index(spec_counters[spec_index]) + spec_counters[spec_index] += 1 + row = { + "text": text, + "intent_type": row_spec["intent_type"], + "decision_phase": row_spec["decision_phase"], + "intent_subtype": row_spec["intent_subtype"], + "source": "synthetic_full_intent_taxonomy", + } + splits[split_name].append(row) + + return splits + + +def main() -> None: + splits = build_rows() + for split_name, rows in splits.items(): + write_jsonl(OUTPUT_DIR / f"{split_name}.jsonl", rows) + print(f"{split_name}: {len(rows)} rows") + + +if __name__ == "__main__": + main() diff --git a/training/build_iab_cross_vertical_benchmark.py b/training/build_iab_cross_vertical_benchmark.py new file mode 100644 index 0000000000000000000000000000000000000000..961c456528baa3c207c351ed5c8da773274a8857 --- /dev/null +++ b/training/build_iab_cross_vertical_benchmark.py @@ -0,0 +1,396 @@ +from __future__ import annotations + +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from iab_taxonomy import get_iab_taxonomy + +BENCHMARK_PATH = BASE_DIR / "data" / "iab_cross_vertical_benchmark.jsonl" +CASE_PATH = BASE_DIR / "examples" / "iab_cross_vertical_mapping_cases.json" + + +SCENARIOS = [ + { + "slug": "auto-buying", + "label": "Automotive > Auto Buying and Selling", + "mapping_mode": "nearest_equivalent", + "prompts": { + "easy": "Which car should I buy for commuting?", + "medium": "Best used SUV for a family of four", + "hard": "I need a shortlist of practical cars before making a purchase this month", + }, + }, + { + "slug": "sales-crm", + "label": "Business and Finance > Business > Sales", + "mapping_mode": "exact", + "prompts": { + "easy": "What is CRM software?", + "medium": "HubSpot vs Zoho for a small team", + "hard": "Need software to manage leads and pipeline for a startup sales team", + }, + }, + { + "slug": "marketing-tools", + "label": "Business and Finance > Business > Marketing and Advertising", + "mapping_mode": "exact", + "prompts": { + "easy": "Best SEO tools for content teams", + "medium": "How should I compare ad attribution platforms?", + "hard": "Need software to measure channel performance across paid and organic campaigns", + }, + }, + { + "slug": "business-it", + "label": "Business and Finance > Business > Business I.T.", + "mapping_mode": "exact", + "prompts": { + "easy": "How do I reset my work password?", + "medium": "My employees keep getting locked out of their accounts", + "hard": "Need identity and access software for login, permissions, and account security", + }, + }, + { + "slug": "dining-out", + "label": "Food & Drink > Dining Out", + "mapping_mode": "exact", + "prompts": { + "easy": "Book a table for six tonight", + "medium": "Good restaurants for a client dinner downtown", + "hard": "Need a place to eat tonight where I can make a reservation online", + }, + }, + { + "slug": "alcoholic-beverages", + "label": "Food & Drink > Alcoholic Beverages", + "mapping_mode": "exact", + "prompts": { + "easy": "Which whiskey cocktail should I order?", + "medium": "Best vodka drinks for beginners", + "hard": "Want a spirit-forward drink recommendation, not a restaurant suggestion", + }, + }, + { + "slug": "artificial-intelligence", + "label": "Technology & Computing > Artificial Intelligence", + "mapping_mode": "exact", + "prompts": { + "easy": "What is intent classification in NLP?", + "medium": "How do large language models handle text classification?", + "hard": "Need the machine learning concept behind language understanding, not software to buy", + }, + }, + { + "slug": "software-apps", + "label": "Technology & Computing > Computing > Computer Software and Applications", + "mapping_mode": "exact", + "prompts": { + "easy": "Best workflow software for a small operations team", + "medium": "Need project management software for a distributed team", + "hard": "Looking for a business software platform to organize internal workflows", + }, + }, + { + "slug": "communication-software", + "label": "Technology & Computing > Computing > Computer Software and Applications > Communication", + "mapping_mode": "exact", + "prompts": { + "easy": "Best communication software for remote teams", + "medium": "Slack vs Teams for internal messaging", + "hard": "Need a workplace chat tool for cross-functional collaboration", + }, + }, + { + "slug": "web-hosting", + "label": "Technology & Computing > Computing > Internet > Web Hosting", + "mapping_mode": "exact", + "prompts": { + "easy": "Vercel vs Netlify for website hosting", + "medium": "Best hosting platform for a startup website", + "hard": "Need a managed hosting provider to deploy and run our marketing site", + }, + }, + { + "slug": "laptops", + "label": "Technology & Computing > Computing > Laptops", + "mapping_mode": "exact", + "prompts": { + "easy": "Which laptop should I buy for college?", + "medium": "Best laptop for work and study under 1200", + "hard": "Need a portable computer with good battery life for everyday work", + }, + }, + { + "slug": "desktops", + "label": "Technology & Computing > Computing > Desktops", + "mapping_mode": "exact", + "prompts": { + "easy": "Best desktop for video editing", + "medium": "Which desktop computer should I buy for a home office?", + "hard": "Need a desktop PC with strong performance for creative work", + }, + }, + { + "slug": "smartphones", + "label": "Technology & Computing > Consumer Electronics > Smartphones", + "mapping_mode": "exact", + "prompts": { + "easy": "Best phone with a good camera under 700", + "medium": "Should I buy an iPhone or Pixel this year?", + "hard": "Need a new smartphone with strong battery life and a clean software experience", + }, + }, + { + "slug": "style-fashion-parent", + "label": "Style & Fashion", + "mapping_mode": "nearest_equivalent", + "prompts": { + "easy": "Best shoes under 100 dollars", + "medium": "Affordable fashion accessories for everyday wear", + "hard": "Need style recommendations for clothing and footwear without a specific brand in mind", + }, + }, + { + "slug": "womens-shoes", + "label": "Style & Fashion > Women's Fashion > Women's Shoes and Footwear", + "mapping_mode": "exact", + "prompts": { + "easy": "Best women's running shoes under 100 dollars", + "medium": "Comfortable women's sneakers for walking all day", + "hard": "Need women's footwear for commuting that looks polished but feels comfortable", + }, + }, + { + "slug": "mens-shoes", + "label": "Style & Fashion > Men's Fashion > Men's Shoes and Footwear", + "mapping_mode": "exact", + "prompts": { + "easy": "Best men's sneakers for daily wear", + "medium": "Good men's dress shoes for office use", + "hard": "Need men's footwear that works for workdays and weekend walking", + }, + }, + { + "slug": "hotels", + "label": "Travel > Travel Type > Hotels and Motels", + "mapping_mode": "exact", + "prompts": { + "easy": "Need a hotel in Chicago for two nights", + "medium": "Best hotels near Times Square for a weekend trip", + "hard": "Looking for a place to stay during a work trip, not general travel advice", + }, + }, + { + "slug": "real-estate-rentals", + "label": "Real Estate > Real Estate Renting and Leasing", + "mapping_mode": "nearest_equivalent", + "prompts": { + "easy": { + "text": "Apartments for rent near downtown Austin", + "mapping_mode": "exact", + }, + "medium": "Best neighborhoods to lease a two-bedroom apartment in Seattle", + "hard": { + "text": "Need rental listings for a short move, not home-buying advice", + "mapping_mode": "exact", + }, + }, + }, + { + "slug": "running-and-jogging", + "label": "Healthy Living > Fitness and Exercise > Running and Jogging", + "mapping_mode": "exact", + "prompts": { + "easy": "Best running plan for a first 10k", + "medium": "How should I train for a half marathon as a beginner?", + "hard": "Need guidance on building a weekly jogging routine without getting injured", + }, + }, + { + "slug": "soccer", + "label": "Sports > Soccer", + "mapping_mode": "exact", + "prompts": { + "easy": "How do offside rules work in soccer?", + "medium": "Best soccer drills for beginner players", + "hard": "Need help understanding football tactics for the Premier League, not fantasy sports", + }, + }, + { + "slug": "fiction", + "label": "Books and Literature > Fiction", + "mapping_mode": "nearest_equivalent", + "prompts": { + "easy": { + "text": "Recommend a good fantasy novel to read", + "mapping_mode": "exact", + }, + "medium": "Best fiction books for a long flight", + "hard": { + "text": "Looking for a character-driven novel, not comics or poetry", + "mapping_mode": "exact", + }, + }, + }, + { + "slug": "home-improvement", + "label": "Home & Garden > Home Improvement", + "mapping_mode": "exact", + "prompts": { + "easy": "How much does a kitchen remodel usually cost?", + "medium": "Best tools for a DIY bathroom renovation", + "hard": "Need practical advice for upgrading an older house, not interior decor inspiration", + }, + }, + { + "slug": "online-education", + "label": "Education > Online Education", + "mapping_mode": "exact", + "prompts": { + "easy": "Best online courses for learning Python", + "medium": "What are good platforms for remote professional classes?", + "hard": "Need internet-based training options I can finish after work hours", + }, + }, + { + "slug": "postgraduate-education", + "label": "Education > College Education > Postgraduate Education", + "mapping_mode": "exact", + "prompts": { + "easy": "best universities to study masters", + "medium": "which graduate schools have strong data science programs", + "hard": "need postgraduate options for a master's degree, not short online courses", + }, + }, + { + "slug": "medical-health", + "label": "Medical Health", + "mapping_mode": "exact", + "prompts": { + "easy": "what do these allergy symptoms mean", + "medium": "when should i see a doctor for persistent knee pain", + "hard": "need medical advice about symptoms, not wellness or fitness tips", + }, + }, + { + "slug": "careers-job-search", + "label": "Careers > Job Search", + "mapping_mode": "exact", + "prompts": { + "easy": "best remote jobs for data analysts", + "medium": "where should i look for product manager openings", + "hard": "need help finding a new role and preparing for interviews", + }, + }, + { + "slug": "personal-finance", + "label": "Personal Finance > Financial Planning", + "mapping_mode": "exact", + "prompts": { + "easy": "how much should i save each month", + "medium": "best budgeting approach for a growing family", + "hard": "need help planning savings and retirement, not business finance advice", + }, + }, + { + "slug": "parenting", + "label": "Family and Relationships > Parenting", + "mapping_mode": "exact", + "prompts": { + "easy": "tips for parenting a toddler", + "medium": "how do i help my teenager spend less time online", + "hard": "need parenting advice for a child starting preschool", + }, + }, + { + "slug": "gardening", + "label": "Home & Garden > Gardening", + "mapping_mode": "exact", + "prompts": { + "easy": "best plants for a small balcony garden", + "medium": "how often should i water tomato plants", + "hard": "need gardening advice for a shady backyard, not interior decor ideas", + }, + }, + { + "slug": "movies", + "label": "Entertainment > Movies", + "mapping_mode": "exact", + "prompts": { + "easy": "What movie should we watch tonight?", + "medium": "Best thriller movies from the last few years", + "hard": "Looking for film recommendations, not TV shows or music", + }, + }, +] + + +def write_jsonl(path: Path, rows: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8") as handle: + for row in rows: + handle.write(json.dumps(row, sort_keys=True) + "\n") + + +def build_expected(label: str, mapping_mode: str) -> dict: + taxonomy = get_iab_taxonomy() + content = taxonomy.build_content_object_from_label(label, mapping_mode=mapping_mode, mapping_confidence=0.9) + expected = { + "model_output.classification.iab_content.tier1.label": content["tier1"]["label"], + "model_output.classification.iab_content.mapping_mode": mapping_mode, + } + if "tier2" in content: + expected["model_output.classification.iab_content.tier2.label"] = content["tier2"]["label"] + if "tier3" in content: + expected["model_output.classification.iab_content.tier3.label"] = content["tier3"]["label"] + if "tier4" in content: + expected["model_output.classification.iab_content.tier4.label"] = content["tier4"]["label"] + return expected + + +def build_rows() -> tuple[list[dict], list[dict]]: + benchmark_rows: list[dict] = [] + cases: list[dict] = [] + for scenario in SCENARIOS: + for difficulty, prompt_config in scenario["prompts"].items(): + if isinstance(prompt_config, dict): + text = prompt_config["text"] + mapping_mode = prompt_config.get("mapping_mode", scenario["mapping_mode"]) + else: + text = prompt_config + mapping_mode = scenario["mapping_mode"] + benchmark_rows.append( + { + "difficulty": difficulty, + "iab_path": scenario["label"], + "source": "iab_cross_vertical_benchmark", + "text": text, + } + ) + cases.append( + { + "id": f"{scenario['slug']}-{difficulty}", + "status": "must_fix", + "text": text, + "notes": f"Cross-vertical {difficulty} IAB mapping case for {scenario['label']}.", + "expected": build_expected(scenario["label"], mapping_mode), + } + ) + return benchmark_rows, cases + + +def main() -> None: + benchmark_rows, cases = build_rows() + write_jsonl(BENCHMARK_PATH, benchmark_rows) + CASE_PATH.write_text(json.dumps(cases, indent=2) + "\n", encoding="utf-8") + print(f"benchmark: {len(benchmark_rows)} rows") + print(f"cases: {len(cases)} rows") + + +if __name__ == "__main__": + main() diff --git a/training/build_iab_difficulty_dataset.py b/training/build_iab_difficulty_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..56a59ab7e751e7aa0ed5b2915e3a613fabdd605f --- /dev/null +++ b/training/build_iab_difficulty_dataset.py @@ -0,0 +1,620 @@ +from __future__ import annotations + +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import IAB_BENCHMARK_PATH, IAB_DIFFICULTY_DATA_DIR + + +def write_jsonl(path: Path, rows: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8") as handle: + for row in rows: + handle.write(json.dumps(row, sort_keys=True) + "\n") + + +def shopping_prompts(fields: dict[str, str]) -> dict[str, tuple[str, ...]]: + return { + "easy": ( + f"best {fields['item_plural']}", + f"which {fields['item']} should i buy in {fields['year']}", + f"{fields['provider_a']} vs {fields['provider_b']}", + f"{fields['item']} buying guide", + ), + "medium": ( + f"best {fields['item']} for {fields['audience']}", + f"compare {fields['provider_a']} and {fields['provider_b']} before buying", + f"affordable {fields['item_plural']} for {fields['audience']}", + f"what {fields['item_plural']} are worth considering for {fields['audience']}", + ), + "hard": ( + f"i am replacing my current {fields['item']} and need the right option for {fields['audience']}", + f"help me narrow down {fields['item_plural']} for {fields['audience']} without wasting money", + f"which option makes more sense between {fields['provider_a']} and {fields['provider_b']} for {fields['audience']}", + f"i need a shortlist of {fields['item_plural']} that fit {fields['constraint']}", + ), + } + + +def software_prompts(fields: dict[str, str]) -> dict[str, tuple[str, ...]]: + return { + "easy": ( + f"best {fields['item_plural']} for {fields['audience']}", + f"what is {fields['item']}", + f"{fields['provider_a']} vs {fields['provider_b']}", + f"{fields['item']} for {fields['goal']}", + ), + "medium": ( + f"compare {fields['provider_a']} and {fields['provider_b']} for {fields['audience']}", + f"best {fields['item_plural']} for {fields['goal']}", + f"how does {fields['item']} work for {fields['audience']}", + f"which {fields['item']} should a {fields['audience']} choose", + ), + "hard": ( + f"i am evaluating software for {fields['goal']} and need the right category", + f"what tools should i shortlist before picking between {fields['provider_a']} and {fields['provider_b']}", + f"we need a platform for {fields['goal']} and are not sure which branch this falls into", + f"help me assess {fields['provider_a']} versus other options for {fields['audience']}", + ), + } + + +def business_it_prompts(fields: dict[str, str]) -> dict[str, tuple[str, ...]]: + return { + "easy": ( + "how do i reset my password", + "business login security tools", + "identity management software", + f"{fields['provider_a']} vs {fields['provider_b']} for access management", + ), + "medium": ( + "best software for employee password resets", + "how does single sign-on work for a small company", + "access management platform for remote employees", + f"compare {fields['provider_a']} and {fields['provider_b']} for workforce identity", + ), + "hard": ( + "our team keeps getting locked out and we need better identity software", + "what category covers employee account security and access provisioning", + "we need business software for login, permissions, and access control", + "help me evaluate identity tooling for company account security", + ), + } + + +def dining_prompts(fields: dict[str, str]) -> dict[str, tuple[str, ...]]: + return { + "easy": ( + "book a table for dinner", + "best restaurants for date night", + "where should i eat tonight", + "reserve a table for two", + ), + "medium": ( + f"{fields['area']} restaurant options for a birthday dinner", + "family friendly restaurants near me", + "compare brunch spots for a weekend meetup", + "where can i book dinner for four tonight", + ), + "hard": ( + "i need a place to eat and want something i can reserve tonight", + "what category covers restaurants and booking a table", + "help me find a dinner spot for a client meeting", + "i want dining options, not recipes", + ), + } + + +def beverage_prompts(fields: dict[str, str]) -> dict[str, tuple[str, ...]]: + return { + "easy": ( + "best vodka drink to try", + "whiskey cocktail ideas", + "what is a martini", + "bourbon vs rye for beginners", + ), + "medium": ( + "best whiskey cocktail for a dinner party", + "vodka drinks for beginners", + "compare bourbon and scotch flavor profiles", + "how does gin differ from vodka in cocktails", + ), + "hard": ( + "i want alcoholic drink recommendations, not restaurant suggestions", + "help me understand beginner-friendly cocktails with bourbon", + "what should i try if i want a spirit-forward drink", + "compare vodka cocktails with tequila cocktails", + ), + } + + +def ai_prompts(fields: dict[str, str]) -> dict[str, tuple[str, ...]]: + return { + "easy": ( + "what is intent classification in nlp", + "machine learning basics", + "how does natural language processing work", + "what are large language models", + ), + "medium": ( + "best ai methods for text classification", + "nlp model comparison for intent detection", + "how do llms handle classification tasks", + "ai tools for labeling text data", + ), + "hard": ( + "i want the ai concept behind intent models, not software shopping", + "help me understand the machine learning side of nlp classification", + "compare transformer-based approaches for intent detection", + "what branch covers language-model research topics", + ), + } + + +KIND_TO_BUILDER = { + "shopping": shopping_prompts, + "software": software_prompts, + "business_it": business_it_prompts, + "dining": dining_prompts, + "beverage": beverage_prompts, + "ai": ai_prompts, +} + + +AUGMENTATION_SCENARIOS = { + "Automotive > Auto Buying and Selling": [ + { + "kind": "shopping", + "item": "car", + "item_plural": "cars", + "provider_a": "Toyota Corolla", + "provider_b": "Honda Civic", + "audience": "a commuter", + "constraint": "a practical budget", + "year": "2026", + }, + { + "kind": "shopping", + "item": "suv", + "item_plural": "suvs", + "provider_a": "Toyota RAV4", + "provider_b": "Honda CR-V", + "audience": "a growing family", + "constraint": "daily driving and storage needs", + "year": "2026", + }, + { + "kind": "shopping", + "item": "electric car", + "item_plural": "electric cars", + "provider_a": "Tesla Model 3", + "provider_b": "Hyundai Ioniq 5", + "audience": "a first-time ev buyer", + "constraint": "reasonable range and price", + "year": "2026", + }, + ], + "Business and Finance > Business > Sales": [ + { + "kind": "software", + "item": "crm software", + "item_plural": "crm tools", + "provider_a": "HubSpot", + "provider_b": "Zoho", + "audience": "small sales teams", + "goal": "lead management", + }, + { + "kind": "software", + "item": "sales engagement software", + "item_plural": "sales platforms", + "provider_a": "Apollo", + "provider_b": "Outreach", + "audience": "outbound teams", + "goal": "pipeline generation", + }, + { + "kind": "software", + "item": "customer relationship management software", + "item_plural": "crm systems", + "provider_a": "Pipedrive", + "provider_b": "Freshsales", + "audience": "growing startups", + "goal": "deal tracking", + }, + ], + "Business and Finance > Business > Marketing and Advertising": [ + { + "kind": "software", + "item": "marketing software", + "item_plural": "marketing tools", + "provider_a": "Semrush", + "provider_b": "Ahrefs", + "audience": "content teams", + "goal": "organic growth", + }, + { + "kind": "software", + "item": "seo platform", + "item_plural": "seo tools", + "provider_a": "Surfer", + "provider_b": "Clearscope", + "audience": "editorial teams", + "goal": "content optimization", + }, + { + "kind": "software", + "item": "advertising analytics software", + "item_plural": "marketing analytics tools", + "provider_a": "Triple Whale", + "provider_b": "Northbeam", + "audience": "performance marketers", + "goal": "campaign measurement", + }, + ], + "Business and Finance > Business > Business I.T.": [ + {"kind": "business_it", "provider_a": "Okta", "provider_b": "Microsoft Entra"}, + {"kind": "business_it", "provider_a": "JumpCloud", "provider_b": "Okta"}, + {"kind": "business_it", "provider_a": "Duo", "provider_b": "OneLogin"}, + ], + "Food & Drink > Dining Out": [ + {"kind": "dining", "area": "downtown"}, + {"kind": "dining", "area": "midtown"}, + {"kind": "dining", "area": "the waterfront"}, + ], + "Food & Drink > Alcoholic Beverages": [ + {"kind": "beverage"}, + {"kind": "beverage"}, + {"kind": "beverage"}, + ], + "Technology & Computing > Artificial Intelligence": [ + {"kind": "ai"}, + {"kind": "ai"}, + {"kind": "ai"}, + ], + "Technology & Computing > Computing > Computer Software and Applications": [ + { + "kind": "software", + "item": "software platform", + "item_plural": "software applications", + "provider_a": "Notion", + "provider_b": "Airtable", + "audience": "operations teams", + "goal": "workflow management", + }, + { + "kind": "software", + "item": "project management software", + "item_plural": "software tools", + "provider_a": "Asana", + "provider_b": "ClickUp", + "audience": "remote teams", + "goal": "project planning", + }, + { + "kind": "software", + "item": "business software", + "item_plural": "software products", + "provider_a": "Monday.com", + "provider_b": "Notion", + "audience": "startup operators", + "goal": "team coordination", + }, + ], + "Technology & Computing > Computing > Computer Software and Applications > Communication": [ + { + "kind": "software", + "item": "communication software", + "item_plural": "communication tools", + "provider_a": "Slack", + "provider_b": "Microsoft Teams", + "audience": "remote teams", + "goal": "team communication", + }, + { + "kind": "software", + "item": "team chat software", + "item_plural": "messaging platforms", + "provider_a": "Slack", + "provider_b": "Discord", + "audience": "distributed startups", + "goal": "internal collaboration", + }, + { + "kind": "software", + "item": "workplace communication platform", + "item_plural": "communication apps", + "provider_a": "Google Chat", + "provider_b": "Microsoft Teams", + "audience": "cross-functional teams", + "goal": "company messaging", + }, + ], + "Technology & Computing > Computing > Internet > Web Hosting": [ + { + "kind": "software", + "item": "web hosting", + "item_plural": "hosting providers", + "provider_a": "Vercel", + "provider_b": "Netlify", + "audience": "startup launch teams", + "goal": "site hosting", + }, + { + "kind": "software", + "item": "hosting platform", + "item_plural": "hosting services", + "provider_a": "Cloudflare Pages", + "provider_b": "Render", + "audience": "developers", + "goal": "website deployment", + }, + { + "kind": "software", + "item": "managed hosting", + "item_plural": "hosting options", + "provider_a": "WP Engine", + "provider_b": "Kinsta", + "audience": "content teams", + "goal": "site performance", + }, + ], + "Technology & Computing > Computing > Laptops": [ + { + "kind": "shopping", + "item": "laptop", + "item_plural": "laptops", + "provider_a": "MacBook Air", + "provider_b": "Dell XPS 13", + "audience": "work and study", + "constraint": "battery life and portability", + "year": "2026", + }, + { + "kind": "shopping", + "item": "gaming laptop", + "item_plural": "gaming laptops", + "provider_a": "Asus ROG Zephyrus", + "provider_b": "Lenovo Legion Slim", + "audience": "gamers", + "constraint": "performance under a reasonable budget", + "year": "2026", + }, + { + "kind": "shopping", + "item": "student laptop", + "item_plural": "student laptops", + "provider_a": "Acer Swift Go", + "provider_b": "HP Pavilion Aero", + "audience": "college students", + "constraint": "price and portability", + "year": "2026", + }, + ], + "Technology & Computing > Computing > Desktops": [ + { + "kind": "shopping", + "item": "desktop", + "item_plural": "desktops", + "provider_a": "iMac", + "provider_b": "Dell Inspiron Desktop", + "audience": "home offices", + "constraint": "everyday productivity", + "year": "2026", + }, + { + "kind": "shopping", + "item": "gaming desktop", + "item_plural": "gaming desktops", + "provider_a": "Alienware Aurora", + "provider_b": "Lenovo Legion Tower", + "audience": "pc gamers", + "constraint": "strong graphics performance", + "year": "2026", + }, + { + "kind": "shopping", + "item": "desktop pc", + "item_plural": "desktop computers", + "provider_a": "HP Envy Desktop", + "provider_b": "Acer Aspire TC", + "audience": "families", + "constraint": "value for money", + "year": "2026", + }, + ], + "Technology & Computing > Consumer Electronics > Smartphones": [ + { + "kind": "shopping", + "item": "smartphone", + "item_plural": "smartphones", + "provider_a": "iPhone 17", + "provider_b": "Samsung Galaxy S26", + "audience": "everyday users", + "constraint": "camera quality and battery life", + "year": "2026", + }, + { + "kind": "shopping", + "item": "budget phone", + "item_plural": "budget smartphones", + "provider_a": "Pixel 10a", + "provider_b": "Galaxy A57", + "audience": "budget-conscious buyers", + "constraint": "under midrange pricing", + "year": "2026", + }, + { + "kind": "shopping", + "item": "android phone", + "item_plural": "android phones", + "provider_a": "OnePlus 15", + "provider_b": "Pixel 10", + "audience": "power users", + "constraint": "performance and clean software", + "year": "2026", + }, + ], +} + + +BENCHMARK_SCENARIOS = { + "Automotive > Auto Buying and Selling": { + "kind": "shopping", + "item": "car", + "item_plural": "vehicles", + "provider_a": "Mazda CX-5", + "provider_b": "Subaru Forester", + "audience": "a first-time buyer", + "constraint": "safety and price", + "year": "2026", + }, + "Business and Finance > Business > Sales": { + "kind": "software", + "item": "crm platform", + "item_plural": "sales tools", + "provider_a": "Copper", + "provider_b": "Salesforce Essentials", + "audience": "small revenue teams", + "goal": "managing leads", + }, + "Business and Finance > Business > Marketing and Advertising": { + "kind": "software", + "item": "marketing platform", + "item_plural": "marketing tools", + "provider_a": "Moz", + "provider_b": "SE Ranking", + "audience": "brand teams", + "goal": "search visibility", + }, + "Business and Finance > Business > Business I.T.": { + "kind": "business_it", + "provider_a": "Rippling", + "provider_b": "JumpCloud", + }, + "Food & Drink > Dining Out": {"kind": "dining", "area": "uptown"}, + "Food & Drink > Alcoholic Beverages": {"kind": "beverage"}, + "Technology & Computing > Artificial Intelligence": {"kind": "ai"}, + "Technology & Computing > Computing > Computer Software and Applications": { + "kind": "software", + "item": "workflow software", + "item_plural": "productivity apps", + "provider_a": "Basecamp", + "provider_b": "Asana", + "audience": "small teams", + "goal": "organizing work", + }, + "Technology & Computing > Computing > Computer Software and Applications > Communication": { + "kind": "software", + "item": "communication platform", + "item_plural": "team messaging tools", + "provider_a": "Mattermost", + "provider_b": "Slack", + "audience": "engineering teams", + "goal": "workplace communication", + }, + "Technology & Computing > Computing > Internet > Web Hosting": { + "kind": "software", + "item": "web hosting service", + "item_plural": "hosting platforms", + "provider_a": "Fly.io", + "provider_b": "Render", + "audience": "product builders", + "goal": "deploying websites", + }, + "Technology & Computing > Computing > Laptops": { + "kind": "shopping", + "item": "laptop", + "item_plural": "portable computers", + "provider_a": "Surface Laptop", + "provider_b": "Framework Laptop", + "audience": "knowledge workers", + "constraint": "portability and repairability", + "year": "2026", + }, + "Technology & Computing > Computing > Desktops": { + "kind": "shopping", + "item": "desktop computer", + "item_plural": "desktop pcs", + "provider_a": "Mac Studio", + "provider_b": "HP Omen 45L", + "audience": "creators", + "constraint": "performance and reliability", + "year": "2026", + }, + "Technology & Computing > Consumer Electronics > Smartphones": { + "kind": "shopping", + "item": "smartphone", + "item_plural": "mobile phones", + "provider_a": "Nothing Phone 4", + "provider_b": "Pixel 10 Pro", + "audience": "everyday buyers", + "constraint": "camera and battery performance", + "year": "2026", + }, +} + + +def build_rows(label: str, scenarios: list[dict], include_difficulty: bool) -> list[dict]: + rows = [] + seen = set() + for scenario in scenarios: + prompts_by_difficulty = KIND_TO_BUILDER[scenario["kind"]](scenario) + for difficulty, prompts in prompts_by_difficulty.items(): + for text in prompts: + normalized = " ".join(text.strip().lower().split()) + key = (label, normalized) + if key in seen: + continue + seen.add(key) + row = {"text": normalized, "iab_path": label} + if include_difficulty: + row["difficulty"] = difficulty + rows.append(row) + return rows + + +def split_rows(rows: list[dict]) -> tuple[list[dict], list[dict], list[dict]]: + total = len(rows) + val_count = max(1, total // 6) + test_count = max(1, total // 6) + test_rows = rows[:test_count] + val_rows = rows[test_count : test_count + val_count] + train_rows = rows[test_count + val_count :] + return train_rows, val_rows, test_rows + + +def main() -> None: + train_rows: list[dict] = [] + val_rows: list[dict] = [] + test_rows: list[dict] = [] + benchmark_rows: list[dict] = [] + + for label, scenarios in AUGMENTATION_SCENARIOS.items(): + rows = build_rows(label, scenarios, include_difficulty=True) + train_split, val_split, test_split = split_rows(rows) + train_rows.extend(train_split) + val_rows.extend(val_split) + test_rows.extend(test_split) + + for label, scenario in BENCHMARK_SCENARIOS.items(): + benchmark_rows.extend(build_rows(label, [scenario], include_difficulty=True)) + + write_jsonl(IAB_DIFFICULTY_DATA_DIR / "train.jsonl", train_rows) + write_jsonl(IAB_DIFFICULTY_DATA_DIR / "val.jsonl", val_rows) + write_jsonl(IAB_DIFFICULTY_DATA_DIR / "test.jsonl", test_rows) + write_jsonl(IAB_BENCHMARK_PATH, benchmark_rows) + + print(f"train: {len(train_rows)} rows") + print(f"val: {len(val_rows)} rows") + print(f"test: {len(test_rows)} rows") + print(f"benchmark: {len(benchmark_rows)} rows") + + +if __name__ == "__main__": + main() diff --git a/training/build_iab_taxonomy_embeddings.py b/training/build_iab_taxonomy_embeddings.py new file mode 100644 index 0000000000000000000000000000000000000000..5eb10d84d49537e4646c9a30780045b5a5415f84 --- /dev/null +++ b/training/build_iab_taxonomy_embeddings.py @@ -0,0 +1,27 @@ +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from iab_retrieval import build_iab_taxonomy_embedding_index +from config import IAB_RETRIEVAL_MODEL_NAME + + +def main() -> None: + parser = argparse.ArgumentParser(description="Build a local embedding index for IAB taxonomy nodes.") + parser.add_argument("--batch-size", type=int, default=32, help="Embedding batch size.") + args = parser.parse_args() + + summary = build_iab_taxonomy_embedding_index(batch_size=args.batch_size) + summary["active_model_name"] = IAB_RETRIEVAL_MODEL_NAME + print(json.dumps(summary, indent=2, sort_keys=True)) + + +if __name__ == "__main__": + main() diff --git a/training/build_intent_type_difficulty_dataset.py b/training/build_intent_type_difficulty_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..3979cc19c90d2ddbdcdd8c5b7cbf2f1cd0ca9c95 --- /dev/null +++ b/training/build_intent_type_difficulty_dataset.py @@ -0,0 +1,429 @@ +from __future__ import annotations + +import json +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +OUTPUT_DIR = BASE_DIR / "data" / "intent_type_difficulty" +BENCHMARK_PATH = BASE_DIR / "data" / "intent_type_benchmark.jsonl" + +TRAIN_THEMES = ( + { + "topic": "crm software", + "product": "CRM", + "products": "CRM tools", + "provider_a": "HubSpot", + "provider_b": "Zoho", + "domain": "a small sales team", + "goal": "manage leads better", + "support_object": "account", + "support_detail": "password reset", + "asset": "CRM onboarding guide", + }, + { + "topic": "project management software", + "product": "project management tool", + "products": "project management tools", + "provider_a": "Asana", + "provider_b": "ClickUp", + "domain": "an agency team", + "goal": "organize projects", + "support_object": "workspace", + "support_detail": "invite issue", + "asset": "project launch checklist", + }, + { + "topic": "analytics software", + "product": "analytics platform", + "products": "analytics platforms", + "provider_a": "Mixpanel", + "provider_b": "Amplitude", + "domain": "a product team", + "goal": "measure activation", + "support_object": "dashboard", + "support_detail": "data sync problem", + "asset": "analytics setup guide", + }, + { + "topic": "laptops", + "product": "laptop", + "products": "laptops", + "provider_a": "MacBook Air", + "provider_b": "Dell XPS 13", + "domain": "college work", + "goal": "pick the right laptop", + "support_object": "order", + "support_detail": "warranty claim", + "asset": "laptop buying checklist", + }, + { + "topic": "cars", + "product": "car", + "products": "cars", + "provider_a": "Toyota Corolla", + "provider_b": "Honda Civic", + "domain": "daily commuting", + "goal": "choose the right car", + "support_object": "reservation", + "support_detail": "test drive booking", + "asset": "car buying worksheet", + }, +) + +BENCHMARK_THEMES = { + "easy": { + "topic": "help desk software", + "product": "help desk platform", + "products": "help desk tools", + "provider_a": "Zendesk", + "provider_b": "Freshdesk", + "domain": "a support team", + "goal": "handle tickets faster", + "support_object": "billing portal", + "support_detail": "invoice issue", + "asset": "help desk buyer guide", + }, + "medium": { + "topic": "smartphones", + "product": "smartphone", + "products": "smartphones", + "provider_a": "iPhone", + "provider_b": "Pixel", + "domain": "travel planning", + "goal": "choose a new phone", + "support_object": "trade-in order", + "support_detail": "shipping update", + "asset": "phone comparison sheet", + }, + "hard": { + "topic": "web hosting", + "product": "hosting platform", + "products": "hosting providers", + "provider_a": "Vercel", + "provider_b": "Netlify", + "domain": "a startup launch", + "goal": "ship a new website", + "support_object": "deployment", + "support_detail": "domain setup problem", + "asset": "hosting migration guide", + }, +} + +INTENT_TEMPLATES = { + "informational": { + "easy": ( + "What is {topic}?", + "Explain {topic} in simple terms.", + "How does {product} work?", + "What does {provider_a} do?", + "Give me the basics of {topic}.", + ), + "medium": ( + "Can you break down how {topic} works for {domain}?", + "Help me understand what problem {provider_a} solves.", + "What should a beginner know about {products}?", + "Before I compare options, what is a {product} exactly?", + "What does a {product} actually help with?", + ), + "hard": ( + "Before I decide anything, what is the role of {topic} in {domain}?", + "I keep hearing about {provider_a}; what does it actually do?", + "What category does {provider_a} belong to?", + "Can you clarify what people mean by {topic} in practice?", + "I am not shopping yet, just tell me what {topic} is.", + ), + }, + "exploratory": { + "easy": ( + "What {products} should I explore for {domain}?", + "Show me {products} to consider for {goal}.", + "Help me explore options before picking a {product}.", + "Where should I start with {products}?", + "What kinds of {products} are worth looking into?", + ), + "medium": ( + "I am researching {products} for {domain}; where should I start?", + "Give me a shortlist of {products} worth exploring.", + "What options should be on my radar before choosing a {product}?", + "I am early in the process and want to explore {products}.", + "What directions should I investigate for {goal}?", + ), + "hard": ( + "I am not ready to buy yet, but what paths should I explore for {goal}?", + "What categories of {products} are worth researching before I narrow down?", + "I need a landscape view of {products}, not a recommendation yet.", + "How would you scope the market for {products} in {domain}?", + "What should I research first if I am only beginning to look at {products}?", + ), + }, + "commercial": { + "easy": ( + "Best {product} for {domain}.", + "{provider_a} vs {provider_b}.", + "Which {product} should I buy for {goal}?", + "Top {products} for {domain}.", + "What is the best {product} this year?", + ), + "medium": ( + "Compare {provider_a} and {provider_b} for {goal}.", + "I need the best {product} option for {domain}.", + "Which {product} is worth paying for right now?", + "Help me evaluate the best {products} for {goal}.", + "What should I choose if I want a strong {product} for {domain}?", + ), + "hard": ( + "I am leaning toward buying soon; which {product} looks strongest for {domain}?", + "If price is not the only factor, which {provider_a}/{provider_b} style option should I favor?", + "What would you recommend if I need to commit to a {product} soon?", + "I have done some research, now which {product} should make the shortlist?", + "What seems like the best-fit {product} if I need to make a purchase decision soon?", + ), + }, + "transactional": { + "easy": ( + "Start a free trial of {provider_a}.", + "Book a demo with {provider_a}.", + "Create an account for {provider_a}.", + "Download the {asset}.", + "Buy {provider_a} now.", + ), + "medium": ( + "Get me signed up for {provider_a}.", + "I want to purchase {provider_a} today.", + "Reserve my spot with {provider_a}.", + "Send me the download for the {asset}.", + "Take me to checkout for {provider_a}.", + ), + "hard": ( + "I am ready to move forward now, where do I start the purchase for {provider_a}?", + "Help me complete the signup flow for {provider_a}.", + "I want to act on this now and get access to {provider_a}.", + "Can you help me finish the order for {provider_a}?", + "I have decided, now let me complete the next step for {provider_a}.", + ), + }, + "support": { + "easy": ( + "I cannot log into my {support_object}.", + "How do I reset my password?", + "My {support_object} is not working.", + "I need help with a billing issue.", + "Why is my {support_object} failing?", + ), + "medium": ( + "Can you help me fix a {support_detail}?", + "I am stuck because my {support_object} keeps breaking.", + "My invoice looks wrong for {provider_a}.", + "I need support with my {support_object}.", + "Why is {provider_a} not syncing correctly?", + ), + "hard": ( + "I am not evaluating tools, I just need help fixing my {support_object}.", + "Something is wrong after signup and I need support, not advice.", + "Please help me resolve a live problem with {provider_a}.", + "I cannot continue because my {support_object} is broken.", + "This is a support issue: my {support_detail} needs to be fixed.", + ), + }, + "personal_reflection": { + "easy": ( + "I feel overwhelmed choosing between {products}.", + "I am frustrated by our {topic} results.", + "I regret switching to {provider_a}.", + "I feel stuck deciding on a {product}.", + "I am worried we picked the wrong {product}.", + ), + "medium": ( + "I am stressed about choosing between {provider_a} and {provider_b}.", + "I feel like I am making the wrong decision on {products}.", + "I am anxious about this whole {topic} choice.", + "I do not know if I trust my judgment on {products}.", + "I am second-guessing our choice of {provider_a}.", + ), + "hard": ( + "I do not really need a recommendation yet, I mostly need to think out loud about this decision.", + "I feel emotionally stuck over the choice between {provider_a} and {provider_b}.", + "I am carrying a lot of doubt about our {topic} decision.", + "I need space to reflect because this {product} choice is stressing me out.", + "I am processing whether switching to {provider_a} was a mistake.", + ), + }, + "creative_generation": { + "easy": ( + "Write five ad headlines for {provider_a}.", + "Draft a launch email for {provider_a}.", + "Generate social copy for the {asset}.", + "Create a tagline for a {product}.", + "Write product copy for {provider_a}.", + ), + "medium": ( + "Give me landing page copy for {provider_a}.", + "Write three meta descriptions for {provider_a}.", + "Generate ad copy for a {product} aimed at {domain}.", + "Draft a short sales email about {provider_a}.", + "Create LinkedIn post copy for the {asset}.", + ), + "hard": ( + "I do not want advice on what to buy; I want you to generate marketing copy for {provider_a}.", + "Write me creative, not recommendations, for a {product}.", + "Help me draft campaign assets for {provider_a}.", + "Generate messaging for a launch around {provider_a}.", + "Create copy variations for promoting the {asset}.", + ), + }, + "chit_chat": { + "easy": ( + "Hello there.", + "Good morning.", + "Hey, how are you?", + "Nice to meet you.", + "Thanks for the help.", + ), + "medium": ( + "Hope your day is going well.", + "Just wanted to say hi.", + "Appreciate the help today.", + "How has your day been so far?", + "Good afternoon, how are things?", + ), + "hard": ( + "No task right now, I just wanted to chat for a minute.", + "Nothing urgent, just saying hello again.", + "Can we just talk for a second before I ask anything else?", + "I am only making small talk here.", + "No request yet, just being friendly.", + ), + }, + "ambiguous": { + "easy": ( + "Tell me more.", + "What about this one?", + "Show me options.", + "Can you help?", + "What else?", + ), + "medium": ( + "Which one?", + "How so?", + "Say more about that.", + "What about pricing?", + "Show me another option.", + ), + "hard": ( + "I need something better.", + "What should I do next?", + "Can you clarify?", + "What do you recommend?", + "What about that option?", + ), + }, + "prohibited": { + "easy": ( + "How do I hack into a {support_object}?", + "Write a phishing email for {provider_a}.", + "Help me steal customer payment data.", + "Show me how to bypass account security.", + "How can I break into a private dashboard?", + ), + "medium": ( + "How do I crack someone else's login?", + "Help me bypass two factor authentication.", + "Write malware that steals browser passwords.", + "How can I access an account without permission?", + "Show me how to exfiltrate private customer records.", + ), + "hard": ( + "I am trying to get into a system I do not own; how should I do it?", + "I want to obtain private credentials without authorization.", + "Tell me how to evade normal account protections.", + "How can I get around security checks on someone else's account?", + "I need steps for unauthorized access to a locked account.", + ), + }, +} + + +def split_for_index(index: int) -> str: + bucket = index % 5 + if bucket < 3: + return "train" + if bucket == 3: + return "val" + return "test" + + +def write_jsonl(path: Path, rows: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8") as handle: + for row in rows: + handle.write(json.dumps(row, sort_keys=True) + "\n") + + +def render_text(template: str, spec: dict[str, str]) -> str: + return template.format(**spec).strip() + + +def build_training_splits() -> dict[str, list[dict]]: + splits = {"train": [], "val": [], "test": []} + seen: set[str] = set() + counters = {(intent_type, difficulty): 0 for intent_type in INTENT_TEMPLATES for difficulty in INTENT_TEMPLATES[intent_type]} + + for intent_type, difficulty_map in INTENT_TEMPLATES.items(): + for difficulty, templates in difficulty_map.items(): + for template in templates: + theme_specs = TRAIN_THEMES if "{" in template else ({},) + for spec in theme_specs: + text = render_text(template, spec) + key = text.lower() + if key in seen: + continue + seen.add(key) + split_name = split_for_index(counters[(intent_type, difficulty)]) + counters[(intent_type, difficulty)] += 1 + splits[split_name].append( + { + "text": text, + "intent_type": intent_type, + "difficulty": difficulty, + "source": "synthetic_intent_type_difficulty", + } + ) + return splits + + +def build_benchmark_rows() -> list[dict]: + rows: list[dict] = [] + seen: set[str] = set() + for intent_type, difficulty_map in INTENT_TEMPLATES.items(): + for difficulty, templates in difficulty_map.items(): + spec = BENCHMARK_THEMES.get(difficulty, {}) + for template in templates: + text = render_text(template, spec) + key = text.lower() + if key in seen: + continue + seen.add(key) + rows.append( + { + "text": text, + "intent_type": intent_type, + "difficulty": difficulty, + "source": "intent_type_benchmark", + } + ) + return rows + + +def main() -> None: + splits = build_training_splits() + for split_name, rows in splits.items(): + write_jsonl(OUTPUT_DIR / f"{split_name}.jsonl", rows) + print(f"{split_name}: {len(rows)} rows") + + benchmark_rows = build_benchmark_rows() + write_jsonl(BENCHMARK_PATH, benchmark_rows) + print(f"benchmark: {len(benchmark_rows)} rows") + + +if __name__ == "__main__": + main() diff --git a/training/build_subtype_dataset.py b/training/build_subtype_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..b609257c5f44286b5e0bf8f3a1fbc13d0efc3960 --- /dev/null +++ b/training/build_subtype_dataset.py @@ -0,0 +1,468 @@ +from __future__ import annotations + +import json +import re +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import SUBTYPE_HEAD_CONFIG + +OUTPUT_DIR = SUBTYPE_HEAD_CONFIG.data_dir + +INTENT_SOURCE_PATHS = { + "train": BASE_DIR / "data" / "train.jsonl", + "val": BASE_DIR / "data" / "val.jsonl", + "test": BASE_DIR / "data" / "test.jsonl", + "hard_cases": BASE_DIR / "data" / "hard_cases.jsonl", + "extended_cases": BASE_DIR / "data" / "third_wave_cases.jsonl", +} + +PHASE_SOURCE_PATHS = { + "train": BASE_DIR / "data" / "decision_phase" / "train.jsonl", + "val": BASE_DIR / "data" / "decision_phase" / "val.jsonl", + "test": BASE_DIR / "data" / "decision_phase" / "test.jsonl", + "hard_cases": BASE_DIR / "data" / "decision_phase" / "hard_cases.jsonl", + "extended_cases": BASE_DIR / "data" / "decision_phase" / "final_wave_cases.jsonl", +} + +EXACT_SUBTYPE_OVERRIDES = { + "Download the customer onboarding checklist": "download", + "Intercom vs Zendesk for onboarding support": "comparison", + "Why is customer retention important?": "education", + "Explain the basics of customer onboarding": "education", + "How does buying a used car work?": "education", + "Help me learn how customer onboarding software works": "education", + "Help me understand how to compare cars before buying": "education", + "This is not working": "troubleshooting", + "How should I fix it": "troubleshooting", + "Show me options": "product_discovery", + "What do you recommend": "provider_selection", + "Give me the best one": "provider_selection", + "What solutions exist for onboarding new users?": "product_discovery", + "Compare onboarding tools for SaaS products": "comparison", + "Request pricing from the sales team": "contact_sales", + "Sign me up for the demo": "contact_sales", + "Book a demo for the analytics platform": "contact_sales", + "Book a meeting with sales": "contact_sales", + "Contact sales to schedule a product walkthrough": "contact_sales", + "schedule a demo for next week": "booking", + "Schedule implementation for next week": "onboarding_setup", + "What costs less HubSpot or Zoho?": "deal_seeking", + "Which car to buy in 2026": "provider_selection", + "Which electric car should I buy this year?": "provider_selection", + "which CRM should a solo founder pick": "provider_selection", + "Toyota Corolla vs Honda Civic for commuting": "comparison", + "Best SUV to buy in 2026": "product_discovery", + "Best hybrid SUV for a family": "product_discovery", + "Book a test drive for the new SUV": "booking", + "Schedule a test drive for this sedan": "booking", + "Reserve a test drive for tomorrow": "booking", + "Show me CRM tools for a five-person company": "product_discovery", + "Which platforms help with product analytics?": "product_discovery", + "What are good tools for email automation?": "product_discovery", + "Help me understand how CRM tools work for startups": "education", + "Teach me the basics of CRM for a small team": "education", + "What solutions can help monitor AI search visibility?": "product_discovery", + "Which classifier works best for small datasets": "evaluation", + "which CRM is better for a 3-person startup": "provider_selection", + "Subscribe me to the product updates": "signup", + "sign me up for the newsletter": "signup", + "How do I set goals for our first month using this tool?": "onboarding_setup", + "What should we do first after buying this platform?": "onboarding_setup", + "HubSpot or Pipedrive for our team right now?": "provider_selection", + "Open the annotation dashboard": "task_execution", + "Send me the benchmark report": "task_execution", + "Schedule the retraining pipeline": "task_execution", + "help me choose a CRM for a real estate business": "provider_selection", + "help me pick a CRM for managing inbound leads": "provider_selection", + "How should I evaluate AI search monitoring tools?": "evaluation", + "I am researching which help desk tools might fit our team": "product_discovery", + "Is HubSpot better than Zoho for lead tracking?": "comparison", + "Show me some directions I could explore for better analytics": "product_discovery", + "Explain CRM basics": "education", + "Show me how CRM systems help small businesses": "education", + "Which CRM integrates better with Gmail?": "comparison", +} + +MANUAL_SPLIT_ROWS = { + "train": [ + {"text": "Talk to sales about enterprise pricing", "intent_subtype": "contact_sales"}, + {"text": "Put me in touch with an account executive", "intent_subtype": "contact_sales"}, + {"text": "Connect me with sales for a custom quote", "intent_subtype": "contact_sales"}, + {"text": "Download the buyer comparison guide", "intent_subtype": "download"}, + {"text": "Export the onboarding checklist as a PDF", "intent_subtype": "download"}, + {"text": "Download the setup worksheet", "intent_subtype": "download"}, + {"text": "Open a trial workspace for my team", "intent_subtype": "signup"}, + {"text": "Register a new account for our startup", "intent_subtype": "signup"}, + {"text": "Create a free workspace for evaluation", "intent_subtype": "signup"}, + {"text": "Set up a free trial account for the sales team", "intent_subtype": "signup"}, + {"text": "Create a starter login so we can try the platform", "intent_subtype": "signup"}, + {"text": "Get our team into the free trial flow today", "intent_subtype": "signup"}, + {"text": "Subscribe me to the product updates", "intent_subtype": "signup"}, + {"text": "Sign me up for release updates from the product team", "intent_subtype": "signup"}, + {"text": "Why was my payment charged twice", "intent_subtype": "billing_help"}, + {"text": "My renewal invoice is incorrect", "intent_subtype": "billing_help"}, + {"text": "How do I fix a failed subscription payment", "intent_subtype": "billing_help"}, + {"text": "The reset password email never shows up", "intent_subtype": "account_help"}, + {"text": "I cannot unlock my account", "intent_subtype": "account_help"}, + {"text": "The login page keeps rejecting my sign in code", "intent_subtype": "account_help"}, + {"text": "The integration sync keeps crashing", "intent_subtype": "troubleshooting"}, + {"text": "Our export job fails every time", "intent_subtype": "troubleshooting"}, + {"text": "Why does the API connection keep erroring", "intent_subtype": "troubleshooting"}, + {"text": "Which car to buy in 2026", "intent_subtype": "provider_selection"}, + {"text": "Which electric car should I buy this year?", "intent_subtype": "provider_selection"}, + {"text": "Which vendor should we commit to for our 10-person sales team?", "intent_subtype": "provider_selection"}, + {"text": "We have enough research, which CRM should we choose now?", "intent_subtype": "provider_selection"}, + {"text": "Give me the final pick between HubSpot and Zoho for our startup", "intent_subtype": "provider_selection"}, + {"text": "HubSpot or Pipedrive for our team right now?", "intent_subtype": "provider_selection"}, + {"text": "Which platform should our team commit to right now?", "intent_subtype": "provider_selection"}, + {"text": "Toyota Corolla vs Honda Civic for commuting", "intent_subtype": "comparison"}, + {"text": "Best SUV to buy in 2026", "intent_subtype": "product_discovery"}, + {"text": "Best hybrid SUV for a family", "intent_subtype": "product_discovery"}, + {"text": "Assess whether HubSpot is a fit for our inbound sales process", "intent_subtype": "evaluation"}, + {"text": "Would Zoho work well for a small recruiting team?", "intent_subtype": "evaluation"}, + {"text": "Pressure-test whether this CRM actually fits our workflow", "intent_subtype": "evaluation"}, + {"text": "Book a test drive for the new SUV", "intent_subtype": "booking"}, + {"text": "Schedule a test drive for this sedan", "intent_subtype": "booking"}, + {"text": "Run the nightly lead sync job", "intent_subtype": "task_execution"}, + {"text": "Schedule the backup workflow to run every night", "intent_subtype": "task_execution"}, + {"text": "Generate the sales pipeline report right now", "intent_subtype": "task_execution"}, + {"text": "Approve this workflow step in the CRM", "intent_subtype": "task_execution"}, + {"text": "Open the annotation dashboard", "intent_subtype": "task_execution"}, + {"text": "Send me the benchmark report", "intent_subtype": "task_execution"}, + {"text": "Schedule the retraining pipeline", "intent_subtype": "task_execution"}, + {"text": "What should we do first after buying this platform?", "intent_subtype": "onboarding_setup"}, + {"text": "How do I set goals for our first month using this tool?", "intent_subtype": "onboarding_setup"}, + ], + "val": [ + {"text": "Evaluate whether HubSpot fits a five-person outbound team", "intent_subtype": "evaluation"}, + {"text": "Would this CRM be a good fit for our support workflow?", "intent_subtype": "evaluation"}, + {"text": "Which vendor should our startup commit to this month?", "intent_subtype": "provider_selection"}, + {"text": "We are at decision time, which platform should we pick?", "intent_subtype": "provider_selection"}, + {"text": "Open a free trial account for our team", "intent_subtype": "signup"}, + {"text": "Create a new starter account so we can test the product", "intent_subtype": "signup"}, + {"text": "Run the scheduled data sync now", "intent_subtype": "task_execution"}, + {"text": "Generate the dashboard report for this quarter", "intent_subtype": "task_execution"}, + {"text": "What should we do first after we buy this platform?", "intent_subtype": "onboarding_setup"}, + {"text": "HubSpot or Pipedrive for our team right now?", "intent_subtype": "provider_selection"}, + ], +} + +PHRASE_PATTERNS = { + "billing_help": [ + "invoice", + "billing", + "credit card", + "payment", + "charged twice", + "renewal", + "declined", + ], + "account_help": [ + "log into", + "login", + "password", + "credentials", + "reset link", + "reset email", + "unlock", + "sign in code", + "locked out", + "sign-in code", + "cannot access my account", + ], + "troubleshooting": [ + "broken", + "crashing", + "failing", + "failed", + "error", + "not loading", + "not working", + "stuck", + "recover deleted", + ], + "onboarding_setup": [ + "set up", + "configure", + "connect", + "import contacts", + "onboard", + "roll this tool out", + "usage analytics", + "invite teammates", + "user permissions", + "connect email", + "features should we enable first", + "what should we do first after", + "what should i do first after", + ], + "download": ["download", "export"], + "contact_sales": ["contact sales", "sales team", "quote", "product walkthrough", "demo", "account executive"], + "booking": ["book", "schedule", "reserve", "appointment", "seat for", "table for", "meeting"], + "purchase": ["buy", "checkout", "order", "annual plan", "monthly plan", "subscribe", "subscription"], + "signup": ["free trial", "create an account", "create my account", "register", "waitlist", "sign up", "activate"], + "task_execution": [ + "install", + "upload", + "run", + "save", + "deploy", + "generate", + "submit", + "sync", + "approve", + "create a ", + "annotate", + ], + "comparison": ["vs", "compare", "versus"], + "deal_seeking": ["cheap", "cheaper", "affordable", "lower-cost", "costs less", "budget", "pricing", "under $"], + "provider_selection": [ + "which should i buy", + "should i choose", + "which vendor", + "best value", + "go with", + "commit to", + "which one should", + "should we pick", + "right crm", + "worth it", + ], + "product_discovery": [ + "best ", + "top ", + "alternatives", + "options", + "choices", + "what tools", + "what software", + "what platforms", + "worth considering", + "what crm platforms", + "what kinds of crm", + ], + "education": [ + "what is", + "what does", + "how does", + "how do", + "explain", + "walk me through", + "teach me", + "show me how", + "help me understand", + "basics", + "fundamentals", + "difference between", + "used for", + ], +} + +AMBIGUOUS_FOLLOW_UPS = { + "tell me more", + "what about this one", + "can you help", + "i need something better", + "is this good", + "can you explain", + "what should i do next", + "go on", + "what do you mean", + "show me more", + "can you explain that", + "which one", + "why", + "okay and then", + "and then what", + "tell me a bit more", + "show me a little more", + "which one do you mean", + "why though", + "how so exactly", + "go deeper", + "say more about that", + "expand on that a little", + "why do you say that", +} + + +def load_jsonl(path: Path) -> list[dict]: + with path.open("r", encoding="utf-8") as handle: + return [json.loads(line) for line in handle] + + +def write_jsonl(path: Path, rows: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", encoding="utf-8") as handle: + for row in rows: + handle.write(json.dumps(row, sort_keys=True) + "\n") + + +def normalize(text: str) -> str: + return re.sub(r"\s+", " ", text.strip().lower()) + + +def has_phrase(text: str, phrases: list[str]) -> bool: + lowered = normalize(text) + for phrase in phrases: + token = phrase.lower() + if token.startswith(" ") or token.endswith(" "): + if token in lowered: + return True + continue + if re.search(rf"(? str: + if text in EXACT_SUBTYPE_OVERRIDES: + return EXACT_SUBTYPE_OVERRIDES[text] + + lowered = normalize(text) + if intent_type == "support": + if has_phrase(text, PHRASE_PATTERNS["billing_help"]): + return "billing_help" + if has_phrase(text, PHRASE_PATTERNS["account_help"]): + return "account_help" + return "troubleshooting" + if intent_type == "personal_reflection": + return "emotional_reflection" + if intent_type == "chit_chat": + return "follow_up" + if intent_type == "prohibited": + return "follow_up" + if intent_type == "creative_generation": + return "task_execution" + if lowered in AMBIGUOUS_FOLLOW_UPS or intent_type == "ambiguous": + return "follow_up" + + if decision_phase == "support": + if has_phrase(text, PHRASE_PATTERNS["billing_help"]): + return "billing_help" + if has_phrase(text, PHRASE_PATTERNS["account_help"]): + return "account_help" + return "troubleshooting" + + if decision_phase == "post_purchase" or has_phrase(text, PHRASE_PATTERNS["onboarding_setup"]): + if has_phrase(text, PHRASE_PATTERNS["download"]): + return "download" + return "onboarding_setup" + + if has_phrase(text, PHRASE_PATTERNS["billing_help"]): + return "billing_help" + if has_phrase(text, PHRASE_PATTERNS["troubleshooting"]): + return "troubleshooting" + if has_phrase(text, PHRASE_PATTERNS["account_help"]): + return "account_help" + + if intent_type == "transactional" or decision_phase == "action": + if has_phrase(text, PHRASE_PATTERNS["download"]): + return "download" + if has_phrase(text, PHRASE_PATTERNS["contact_sales"]): + return "contact_sales" + if has_phrase(text, PHRASE_PATTERNS["booking"]): + return "booking" + if has_phrase(text, PHRASE_PATTERNS["purchase"]): + return "purchase" + if has_phrase(text, PHRASE_PATTERNS["signup"]): + return "signup" + return "task_execution" + + if intent_type == "commercial" or decision_phase in {"consideration", "decision"}: + if has_phrase(text, PHRASE_PATTERNS["comparison"]): + return "comparison" + if has_phrase(text, PHRASE_PATTERNS["deal_seeking"]): + return "deal_seeking" + if decision_phase == "decision" or has_phrase(text, PHRASE_PATTERNS["provider_selection"]): + return "provider_selection" + if has_phrase(text, PHRASE_PATTERNS["product_discovery"]): + return "product_discovery" + return "evaluation" + + if intent_type == "exploratory" or decision_phase == "research": + if has_phrase(text, PHRASE_PATTERNS["comparison"]): + return "comparison" + if has_phrase(text, PHRASE_PATTERNS["product_discovery"]): + return "product_discovery" + return "evaluation" + + return "education" + + +def merge_split(split_name: str) -> list[dict]: + merged: dict[str, dict] = {} + for source_name, source_paths in ( + ("intent_type", INTENT_SOURCE_PATHS), + ("decision_phase", PHASE_SOURCE_PATHS), + ): + for row in load_jsonl(source_paths[split_name]): + item = merged.setdefault( + row["text"], + { + "text": row["text"], + "intent_subtype": None, + "source_heads": [], + "source_splits": [], + }, + ) + item["source_heads"].append(source_name) + item["source_splits"].append(split_name) + if "intent_type" in row: + item["intent_type"] = row["intent_type"] + if "decision_phase" in row: + item["decision_phase"] = row["decision_phase"] + + rows: list[dict] = [] + for text in sorted(merged): + row = merged[text] + row["source_heads"] = sorted(set(row["source_heads"])) + row["source_splits"] = sorted(set(row["source_splits"])) + row["intent_subtype"] = infer_subtype( + text=row["text"], + intent_type=row.get("intent_type"), + decision_phase=row.get("decision_phase"), + ) + rows.append(row) + + if split_name in MANUAL_SPLIT_ROWS: + for seed in MANUAL_SPLIT_ROWS[split_name]: + rows.append( + { + "text": seed["text"], + "intent_subtype": seed["intent_subtype"], + "source_heads": ["manual_seed"], + "source_splits": ["train"], + } + ) + rows = sorted(rows, key=lambda item: item["text"].lower()) + return rows + + +def main() -> None: + split_names = ("train", "val", "test", "hard_cases", "extended_cases") + summary = {} + for split_name in split_names: + rows = merge_split(split_name) + output_path = OUTPUT_DIR / f"{split_name}.jsonl" + write_jsonl(output_path, rows) + counts: dict[str, int] = {} + for row in rows: + counts[row["intent_subtype"]] = counts.get(row["intent_subtype"], 0) + 1 + summary[split_name] = { + "count": len(rows), + "output_path": str(output_path), + "subtype_counts": dict(sorted(counts.items())), + } + print(json.dumps(summary, indent=2, sort_keys=True)) + + +if __name__ == "__main__": + main() diff --git a/training/build_subtype_difficulty_dataset.py b/training/build_subtype_difficulty_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..f76cfaee315cf9dacc85e545bd3a67d7625bd71d --- /dev/null +++ b/training/build_subtype_difficulty_dataset.py @@ -0,0 +1,594 @@ +from __future__ import annotations + +import json +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +OUTPUT_DIR = BASE_DIR / "data" / "subtype_difficulty" +BENCHMARK_PATH = BASE_DIR / "data" / "subtype_benchmark.jsonl" + +TRAIN_THEMES = ( + { + "product": "CRM", + "products": "CRM tools", + "provider_a": "HubSpot", + "provider_b": "Zoho", + "team": "a 3-person startup", + "goal": "manage leads better", + "asset": "CRM buyer guide", + "task": "import leads from a spreadsheet", + "setup_task": "set up pipelines and invite teammates", + "billing_object": "invoice", + "account_object": "workspace", + "booking_target": "demo", + "budget": "$100 per month", + }, + { + "product": "analytics platform", + "products": "analytics tools", + "provider_a": "Mixpanel", + "provider_b": "Amplitude", + "team": "a product team", + "goal": "measure activation", + "asset": "analytics implementation checklist", + "task": "generate a retention report", + "setup_task": "connect events and configure dashboards", + "billing_object": "renewal charge", + "account_object": "dashboard login", + "booking_target": "strategy call", + "budget": "$300 per month", + }, + { + "product": "SEO platform", + "products": "SEO tools", + "provider_a": "Ahrefs", + "provider_b": "Semrush", + "team": "a content team", + "goal": "grow organic traffic", + "asset": "SEO tool comparison worksheet", + "task": "export keyword rankings", + "setup_task": "connect Search Console and create projects", + "billing_object": "subscription charge", + "account_object": "account login", + "booking_target": "sales consultation", + "budget": "$200 per month", + }, +) + +BENCHMARK_THEMES = { + "easy": { + "product": "help desk platform", + "products": "help desk tools", + "provider_a": "Zendesk", + "provider_b": "Freshdesk", + "team": "a support team", + "goal": "handle tickets faster", + "asset": "help desk setup guide", + "task": "export open tickets", + "setup_task": "configure queues and invite agents", + "billing_object": "invoice", + "account_object": "agent account", + "booking_target": "product demo", + "budget": "$150 per month", + }, + "medium": { + "product": "project management tool", + "products": "project management platforms", + "provider_a": "Asana", + "provider_b": "ClickUp", + "team": "a remote operations team", + "goal": "track work across projects", + "asset": "project tool buying checklist", + "task": "create a project status report", + "setup_task": "set up spaces and invite the team", + "billing_object": "plan renewal", + "account_object": "workspace login", + "booking_target": "implementation call", + "budget": "$250 per month", + }, + "hard": { + "product": "hosting platform", + "products": "hosting providers", + "provider_a": "Vercel", + "provider_b": "Netlify", + "team": "a startup launch team", + "goal": "ship a website reliably", + "asset": "hosting migration guide", + "task": "deploy a new site build", + "setup_task": "connect the domain and configure redirects", + "billing_object": "hosting invoice", + "account_object": "deployment account", + "booking_target": "technical demo", + "budget": "$80 per month", + }, +} + +SUBTYPE_TEMPLATES = { + "education": { + "easy": ( + "What is {product}?", + "Explain {product}.", + "How does {provider_a} work?", + "What does {provider_a} do?", + "Teach me the basics of {product}.", + ), + "medium": ( + "Help me understand what problem {product} solves for {team}.", + "What should a beginner know about {products}?", + "Before I compare anything, what is a {product}?", + "What is {product} used for in practice?", + "Give me an overview of how {products} help with {goal}.", + ), + "hard": ( + "I am not shopping yet; I just need to understand what {product} is.", + "Before I evaluate vendors, explain the role of {product} for {team}.", + "I keep hearing about {provider_a}; what is it actually for?", + "I only want the fundamentals of {products} right now.", + "Clarify what people mean by {product} without recommending a tool.", + ), + }, + "product_discovery": { + "easy": ( + "Best {product} for {team}.", + "What are the top {products} for {goal}?", + "Show me the best {products}.", + "What {products} are worth considering?", + "Give me options for a {product}.", + ), + "medium": ( + "I need a shortlist of {products} for {team}.", + "What are strong options if I need a {product} for {goal}?", + "Which {products} should I look at first?", + "What tools are worth exploring before I compare finalists?", + "Point me to promising {products} for {team}.", + ), + "hard": ( + "I want to discover strong options before I narrow down to a few vendors.", + "Help me build a shortlist of {products} without picking one yet.", + "What products belong on the first pass for {goal}?", + "I am early in vendor discovery and need good starting options.", + "Map the space for {products} before we decide what to compare.", + ), + }, + "comparison": { + "easy": ( + "{provider_a} vs {provider_b}.", + "Compare {provider_a} and {provider_b}.", + "Which is better, {provider_a} or {provider_b}?", + "Give me a comparison of {provider_a} vs {provider_b}.", + "How does {provider_a} compare with {provider_b}?", + ), + "medium": ( + "Compare {provider_a} and {provider_b} for {goal}.", + "What are the tradeoffs between {provider_a} and {provider_b} for {team}?", + "I need a side-by-side of {provider_a} and {provider_b}.", + "How do {provider_a} and {provider_b} stack up on price and features?", + "Walk me through a fair comparison of {provider_a} vs {provider_b}.", + ), + "hard": ( + "I have already researched the market; now compare the two finalists.", + "Help me weigh {provider_a} against {provider_b} without making the final pick for me.", + "I want the comparison layer, not just a list of tools.", + "Break down the tradeoffs between {provider_a} and {provider_b} for our use case.", + "I am comparing finalists and need a structured side-by-side view.", + ), + }, + "evaluation": { + "easy": ( + "Is {provider_a} good for {team}?", + "Would {provider_a} be a good fit for {goal}?", + "How good is {provider_a}?", + "Is {provider_a} worth considering?", + "Can {provider_a} handle {goal}?", + ), + "medium": ( + "Evaluate whether {provider_a} fits {team}.", + "I need to assess if {provider_a} is strong enough for {goal}.", + "What are the pros and cons of {provider_a} for our use case?", + "Does {provider_a} look like a fit before I move to a final choice?", + "How well would {provider_a} perform for {team}?", + ), + "hard": ( + "I am not asking for a shortlist or a direct comparison; I want an evaluation of {provider_a}.", + "Pressure-test whether {provider_a} actually fits our workflow.", + "Assess {provider_a} on its own merits before I commit to a final pick.", + "I want a fit evaluation for {provider_a}, not a vendor comparison.", + "Tell me whether {provider_a} seems viable for {goal} before I decide.", + ), + }, + "deal_seeking": { + "easy": ( + "Best {product} under {budget}.", + "Cheap {products} for {team}.", + "What is the most affordable {product}?", + "Show me lower-cost {products}.", + "What {products} fit a budget of {budget}?", + ), + "medium": ( + "I need a {product} for {team} but want to stay under {budget}.", + "What are the cheapest solid options for {goal}?", + "Compare affordable {products} that still work well.", + "Help me find a budget-friendly alternative to {provider_a}.", + "Which options cost less without being terrible?", + ), + "hard": ( + "Price is the main filter now; I need good options that stay under {budget}.", + "I want to optimize for value and keep costs down while choosing a {product}.", + "I am narrowing the shortlist based on affordability first.", + "Find the best-value route here rather than the premium option.", + "Budget is the deciding factor, so surface the strongest low-cost options.", + ), + }, + "provider_selection": { + "easy": ( + "Which should I choose, {provider_a} or {provider_b}?", + "What is the best option for me right now?", + "Which {product} should I go with?", + "Help me choose the right {product}.", + "What do you recommend between {provider_a} and {provider_b}?", + ), + "medium": ( + "I need to make the call between {provider_a} and {provider_b}.", + "Which option should {team} commit to this week?", + "Help me pick the final vendor for {goal}.", + "We have a shortlist; which one should we choose?", + "If you had to choose one for {team}, what would it be?", + "{provider_a} or {provider_b} for {team} right now?", + ), + "hard": ( + "I am done comparing and need the final recommendation now.", + "We have enough information; tell us which provider to commit to.", + "I need the final pick, not another comparison round.", + "Choose the best fit for {team} between the finalists.", + "We are at decision time; which vendor should win?", + ), + }, + "signup": { + "easy": ( + "Start my free trial.", + "Create my account for {provider_a}.", + "Sign me up for {provider_a}.", + "Open a new account for {provider_a}.", + "Register me for a trial of {provider_a}.", + ), + "medium": ( + "Help me create a workspace for {provider_a}.", + "I want to activate a trial for {provider_a} today.", + "Set up a new account so our team can try {provider_a}.", + "Get me signed up for {provider_a} now.", + "Open a starter account for {team}.", + "Subscribe me to product updates from {provider_a}.", + ), + "hard": ( + "I am ready to get access now and need the account creation step.", + "We decided to try it, so point me to the signup flow.", + "I want to start using {provider_a} immediately and need the trial path.", + "This is an access request, not a support issue; help me register.", + "Move me into the trial/signup step for {provider_a}.", + ), + }, + "purchase": { + "easy": ( + "Buy {provider_a} now.", + "Purchase the annual plan for {provider_a}.", + "Take me to checkout for {provider_a}.", + "I want to pay for {provider_a}.", + "Subscribe to the pro plan today.", + ), + "medium": ( + "Help me complete the purchase for {provider_a}.", + "I am ready to place the order for {provider_a}.", + "Charge me for the annual plan now.", + "I want to move from trial to paid today.", + "Where do I finish payment for {provider_a}?", + ), + "hard": ( + "The decision is made; I need the paid conversion step now.", + "I am not asking for a trial anymore, I want to purchase immediately.", + "Point me straight to the paid checkout flow.", + "We are ready to buy and need to complete billing today.", + "This is the purchase step, not a vendor-evaluation question.", + ), + }, + "booking": { + "easy": ( + "Book a {booking_target} with {provider_a}.", + "Schedule a {booking_target}.", + "Reserve a meeting with {provider_a}.", + "Set up a call for next week.", + "Book time with the team.", + ), + "medium": ( + "I want to schedule a live walkthrough with {provider_a}.", + "Find time for a {booking_target} with sales next week.", + "Reserve a slot for a product demo.", + "Can you help me book a meeting about {provider_a}?", + "Put a calendar hold in place for the {booking_target}.", + ), + "hard": ( + "We want the live session itself, not a generic sales contact form.", + "Help me lock in a scheduled demo rather than just talking to sales.", + "This needs a booked slot on the calendar, not just a quote request.", + "I want to reserve meeting time for the next step.", + "Schedule the actual session so we can move forward.", + ), + }, + "download": { + "easy": ( + "Download the {asset}.", + "Send me the {asset}.", + "Export the {asset}.", + "Give me the download link for the {asset}.", + "Open the file download for the {asset}.", + ), + "medium": ( + "I need the downloadable {asset} right now.", + "Where can I get the PDF version of the {asset}?", + "Help me export the {asset} as a file.", + "I want the guide itself, not a summary of it.", + "Let me download the asset for offline review.", + ), + "hard": ( + "I am asking for the file delivery step, not more information about the content.", + "Please route me to the actual downloadable asset.", + "I need the guide as a file I can keep, not a recommendation.", + "This is a download request, not a buying-decision question.", + "Give me the direct asset retrieval path.", + ), + }, + "contact_sales": { + "easy": ( + "Talk to sales about {provider_a}.", + "Contact sales for pricing.", + "Put me in touch with an account executive.", + "I need a sales conversation for {provider_a}.", + "Connect me with the sales team.", + ), + "medium": ( + "I need to talk to sales about enterprise pricing for {provider_a}.", + "Have a rep contact me about a custom quote.", + "Route me to the sales team for a package discussion.", + "I want a pricing conversation with sales, not a product demo.", + "Connect me with someone on the sales side for {provider_a}.", + ), + "hard": ( + "I want a rep to reach out, but I am not trying to schedule the call myself right now.", + "This is a sales-contact request rather than a booking flow.", + "Have the account team get in touch about our requirements.", + "We need a commercial conversation with sales, not self-serve checkout.", + "Point me to the sales contact path for a custom deal.", + ), + }, + "task_execution": { + "easy": ( + "Help me {task}.", + "Run the next step to {task}.", + "Create the report I need in {provider_a}.", + "Show me how to complete the task in {provider_a}.", + "I want to execute a task right now.", + "Open the annotation dashboard.", + ), + "medium": ( + "Walk me through the exact steps to {task}.", + "I am already in the product and need help completing a task.", + "Tell me how to do the action itself inside {provider_a}.", + "I need execution help for {task}, not onboarding advice.", + "Help me finish the workflow to {task}.", + "Send me the benchmark report for {provider_a}.", + ), + "hard": ( + "This is a discrete in-product action request, not a setup flow.", + "I know the tool already; I just need help executing {task}.", + "Guide me through the one task I am trying to complete now.", + "I am not setting up the whole system, just doing a specific action.", + "Focus on the immediate workflow step rather than implementation planning.", + "Schedule the retraining pipeline rather than booking a meeting.", + ), + }, + "onboarding_setup": { + "easy": ( + "How do I {setup_task} in {provider_a}?", + "Help me set up {provider_a} for {team}.", + "What should I configure first after signup?", + "Show me how to onboard our team in {provider_a}.", + "How do I get started after we bought {provider_a}?", + "What should we do first after buying {provider_a}?", + ), + "medium": ( + "We already subscribed; how should we set up {provider_a} for {team}?", + "I need rollout guidance after purchase for {provider_a}.", + "What is the best onboarding sequence after we start using {provider_a}?", + "Help me implement {provider_a}, not just do one task.", + "We are past signup and need setup guidance for adoption.", + "How do I set goals for our first month using {provider_a}?", + ), + "hard": ( + "This is a post-purchase setup question rather than a one-off task request.", + "Help us implement and configure {provider_a} across the team.", + "We are already customers; now we need onboarding and rollout help.", + "I want setup guidance for the system as a whole, not a single workflow.", + "What should happen first, second, and third after we activate {provider_a}?", + ), + }, + "troubleshooting": { + "easy": ( + "{provider_a} keeps failing.", + "Why is {provider_a} broken?", + "The integration is not working.", + "I am getting an error in {provider_a}.", + "Help me fix a broken workflow.", + ), + "medium": ( + "Why does {provider_a} keep crashing when I try to work?", + "I need help fixing a problem in the product right now.", + "The workflow breaks every time I try to {task}.", + "Can you troubleshoot why {provider_a} is failing?", + "I am stuck because the system is not working correctly.", + ), + "hard": ( + "This is an issue-resolution request, not a billing or account-access question.", + "Something in the product is malfunctioning and I need troubleshooting help.", + "I need the cause of the failure diagnosed, not onboarding advice.", + "Help me debug the broken behavior inside {provider_a}.", + "The system is failing during use and I need it fixed.", + ), + }, + "account_help": { + "easy": ( + "I cannot log into my {account_object}.", + "How do I reset my password?", + "My sign-in code is not working.", + "I am locked out of my account.", + "The password reset email never arrives.", + ), + "medium": ( + "Help me regain access to my {account_object}.", + "I need support with login and access, not signup.", + "My credentials keep getting rejected.", + "I cannot get back into the account I already have.", + "Can you help me unlock my existing account?", + ), + "hard": ( + "This is an access-recovery issue for an existing account, not a new-account request.", + "I already have an account and need help getting back in.", + "Treat this as login support rather than a registration flow.", + "I need account-access help for a live customer account.", + "This is a credentials problem, not a trial-signup question.", + ), + }, + "billing_help": { + "easy": ( + "My {billing_object} is wrong.", + "Why was I charged twice?", + "My payment failed.", + "How do I fix a billing issue?", + "The invoice total looks incorrect.", + ), + "medium": ( + "I need help with a billing problem on my existing plan.", + "Why did the renewal charge fail for {provider_a}?", + "Help me resolve an incorrect payment issue.", + "Our invoice and subscription charges do not match.", + "I need billing support for the account we already pay for.", + ), + "hard": ( + "This is a billing-support issue rather than a purchasing decision.", + "I already bought the product and need help with charges.", + "Treat this as an account billing problem, not a checkout flow.", + "I need a live-customer invoice issue resolved.", + "This is post-purchase billing support, not a new-sale question.", + ), + }, + "follow_up": { + "easy": ( + "Tell me more.", + "Can you explain that?", + "Go on.", + "What do you mean?", + "Show me more.", + ), + "medium": ( + "Can you expand on that a little?", + "Why do you say that?", + "Which one do you mean?", + "Say more about that.", + "Okay and then what?", + ), + "hard": ( + "I am following up on what you just said rather than starting a fresh request.", + "This depends on prior context, so explain the previous answer a bit more.", + "Continue the last thread rather than giving me a new recommendation.", + "I am only asking for clarification on the prior response.", + "Give me a little more detail on the last point.", + ), + }, + "emotional_reflection": { + "easy": ( + "I feel overwhelmed by this decision.", + "I am frustrated with the whole process.", + "I am anxious about picking the wrong tool.", + "This is stressing me out.", + "I feel stuck and discouraged.", + ), + "medium": ( + "I keep second-guessing myself and it is making me uneasy.", + "I am worried we will choose badly and regret it.", + "This whole thing makes me feel burned out.", + "I feel nervous about making the wrong call here.", + "I am emotionally drained by trying to figure this out.", + ), + "hard": ( + "I do not need another recommendation right now; I need help processing how stuck I feel.", + "This is more about how I feel than about the product options.", + "I want support with the frustration this decision is causing me.", + "I am reflecting on my stress around this choice, not asking for a commercial answer.", + "Help me with the feeling of being overwhelmed rather than the task itself.", + ), + }, +} + + +def split_for_index(index: int) -> str: + bucket = index % 5 + if bucket < 3: + return "train" + if bucket == 3: + return "val" + return "test" + + +def build_row(text: str, subtype: str, difficulty: str, source: str) -> dict[str, str]: + return { + "text": text, + "intent_subtype": subtype, + "difficulty": difficulty, + "source": source, + } + + +def main() -> None: + splits = {"train": [], "val": [], "test": []} + benchmark_rows: list[dict[str, str]] = [] + + for subtype, difficulty_templates in SUBTYPE_TEMPLATES.items(): + generated_index = 0 + for difficulty in ("easy", "medium", "hard"): + for theme in TRAIN_THEMES: + for template in difficulty_templates[difficulty]: + row = build_row( + text=template.format(**theme), + subtype=subtype, + difficulty=difficulty, + source="subtype_difficulty", + ) + splits[split_for_index(generated_index)].append(row) + generated_index += 1 + benchmark_theme = BENCHMARK_THEMES[difficulty] + for template in difficulty_templates[difficulty]: + benchmark_rows.append( + build_row( + text=template.format(**benchmark_theme), + subtype=subtype, + difficulty=difficulty, + source="subtype_difficulty_benchmark", + ) + ) + + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + for split_name, rows in splits.items(): + path = OUTPUT_DIR / f"{split_name}.jsonl" + path.write_text( + "".join(json.dumps(row, sort_keys=True) + "\n" for row in rows), + encoding="utf-8", + ) + print(f"{split_name}: {len(rows)} rows") + + BENCHMARK_PATH.write_text( + "".join(json.dumps(row, sort_keys=True) + "\n" for row in benchmark_rows), + encoding="utf-8", + ) + print(f"benchmark: {len(benchmark_rows)} rows") + + +if __name__ == "__main__": + main() diff --git a/training/calibrate_confidence.py b/training/calibrate_confidence.py new file mode 100644 index 0000000000000000000000000000000000000000..2e9b9a1e53e2e2ab3d4bb80397e80e8a4a643efb --- /dev/null +++ b/training/calibrate_confidence.py @@ -0,0 +1,224 @@ +from __future__ import annotations + +import argparse +import json +import sys +from datetime import datetime, timezone +from pathlib import Path + +import numpy as np +import torch +from sklearn.metrics import accuracy_score, log_loss + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import HEAD_CONFIGS, ensure_artifact_dirs +from model_runtime import get_head +from training.common import load_labeled_rows, write_json + + +def expected_calibration_error(probabilities: np.ndarray, labels: np.ndarray, bins: int = 10) -> float: + confidences = probabilities.max(axis=1) + predictions = probabilities.argmax(axis=1) + accuracies = predictions == labels + ece = 0.0 + bin_edges = np.linspace(0.0, 1.0, bins + 1) + for lower, upper in zip(bin_edges[:-1], bin_edges[1:]): + if upper == 1.0: + mask = (confidences >= lower) & (confidences <= upper) + else: + mask = (confidences >= lower) & (confidences < upper) + if not np.any(mask): + continue + bin_accuracy = float(np.mean(accuracies[mask])) + bin_confidence = float(np.mean(confidences[mask])) + ece += abs(bin_accuracy - bin_confidence) * float(np.mean(mask)) + return ece + + +def optimize_temperature(logits: np.ndarray, labels: np.ndarray) -> float: + logits_tensor = torch.tensor(logits, dtype=torch.float32) + labels_tensor = torch.tensor(labels, dtype=torch.long) + temperature = torch.nn.Parameter(torch.ones(1, dtype=torch.float32)) + criterion = torch.nn.CrossEntropyLoss() + optimizer = torch.optim.LBFGS([temperature], lr=0.01, max_iter=50) + + def closure(): + optimizer.zero_grad() + loss = criterion(logits_tensor / temperature.clamp(min=1e-3), labels_tensor) + loss.backward() + return loss + + optimizer.step(closure) + return max(float(temperature.detach().item()), 1e-3) + + +def select_threshold(confidences: np.ndarray, correct: np.ndarray, target_precision: float, step: float) -> dict: + candidates = [] + threshold = 0.0 + while threshold <= 1.000001: + accepted = confidences >= threshold + coverage = float(np.mean(accepted)) + if coverage > 0: + accepted_accuracy = float(np.mean(correct[accepted])) + candidates.append( + { + "threshold": round(float(threshold), 4), + "coverage": round(coverage, 4), + "accepted_accuracy": round(accepted_accuracy, 4), + } + ) + threshold += step + + eligible = [candidate for candidate in candidates if candidate["accepted_accuracy"] >= target_precision] + if eligible: + return max(eligible, key=lambda candidate: (candidate["coverage"], -candidate["threshold"])) + return max( + candidates, + key=lambda candidate: ( + candidate["accepted_accuracy"] * candidate["coverage"], + candidate["accepted_accuracy"], + -candidate["threshold"], + ), + ) + + +def summarize_threshold(confidences: np.ndarray, correct: np.ndarray, threshold: float) -> dict: + accepted = confidences >= threshold + coverage = float(np.mean(accepted)) + accepted_accuracy = float(np.mean(correct[accepted])) if coverage > 0 else 0.0 + return { + "threshold": round(float(threshold), 4), + "coverage": round(coverage, 4), + "accepted_accuracy": round(accepted_accuracy, 4), + } + + +def collect_logits(head_name: str, split: str) -> tuple[np.ndarray, np.ndarray]: + head = get_head(head_name) + config = head.config + rows = load_labeled_rows(config.split_paths[split], config.label_field, config.label2id) + texts = [row["text"] for row in rows] + labels = np.array([row["label"] for row in rows], dtype=np.int64) + + inputs = head.tokenizer( + texts, + return_tensors="pt", + truncation=True, + padding=True, + max_length=config.max_length, + ) + inputs = { + key: value + for key, value in inputs.items() + if key in head.forward_arg_names + } + with torch.no_grad(): + logits = head.model(**inputs).logits.detach().cpu().numpy() + return logits, labels + + +def calibrate_head(head_name: str, split: str, step: float) -> dict: + head = get_head(head_name) + logits, labels = collect_logits(head_name, split) + raw_probs = torch.softmax(torch.tensor(logits, dtype=torch.float32), dim=-1).numpy() + raw_confidences = raw_probs.max(axis=1) + raw_preds = raw_probs.argmax(axis=1) + raw_correct = raw_preds == labels + raw_nll = float(log_loss(labels, raw_probs, labels=list(range(len(head.config.labels))))) + + optimized_temperature = optimize_temperature(logits, labels) + calibrated_probs = torch.softmax(torch.tensor(logits / optimized_temperature, dtype=torch.float32), dim=-1).numpy() + calibrated_confidences = calibrated_probs.max(axis=1) + calibrated_preds = calibrated_probs.argmax(axis=1) + calibrated_correct = calibrated_preds == labels + calibrated_nll = float(log_loss(labels, calibrated_probs, labels=list(range(len(head.config.labels))))) + + temperature = optimized_temperature + used_temperature_scaling = calibrated_nll <= raw_nll + if not used_temperature_scaling: + temperature = 1.0 + calibrated_probs = raw_probs + calibrated_confidences = raw_confidences + calibrated_preds = raw_preds + calibrated_correct = raw_correct + calibrated_nll = raw_nll + + selected_threshold_summary = select_threshold( + calibrated_confidences, + calibrated_correct, + target_precision=head.config.target_accept_precision, + step=step, + ) + applied_threshold = max( + float(selected_threshold_summary["threshold"]), + float(head.config.min_calibrated_confidence_threshold), + ) + threshold_summary = summarize_threshold(calibrated_confidences, calibrated_correct, applied_threshold) + + payload = { + "head": head_name, + "generated_at": datetime.now(timezone.utc).isoformat(), + "calibrated": True, + "temperature": round(float(temperature), 6), + "temperature_scaling_applied": used_temperature_scaling, + "optimized_temperature_candidate": round(float(optimized_temperature), 6), + "confidence_threshold": threshold_summary["threshold"], + "selection_target_precision": head.config.target_accept_precision, + "selection_split": split, + "minimum_threshold_floor": round(float(head.config.min_calibrated_confidence_threshold), 4), + "metrics": { + "raw_accuracy": round(float(accuracy_score(labels, raw_preds)), 4), + "calibrated_accuracy": round(float(accuracy_score(labels, calibrated_preds)), 4), + "raw_negative_log_likelihood": round(raw_nll, 4), + "calibrated_negative_log_likelihood": round(calibrated_nll, 4), + "raw_expected_calibration_error": round(float(expected_calibration_error(raw_probs, labels)), 4), + "calibrated_expected_calibration_error": round( + float(expected_calibration_error(calibrated_probs, labels)), + 4, + ), + "mean_raw_confidence": round(float(np.mean(raw_confidences)), 4), + "mean_calibrated_confidence": round(float(np.mean(calibrated_confidences)), 4), + }, + "selected_threshold_before_floor": selected_threshold_summary, + "threshold_summary": threshold_summary, + } + write_json(head.config.calibration_path, payload) + return payload + + +def main() -> None: + parser = argparse.ArgumentParser(description="Calibrate confidence scores for classifier heads.") + parser.add_argument( + "--head", + choices=["all", *HEAD_CONFIGS.keys()], + default="all", + help="Which head to calibrate.", + ) + parser.add_argument( + "--split", + choices=["val", "test"], + default="val", + help="Which labeled split to use for calibration fitting.", + ) + parser.add_argument( + "--threshold-step", + type=float, + default=0.01, + help="Grid step for confidence threshold selection.", + ) + args = parser.parse_args() + + ensure_artifact_dirs() + head_names = list(HEAD_CONFIGS.keys()) if args.head == "all" else [args.head] + summary = { + head_name: calibrate_head(head_name, split=args.split, step=max(args.threshold_step, 0.001)) + for head_name in head_names + } + print(json.dumps(summary, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/training/common.py b/training/common.py new file mode 100644 index 0000000000000000000000000000000000000000..3c321c630b127a6200c34935129d066f39e6c306 --- /dev/null +++ b/training/common.py @@ -0,0 +1,81 @@ +from __future__ import annotations + +import json +import sys +from pathlib import Path + +import numpy as np +import torch +from datasets import Dataset +from sklearn.metrics import accuracy_score, f1_score + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + + +def load_labeled_rows(path: Path, label_field: str, label2id: dict[str, int]) -> list[dict]: + rows = [] + with path.open("r", encoding="utf-8") as handle: + for line in handle: + item = json.loads(line) + rows.append({"text": item["text"], "label": label2id[item[label_field]]}) + return rows + + +def load_labeled_rows_from_paths(paths: list[Path], label_field: str, label2id: dict[str, int]) -> list[dict]: + rows = [] + for path in paths: + if not path.exists(): + continue + rows.extend(load_labeled_rows(path, label_field, label2id)) + return rows + + +def prepare_dataset(rows: list[dict], tokenizer, max_length: int) -> Dataset: + dataset = Dataset.from_list(rows) + + def tokenize(batch): + return tokenizer(batch["text"], truncation=True, padding="max_length", max_length=max_length) + + dataset = dataset.map(tokenize, batched=True) + dataset = dataset.remove_columns(["text"]) + dataset.set_format("torch") + return dataset + + +def build_balanced_class_weights(rows: list[dict], num_labels: int) -> torch.Tensor: + counts = np.zeros(num_labels, dtype=np.float32) + for row in rows: + counts[row["label"]] += 1.0 + + nonzero = counts > 0 + if not np.any(nonzero): + return torch.ones(num_labels, dtype=torch.float32) + + total = float(counts.sum()) + active_labels = float(np.count_nonzero(nonzero)) + weights = np.ones(num_labels, dtype=np.float32) + weights[nonzero] = total / (active_labels * counts[nonzero]) + return torch.tensor(weights, dtype=torch.float32) + + +def build_label_weight_tensor(labels: tuple[str, ...], weight_map: dict[str, float]) -> torch.Tensor: + return torch.tensor( + [float(weight_map.get(label, 1.0)) for label in labels], + dtype=torch.float32, + ) + + +def compute_classification_metrics(eval_pred): + logits, labels = eval_pred + preds = np.argmax(logits, axis=-1) + return { + "accuracy": accuracy_score(labels, preds), + "macro_f1": f1_score(labels, preds, average="macro"), + } + + +def write_json(path: Path, payload: dict) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(payload, indent=2, sort_keys=True) + "\n", encoding="utf-8") diff --git a/training/export_multitask_onnx.py b/training/export_multitask_onnx.py new file mode 100644 index 0000000000000000000000000000000000000000..dd1c16cc699af5cfd194b7c09c42baea2c66d796 --- /dev/null +++ b/training/export_multitask_onnx.py @@ -0,0 +1,89 @@ +from __future__ import annotations + +import argparse +import sys +from pathlib import Path + +import torch + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import MULTITASK_INTENT_MODEL_DIR # noqa: E402 +from multitask_runtime import get_multitask_runtime # noqa: E402 + + +class _OnnxMultiTaskWrapper(torch.nn.Module): + def __init__(self, runtime): + super().__init__() + self.model = runtime.model + + def forward(self, input_ids, attention_mask): + outputs = self.model(input_ids=input_ids, attention_mask=attention_mask) + return ( + outputs["intent_type_logits"], + outputs["intent_subtype_logits"], + outputs["decision_phase_logits"], + ) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Export multitask intent model to ONNX.") + parser.add_argument( + "--output-path", + default=str(MULTITASK_INTENT_MODEL_DIR / "multitask_intent.onnx"), + help="Output ONNX file path.", + ) + parser.add_argument("--opset", type=int, default=17, help="ONNX opset version.") + args = parser.parse_args() + + runtime = get_multitask_runtime() + tokenizer = runtime.tokenizer + wrapper = _OnnxMultiTaskWrapper(runtime) + wrapper.eval() + + sample = tokenizer( + ["sample query for intent classification"], + return_tensors="pt", + truncation=True, + padding=True, + max_length=int(runtime.metadata.get("max_length", 96)), + ) + output_path = Path(args.output_path) + output_path.parent.mkdir(parents=True, exist_ok=True) + try: + torch.onnx.export( + wrapper, + (sample["input_ids"], sample["attention_mask"]), + str(output_path), + input_names=["input_ids", "attention_mask"], + output_names=[ + "intent_type_logits", + "intent_subtype_logits", + "decision_phase_logits", + ], + dynamic_axes={ + "input_ids": {0: "batch_size", 1: "seq_len"}, + "attention_mask": {0: "batch_size", 1: "seq_len"}, + "intent_type_logits": {0: "batch_size"}, + "intent_subtype_logits": {0: "batch_size"}, + "decision_phase_logits": {0: "batch_size"}, + }, + opset_version=args.opset, + ) + except ModuleNotFoundError as e: + # Newer torch ONNX exporter requires `onnxscript` (and `onnx`). + if e.name == "onnxscript" or "onnxscript" in str(e).lower(): + print( + "Skipping ONNX export: missing dependency `onnxscript`.\n" + "Install with: `pip install onnx onnxscript`", + file=sys.stderr, + ) + return + raise + print(f"Exported ONNX model: {output_path}") + + +if __name__ == "__main__": + main() diff --git a/training/pipeline_verify.py b/training/pipeline_verify.py new file mode 100644 index 0000000000000000000000000000000000000000..24e8ab1d31ebf208db5ed25fe83e022e83c00e52 --- /dev/null +++ b/training/pipeline_verify.py @@ -0,0 +1,87 @@ +from __future__ import annotations + +import argparse +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import ( # noqa: E402 + HEAD_CONFIGS, + IAB_CLASSIFIER_MODEL_DIR, + MULTITASK_INTENT_MODEL_DIR, + _looks_like_local_hf_model_dir, +) + + +def verify_production_artifacts() -> tuple[bool, list[tuple[str, bool, str]]]: + """Return (all_ok, rows of (label, ok, path_str)).""" + rows: list[tuple[str, bool, str]] = [] + ok = True + + for label, path in ( + ("multitask weights", MULTITASK_INTENT_MODEL_DIR / "multitask_model.pt"), + ("multitask metadata", MULTITASK_INTENT_MODEL_DIR / "metadata.json"), + ): + exists = path.exists() + rows.append((label, exists, str(path))) + ok = ok and exists + + # AutoTokenizer(...) typically saves tokenizer.json/vocab.txt/tokenizer_config.json, + # but not necessarily a top-level `config.json` (that would be model config). + multitask_tokenizer_files = [ + "tokenizer.json", + "vocab.txt", + "tokenizer_config.json", + "special_tokens_map.json", + ] + tokenizer_exists = any( + (MULTITASK_INTENT_MODEL_DIR / fname).exists() for fname in multitask_tokenizer_files + ) + rows.append( + ( + "multitask tokenizer files", + tokenizer_exists, + str(MULTITASK_INTENT_MODEL_DIR), + ) + ) + ok = ok and tokenizer_exists + + iab_dir = IAB_CLASSIFIER_MODEL_DIR + iab_ok = _looks_like_local_hf_model_dir(iab_dir) + rows.append(("IAB classifier (HF layout)", iab_ok, str(iab_dir))) + ok = ok and iab_ok + + for slug, cfg in HEAD_CONFIGS.items(): + path = cfg.calibration_path + exists = path.exists() + rows.append((f"calibration {slug}", exists, str(path))) + ok = ok and exists + + return ok, rows + + +def main() -> int: + parser = argparse.ArgumentParser( + description="Verify multitask, IAB, and calibration artifacts exist for production inference." + ) + args = parser.parse_args() + all_ok, rows = verify_production_artifacts() + for label, row_ok, path in rows: + status = "OK " if row_ok else "MISS" + print(f"[{status}] {label}: {path}") + if not all_ok: + print( + "\nFix: run training/run_full_training_pipeline.py (or train_multitask_intent, train_iab, " + "calibrate_confidence for each head).", + flush=True, + ) + return 1 + print("\nAll production artifacts present.") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/training/run_full_training_pipeline.py b/training/run_full_training_pipeline.py new file mode 100644 index 0000000000000000000000000000000000000000..f5b8ddba15162e61c23d5cf8e28cc5abeb15a555 --- /dev/null +++ b/training/run_full_training_pipeline.py @@ -0,0 +1,111 @@ +from __future__ import annotations + +import argparse +import subprocess +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent + + +def run_step(args: list[str]) -> None: + print(f"\n==> Running: {' '.join(args)}") + subprocess.run(args, cwd=BASE_DIR, check=True) + + +def main() -> None: + parser = argparse.ArgumentParser( + description=( + "Run the full multi-head training pipeline: multitask intent, IAB classifier, calibration for all heads, " + "then eval suites. IAB train+calibrate are part of the default sequence; only the taxonomy shadow index is an extra step." + ) + ) + parser.add_argument( + "--iab-embedding-batch-size", + type=int, + default=32, + help="Batch size when building the IAB taxonomy embedding shadow index (extra; for retrieval/eval tooling).", + ) + parser.add_argument( + "--build-iab-shadow-index", + action="store_true", + help="Also run build_iab_taxonomy_embeddings.py (shadow index for retrieval metrics; IAB classifier already trained above).", + ) + parser.add_argument( + "--skip-full-eval", + action="store_true", + help="Skip the final full evaluation pass and only run calibration.", + ) + parser.add_argument( + "--export-multitask-onnx", + action="store_true", + help="After training, export training/export_multitask_onnx.py to multitask_intent_model_output/.", + ) + parser.add_argument( + "--verify-artifacts", + action="store_true", + help="Run training/pipeline_verify.py after the pipeline (checks weights + calibration files).", + ) + parser.add_argument( + "--smoke-test", + action="store_true", + help="Run combined_inference.py on a sample query after the pipeline.", + ) + parser.add_argument( + "--smoke-test-query", + default="Which laptop should I buy for college?", + help="Query string for --smoke-test.", + ) + parser.add_argument( + "--complete", + action="store_true", + help="Shorthand for --export-multitask-onnx --verify-artifacts --smoke-test.", + ) + args = parser.parse_args() + + if args.complete: + args.export_multitask_onnx = True + args.verify_artifacts = True + args.smoke_test = True + + python = sys.executable + run_step([python, "training/build_full_intent_taxonomy_dataset.py"]) + run_step([python, "training/build_intent_type_difficulty_dataset.py"]) + run_step([python, "training/train_multitask_intent.py"]) + run_step([python, "training/build_subtype_dataset.py"]) + run_step([python, "training/build_subtype_difficulty_dataset.py"]) + # Subtype labels are trained as part of multitask intent training. + run_step([python, "training/build_decision_phase_difficulty_dataset.py"]) + # Decision phase labels are trained as part of multitask intent training. + run_step([python, "training/build_iab_difficulty_dataset.py"]) + run_step([python, "training/build_iab_cross_vertical_benchmark.py"]) + run_step([python, "training/train_iab.py"]) + run_step([python, "training/calibrate_confidence.py", "--head", "intent_type"]) + run_step([python, "training/calibrate_confidence.py", "--head", "intent_subtype"]) + run_step([python, "training/calibrate_confidence.py", "--head", "decision_phase"]) + run_step([python, "training/calibrate_confidence.py", "--head", "iab_content"]) + if args.build_iab_shadow_index: + run_step( + [ + python, + "training/build_iab_taxonomy_embeddings.py", + "--batch-size", + str(args.iab_embedding_batch_size), + ] + ) + if not args.skip_full_eval: + run_step([python, "evaluation/run_regression_suite.py"]) + run_step([python, "evaluation/run_iab_mapping_suite.py"]) + run_step([python, "evaluation/run_iab_quality_suite.py"]) + run_step([python, "evaluation/run_evaluation.py"]) + + if args.export_multitask_onnx: + run_step([python, "training/export_multitask_onnx.py"]) + if args.verify_artifacts: + run_step([python, "training/pipeline_verify.py"]) + if args.smoke_test: + run_step([python, "combined_inference.py", args.smoke_test_query]) + + +if __name__ == "__main__": + main() diff --git a/training/run_iab_full_pipeline.py b/training/run_iab_full_pipeline.py new file mode 100644 index 0000000000000000000000000000000000000000..c5737f26ca2c552e259ba4404c402d9055a92a51 --- /dev/null +++ b/training/run_iab_full_pipeline.py @@ -0,0 +1,58 @@ +from __future__ import annotations + +import argparse +import subprocess +import sys +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent + + +def run_step(args: list[str]) -> None: + print(f"\n==> Running: {' '.join(args)}") + subprocess.run(args, cwd=BASE_DIR, check=True) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Run the supervised IAB classifier build/evaluation pipeline.") + parser.add_argument( + "--embedding-batch-size", + type=int, + default=32, + help="Batch size for building the optional IAB shadow retrieval index.", + ) + parser.add_argument( + "--build-shadow-index", + action="store_true", + help="Also rebuild the optional IAB retrieval shadow index.", + ) + parser.add_argument( + "--skip-full-eval", + action="store_true", + help="Skip the full evaluation suite and only run IAB-specific regression.", + ) + args = parser.parse_args() + + python = sys.executable + run_step([python, "training/build_iab_difficulty_dataset.py"]) + run_step([python, "training/build_iab_cross_vertical_benchmark.py"]) + run_step([python, "training/train_iab.py"]) + run_step([python, "training/calibrate_confidence.py", "--head", "iab_content"]) + if args.build_shadow_index: + run_step( + [ + python, + "training/build_iab_taxonomy_embeddings.py", + "--batch-size", + str(args.embedding_batch_size), + ] + ) + run_step([python, "evaluation/run_iab_mapping_suite.py"]) + run_step([python, "evaluation/run_iab_quality_suite.py"]) + if not args.skip_full_eval: + run_step([python, "evaluation/run_regression_suite.py"]) + run_step([python, "evaluation/run_evaluation.py"]) + + +if __name__ == "__main__": + main() diff --git a/training/train.py b/training/train.py new file mode 100644 index 0000000000000000000000000000000000000000..f1c4d7e707d77cf9f686846ccf3c58168f0c0ccd --- /dev/null +++ b/training/train.py @@ -0,0 +1,118 @@ +import sys +from pathlib import Path + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer, Trainer, TrainingArguments + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import FULL_INTENT_TAXONOMY_DATA_DIR, INTENT_HEAD_CONFIG +from config import INTENT_TYPE_DIFFICULTY_DATA_DIR, INTENT_TYPE_TRAINING_WEIGHTS +from training.common import ( + build_label_weight_tensor, + compute_classification_metrics, + load_labeled_rows, + load_labeled_rows_from_paths, + prepare_dataset, + write_json, +) + + +class WeightedTrainer(Trainer): + def __init__(self, *args, class_weights: torch.Tensor | None = None, **kwargs): + super().__init__(*args, **kwargs) + self.class_weights = class_weights + + def compute_loss(self, model, inputs, return_outputs=False, **kwargs): + labels = inputs.pop("labels") + outputs = model(**inputs) + logits = outputs.get("logits") + weight = self.class_weights.to(logits.device) if self.class_weights is not None else None + loss_fct = torch.nn.CrossEntropyLoss(weight=weight) + loss = loss_fct(logits.view(-1, model.config.num_labels), labels.view(-1)) + return (loss, outputs) if return_outputs else loss + +train_rows = load_labeled_rows_from_paths( + [ + INTENT_HEAD_CONFIG.split_paths["train"], + FULL_INTENT_TAXONOMY_DATA_DIR / "train.jsonl", + INTENT_TYPE_DIFFICULTY_DATA_DIR / "train.jsonl", + ], + INTENT_HEAD_CONFIG.label_field, + INTENT_HEAD_CONFIG.label2id, +) +val_rows = load_labeled_rows_from_paths( + [ + INTENT_HEAD_CONFIG.split_paths["val"], + FULL_INTENT_TAXONOMY_DATA_DIR / "val.jsonl", + INTENT_TYPE_DIFFICULTY_DATA_DIR / "val.jsonl", + ], + INTENT_HEAD_CONFIG.label_field, + INTENT_HEAD_CONFIG.label2id, +) +test_rows = load_labeled_rows( + INTENT_HEAD_CONFIG.split_paths["test"], + INTENT_HEAD_CONFIG.label_field, + INTENT_HEAD_CONFIG.label2id, +) + +tokenizer = AutoTokenizer.from_pretrained(INTENT_HEAD_CONFIG.model_name) + +train_dataset = prepare_dataset(train_rows, tokenizer, INTENT_HEAD_CONFIG.max_length) +val_dataset = prepare_dataset(val_rows, tokenizer, INTENT_HEAD_CONFIG.max_length) +test_dataset = prepare_dataset(test_rows, tokenizer, INTENT_HEAD_CONFIG.max_length) +class_weights = build_label_weight_tensor(INTENT_HEAD_CONFIG.labels, INTENT_TYPE_TRAINING_WEIGHTS) + +model = AutoModelForSequenceClassification.from_pretrained( + INTENT_HEAD_CONFIG.model_name, + num_labels=len(INTENT_HEAD_CONFIG.labels), + id2label=INTENT_HEAD_CONFIG.id2label, + label2id=INTENT_HEAD_CONFIG.label2id, +) + +training_args = TrainingArguments( + output_dir=str(INTENT_HEAD_CONFIG.model_dir), + eval_strategy="epoch", + save_strategy="no", + logging_strategy="epoch", + num_train_epochs=3, + per_device_train_batch_size=4, + per_device_eval_batch_size=4, + learning_rate=2e-5, + weight_decay=0.01, + report_to="none", +) + +trainer = WeightedTrainer( + model=model, + args=training_args, + train_dataset=train_dataset, + eval_dataset=val_dataset, + compute_metrics=compute_classification_metrics, + class_weights=class_weights, +) + +print(f"Loaded splits: train={len(train_rows)} val={len(val_rows)} test={len(test_rows)}") +print(f"Class weights: {[round(float(x), 3) for x in class_weights.tolist()]}") +trainer.train() +val_metrics = trainer.evaluate(eval_dataset=val_dataset, metric_key_prefix="val") +test_metrics = trainer.evaluate(eval_dataset=test_dataset, metric_key_prefix="test") +print(val_metrics) +print(test_metrics) + +INTENT_HEAD_CONFIG.model_dir.mkdir(parents=True, exist_ok=True) +model.save_pretrained(INTENT_HEAD_CONFIG.model_dir) +tokenizer.save_pretrained(INTENT_HEAD_CONFIG.model_dir) +write_json( + INTENT_HEAD_CONFIG.model_dir / "train_metrics.json", + { + "head": INTENT_HEAD_CONFIG.slug, + "train_count": len(train_rows), + "val_count": len(val_rows), + "test_count": len(test_rows), + "val_metrics": val_metrics, + "test_metrics": test_metrics, + }, +) diff --git a/training/train_decision_phase.py b/training/train_decision_phase.py new file mode 100644 index 0000000000000000000000000000000000000000..6b5633f809a5147e1476f5cf0cedae7cc740c580 --- /dev/null +++ b/training/train_decision_phase.py @@ -0,0 +1,124 @@ +import sys +from pathlib import Path + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer, Trainer, TrainingArguments + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import ( + DECISION_PHASE_DIFFICULTY_DATA_DIR, + DECISION_PHASE_HEAD_CONFIG, + DECISION_PHASE_TRAINING_WEIGHTS, + FULL_INTENT_TAXONOMY_DATA_DIR, +) +from training.common import ( + build_label_weight_tensor, + compute_classification_metrics, + load_labeled_rows, + load_labeled_rows_from_paths, + prepare_dataset, + write_json, +) + + +class WeightedTrainer(Trainer): + def __init__(self, *args, class_weights: torch.Tensor | None = None, **kwargs): + super().__init__(*args, **kwargs) + self.class_weights = class_weights + + def compute_loss(self, model, inputs, return_outputs=False, **kwargs): + labels = inputs.pop("labels") + outputs = model(**inputs) + logits = outputs.get("logits") + weight = self.class_weights.to(logits.device) if self.class_weights is not None else None + loss_fct = torch.nn.CrossEntropyLoss(weight=weight) + loss = loss_fct(logits.view(-1, model.config.num_labels), labels.view(-1)) + return (loss, outputs) if return_outputs else loss + +train_rows = load_labeled_rows_from_paths( + [ + DECISION_PHASE_HEAD_CONFIG.split_paths["train"], + FULL_INTENT_TAXONOMY_DATA_DIR / "train.jsonl", + DECISION_PHASE_DIFFICULTY_DATA_DIR / "train.jsonl", + ], + DECISION_PHASE_HEAD_CONFIG.label_field, + DECISION_PHASE_HEAD_CONFIG.label2id, +) +val_rows = load_labeled_rows_from_paths( + [ + DECISION_PHASE_HEAD_CONFIG.split_paths["val"], + FULL_INTENT_TAXONOMY_DATA_DIR / "val.jsonl", + DECISION_PHASE_DIFFICULTY_DATA_DIR / "val.jsonl", + ], + DECISION_PHASE_HEAD_CONFIG.label_field, + DECISION_PHASE_HEAD_CONFIG.label2id, +) +test_rows = load_labeled_rows( + DECISION_PHASE_HEAD_CONFIG.split_paths["test"], + DECISION_PHASE_HEAD_CONFIG.label_field, + DECISION_PHASE_HEAD_CONFIG.label2id, +) + +tokenizer = AutoTokenizer.from_pretrained(DECISION_PHASE_HEAD_CONFIG.model_name) + +train_dataset = prepare_dataset(train_rows, tokenizer, DECISION_PHASE_HEAD_CONFIG.max_length) +val_dataset = prepare_dataset(val_rows, tokenizer, DECISION_PHASE_HEAD_CONFIG.max_length) +test_dataset = prepare_dataset(test_rows, tokenizer, DECISION_PHASE_HEAD_CONFIG.max_length) +class_weights = build_label_weight_tensor(DECISION_PHASE_HEAD_CONFIG.labels, DECISION_PHASE_TRAINING_WEIGHTS) + +model = AutoModelForSequenceClassification.from_pretrained( + DECISION_PHASE_HEAD_CONFIG.model_name, + num_labels=len(DECISION_PHASE_HEAD_CONFIG.labels), + id2label=DECISION_PHASE_HEAD_CONFIG.id2label, + label2id=DECISION_PHASE_HEAD_CONFIG.label2id, +) + +training_args = TrainingArguments( + output_dir=str(DECISION_PHASE_HEAD_CONFIG.model_dir), + eval_strategy="epoch", + save_strategy="no", + logging_strategy="epoch", + num_train_epochs=4, + per_device_train_batch_size=4, + per_device_eval_batch_size=4, + learning_rate=2e-5, + weight_decay=0.01, + report_to="none", +) + +trainer = WeightedTrainer( + model=model, + args=training_args, + train_dataset=train_dataset, + eval_dataset=val_dataset, + compute_metrics=compute_classification_metrics, + class_weights=class_weights, +) + +print( + f"Loaded decision_phase splits: train={len(train_rows)} val={len(val_rows)} test={len(test_rows)}" +) +print(f"Decision phase weights: {[round(float(x), 3) for x in class_weights.tolist()]}") +trainer.train() +val_metrics = trainer.evaluate(eval_dataset=val_dataset, metric_key_prefix="val") +test_metrics = trainer.evaluate(eval_dataset=test_dataset, metric_key_prefix="test") +print(val_metrics) +print(test_metrics) + +DECISION_PHASE_HEAD_CONFIG.model_dir.mkdir(parents=True, exist_ok=True) +model.save_pretrained(DECISION_PHASE_HEAD_CONFIG.model_dir) +tokenizer.save_pretrained(DECISION_PHASE_HEAD_CONFIG.model_dir) +write_json( + DECISION_PHASE_HEAD_CONFIG.model_dir / "train_metrics.json", + { + "head": DECISION_PHASE_HEAD_CONFIG.slug, + "train_count": len(train_rows), + "val_count": len(val_rows), + "test_count": len(test_rows), + "val_metrics": val_metrics, + "test_metrics": test_metrics, + }, +) diff --git a/training/train_iab.py b/training/train_iab.py new file mode 100644 index 0000000000000000000000000000000000000000..3a457b0b2368bdf396e54ca34fa31ef4f8337ada --- /dev/null +++ b/training/train_iab.py @@ -0,0 +1,117 @@ +import sys +from pathlib import Path + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer, Trainer, TrainingArguments + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import IAB_HEAD_CONFIG +from training.common import ( + build_balanced_class_weights, + compute_classification_metrics, + load_labeled_rows, + prepare_dataset, + write_json, +) + + +class WeightedTrainer(Trainer): + def __init__(self, *args, class_weights: torch.Tensor | None = None, **kwargs): + super().__init__(*args, **kwargs) + self.class_weights = class_weights + + def compute_loss(self, model, inputs, return_outputs=False, **kwargs): + labels = inputs.pop("labels") + outputs = model(**inputs) + logits = outputs.get("logits") + weight = self.class_weights.to(logits.device) if self.class_weights is not None else None + loss_fct = torch.nn.CrossEntropyLoss(weight=weight) + loss = loss_fct(logits.view(-1, model.config.num_labels), labels.view(-1)) + return (loss, outputs) if return_outputs else loss + + +train_rows = load_labeled_rows( + IAB_HEAD_CONFIG.split_paths["train"], + IAB_HEAD_CONFIG.label_field, + IAB_HEAD_CONFIG.label2id, +) +val_rows = load_labeled_rows( + IAB_HEAD_CONFIG.split_paths["val"], + IAB_HEAD_CONFIG.label_field, + IAB_HEAD_CONFIG.label2id, +) +test_rows = load_labeled_rows( + IAB_HEAD_CONFIG.split_paths["test"], + IAB_HEAD_CONFIG.label_field, + IAB_HEAD_CONFIG.label2id, +) + +tokenizer = AutoTokenizer.from_pretrained(IAB_HEAD_CONFIG.model_name) + +train_dataset = prepare_dataset(train_rows, tokenizer, IAB_HEAD_CONFIG.max_length) +val_dataset = prepare_dataset(val_rows, tokenizer, IAB_HEAD_CONFIG.max_length) +test_dataset = prepare_dataset(test_rows, tokenizer, IAB_HEAD_CONFIG.max_length) +class_weights = build_balanced_class_weights(train_rows, len(IAB_HEAD_CONFIG.labels)) + +model = AutoModelForSequenceClassification.from_pretrained( + IAB_HEAD_CONFIG.model_name, + num_labels=len(IAB_HEAD_CONFIG.labels), + id2label=IAB_HEAD_CONFIG.id2label, + label2id=IAB_HEAD_CONFIG.label2id, +) + +training_args = TrainingArguments( + output_dir=str(IAB_HEAD_CONFIG.model_dir), + eval_strategy="epoch", + save_strategy="no", + logging_strategy="epoch", + num_train_epochs=3, + per_device_train_batch_size=8, + per_device_eval_batch_size=16, + learning_rate=2e-5, + weight_decay=0.01, + report_to="none", +) + +trainer = WeightedTrainer( + model=model, + args=training_args, + train_dataset=train_dataset, + eval_dataset=val_dataset, + compute_metrics=compute_classification_metrics, + class_weights=class_weights, +) + +print(f"Loaded IAB splits: train={len(train_rows)} val={len(val_rows)} test={len(test_rows)}") +print( + "IAB class weights summary:", + { + "min": round(float(class_weights.min().item()), 4), + "max": round(float(class_weights.max().item()), 4), + "mean": round(float(class_weights.mean().item()), 4), + }, +) +trainer.train() +val_metrics = trainer.evaluate(eval_dataset=val_dataset, metric_key_prefix="val") +test_metrics = trainer.evaluate(eval_dataset=test_dataset, metric_key_prefix="test") +print(val_metrics) +print(test_metrics) + +IAB_HEAD_CONFIG.model_dir.mkdir(parents=True, exist_ok=True) +model.save_pretrained(IAB_HEAD_CONFIG.model_dir) +tokenizer.save_pretrained(IAB_HEAD_CONFIG.model_dir) +write_json( + IAB_HEAD_CONFIG.model_dir / "train_metrics.json", + { + "head": IAB_HEAD_CONFIG.slug, + "train_count": len(train_rows), + "val_count": len(val_rows), + "test_count": len(test_rows), + "label_count": len(IAB_HEAD_CONFIG.labels), + "val_metrics": val_metrics, + "test_metrics": test_metrics, + }, +) diff --git a/training/train_multitask_intent.py b/training/train_multitask_intent.py new file mode 100644 index 0000000000000000000000000000000000000000..2c67e705035ad640bfee8395bb87524c1da8b7e8 --- /dev/null +++ b/training/train_multitask_intent.py @@ -0,0 +1,293 @@ +from __future__ import annotations + +import json +import sys +from dataclasses import dataclass +from pathlib import Path + +import numpy as np +import torch +import torch.nn.functional as F +from datasets import Dataset +from sklearn.metrics import accuracy_score, f1_score +from transformers import AutoTokenizer, Trainer, TrainingArguments + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import ( # noqa: E402 + DECISION_PHASE_DIFFICULTY_DATA_DIR, + DECISION_PHASE_HEAD_CONFIG, + FULL_INTENT_TAXONOMY_DATA_DIR, + INTENT_HEAD_CONFIG, + INTENT_TYPE_DIFFICULTY_DATA_DIR, + MULTITASK_INTENT_MODEL_DIR, + SUBTYPE_DIFFICULTY_DATA_DIR, + SUBTYPE_HEAD_CONFIG, +) +from multitask_model import MultiTaskIntentModel, MultiTaskLabelSizes # noqa: E402 +from training.common import write_json # noqa: E402 + + +IGNORE_INDEX = -100 + + +@dataclass +class MultiTaskRow: + text: str + intent_type: int = IGNORE_INDEX + intent_subtype: int = IGNORE_INDEX + decision_phase: int = IGNORE_INDEX + + +def _load_task_rows(path: Path, label_field: str, label2id: dict[str, int]) -> list[tuple[str, int]]: + if not path.exists(): + return [] + rows: list[tuple[str, int]] = [] + with path.open("r", encoding="utf-8") as handle: + for line in handle: + item = json.loads(line) + rows.append((item["text"], label2id[item[label_field]])) + return rows + + +def _merge_rows( + split: str, + include_full_intent: bool = True, + include_difficulty: bool = True, +) -> list[dict]: + merged: dict[str, MultiTaskRow] = {} + + def upsert(task_key: str, text: str, label: int) -> None: + row = merged.get(text) + if row is None: + row = MultiTaskRow(text=text) + merged[text] = row + setattr(row, task_key, int(label)) + + # Base split rows + for text, label in _load_task_rows( + INTENT_HEAD_CONFIG.split_paths[split], + INTENT_HEAD_CONFIG.label_field, + INTENT_HEAD_CONFIG.label2id, + ): + upsert("intent_type", text, label) + for text, label in _load_task_rows( + SUBTYPE_HEAD_CONFIG.split_paths[split], + SUBTYPE_HEAD_CONFIG.label_field, + SUBTYPE_HEAD_CONFIG.label2id, + ): + upsert("intent_subtype", text, label) + for text, label in _load_task_rows( + DECISION_PHASE_HEAD_CONFIG.split_paths[split], + DECISION_PHASE_HEAD_CONFIG.label_field, + DECISION_PHASE_HEAD_CONFIG.label2id, + ): + upsert("decision_phase", text, label) + + if include_full_intent: + full_path = FULL_INTENT_TAXONOMY_DATA_DIR / f"{split}.jsonl" + for text, label in _load_task_rows(full_path, "intent_type", INTENT_HEAD_CONFIG.label2id): + upsert("intent_type", text, label) + for text, label in _load_task_rows(full_path, "intent_subtype", SUBTYPE_HEAD_CONFIG.label2id): + upsert("intent_subtype", text, label) + for text, label in _load_task_rows(full_path, "decision_phase", DECISION_PHASE_HEAD_CONFIG.label2id): + upsert("decision_phase", text, label) + + if include_difficulty: + for text, label in _load_task_rows( + INTENT_TYPE_DIFFICULTY_DATA_DIR / f"{split}.jsonl", + "intent_type", + INTENT_HEAD_CONFIG.label2id, + ): + upsert("intent_type", text, label) + for text, label in _load_task_rows( + SUBTYPE_DIFFICULTY_DATA_DIR / f"{split}.jsonl", + "intent_subtype", + SUBTYPE_HEAD_CONFIG.label2id, + ): + upsert("intent_subtype", text, label) + for text, label in _load_task_rows( + DECISION_PHASE_DIFFICULTY_DATA_DIR / f"{split}.jsonl", + "decision_phase", + DECISION_PHASE_HEAD_CONFIG.label2id, + ): + upsert("decision_phase", text, label) + + return [ + { + "text": row.text, + "intent_type": row.intent_type, + "intent_subtype": row.intent_subtype, + "decision_phase": row.decision_phase, + } + for row in merged.values() + ] + + +def _prepare_dataset(rows: list[dict], tokenizer, max_length: int) -> Dataset: + dataset = Dataset.from_list(rows) + + def tokenize(batch): + return tokenizer(batch["text"], truncation=True, padding="max_length", max_length=max_length) + + dataset = dataset.map(tokenize, batched=True) + dataset = dataset.remove_columns(["text"]) + dataset.set_format("torch") + return dataset + + +class MultiTaskTrainer(Trainer): + def __init__(self, *args, loss_weights: dict[str, float], **kwargs): + super().__init__(*args, **kwargs) + self.loss_weights = loss_weights + + def _task_ce(self, logits: torch.Tensor, labels: torch.Tensor) -> torch.Tensor: + """Mean CE over non-ignored labels only. + + ``CrossEntropyLoss(..., reduction='mean')`` returns NaN when every label in the + batch is ``IGNORE_INDEX`` (0 valid targets). Per-row ``reduction='none'`` yields 0 + for ignored rows; we then mean over valid rows only, matching standard CE otherwise. + """ + loss_vec = F.cross_entropy( + logits, labels, ignore_index=IGNORE_INDEX, reduction="none" + ) + valid = labels != IGNORE_INDEX + if not valid.any(): + return logits.sum() * 0.0 + return loss_vec[valid].mean() + + def compute_loss(self, model, inputs, return_outputs=False, **kwargs): + labels_type = inputs.pop("intent_type") + labels_subtype = inputs.pop("intent_subtype") + labels_phase = inputs.pop("decision_phase") + outputs = model(**inputs) + loss_type = self._task_ce(outputs["intent_type_logits"], labels_type) + loss_subtype = self._task_ce(outputs["intent_subtype_logits"], labels_subtype) + loss_phase = self._task_ce(outputs["decision_phase_logits"], labels_phase) + loss = ( + (self.loss_weights["intent_type"] * loss_type) + + (self.loss_weights["intent_subtype"] * loss_subtype) + + (self.loss_weights["decision_phase"] * loss_phase) + ) + return (loss, outputs) if return_outputs else loss + + +def _masked_metrics(logits: np.ndarray, labels: np.ndarray) -> dict[str, float]: + mask = labels != IGNORE_INDEX + if not np.any(mask): + return {"accuracy": 0.0, "macro_f1": 0.0, "count": 0} + preds = np.argmax(logits[mask], axis=-1) + true = labels[mask] + return { + "accuracy": float(accuracy_score(true, preds)), + "macro_f1": float(f1_score(true, preds, average="macro")), + "count": int(mask.sum()), + } + + +def _compute_metrics(eval_pred): + predictions, labels = eval_pred + intent_logits, subtype_logits, phase_logits = predictions + intent_labels, subtype_labels, phase_labels = labels + intent_metrics = _masked_metrics(intent_logits, intent_labels) + subtype_metrics = _masked_metrics(subtype_logits, subtype_labels) + phase_metrics = _masked_metrics(phase_logits, phase_labels) + return { + "intent_type_accuracy": intent_metrics["accuracy"], + "intent_type_macro_f1": intent_metrics["macro_f1"], + "intent_subtype_accuracy": subtype_metrics["accuracy"], + "intent_subtype_macro_f1": subtype_metrics["macro_f1"], + "decision_phase_accuracy": phase_metrics["accuracy"], + "decision_phase_macro_f1": phase_metrics["macro_f1"], + } + + +def main() -> None: + train_rows = _merge_rows("train", include_full_intent=True, include_difficulty=True) + val_rows = _merge_rows("val", include_full_intent=True, include_difficulty=True) + test_rows = _merge_rows("test", include_full_intent=False, include_difficulty=False) + + tokenizer = AutoTokenizer.from_pretrained(INTENT_HEAD_CONFIG.model_name) + max_length = max( + INTENT_HEAD_CONFIG.max_length, + SUBTYPE_HEAD_CONFIG.max_length, + DECISION_PHASE_HEAD_CONFIG.max_length, + ) + train_dataset = _prepare_dataset(train_rows, tokenizer, max_length=max_length) + val_dataset = _prepare_dataset(val_rows, tokenizer, max_length=max_length) + test_dataset = _prepare_dataset(test_rows, tokenizer, max_length=max_length) + + model = MultiTaskIntentModel( + INTENT_HEAD_CONFIG.model_name, + MultiTaskLabelSizes( + intent_type=len(INTENT_HEAD_CONFIG.labels), + intent_subtype=len(SUBTYPE_HEAD_CONFIG.labels), + decision_phase=len(DECISION_PHASE_HEAD_CONFIG.labels), + ), + ) + + training_args = TrainingArguments( + output_dir=str(MULTITASK_INTENT_MODEL_DIR), + eval_strategy="epoch", + save_strategy="no", + logging_strategy="epoch", + num_train_epochs=4, + per_device_train_batch_size=8, + per_device_eval_batch_size=16, + learning_rate=2e-5, + weight_decay=0.01, + report_to="none", + label_names=["intent_type", "intent_subtype", "decision_phase"], + ) + loss_weights = {"intent_type": 1.0, "intent_subtype": 1.0, "decision_phase": 1.0} + trainer = MultiTaskTrainer( + model=model, + args=training_args, + train_dataset=train_dataset, + eval_dataset=val_dataset, + compute_metrics=_compute_metrics, + loss_weights=loss_weights, + ) + + print(f"Loaded multitask splits: train={len(train_rows)} val={len(val_rows)} test={len(test_rows)}") + trainer.train() + val_metrics = trainer.evaluate(eval_dataset=val_dataset, metric_key_prefix="val") + test_metrics = trainer.evaluate(eval_dataset=test_dataset, metric_key_prefix="test") + print(val_metrics) + print(test_metrics) + + MULTITASK_INTENT_MODEL_DIR.mkdir(parents=True, exist_ok=True) + tokenizer.save_pretrained(MULTITASK_INTENT_MODEL_DIR) + torch.save({"state_dict": model.state_dict()}, MULTITASK_INTENT_MODEL_DIR / "multitask_model.pt") + metadata = { + "format": "admesh_multitask_intent_v1", + "base_model_name": INTENT_HEAD_CONFIG.model_name, + "max_length": max_length, + "label_maps": { + "intent_type": {"label2id": INTENT_HEAD_CONFIG.label2id, "id2label": INTENT_HEAD_CONFIG.id2label}, + "intent_subtype": {"label2id": SUBTYPE_HEAD_CONFIG.label2id, "id2label": SUBTYPE_HEAD_CONFIG.id2label}, + "decision_phase": {"label2id": DECISION_PHASE_HEAD_CONFIG.label2id, "id2label": DECISION_PHASE_HEAD_CONFIG.id2label}, + }, + } + (MULTITASK_INTENT_MODEL_DIR / "metadata.json").write_text( + json.dumps(metadata, indent=2, sort_keys=True) + "\n", + encoding="utf-8", + ) + write_json( + MULTITASK_INTENT_MODEL_DIR / "train_metrics.json", + { + "head": "multitask_intent", + "loss_weights": loss_weights, + "train_count": len(train_rows), + "val_count": len(val_rows), + "test_count": len(test_rows), + "val_metrics": val_metrics, + "test_metrics": test_metrics, + }, + ) + + +if __name__ == "__main__": + main() diff --git a/training/train_subtype.py b/training/train_subtype.py new file mode 100644 index 0000000000000000000000000000000000000000..a96b8c8eca6b7b152fd800f8905db65a56844de3 --- /dev/null +++ b/training/train_subtype.py @@ -0,0 +1,125 @@ +import sys +from pathlib import Path + +import torch +from transformers import AutoModelForSequenceClassification, AutoTokenizer, Trainer, TrainingArguments + +BASE_DIR = Path(__file__).resolve().parent.parent +if str(BASE_DIR) not in sys.path: + sys.path.insert(0, str(BASE_DIR)) + +from config import ( + FULL_INTENT_TAXONOMY_DATA_DIR, + SUBTYPE_DIFFICULTY_DATA_DIR, + SUBTYPE_HEAD_CONFIG, + SUBTYPE_TRAINING_WEIGHTS, +) +from training.common import ( + build_label_weight_tensor, + compute_classification_metrics, + load_labeled_rows, + load_labeled_rows_from_paths, + prepare_dataset, + write_json, +) + + +class WeightedTrainer(Trainer): + def __init__(self, *args, class_weights: torch.Tensor | None = None, **kwargs): + super().__init__(*args, **kwargs) + self.class_weights = class_weights + + def compute_loss(self, model, inputs, return_outputs=False, **kwargs): + labels = inputs.pop("labels") + outputs = model(**inputs) + logits = outputs.get("logits") + weight = self.class_weights.to(logits.device) if self.class_weights is not None else None + loss_fct = torch.nn.CrossEntropyLoss(weight=weight) + loss = loss_fct(logits.view(-1, model.config.num_labels), labels.view(-1)) + return (loss, outputs) if return_outputs else loss + + +train_rows = load_labeled_rows_from_paths( + [ + SUBTYPE_HEAD_CONFIG.split_paths["train"], + FULL_INTENT_TAXONOMY_DATA_DIR / "train.jsonl", + SUBTYPE_DIFFICULTY_DATA_DIR / "train.jsonl", + ], + SUBTYPE_HEAD_CONFIG.label_field, + SUBTYPE_HEAD_CONFIG.label2id, +) +val_rows = load_labeled_rows_from_paths( + [ + SUBTYPE_HEAD_CONFIG.split_paths["val"], + FULL_INTENT_TAXONOMY_DATA_DIR / "val.jsonl", + SUBTYPE_DIFFICULTY_DATA_DIR / "val.jsonl", + ], + SUBTYPE_HEAD_CONFIG.label_field, + SUBTYPE_HEAD_CONFIG.label2id, +) +test_rows = load_labeled_rows( + SUBTYPE_HEAD_CONFIG.split_paths["test"], + SUBTYPE_HEAD_CONFIG.label_field, + SUBTYPE_HEAD_CONFIG.label2id, +) + +tokenizer = AutoTokenizer.from_pretrained(SUBTYPE_HEAD_CONFIG.model_name) + +train_dataset = prepare_dataset(train_rows, tokenizer, SUBTYPE_HEAD_CONFIG.max_length) +val_dataset = prepare_dataset(val_rows, tokenizer, SUBTYPE_HEAD_CONFIG.max_length) +test_dataset = prepare_dataset(test_rows, tokenizer, SUBTYPE_HEAD_CONFIG.max_length) +class_weights = build_label_weight_tensor(SUBTYPE_HEAD_CONFIG.labels, SUBTYPE_TRAINING_WEIGHTS) + +model = AutoModelForSequenceClassification.from_pretrained( + SUBTYPE_HEAD_CONFIG.model_name, + num_labels=len(SUBTYPE_HEAD_CONFIG.labels), + id2label=SUBTYPE_HEAD_CONFIG.id2label, + label2id=SUBTYPE_HEAD_CONFIG.label2id, +) + +training_args = TrainingArguments( + output_dir=str(SUBTYPE_HEAD_CONFIG.model_dir), + eval_strategy="epoch", + save_strategy="no", + logging_strategy="epoch", + num_train_epochs=4, + per_device_train_batch_size=4, + per_device_eval_batch_size=4, + learning_rate=2e-5, + weight_decay=0.01, + report_to="none", +) + +trainer = WeightedTrainer( + model=model, + args=training_args, + train_dataset=train_dataset, + eval_dataset=val_dataset, + compute_metrics=compute_classification_metrics, + class_weights=class_weights, +) + +print( + f"Loaded subtype splits: train={len(train_rows)} val={len(val_rows)} test={len(test_rows)}" +) +print(f"Subtype weights: {[round(float(x), 3) for x in class_weights.tolist()]}") +trainer.train() +val_metrics = trainer.evaluate(eval_dataset=val_dataset, metric_key_prefix="val") +test_metrics = trainer.evaluate(eval_dataset=test_dataset, metric_key_prefix="test") +print(val_metrics) +print(test_metrics) + +SUBTYPE_HEAD_CONFIG.model_dir.mkdir(parents=True, exist_ok=True) +model.save_pretrained(SUBTYPE_HEAD_CONFIG.model_dir) +tokenizer.save_pretrained(SUBTYPE_HEAD_CONFIG.model_dir) +write_json( + SUBTYPE_HEAD_CONFIG.model_dir / "train_metrics.json", + { + "head": SUBTYPE_HEAD_CONFIG.slug, + "train_count": len(train_rows), + "val_count": len(val_rows), + "test_count": len(test_rows), + "val_metrics": val_metrics, + "test_metrics": test_metrics, + }, +)